Skip to content

Latest commit

 

History

History
197 lines (106 loc) · 5.66 KB

PasswordChallenge.md

File metadata and controls

197 lines (106 loc) · 5.66 KB

PasswordChallenge

Properties

Name Type Description Notes
Type ChallengeChoices
FlowInfo Pointer to ContextualFlowInfo [optional]
Component Pointer to string [optional] [default to "ak-stage-password"]
ResponseErrors Pointer to map[string][]ErrorDetail [optional]
PendingUser string
PendingUserAvatar string
RecoveryUrl Pointer to string [optional]

Methods

NewPasswordChallenge

func NewPasswordChallenge(type_ ChallengeChoices, pendingUser string, pendingUserAvatar string, ) *PasswordChallenge

NewPasswordChallenge instantiates a new PasswordChallenge object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewPasswordChallengeWithDefaults

func NewPasswordChallengeWithDefaults() *PasswordChallenge

NewPasswordChallengeWithDefaults instantiates a new PasswordChallenge object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetType

func (o *PasswordChallenge) GetType() ChallengeChoices

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *PasswordChallenge) GetTypeOk() (*ChallengeChoices, bool)

GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetType

func (o *PasswordChallenge) SetType(v ChallengeChoices)

SetType sets Type field to given value.

GetFlowInfo

func (o *PasswordChallenge) GetFlowInfo() ContextualFlowInfo

GetFlowInfo returns the FlowInfo field if non-nil, zero value otherwise.

GetFlowInfoOk

func (o *PasswordChallenge) GetFlowInfoOk() (*ContextualFlowInfo, bool)

GetFlowInfoOk returns a tuple with the FlowInfo field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetFlowInfo

func (o *PasswordChallenge) SetFlowInfo(v ContextualFlowInfo)

SetFlowInfo sets FlowInfo field to given value.

HasFlowInfo

func (o *PasswordChallenge) HasFlowInfo() bool

HasFlowInfo returns a boolean if a field has been set.

GetComponent

func (o *PasswordChallenge) GetComponent() string

GetComponent returns the Component field if non-nil, zero value otherwise.

GetComponentOk

func (o *PasswordChallenge) GetComponentOk() (*string, bool)

GetComponentOk returns a tuple with the Component field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetComponent

func (o *PasswordChallenge) SetComponent(v string)

SetComponent sets Component field to given value.

HasComponent

func (o *PasswordChallenge) HasComponent() bool

HasComponent returns a boolean if a field has been set.

GetResponseErrors

func (o *PasswordChallenge) GetResponseErrors() map[string][]ErrorDetail

GetResponseErrors returns the ResponseErrors field if non-nil, zero value otherwise.

GetResponseErrorsOk

func (o *PasswordChallenge) GetResponseErrorsOk() (*map[string][]ErrorDetail, bool)

GetResponseErrorsOk returns a tuple with the ResponseErrors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetResponseErrors

func (o *PasswordChallenge) SetResponseErrors(v map[string][]ErrorDetail)

SetResponseErrors sets ResponseErrors field to given value.

HasResponseErrors

func (o *PasswordChallenge) HasResponseErrors() bool

HasResponseErrors returns a boolean if a field has been set.

GetPendingUser

func (o *PasswordChallenge) GetPendingUser() string

GetPendingUser returns the PendingUser field if non-nil, zero value otherwise.

GetPendingUserOk

func (o *PasswordChallenge) GetPendingUserOk() (*string, bool)

GetPendingUserOk returns a tuple with the PendingUser field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPendingUser

func (o *PasswordChallenge) SetPendingUser(v string)

SetPendingUser sets PendingUser field to given value.

GetPendingUserAvatar

func (o *PasswordChallenge) GetPendingUserAvatar() string

GetPendingUserAvatar returns the PendingUserAvatar field if non-nil, zero value otherwise.

GetPendingUserAvatarOk

func (o *PasswordChallenge) GetPendingUserAvatarOk() (*string, bool)

GetPendingUserAvatarOk returns a tuple with the PendingUserAvatar field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPendingUserAvatar

func (o *PasswordChallenge) SetPendingUserAvatar(v string)

SetPendingUserAvatar sets PendingUserAvatar field to given value.

GetRecoveryUrl

func (o *PasswordChallenge) GetRecoveryUrl() string

GetRecoveryUrl returns the RecoveryUrl field if non-nil, zero value otherwise.

GetRecoveryUrlOk

func (o *PasswordChallenge) GetRecoveryUrlOk() (*string, bool)

GetRecoveryUrlOk returns a tuple with the RecoveryUrl field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetRecoveryUrl

func (o *PasswordChallenge) SetRecoveryUrl(v string)

SetRecoveryUrl sets RecoveryUrl field to given value.

HasRecoveryUrl

func (o *PasswordChallenge) HasRecoveryUrl() bool

HasRecoveryUrl returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]