Skip to content

Latest commit

 

History

History
213 lines (114 loc) · 5.93 KB

CaptchaChallenge.md

File metadata and controls

213 lines (114 loc) · 5.93 KB

CaptchaChallenge

Properties

Name Type Description Notes
FlowInfo Pointer to ContextualFlowInfo [optional]
Component Pointer to string [optional] [default to "ak-stage-captcha"]
ResponseErrors Pointer to map[string][]ErrorDetail [optional]
PendingUser string
PendingUserAvatar string
SiteKey string
JsUrl string
Interactive bool

Methods

NewCaptchaChallenge

func NewCaptchaChallenge(pendingUser string, pendingUserAvatar string, siteKey string, jsUrl string, interactive bool, ) *CaptchaChallenge

NewCaptchaChallenge instantiates a new CaptchaChallenge 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

NewCaptchaChallengeWithDefaults

func NewCaptchaChallengeWithDefaults() *CaptchaChallenge

NewCaptchaChallengeWithDefaults instantiates a new CaptchaChallenge 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

GetFlowInfo

func (o *CaptchaChallenge) GetFlowInfo() ContextualFlowInfo

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

GetFlowInfoOk

func (o *CaptchaChallenge) 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 *CaptchaChallenge) SetFlowInfo(v ContextualFlowInfo)

SetFlowInfo sets FlowInfo field to given value.

HasFlowInfo

func (o *CaptchaChallenge) HasFlowInfo() bool

HasFlowInfo returns a boolean if a field has been set.

GetComponent

func (o *CaptchaChallenge) GetComponent() string

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

GetComponentOk

func (o *CaptchaChallenge) 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 *CaptchaChallenge) SetComponent(v string)

SetComponent sets Component field to given value.

HasComponent

func (o *CaptchaChallenge) HasComponent() bool

HasComponent returns a boolean if a field has been set.

GetResponseErrors

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

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

GetResponseErrorsOk

func (o *CaptchaChallenge) 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 *CaptchaChallenge) SetResponseErrors(v map[string][]ErrorDetail)

SetResponseErrors sets ResponseErrors field to given value.

HasResponseErrors

func (o *CaptchaChallenge) HasResponseErrors() bool

HasResponseErrors returns a boolean if a field has been set.

GetPendingUser

func (o *CaptchaChallenge) GetPendingUser() string

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

GetPendingUserOk

func (o *CaptchaChallenge) 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 *CaptchaChallenge) SetPendingUser(v string)

SetPendingUser sets PendingUser field to given value.

GetPendingUserAvatar

func (o *CaptchaChallenge) GetPendingUserAvatar() string

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

GetPendingUserAvatarOk

func (o *CaptchaChallenge) 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 *CaptchaChallenge) SetPendingUserAvatar(v string)

SetPendingUserAvatar sets PendingUserAvatar field to given value.

GetSiteKey

func (o *CaptchaChallenge) GetSiteKey() string

GetSiteKey returns the SiteKey field if non-nil, zero value otherwise.

GetSiteKeyOk

func (o *CaptchaChallenge) GetSiteKeyOk() (*string, bool)

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

SetSiteKey

func (o *CaptchaChallenge) SetSiteKey(v string)

SetSiteKey sets SiteKey field to given value.

GetJsUrl

func (o *CaptchaChallenge) GetJsUrl() string

GetJsUrl returns the JsUrl field if non-nil, zero value otherwise.

GetJsUrlOk

func (o *CaptchaChallenge) GetJsUrlOk() (*string, bool)

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

SetJsUrl

func (o *CaptchaChallenge) SetJsUrl(v string)

SetJsUrl sets JsUrl field to given value.

GetInteractive

func (o *CaptchaChallenge) GetInteractive() bool

GetInteractive returns the Interactive field if non-nil, zero value otherwise.

GetInteractiveOk

func (o *CaptchaChallenge) GetInteractiveOk() (*bool, bool)

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

SetInteractive

func (o *CaptchaChallenge) SetInteractive(v bool)

SetInteractive sets Interactive field to given value.

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