Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.

Latest commit

 

History

History
431 lines (232 loc) · 14.3 KB

SubmitSelfServiceSettingsFlowBody.md

File metadata and controls

431 lines (232 loc) · 14.3 KB

SubmitSelfServiceSettingsFlowBody

Properties

Name Type Description Notes
CsrfToken Pointer to string CSRFToken is the anti-CSRF token [optional]
Method string Method Should be set to "lookup" when trying to add, update, or remove a lookup pairing.
Password string Password is the updated password
Traits map[string]interface{} The identity's traits in: body
Flow Pointer to string Flow ID is the flow's ID. in: query [optional]
Link Pointer to string Link this provider Either this or `unlink` must be set. type: string in: body [optional]
Unlink Pointer to string Unlink this provider Either this or `link` must be set. type: string in: body [optional]
TotpCode Pointer to string ValidationTOTP must contain a valid TOTP based on the [optional]
TotpUnlink Pointer to bool UnlinkTOTP if true will remove the TOTP pairing, effectively removing the credential. This can be used to set up a new TOTP device. [optional]
WebauthnRegister Pointer to string Register a WebAuthn Security Key It is expected that the JSON returned by the WebAuthn registration process is included here. [optional]
WebauthnRegisterDisplayname Pointer to string Name of the WebAuthn Security Key to be Added A human-readable name for the security key which will be added. [optional]
WebauthnRemove Pointer to string Remove a WebAuthn Security Key This must contain the ID of the WebAuthN connection. [optional]
LookupSecretConfirm Pointer to bool If set to true will save the regenerated lookup secrets [optional]
LookupSecretDisable Pointer to bool Disables this method if true. [optional]
LookupSecretRegenerate Pointer to bool If set to true will regenerate the lookup secrets [optional]
LookupSecretReveal Pointer to bool If set to true will reveal the lookup secrets [optional]

Methods

NewSubmitSelfServiceSettingsFlowBody

func NewSubmitSelfServiceSettingsFlowBody(method string, password string, traits map[string]interface{}, ) *SubmitSelfServiceSettingsFlowBody

NewSubmitSelfServiceSettingsFlowBody instantiates a new SubmitSelfServiceSettingsFlowBody 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

NewSubmitSelfServiceSettingsFlowBodyWithDefaults

func NewSubmitSelfServiceSettingsFlowBodyWithDefaults() *SubmitSelfServiceSettingsFlowBody

NewSubmitSelfServiceSettingsFlowBodyWithDefaults instantiates a new SubmitSelfServiceSettingsFlowBody 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

GetCsrfToken

func (o *SubmitSelfServiceSettingsFlowBody) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field if non-nil, zero value otherwise.

GetCsrfTokenOk

func (o *SubmitSelfServiceSettingsFlowBody) GetCsrfTokenOk() (*string, bool)

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

SetCsrfToken

func (o *SubmitSelfServiceSettingsFlowBody) SetCsrfToken(v string)

SetCsrfToken sets CsrfToken field to given value.

HasCsrfToken

func (o *SubmitSelfServiceSettingsFlowBody) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

GetMethod

func (o *SubmitSelfServiceSettingsFlowBody) GetMethod() string

GetMethod returns the Method field if non-nil, zero value otherwise.

GetMethodOk

func (o *SubmitSelfServiceSettingsFlowBody) GetMethodOk() (*string, bool)

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

SetMethod

func (o *SubmitSelfServiceSettingsFlowBody) SetMethod(v string)

SetMethod sets Method field to given value.

GetPassword

func (o *SubmitSelfServiceSettingsFlowBody) GetPassword() string

GetPassword returns the Password field if non-nil, zero value otherwise.

GetPasswordOk

func (o *SubmitSelfServiceSettingsFlowBody) GetPasswordOk() (*string, bool)

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

SetPassword

func (o *SubmitSelfServiceSettingsFlowBody) SetPassword(v string)

SetPassword sets Password field to given value.

GetTraits

func (o *SubmitSelfServiceSettingsFlowBody) GetTraits() map[string]interface{}

GetTraits returns the Traits field if non-nil, zero value otherwise.

GetTraitsOk

func (o *SubmitSelfServiceSettingsFlowBody) GetTraitsOk() (*map[string]interface{}, bool)

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

SetTraits

func (o *SubmitSelfServiceSettingsFlowBody) SetTraits(v map[string]interface{})

