Skip to content

Latest commit

 

History

History
129 lines (70 loc) · 4.03 KB

SubmitSelfServiceRegistrationFlow.md

File metadata and controls

129 lines (70 loc) · 4.03 KB

SubmitSelfServiceRegistrationFlow

Properties

Name Type Description Notes
CsrfToken Pointer to string The CSRF Token [optional]
Method string Method to use This field must be set to `password` when using the password method.
Password Pointer to string Password to sign the user up with [optional]
Traits Pointer to map[string]interface{} The identity's traits [optional]

Methods

NewSubmitSelfServiceRegistrationFlow

func NewSubmitSelfServiceRegistrationFlow(method string, ) *SubmitSelfServiceRegistrationFlow

NewSubmitSelfServiceRegistrationFlow instantiates a new SubmitSelfServiceRegistrationFlow 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

NewSubmitSelfServiceRegistrationFlowWithDefaults

func NewSubmitSelfServiceRegistrationFlowWithDefaults() *SubmitSelfServiceRegistrationFlow

NewSubmitSelfServiceRegistrationFlowWithDefaults instantiates a new SubmitSelfServiceRegistrationFlow 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 *SubmitSelfServiceRegistrationFlow) GetCsrfToken() string

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

GetCsrfTokenOk

func (o *SubmitSelfServiceRegistrationFlow) 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 *SubmitSelfServiceRegistrationFlow) SetCsrfToken(v string)

SetCsrfToken sets CsrfToken field to given value.

HasCsrfToken

func (o *SubmitSelfServiceRegistrationFlow) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

GetMethod

func (o *SubmitSelfServiceRegistrationFlow) GetMethod() string

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

GetMethodOk

func (o *SubmitSelfServiceRegistrationFlow) 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 *SubmitSelfServiceRegistrationFlow) SetMethod(v string)

SetMethod sets Method field to given value.

GetPassword

func (o *SubmitSelfServiceRegistrationFlow) GetPassword() string

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

GetPasswordOk

func (o *SubmitSelfServiceRegistrationFlow) 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 *SubmitSelfServiceRegistrationFlow) SetPassword(v string)

SetPassword sets Password field to given value.

HasPassword

func (o *SubmitSelfServiceRegistrationFlow) HasPassword() bool

HasPassword returns a boolean if a field has been set.

GetTraits

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

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

GetTraitsOk

func (o *SubmitSelfServiceRegistrationFlow) 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 *SubmitSelfServiceRegistrationFlow) SetTraits(v map[string]interface{})

SetTraits sets Traits field to given value.

HasTraits

func (o *SubmitSelfServiceRegistrationFlow) HasTraits() bool

HasTraits returns a boolean if a field has been set.

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