mirror of https://github.com/ory/kratos
114 lines
3.1 KiB
Go
114 lines
3.1 KiB
Go
/*
|
|
Ory Identities API
|
|
|
|
This is the API specification for Ory Identities with features such as registration, login, recovery, account verification, profile settings, password reset, identity management, session management, email and sms delivery, and more.
|
|
|
|
API version:
|
|
Contact: office@ory.sh
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
)
|
|
|
|
// VerificationFlowState The experimental state represents the state of a verification flow. This field is EXPERIMENTAL and subject to change!
|
|
type VerificationFlowState string
|
|
|
|
// List of verificationFlowState
|
|
const (
|
|
VERIFICATIONFLOWSTATE_CHOOSE_METHOD VerificationFlowState = "choose_method"
|
|
VERIFICATIONFLOWSTATE_SENT_EMAIL VerificationFlowState = "sent_email"
|
|
VERIFICATIONFLOWSTATE_PASSED_CHALLENGE VerificationFlowState = "passed_challenge"
|
|
)
|
|
|
|
// All allowed values of VerificationFlowState enum
|
|
var AllowedVerificationFlowStateEnumValues = []VerificationFlowState{
|
|
"choose_method",
|
|
"sent_email",
|
|
"passed_challenge",
|
|
}
|
|
|
|
func (v *VerificationFlowState) UnmarshalJSON(src []byte) error {
|
|
var value string
|
|
err := json.Unmarshal(src, &value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
enumTypeValue := VerificationFlowState(value)
|
|
for _, existing := range AllowedVerificationFlowStateEnumValues {
|
|
if existing == enumTypeValue {
|
|
*v = enumTypeValue
|
|
return nil
|
|
}
|
|
}
|
|
|
|
return fmt.Errorf("%+v is not a valid VerificationFlowState", value)
|
|
}
|
|
|
|
// NewVerificationFlowStateFromValue returns a pointer to a valid VerificationFlowState
|
|
// for the value passed as argument, or an error if the value passed is not allowed by the enum
|
|
func NewVerificationFlowStateFromValue(v string) (*VerificationFlowState, error) {
|
|
ev := VerificationFlowState(v)
|
|
if ev.IsValid() {
|
|
return &ev, nil
|
|
} else {
|
|
return nil, fmt.Errorf("invalid value '%v' for VerificationFlowState: valid values are %v", v, AllowedVerificationFlowStateEnumValues)
|
|
}
|
|
}
|
|
|
|
// IsValid return true if the value is valid for the enum, false otherwise
|
|
func (v VerificationFlowState) IsValid() bool {
|
|
for _, existing := range AllowedVerificationFlowStateEnumValues {
|
|
if existing == v {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// Ptr returns reference to verificationFlowState value
|
|
func (v VerificationFlowState) Ptr() *VerificationFlowState {
|
|
return &v
|
|
}
|
|
|
|
type NullableVerificationFlowState struct {
|
|
value *VerificationFlowState
|
|
isSet bool
|
|
}
|
|
|
|
func (v NullableVerificationFlowState) Get() *VerificationFlowState {
|
|
return v.value
|
|
}
|
|
|
|
func (v *NullableVerificationFlowState) Set(val *VerificationFlowState) {
|
|
v.value = val
|
|
v.isSet = true
|
|
}
|
|
|
|
func (v NullableVerificationFlowState) IsSet() bool {
|
|
return v.isSet
|
|
}
|
|
|
|
func (v *NullableVerificationFlowState) Unset() {
|
|
v.value = nil
|
|
v.isSet = false
|
|
}
|
|
|
|
func NewNullableVerificationFlowState(val *VerificationFlowState) *NullableVerificationFlowState {
|
|
return &NullableVerificationFlowState{value: val, isSet: true}
|
|
}
|
|
|
|
func (v NullableVerificationFlowState) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(v.value)
|
|
}
|
|
|
|
func (v *NullableVerificationFlowState) UnmarshalJSON(src []byte) error {
|
|
v.isSet = true
|
|
return json.Unmarshal(src, &v.value)
|
|
}
|