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

Latest commit

 

History

History
213 lines (114 loc) · 6.29 KB

SelfServiceRegistrationFlow.md

File metadata and controls

213 lines (114 loc) · 6.29 KB

SelfServiceRegistrationFlow

Properties

Name Type Description Notes
Active Pointer to IdentityCredentialsType [optional]
ExpiresAt time.Time ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated.
Id string
IssuedAt time.Time IssuedAt is the time (UTC) when the flow occurred.
RequestUrl string RequestURL is the initial URL that was requested from Ory Kratos. It can be used to forward information contained in the URL's path or query for example.
ReturnTo Pointer to string ReturnTo contains the requested return_to URL. [optional]
Type Pointer to string The flow type can either be `api` or `browser`. [optional]
Ui UiContainer

Methods

NewSelfServiceRegistrationFlow

func NewSelfServiceRegistrationFlow(expiresAt time.Time, id string, issuedAt time.Time, requestUrl string, ui UiContainer, ) *SelfServiceRegistrationFlow

NewSelfServiceRegistrationFlow instantiates a new SelfServiceRegistrationFlow 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

NewSelfServiceRegistrationFlowWithDefaults

func NewSelfServiceRegistrationFlowWithDefaults() *SelfServiceRegistrationFlow

NewSelfServiceRegistrationFlowWithDefaults instantiates a new SelfServiceRegistrationFlow 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

GetActive

func (o *SelfServiceRegistrationFlow) GetActive() IdentityCredentialsType

GetActive returns the Active field if non-nil, zero value otherwise.

GetActiveOk

func (o *SelfServiceRegistrationFlow) GetActiveOk() (*IdentityCredentialsType, bool)

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

SetActive

func (o *SelfServiceRegistrationFlow) SetActive(v IdentityCredentialsType)

SetActive sets Active field to given value.

HasActive

func (o *SelfServiceRegistrationFlow) HasActive() bool

HasActive returns a boolean if a field has been set.

GetExpiresAt

func (o *SelfServiceRegistrationFlow) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field if non-nil, zero value otherwise.

GetExpiresAtOk

func (o *SelfServiceRegistrationFlow) GetExpiresAtOk() (*time.Time, bool)

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

SetExpiresAt

func (o *SelfServiceRegistrationFlow) SetExpiresAt(v time.Time)

SetExpiresAt sets ExpiresAt field to given value.

GetId

func (o *SelfServiceRegistrationFlow) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *SelfServiceRegistrationFlow) GetIdOk() (*string, bool)

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

SetId

func (o *SelfServiceRegistrationFlow) SetId(v string)

SetId sets Id field to given value.

GetIssuedAt

func (o *SelfServiceRegistrationFlow) GetIssuedAt() time.Time

GetIssuedAt returns the IssuedAt field if non-nil, zero value otherwise.

GetIssuedAtOk

func (o *SelfServiceRegistrationFlow) GetIssuedAtOk() (*time.Time, bool)

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

SetIssuedAt

func (o *SelfServiceRegistrationFlow) SetIssuedAt(v time.Time)

SetIssuedAt sets IssuedAt field to given value.

GetRequestUrl

func (o *SelfServiceRegistrationFlow) GetRequestUrl() string

GetRequestUrl returns the RequestUrl field if non-nil, zero value otherwise.

GetRequestUrlOk

func (o *SelfServiceRegistrationFlow) GetRequestUrlOk() (*string, bool)

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

SetRequestUrl

func (o *SelfServiceRegistrationFlow) SetRequestUrl(v string)

SetRequestUrl sets RequestUrl field to given value.

GetReturnTo

func (o *SelfServiceRegistrationFlow) GetReturnTo() string

GetReturnTo returns the ReturnTo field if non-nil, zero value otherwise.

GetReturnToOk

func (o *SelfServiceRegistrationFlow) GetReturnToOk() (*string, bool)

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

SetReturnTo

func (o *SelfServiceRegistrationFlow) SetReturnTo(v string)

SetReturnTo sets ReturnTo field to given value.

HasReturnTo

func (o *SelfServiceRegistrationFlow) HasReturnTo() bool

HasReturnTo returns a boolean if a field has been set.

GetType

func (o *SelfServiceRegistrationFlow) GetType() string

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

GetTypeOk

func (o *SelfServiceRegistrationFlow) GetTypeOk() (*string, 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 *SelfServiceRegistrationFlow) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *SelfServiceRegistrationFlow) HasType() bool

HasType returns a boolean if a field has been set.

GetUi

func (o *SelfServiceRegistrationFlow) GetUi() UiContainer

GetUi returns the Ui field if non-nil, zero value otherwise.

GetUiOk

func (o *SelfServiceRegistrationFlow) GetUiOk() (*UiContainer, bool)

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

SetUi

func (o *SelfServiceRegistrationFlow) SetUi(v UiContainer)

SetUi sets Ui field to given value.

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