SetTraits sets Traits field to given value.

GetFlow

func (o *SubmitSelfServiceSettingsFlowBody) GetFlow() string

GetFlow returns the Flow field if non-nil, zero value otherwise.

GetFlowOk

func (o *SubmitSelfServiceSettingsFlowBody) GetFlowOk() (*string, bool)

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

SetFlow

func (o *SubmitSelfServiceSettingsFlowBody) SetFlow(v string)

SetFlow sets Flow field to given value.

HasFlow

func (o *SubmitSelfServiceSettingsFlowBody) HasFlow() bool

HasFlow returns a boolean if a field has been set.

GetLink

func (o *SubmitSelfServiceSettingsFlowBody) GetLink() string

GetLink returns the Link field if non-nil, zero value otherwise.

GetLinkOk

func (o *SubmitSelfServiceSettingsFlowBody) GetLinkOk() (*string, bool)

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

SetLink

func (o *SubmitSelfServiceSettingsFlowBody) SetLink(v string)

SetLink sets Link field to given value.

HasLink

func (o *SubmitSelfServiceSettingsFlowBody) HasLink() bool

HasLink returns a boolean if a field has been set.

GetUnlink

func (o *SubmitSelfServiceSettingsFlowBody) GetUnlink() string

GetUnlink returns the Unlink field if non-nil, zero value otherwise.

GetUnlinkOk

func (o *SubmitSelfServiceSettingsFlowBody) GetUnlinkOk() (*string, bool)

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

SetUnlink

func (o *SubmitSelfServiceSettingsFlowBody) SetUnlink(v string)

SetUnlink sets Unlink field to given value.

HasUnlink

func (o *SubmitSelfServiceSettingsFlowBody) HasUnlink() bool

HasUnlink returns a boolean if a field has been set.

GetTotpCode

func (o *SubmitSelfServiceSettingsFlowBody) GetTotpCode() string

GetTotpCode returns the TotpCode field if non-nil, zero value otherwise.

GetTotpCodeOk

func (o *SubmitSelfServiceSettingsFlowBody) GetTotpCodeOk() (*string, bool)

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

SetTotpCode

func (o *SubmitSelfServiceSettingsFlowBody) SetTotpCode(v string)

SetTotpCode sets TotpCode field to given value.

HasTotpCode

func (o *SubmitSelfServiceSettingsFlowBody) HasTotpCode() bool

HasTotpCode returns a boolean if a field has been set.

GetTotpUnlink

func (o *SubmitSelfServiceSettingsFlowBody) GetTotpUnlink() bool

GetTotpUnlink returns the TotpUnlink field if non-nil, zero value otherwise.

GetTotpUnlinkOk

func (o *SubmitSelfServiceSettingsFlowBody) GetTotpUnlinkOk() (*bool, bool)

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

SetTotpUnlink

func (o *SubmitSelfServiceSettingsFlowBody) SetTotpUnlink(v bool)

SetTotpUnlink sets TotpUnlink field to given value.

HasTotpUnlink

func (o *SubmitSelfServiceSettingsFlowBody) HasTotpUnlink() bool

HasTotpUnlink returns a boolean if a field has been set.

GetWebauthnRegister

func (o *SubmitSelfServiceSettingsFlowBody) GetWebauthnRegister() string

GetWebauthnRegister returns the WebauthnRegister field if non-nil, zero value otherwise.

GetWebauthnRegisterOk

func (o *SubmitSelfServiceSettingsFlowBody) GetWebauthnRegisterOk() (*string, bool)

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

SetWebauthnRegister

func (o *SubmitSelfServiceSettingsFlowBody) SetWebauthnRegister(v string)

SetWebauthnRegister sets WebauthnRegister field to given value.

HasWebauthnRegister

func (o *SubmitSelfServiceSettingsFlowBody) HasWebauthnRegister() bool

HasWebauthnRegister returns a boolean if a field has been set.

GetWebauthnRegisterDisplayname

func (o *SubmitSelfServiceSettingsFlowBody) GetWebauthnRegisterDisplayname() string

GetWebauthnRegisterDisplayname returns the WebauthnRegisterDisplayname field if non-nil, zero value otherwise.

GetWebauthnRegisterDisplaynameOk

func (o *SubmitSelfServiceSettingsFlowBody) GetWebauthnRegisterDisplaynameOk() (*string, bool)

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

SetWebauthnRegisterDisplayname

