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 |
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
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
func (o *SelfServiceRegistrationFlow) GetActive() IdentityCredentialsType
GetActive returns the Active field if non-nil, zero value otherwise.
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.
func (o *SelfServiceRegistrationFlow) SetActive(v IdentityCredentialsType)
SetActive sets Active field to given value.
func (o *SelfServiceRegistrationFlow) HasActive() bool
HasActive returns a boolean if a field has been set.
func (o *SelfServiceRegistrationFlow) GetExpiresAt() time.Time
GetExpiresAt returns the ExpiresAt field if non-nil, zero value otherwise.
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.
func (o *SelfServiceRegistrationFlow) SetExpiresAt(v time.Time)
SetExpiresAt sets ExpiresAt field to given value.
func (o *SelfServiceRegistrationFlow) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
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.
func (o *SelfServiceRegistrationFlow) SetId(v string)
SetId sets Id field to given value.
func (o *SelfServiceRegistrationFlow) GetIssuedAt() time.Time
GetIssuedAt returns the IssuedAt field if non-nil, zero value otherwise.
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.
func (o *SelfServiceRegistrationFlow) SetIssuedAt(v time.Time)
SetIssuedAt sets IssuedAt field to given value.
func (o *SelfServiceRegistrationFlow) GetRequestUrl() string
GetRequestUrl returns the RequestUrl field if non-nil, zero value otherwise.
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.
func (o *SelfServiceRegistrationFlow) SetRequestUrl(v string)
SetRequestUrl sets RequestUrl field to given value.
func (o *SelfServiceRegistrationFlow) GetReturnTo() string
GetReturnTo returns the ReturnTo field if non-nil, zero value otherwise.
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.
func (o *SelfServiceRegistrationFlow) SetReturnTo(v string)
SetReturnTo sets ReturnTo field to given value.
func (o *SelfServiceRegistrationFlow) HasReturnTo() bool
HasReturnTo returns a boolean if a field has been set.
func (o *SelfServiceRegistrationFlow) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
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.
func (o *SelfServiceRegistrationFlow) SetType(v string)
SetType sets Type field to given value.
func (o *SelfServiceRegistrationFlow) HasType() bool
HasType returns a boolean if a field has been set.
func (o *SelfServiceRegistrationFlow) GetUi() UiContainer
GetUi returns the Ui field if non-nil, zero value otherwise.
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.
func (o *SelfServiceRegistrationFlow) SetUi(v UiContainer)
SetUi sets Ui field to given value.