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

Latest commit

 

History

History
119 lines (64 loc) · 4.28 KB

SubmitSelfServiceRegistrationFlowWithPasswordMethodBody.md

File metadata and controls

119 lines (64 loc) · 4.28 KB

SubmitSelfServiceRegistrationFlowWithPasswordMethodBody

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 string Password to sign the user up with
Traits map[string]interface{} The identity's traits

Methods

NewSubmitSelfServiceRegistrationFlowWithPasswordMethodBody

func NewSubmitSelfServiceRegistrationFlowWithPasswordMethodBody(method string, password string, traits map[string]interface{}, ) *SubmitSelfServiceRegistrationFlowWithPasswordMethodBody

NewSubmitSelfServiceRegistrationFlowWithPasswordMethodBody instantiates a new SubmitSelfServiceRegistrationFlowWithPasswordMethodBody 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

NewSubmitSelfServiceRegistrationFlowWithPasswordMethodBodyWithDefaults

func NewSubmitSelfServiceRegistrationFlowWithPasswordMethodBodyWithDefaults() *SubmitSelfServiceRegistrationFlowWithPasswordMethodBody

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

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

GetCsrfTokenOk

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

SetCsrfToken sets CsrfToken field to given value.

HasCsrfToken

func (o *SubmitSelfServiceRegistrationFlowWithPasswordMethodBody) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

GetMethod

func (o *SubmitSelfServiceRegistrationFlowWithPasswordMethodBody) GetMethod() string

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

GetMethodOk

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

SetMethod sets Method field to given value.

GetPassword

func (o *SubmitSelfServiceRegistrationFlowWithPasswordMethodBody) GetPassword() string

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

GetPasswordOk

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

SetPassword sets Password field to given value.

GetTraits

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

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

GetTraitsOk

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

SetTraits sets Traits field to given value.

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