func (o *SubmitSelfServiceSettingsFlowBody) SetWebauthnRegisterDisplayname(v string)

SetWebauthnRegisterDisplayname sets WebauthnRegisterDisplayname field to given value.

HasWebauthnRegisterDisplayname

func (o *SubmitSelfServiceSettingsFlowBody) HasWebauthnRegisterDisplayname() bool

HasWebauthnRegisterDisplayname returns a boolean if a field has been set.

GetWebauthnRemove

func (o *SubmitSelfServiceSettingsFlowBody) GetWebauthnRemove() string

GetWebauthnRemove returns the WebauthnRemove field if non-nil, zero value otherwise.

GetWebauthnRemoveOk

func (o *SubmitSelfServiceSettingsFlowBody) GetWebauthnRemoveOk() (*string, bool)

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

SetWebauthnRemove

func (o *SubmitSelfServiceSettingsFlowBody) SetWebauthnRemove(v string)

SetWebauthnRemove sets WebauthnRemove field to given value.

HasWebauthnRemove

func (o *SubmitSelfServiceSettingsFlowBody) HasWebauthnRemove() bool

HasWebauthnRemove returns a boolean if a field has been set.

GetLookupSecretConfirm

func (o *SubmitSelfServiceSettingsFlowBody) GetLookupSecretConfirm() bool

GetLookupSecretConfirm returns the LookupSecretConfirm field if non-nil, zero value otherwise.

GetLookupSecretConfirmOk

func (o *SubmitSelfServiceSettingsFlowBody) GetLookupSecretConfirmOk() (*bool, bool)

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

SetLookupSecretConfirm

func (o *SubmitSelfServiceSettingsFlowBody) SetLookupSecretConfirm(v bool)

SetLookupSecretConfirm sets LookupSecretConfirm field to given value.

HasLookupSecretConfirm

func (o *SubmitSelfServiceSettingsFlowBody) HasLookupSecretConfirm() bool

HasLookupSecretConfirm returns a boolean if a field has been set.

GetLookupSecretDisable

func (o *SubmitSelfServiceSettingsFlowBody) GetLookupSecretDisable() bool

GetLookupSecretDisable returns the LookupSecretDisable field if non-nil, zero value otherwise.

GetLookupSecretDisableOk

func (o *SubmitSelfServiceSettingsFlowBody) GetLookupSecretDisableOk() (*bool, bool)

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

SetLookupSecretDisable

func (o *SubmitSelfServiceSettingsFlowBody) SetLookupSecretDisable(v bool)

SetLookupSecretDisable sets LookupSecretDisable field to given value.

HasLookupSecretDisable

func (o *SubmitSelfServiceSettingsFlowBody) HasLookupSecretDisable() bool

HasLookupSecretDisable returns a boolean if a field has been set.

GetLookupSecretRegenerate

func (o *SubmitSelfServiceSettingsFlowBody) GetLookupSecretRegenerate() bool

GetLookupSecretRegenerate returns the LookupSecretRegenerate field if non-nil, zero value otherwise.

GetLookupSecretRegenerateOk

func (o *SubmitSelfServiceSettingsFlowBody) GetLookupSecretRegenerateOk() (*bool, bool)

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

SetLookupSecretRegenerate

func (o *SubmitSelfServiceSettingsFlowBody) SetLookupSecretRegenerate(v bool)

SetLookupSecretRegenerate sets LookupSecretRegenerate field to given value.

HasLookupSecretRegenerate

func (o *SubmitSelfServiceSettingsFlowBody) HasLookupSecretRegenerate() bool

HasLookupSecretRegenerate returns a boolean if a field has been set.

GetLookupSecretReveal

func (o *SubmitSelfServiceSettingsFlowBody) GetLookupSecretReveal() bool

GetLookupSecretReveal returns the LookupSecretReveal field if non-nil, zero value otherwise.

GetLookupSecretRevealOk

func (o *SubmitSelfServiceSettingsFlowBody) GetLookupSecretRevealOk() (*bool, bool)

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

SetLookupSecretReveal

func (o *SubmitSelfServiceSettingsFlowBody) SetLookupSecretReveal(v bool)

SetLookupSecretReveal sets LookupSecretReveal field to given value.

HasLookupSecretReveal

func (o *SubmitSelfServiceSettingsFlowBody) HasLookupSecretReveal() bool

HasLookupSecretReveal returns a boolean if a field has been set.

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