client

package module
v0.0.0-...-1fdc324 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 25, 2024 License: Apache-2.0 Imports: 21 Imported by: 0

README ¶

ory/client-go

This is the official Ory Client SDK for go.

Please do not make any pull requests against this repository! Its contents are fully auto-generated by the ory/sdk repository. Any changes to this repository will be overwritten on the next CI run!

Installation

package repository is missing, please open an issue about this.

Documentation

Generation

This code base, including this README, is auto-generated using OpenAPI Generator. If you find bugs in the SDK please check if there is an open issue at OpenAPITools/openapi-generator or ory/sdk already before opening an issue here.

Feedback

If you have feedback on how to improve the Ory SDK or are looking to contribute, please open an issue in ory/sdk to discuss your ideas.

Thanks for being a part of the Ory community!

Documentation ¶

Index ¶

Constants ¶

This section is empty.

Variables ¶

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedAuthenticatorAssuranceLevelEnumValues = []AuthenticatorAssuranceLevel{
	"aal0",
	"aal1",
	"aal2",
	"aal3",
}

All allowed values of AuthenticatorAssuranceLevel enum

View Source
var AllowedCourierMessageStatusEnumValues = []CourierMessageStatus{
	"queued",
	"sent",
	"processing",
	"abandoned",
}

All allowed values of CourierMessageStatus enum

View Source
var AllowedCourierMessageTypeEnumValues = []CourierMessageType{
	"email",
	"phone",
}

All allowed values of CourierMessageType enum

View Source
var AllowedIdentityCredentialsTypeEnumValues = []IdentityCredentialsType{
	"password",
	"totp",
	"oidc",
	"webauthn",
	"lookup_secret",
	"code",
}

All allowed values of IdentityCredentialsType enum

View Source
var AllowedIdentityStateEnumValues = []IdentityState{
	"active",
	"inactive",
}

All allowed values of IdentityState enum

View Source
var AllowedRecoveryFlowStateEnumValues = []RecoveryFlowState{
	"choose_method",
	"sent_email",
	"passed_challenge",
}

All allowed values of RecoveryFlowState enum

View Source
var AllowedRegistrationFlowStateEnumValues = []RegistrationFlowState{
	"choose_method",
	"sent_email",
	"passed_challenge",
}

All allowed values of RegistrationFlowState enum

View Source
var AllowedSettingsFlowStateEnumValues = []SettingsFlowState{
	"show_form",
	"success",
}

All allowed values of SettingsFlowState enum

View Source
var AllowedVerificationFlowStateEnumValues = []VerificationFlowState{
	"choose_method",
	"sent_email",
	"passed_challenge",
}

All allowed values of VerificationFlowState enum

Functions ¶

func CacheExpires ¶

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil ¶

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool ¶

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32 ¶

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64 ¶

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt ¶

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32 ¶

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64 ¶

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString ¶

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime ¶

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types ¶

type APIClient ¶

type APIClient struct {
	CourierAPI CourierAPI

	EventsAPI EventsAPI

	FrontendAPI FrontendAPI

	IdentityAPI IdentityAPI

	JwkAPI JwkAPI

	MetadataAPI MetadataAPI

	OAuth2API OAuth2API

	OidcAPI OidcAPI

	PermissionAPI PermissionAPI

	ProjectAPI ProjectAPI

	RelationshipAPI RelationshipAPI

	WellknownAPI WellknownAPI
	// contains filtered or unexported fields
}

APIClient manages communication with the Ory APIs API vv1.5.1 In most cases there should be only one, shared, APIClient.

func NewAPIClient ¶

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig ¶

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey ¶

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse ¶

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse ¶

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError ¶

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type AcceptOAuth2ConsentRequest ¶

type AcceptOAuth2ConsentRequest struct {
	GrantAccessTokenAudience []string   `json:"grant_access_token_audience,omitempty"`
	GrantScope               []string   `json:"grant_scope,omitempty"`
	HandledAt                *time.Time `json:"handled_at,omitempty"`
	// Remember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same client asks the same user for the same, or a subset of, scope.
	Remember *bool `json:"remember,omitempty"`
	// RememberFor sets how long the consent authorization should be remembered for in seconds. If set to `0`, the authorization will be remembered indefinitely.
	RememberFor          *int64                             `json:"remember_for,omitempty"`
	Session              *AcceptOAuth2ConsentRequestSession `json:"session,omitempty"`
	AdditionalProperties map[string]interface{}
}

AcceptOAuth2ConsentRequest struct for AcceptOAuth2ConsentRequest

func NewAcceptOAuth2ConsentRequest ¶

func NewAcceptOAuth2ConsentRequest() *AcceptOAuth2ConsentRequest

NewAcceptOAuth2ConsentRequest instantiates a new AcceptOAuth2ConsentRequest 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 NewAcceptOAuth2ConsentRequestWithDefaults ¶

func NewAcceptOAuth2ConsentRequestWithDefaults() *AcceptOAuth2ConsentRequest

NewAcceptOAuth2ConsentRequestWithDefaults instantiates a new AcceptOAuth2ConsentRequest 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 (*AcceptOAuth2ConsentRequest) GetGrantAccessTokenAudience ¶

func (o *AcceptOAuth2ConsentRequest) GetGrantAccessTokenAudience() []string

GetGrantAccessTokenAudience returns the GrantAccessTokenAudience field value if set, zero value otherwise.

func (*AcceptOAuth2ConsentRequest) GetGrantAccessTokenAudienceOk ¶

func (o *AcceptOAuth2ConsentRequest) GetGrantAccessTokenAudienceOk() ([]string, bool)

GetGrantAccessTokenAudienceOk returns a tuple with the GrantAccessTokenAudience field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AcceptOAuth2ConsentRequest) GetGrantScope ¶

func (o *AcceptOAuth2ConsentRequest) GetGrantScope() []string

GetGrantScope returns the GrantScope field value if set, zero value otherwise.

func (*AcceptOAuth2ConsentRequest) GetGrantScopeOk ¶

func (o *AcceptOAuth2ConsentRequest) GetGrantScopeOk() ([]string, bool)

GetGrantScopeOk returns a tuple with the GrantScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AcceptOAuth2ConsentRequest) GetHandledAt ¶

func (o *AcceptOAuth2ConsentRequest) GetHandledAt() time.Time

GetHandledAt returns the HandledAt field value if set, zero value otherwise.

func (*AcceptOAuth2ConsentRequest) GetHandledAtOk ¶

func (o *AcceptOAuth2ConsentRequest) GetHandledAtOk() (*time.Time, bool)

GetHandledAtOk returns a tuple with the HandledAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AcceptOAuth2ConsentRequest) GetRemember ¶

func (o *AcceptOAuth2ConsentRequest) GetRemember() bool

GetRemember returns the Remember field value if set, zero value otherwise.

func (*AcceptOAuth2ConsentRequest) GetRememberFor ¶

func (o *AcceptOAuth2ConsentRequest) GetRememberFor() int64

GetRememberFor returns the RememberFor field value if set, zero value otherwise.

func (*AcceptOAuth2ConsentRequest) GetRememberForOk ¶

func (o *AcceptOAuth2ConsentRequest) GetRememberForOk() (*int64, bool)

GetRememberForOk returns a tuple with the RememberFor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AcceptOAuth2ConsentRequest) GetRememberOk ¶

func (o *AcceptOAuth2ConsentRequest) GetRememberOk() (*bool, bool)

GetRememberOk returns a tuple with the Remember field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AcceptOAuth2ConsentRequest) GetSession ¶

GetSession returns the Session field value if set, zero value otherwise.

func (*AcceptOAuth2ConsentRequest) GetSessionOk ¶

GetSessionOk returns a tuple with the Session field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AcceptOAuth2ConsentRequest) HasGrantAccessTokenAudience ¶

func (o *AcceptOAuth2ConsentRequest) HasGrantAccessTokenAudience() bool

HasGrantAccessTokenAudience returns a boolean if a field has been set.

func (*AcceptOAuth2ConsentRequest) HasGrantScope ¶

func (o *AcceptOAuth2ConsentRequest) HasGrantScope() bool

HasGrantScope returns a boolean if a field has been set.

func (*AcceptOAuth2ConsentRequest) HasHandledAt ¶

func (o *AcceptOAuth2ConsentRequest) HasHandledAt() bool

HasHandledAt returns a boolean if a field has been set.

func (*AcceptOAuth2ConsentRequest) HasRemember ¶

func (o *AcceptOAuth2ConsentRequest) HasRemember() bool

HasRemember returns a boolean if a field has been set.

func (*AcceptOAuth2ConsentRequest) HasRememberFor ¶

func (o *AcceptOAuth2ConsentRequest) HasRememberFor() bool

HasRememberFor returns a boolean if a field has been set.

func (*AcceptOAuth2ConsentRequest) HasSession ¶

func (o *AcceptOAuth2ConsentRequest) HasSession() bool

HasSession returns a boolean if a field has been set.

func (AcceptOAuth2ConsentRequest) MarshalJSON ¶

func (o AcceptOAuth2ConsentRequest) MarshalJSON() ([]byte, error)

func (*AcceptOAuth2ConsentRequest) SetGrantAccessTokenAudience ¶

func (o *AcceptOAuth2ConsentRequest) SetGrantAccessTokenAudience(v []string)

SetGrantAccessTokenAudience gets a reference to the given []string and assigns it to the GrantAccessTokenAudience field.

func (*AcceptOAuth2ConsentRequest) SetGrantScope ¶

func (o *AcceptOAuth2ConsentRequest) SetGrantScope(v []string)

SetGrantScope gets a reference to the given []string and assigns it to the GrantScope field.

func (*AcceptOAuth2ConsentRequest) SetHandledAt ¶

func (o *AcceptOAuth2ConsentRequest) SetHandledAt(v time.Time)

SetHandledAt gets a reference to the given time.Time and assigns it to the HandledAt field.

func (*AcceptOAuth2ConsentRequest) SetRemember ¶

func (o *AcceptOAuth2ConsentRequest) SetRemember(v bool)

SetRemember gets a reference to the given bool and assigns it to the Remember field.

func (*AcceptOAuth2ConsentRequest) SetRememberFor ¶

func (o *AcceptOAuth2ConsentRequest) SetRememberFor(v int64)

SetRememberFor gets a reference to the given int64 and assigns it to the RememberFor field.

func (*AcceptOAuth2ConsentRequest) SetSession ¶

SetSession gets a reference to the given AcceptOAuth2ConsentRequestSession and assigns it to the Session field.

func (AcceptOAuth2ConsentRequest) ToMap ¶

func (o AcceptOAuth2ConsentRequest) ToMap() (map[string]interface{}, error)

func (*AcceptOAuth2ConsentRequest) UnmarshalJSON ¶

func (o *AcceptOAuth2ConsentRequest) UnmarshalJSON(bytes []byte) (err error)

type AcceptOAuth2ConsentRequestSession ¶

type AcceptOAuth2ConsentRequestSession struct {
	// AccessToken sets session data for the access and refresh token, as well as any future tokens issued by the refresh grant. Keep in mind that this data will be available to anyone performing OAuth 2.0 Challenge Introspection. If only your services can perform OAuth 2.0 Challenge Introspection, this is usually fine. But if third parties can access that endpoint as well, sensitive data from the session might be exposed to them. Use with care!
	AccessToken interface{} `json:"access_token,omitempty"`
	// IDToken sets session data for the OpenID Connect ID token. Keep in mind that the session'id payloads are readable by anyone that has access to the ID Challenge. Use with care!
	IdToken              interface{} `json:"id_token,omitempty"`
	AdditionalProperties map[string]interface{}
}

AcceptOAuth2ConsentRequestSession struct for AcceptOAuth2ConsentRequestSession

func NewAcceptOAuth2ConsentRequestSession ¶

func NewAcceptOAuth2ConsentRequestSession() *AcceptOAuth2ConsentRequestSession

NewAcceptOAuth2ConsentRequestSession instantiates a new AcceptOAuth2ConsentRequestSession 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 NewAcceptOAuth2ConsentRequestSessionWithDefaults ¶

func NewAcceptOAuth2ConsentRequestSessionWithDefaults() *AcceptOAuth2ConsentRequestSession

NewAcceptOAuth2ConsentRequestSessionWithDefaults instantiates a new AcceptOAuth2ConsentRequestSession 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 (*AcceptOAuth2ConsentRequestSession) GetAccessToken ¶

func (o *AcceptOAuth2ConsentRequestSession) GetAccessToken() interface{}

GetAccessToken returns the AccessToken field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AcceptOAuth2ConsentRequestSession) GetAccessTokenOk ¶

func (o *AcceptOAuth2ConsentRequestSession) GetAccessTokenOk() (*interface{}, bool)

GetAccessTokenOk returns a tuple with the AccessToken field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AcceptOAuth2ConsentRequestSession) GetIdToken ¶

func (o *AcceptOAuth2ConsentRequestSession) GetIdToken() interface{}

GetIdToken returns the IdToken field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AcceptOAuth2ConsentRequestSession) GetIdTokenOk ¶

func (o *AcceptOAuth2ConsentRequestSession) GetIdTokenOk() (*interface{}, bool)

GetIdTokenOk returns a tuple with the IdToken field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AcceptOAuth2ConsentRequestSession) HasAccessToken ¶

func (o *AcceptOAuth2ConsentRequestSession) HasAccessToken() bool

HasAccessToken returns a boolean if a field has been set.

func (*AcceptOAuth2ConsentRequestSession) HasIdToken ¶

func (o *AcceptOAuth2ConsentRequestSession) HasIdToken() bool

HasIdToken returns a boolean if a field has been set.

func (AcceptOAuth2ConsentRequestSession) MarshalJSON ¶

func (o AcceptOAuth2ConsentRequestSession) MarshalJSON() ([]byte, error)

func (*AcceptOAuth2ConsentRequestSession) SetAccessToken ¶

func (o *AcceptOAuth2ConsentRequestSession) SetAccessToken(v interface{})

SetAccessToken gets a reference to the given interface{} and assigns it to the AccessToken field.

func (*AcceptOAuth2ConsentRequestSession) SetIdToken ¶

func (o *AcceptOAuth2ConsentRequestSession) SetIdToken(v interface{})

SetIdToken gets a reference to the given interface{} and assigns it to the IdToken field.

func (AcceptOAuth2ConsentRequestSession) ToMap ¶

func (o AcceptOAuth2ConsentRequestSession) ToMap() (map[string]interface{}, error)

func (*AcceptOAuth2ConsentRequestSession) UnmarshalJSON ¶

func (o *AcceptOAuth2ConsentRequestSession) UnmarshalJSON(bytes []byte) (err error)

type AcceptOAuth2LoginRequest ¶

type AcceptOAuth2LoginRequest struct {
	// ACR sets the Authentication AuthorizationContext Class Reference value for this authentication session. You can use it to express that, for example, a user authenticated using two factor authentication.
	Acr     *string                `json:"acr,omitempty"`
	Amr     []string               `json:"amr,omitempty"`
	Context map[string]interface{} `json:"context,omitempty"`
	// Extend OAuth2 authentication session lifespan  If set to `true`, the OAuth2 authentication cookie lifespan is extended. This is for example useful if you want the user to be able to use `prompt=none` continuously.  This value can only be set to `true` if the user has an authentication, which is the case if the `skip` value is `true`.
	ExtendSessionLifespan *bool `json:"extend_session_lifespan,omitempty"`
	// ForceSubjectIdentifier forces the \"pairwise\" user ID of the end-user that authenticated. The \"pairwise\" user ID refers to the (Pairwise Identifier Algorithm)[http://openid.net/specs/openid-connect-core-1_0.html#PairwiseAlg] of the OpenID Connect specification. It allows you to set an obfuscated subject (\"user\") identifier that is unique to the client.  Please note that this changes the user ID on endpoint /userinfo and sub claim of the ID Token. It does not change the sub claim in the OAuth 2.0 Introspection.  Per default, ORY Hydra handles this value with its own algorithm. In case you want to set this yourself you can use this field. Please note that setting this field has no effect if `pairwise` is not configured in ORY Hydra or the OAuth 2.0 Client does not expect a pairwise identifier (set via `subject_type` key in the client's configuration).  Please also be aware that ORY Hydra is unable to properly compute this value during authentication. This implies that you have to compute this value on every authentication process (probably depending on the client ID or some other unique value).  If you fail to compute the proper value, then authentication processes which have id_token_hint set might fail.
	ForceSubjectIdentifier *string `json:"force_subject_identifier,omitempty"`
	// IdentityProviderSessionID is the session ID of the end-user that authenticated. If specified, we will use this value to propagate the logout.
	IdentityProviderSessionId *string `json:"identity_provider_session_id,omitempty"`
	// Remember, if set to true, tells ORY Hydra to remember this user by telling the user agent (browser) to store a cookie with authentication data. If the same user performs another OAuth 2.0 Authorization Request, he/she will not be asked to log in again.
	Remember *bool `json:"remember,omitempty"`
	// RememberFor sets how long the authentication should be remembered for in seconds. If set to `0`, the authorization will be remembered for the duration of the browser session (using a session cookie).
	RememberFor *int64 `json:"remember_for,omitempty"`
	// Subject is the user ID of the end-user that authenticated.
	Subject              string `json:"subject"`
	AdditionalProperties map[string]interface{}
}

AcceptOAuth2LoginRequest struct for AcceptOAuth2LoginRequest

func NewAcceptOAuth2LoginRequest ¶

func NewAcceptOAuth2LoginRequest(subject string) *AcceptOAuth2LoginRequest

NewAcceptOAuth2LoginRequest instantiates a new AcceptOAuth2LoginRequest 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 NewAcceptOAuth2LoginRequestWithDefaults ¶

func NewAcceptOAuth2LoginRequestWithDefaults() *AcceptOAuth2LoginRequest

NewAcceptOAuth2LoginRequestWithDefaults instantiates a new AcceptOAuth2LoginRequest 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 (*AcceptOAuth2LoginRequest) GetAcr ¶

func (o *AcceptOAuth2LoginRequest) GetAcr() string

GetAcr returns the Acr field value if set, zero value otherwise.

func (*AcceptOAuth2LoginRequest) GetAcrOk ¶

func (o *AcceptOAuth2LoginRequest) GetAcrOk() (*string, bool)

GetAcrOk returns a tuple with the Acr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AcceptOAuth2LoginRequest) GetAmr ¶

func (o *AcceptOAuth2LoginRequest) GetAmr() []string

GetAmr returns the Amr field value if set, zero value otherwise.

func (*AcceptOAuth2LoginRequest) GetAmrOk ¶

func (o *AcceptOAuth2LoginRequest) GetAmrOk() ([]string, bool)

GetAmrOk returns a tuple with the Amr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AcceptOAuth2LoginRequest) GetContext ¶

func (o *AcceptOAuth2LoginRequest) GetContext() map[string]interface{}

GetContext returns the Context field value if set, zero value otherwise.

func (*AcceptOAuth2LoginRequest) GetContextOk ¶

func (o *AcceptOAuth2LoginRequest) GetContextOk() (map[string]interface{}, bool)

GetContextOk returns a tuple with the Context field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AcceptOAuth2LoginRequest) GetExtendSessionLifespan ¶

func (o *AcceptOAuth2LoginRequest) GetExtendSessionLifespan() bool

GetExtendSessionLifespan returns the ExtendSessionLifespan field value if set, zero value otherwise.

func (*AcceptOAuth2LoginRequest) GetExtendSessionLifespanOk ¶

func (o *AcceptOAuth2LoginRequest) GetExtendSessionLifespanOk() (*bool, bool)

GetExtendSessionLifespanOk returns a tuple with the ExtendSessionLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AcceptOAuth2LoginRequest) GetForceSubjectIdentifier ¶

func (o *AcceptOAuth2LoginRequest) GetForceSubjectIdentifier() string

GetForceSubjectIdentifier returns the ForceSubjectIdentifier field value if set, zero value otherwise.

func (*AcceptOAuth2LoginRequest) GetForceSubjectIdentifierOk ¶

func (o *AcceptOAuth2LoginRequest) GetForceSubjectIdentifierOk() (*string, bool)

GetForceSubjectIdentifierOk returns a tuple with the ForceSubjectIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AcceptOAuth2LoginRequest) GetIdentityProviderSessionId ¶

func (o *AcceptOAuth2LoginRequest) GetIdentityProviderSessionId() string

GetIdentityProviderSessionId returns the IdentityProviderSessionId field value if set, zero value otherwise.

func (*AcceptOAuth2LoginRequest) GetIdentityProviderSessionIdOk ¶

func (o *AcceptOAuth2LoginRequest) GetIdentityProviderSessionIdOk() (*string, bool)

GetIdentityProviderSessionIdOk returns a tuple with the IdentityProviderSessionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AcceptOAuth2LoginRequest) GetRemember ¶

func (o *AcceptOAuth2LoginRequest) GetRemember() bool

GetRemember returns the Remember field value if set, zero value otherwise.

func (*AcceptOAuth2LoginRequest) GetRememberFor ¶

func (o *AcceptOAuth2LoginRequest) GetRememberFor() int64

GetRememberFor returns the RememberFor field value if set, zero value otherwise.

func (*AcceptOAuth2LoginRequest) GetRememberForOk ¶

func (o *AcceptOAuth2LoginRequest) GetRememberForOk() (*int64, bool)

GetRememberForOk returns a tuple with the RememberFor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AcceptOAuth2LoginRequest) GetRememberOk ¶

func (o *AcceptOAuth2LoginRequest) GetRememberOk() (*bool, bool)

GetRememberOk returns a tuple with the Remember field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AcceptOAuth2LoginRequest) GetSubject ¶

func (o *AcceptOAuth2LoginRequest) GetSubject() string

GetSubject returns the Subject field value

func (*AcceptOAuth2LoginRequest) GetSubjectOk ¶

func (o *AcceptOAuth2LoginRequest) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*AcceptOAuth2LoginRequest) HasAcr ¶

func (o *AcceptOAuth2LoginRequest) HasAcr() bool

HasAcr returns a boolean if a field has been set.

func (*AcceptOAuth2LoginRequest) HasAmr ¶

func (o *AcceptOAuth2LoginRequest) HasAmr() bool

HasAmr returns a boolean if a field has been set.

func (*AcceptOAuth2LoginRequest) HasContext ¶

func (o *AcceptOAuth2LoginRequest) HasContext() bool

HasContext returns a boolean if a field has been set.

func (*AcceptOAuth2LoginRequest) HasExtendSessionLifespan ¶

func (o *AcceptOAuth2LoginRequest) HasExtendSessionLifespan() bool

HasExtendSessionLifespan returns a boolean if a field has been set.

func (*AcceptOAuth2LoginRequest) HasForceSubjectIdentifier ¶

func (o *AcceptOAuth2LoginRequest) HasForceSubjectIdentifier() bool

HasForceSubjectIdentifier returns a boolean if a field has been set.

func (*AcceptOAuth2LoginRequest) HasIdentityProviderSessionId ¶

func (o *AcceptOAuth2LoginRequest) HasIdentityProviderSessionId() bool

HasIdentityProviderSessionId returns a boolean if a field has been set.

func (*AcceptOAuth2LoginRequest) HasRemember ¶

func (o *AcceptOAuth2LoginRequest) HasRemember() bool

HasRemember returns a boolean if a field has been set.

func (*AcceptOAuth2LoginRequest) HasRememberFor ¶

func (o *AcceptOAuth2LoginRequest) HasRememberFor() bool

HasRememberFor returns a boolean if a field has been set.

func (AcceptOAuth2LoginRequest) MarshalJSON ¶

func (o AcceptOAuth2LoginRequest) MarshalJSON() ([]byte, error)

func (*AcceptOAuth2LoginRequest) SetAcr ¶

func (o *AcceptOAuth2LoginRequest) SetAcr(v string)

SetAcr gets a reference to the given string and assigns it to the Acr field.

func (*AcceptOAuth2LoginRequest) SetAmr ¶

func (o *AcceptOAuth2LoginRequest) SetAmr(v []string)

SetAmr gets a reference to the given []string and assigns it to the Amr field.

func (*AcceptOAuth2LoginRequest) SetContext ¶

func (o *AcceptOAuth2LoginRequest) SetContext(v map[string]interface{})

SetContext gets a reference to the given map[string]interface{} and assigns it to the Context field.

func (*AcceptOAuth2LoginRequest) SetExtendSessionLifespan ¶

func (o *AcceptOAuth2LoginRequest) SetExtendSessionLifespan(v bool)

SetExtendSessionLifespan gets a reference to the given bool and assigns it to the ExtendSessionLifespan field.

func (*AcceptOAuth2LoginRequest) SetForceSubjectIdentifier ¶

func (o *AcceptOAuth2LoginRequest) SetForceSubjectIdentifier(v string)

SetForceSubjectIdentifier gets a reference to the given string and assigns it to the ForceSubjectIdentifier field.

func (*AcceptOAuth2LoginRequest) SetIdentityProviderSessionId ¶

func (o *AcceptOAuth2LoginRequest) SetIdentityProviderSessionId(v string)

SetIdentityProviderSessionId gets a reference to the given string and assigns it to the IdentityProviderSessionId field.

func (*AcceptOAuth2LoginRequest) SetRemember ¶

func (o *AcceptOAuth2LoginRequest) SetRemember(v bool)

SetRemember gets a reference to the given bool and assigns it to the Remember field.

func (*AcceptOAuth2LoginRequest) SetRememberFor ¶

func (o *AcceptOAuth2LoginRequest) SetRememberFor(v int64)

SetRememberFor gets a reference to the given int64 and assigns it to the RememberFor field.

func (*AcceptOAuth2LoginRequest) SetSubject ¶

func (o *AcceptOAuth2LoginRequest) SetSubject(v string)

SetSubject sets field value

func (AcceptOAuth2LoginRequest) ToMap ¶

func (o AcceptOAuth2LoginRequest) ToMap() (map[string]interface{}, error)

func (*AcceptOAuth2LoginRequest) UnmarshalJSON ¶

func (o *AcceptOAuth2LoginRequest) UnmarshalJSON(bytes []byte) (err error)

type ActiveProjectInConsole ¶

type ActiveProjectInConsole struct {
	// The Active Project ID  format: uuid
	ProjectId            *string `json:"project_id,omitempty"`
	AdditionalProperties map[string]interface{}
}

ActiveProjectInConsole The Active Project ID

func NewActiveProjectInConsole ¶

func NewActiveProjectInConsole() *ActiveProjectInConsole

NewActiveProjectInConsole instantiates a new ActiveProjectInConsole 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 NewActiveProjectInConsoleWithDefaults ¶

func NewActiveProjectInConsoleWithDefaults() *ActiveProjectInConsole

NewActiveProjectInConsoleWithDefaults instantiates a new ActiveProjectInConsole 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 (*ActiveProjectInConsole) GetProjectId ¶

func (o *ActiveProjectInConsole) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*ActiveProjectInConsole) GetProjectIdOk ¶

func (o *ActiveProjectInConsole) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ActiveProjectInConsole) HasProjectId ¶

func (o *ActiveProjectInConsole) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (ActiveProjectInConsole) MarshalJSON ¶

func (o ActiveProjectInConsole) MarshalJSON() ([]byte, error)

func (*ActiveProjectInConsole) SetProjectId ¶

func (o *ActiveProjectInConsole) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (ActiveProjectInConsole) ToMap ¶

func (o ActiveProjectInConsole) ToMap() (map[string]interface{}, error)

func (*ActiveProjectInConsole) UnmarshalJSON ¶

func (o *ActiveProjectInConsole) UnmarshalJSON(bytes []byte) (err error)

type Attribute ¶

type Attribute struct {
	Key                  *string `json:"key,omitempty"`
	Value                *string `json:"value,omitempty"`
	AdditionalProperties map[string]interface{}
}

Attribute struct for Attribute

func NewAttribute ¶

func NewAttribute() *Attribute

NewAttribute instantiates a new Attribute 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 NewAttributeWithDefaults ¶

func NewAttributeWithDefaults() *Attribute

NewAttributeWithDefaults instantiates a new Attribute 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 (*Attribute) GetKey ¶

func (o *Attribute) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*Attribute) GetKeyOk ¶

func (o *Attribute) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Attribute) GetValue ¶

func (o *Attribute) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*Attribute) GetValueOk ¶

func (o *Attribute) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Attribute) HasKey ¶

func (o *Attribute) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*Attribute) HasValue ¶

func (o *Attribute) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Attribute) MarshalJSON ¶

func (o Attribute) MarshalJSON() ([]byte, error)

func (*Attribute) SetKey ¶

func (o *Attribute) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*Attribute) SetValue ¶

func (o *Attribute) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (Attribute) ToMap ¶

func (o Attribute) ToMap() (map[string]interface{}, error)

func (*Attribute) UnmarshalJSON ¶

func (o *Attribute) UnmarshalJSON(bytes []byte) (err error)

type AttributeFilter ¶

type AttributeFilter struct {
	Attribute            *string `json:"attribute,omitempty"`
	Condition            *string `json:"condition,omitempty"`
	Value                *string `json:"value,omitempty"`
	AdditionalProperties map[string]interface{}
}

AttributeFilter struct for AttributeFilter

func NewAttributeFilter ¶

func NewAttributeFilter() *AttributeFilter

NewAttributeFilter instantiates a new AttributeFilter 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 NewAttributeFilterWithDefaults ¶

func NewAttributeFilterWithDefaults() *AttributeFilter

NewAttributeFilterWithDefaults instantiates a new AttributeFilter 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 (*AttributeFilter) GetAttribute ¶

func (o *AttributeFilter) GetAttribute() string

GetAttribute returns the Attribute field value if set, zero value otherwise.

func (*AttributeFilter) GetAttributeOk ¶

func (o *AttributeFilter) GetAttributeOk() (*string, bool)

GetAttributeOk returns a tuple with the Attribute field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AttributeFilter) GetCondition ¶

func (o *AttributeFilter) GetCondition() string

GetCondition returns the Condition field value if set, zero value otherwise.

func (*AttributeFilter) GetConditionOk ¶

func (o *AttributeFilter) GetConditionOk() (*string, bool)

GetConditionOk returns a tuple with the Condition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AttributeFilter) GetValue ¶

func (o *AttributeFilter) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*AttributeFilter) GetValueOk ¶

func (o *AttributeFilter) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AttributeFilter) HasAttribute ¶

func (o *AttributeFilter) HasAttribute() bool

HasAttribute returns a boolean if a field has been set.

func (*AttributeFilter) HasCondition ¶

func (o *AttributeFilter) HasCondition() bool

HasCondition returns a boolean if a field has been set.

func (*AttributeFilter) HasValue ¶

func (o *AttributeFilter) HasValue() bool

HasValue returns a boolean if a field has been set.

func (AttributeFilter) MarshalJSON ¶

func (o AttributeFilter) MarshalJSON() ([]byte, error)

func (*AttributeFilter) SetAttribute ¶

func (o *AttributeFilter) SetAttribute(v string)

SetAttribute gets a reference to the given string and assigns it to the Attribute field.

func (*AttributeFilter) SetCondition ¶

func (o *AttributeFilter) SetCondition(v string)

SetCondition gets a reference to the given string and assigns it to the Condition field.

func (*AttributeFilter) SetValue ¶

func (o *AttributeFilter) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (AttributeFilter) ToMap ¶

func (o AttributeFilter) ToMap() (map[string]interface{}, error)

func (*AttributeFilter) UnmarshalJSON ¶

func (o *AttributeFilter) UnmarshalJSON(bytes []byte) (err error)

type AttributesCountDatapoint ¶

type AttributesCountDatapoint struct {
	// Count of the attribute value for given key
	Count int64 `json:"count"`
	// Name of the attribute value for given key
	Name                 string `json:"name"`
	AdditionalProperties map[string]interface{}
}

AttributesCountDatapoint struct for AttributesCountDatapoint

func NewAttributesCountDatapoint ¶

func NewAttributesCountDatapoint(count int64, name string) *AttributesCountDatapoint

NewAttributesCountDatapoint instantiates a new AttributesCountDatapoint 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 NewAttributesCountDatapointWithDefaults ¶

func NewAttributesCountDatapointWithDefaults() *AttributesCountDatapoint

NewAttributesCountDatapointWithDefaults instantiates a new AttributesCountDatapoint 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 (*AttributesCountDatapoint) GetCount ¶

func (o *AttributesCountDatapoint) GetCount() int64

GetCount returns the Count field value

func (*AttributesCountDatapoint) GetCountOk ¶

func (o *AttributesCountDatapoint) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value and a boolean to check if the value has been set.

func (*AttributesCountDatapoint) GetName ¶

func (o *AttributesCountDatapoint) GetName() string

GetName returns the Name field value

func (*AttributesCountDatapoint) GetNameOk ¶

func (o *AttributesCountDatapoint) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (AttributesCountDatapoint) MarshalJSON ¶

func (o AttributesCountDatapoint) MarshalJSON() ([]byte, error)

func (*AttributesCountDatapoint) SetCount ¶

func (o *AttributesCountDatapoint) SetCount(v int64)

SetCount sets field value

func (*AttributesCountDatapoint) SetName ¶

func (o *AttributesCountDatapoint) SetName(v string)

SetName sets field value

func (AttributesCountDatapoint) ToMap ¶

func (o AttributesCountDatapoint) ToMap() (map[string]interface{}, error)

func (*AttributesCountDatapoint) UnmarshalJSON ¶

func (o *AttributesCountDatapoint) UnmarshalJSON(bytes []byte) (err error)

type AuthenticatorAssuranceLevel ¶

type AuthenticatorAssuranceLevel string

AuthenticatorAssuranceLevel The authenticator assurance level can be one of \"aal1\", \"aal2\", or \"aal3\". A higher number means that it is harder for an attacker to compromise the account. Generally, \"aal1\" implies that one authentication factor was used while AAL2 implies that two factors (e.g. password + TOTP) have been used. To learn more about these levels please head over to: https://www.ory.sh/kratos/docs/concepts/credentials

const (
	AUTHENTICATORASSURANCELEVEL_AAL0 AuthenticatorAssuranceLevel = "aal0"
	AUTHENTICATORASSURANCELEVEL_AAL1 AuthenticatorAssuranceLevel = "aal1"
	AUTHENTICATORASSURANCELEVEL_AAL2 AuthenticatorAssuranceLevel = "aal2"
	AUTHENTICATORASSURANCELEVEL_AAL3 AuthenticatorAssuranceLevel = "aal3"
)

List of authenticatorAssuranceLevel

func NewAuthenticatorAssuranceLevelFromValue ¶

func NewAuthenticatorAssuranceLevelFromValue(v string) (*AuthenticatorAssuranceLevel, error)

NewAuthenticatorAssuranceLevelFromValue returns a pointer to a valid AuthenticatorAssuranceLevel for the value passed as argument, or an error if the value passed is not allowed by the enum

func (AuthenticatorAssuranceLevel) IsValid ¶

func (v AuthenticatorAssuranceLevel) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (AuthenticatorAssuranceLevel) Ptr ¶

Ptr returns reference to authenticatorAssuranceLevel value

func (*AuthenticatorAssuranceLevel) UnmarshalJSON ¶

func (v *AuthenticatorAssuranceLevel) UnmarshalJSON(src []byte) error

type BasicAuth ¶

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type BatchPatchIdentitiesResponse ¶

type BatchPatchIdentitiesResponse struct {
	// The patch responses for the individual identities.
	Identities           []IdentityPatchResponse `json:"identities,omitempty"`
	AdditionalProperties map[string]interface{}
}

BatchPatchIdentitiesResponse Patch identities response

func NewBatchPatchIdentitiesResponse ¶

func NewBatchPatchIdentitiesResponse() *BatchPatchIdentitiesResponse

NewBatchPatchIdentitiesResponse instantiates a new BatchPatchIdentitiesResponse 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 NewBatchPatchIdentitiesResponseWithDefaults ¶

func NewBatchPatchIdentitiesResponseWithDefaults() *BatchPatchIdentitiesResponse

NewBatchPatchIdentitiesResponseWithDefaults instantiates a new BatchPatchIdentitiesResponse 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 (*BatchPatchIdentitiesResponse) GetIdentities ¶

GetIdentities returns the Identities field value if set, zero value otherwise.

func (*BatchPatchIdentitiesResponse) GetIdentitiesOk ¶

func (o *BatchPatchIdentitiesResponse) GetIdentitiesOk() ([]IdentityPatchResponse, bool)

GetIdentitiesOk returns a tuple with the Identities field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BatchPatchIdentitiesResponse) HasIdentities ¶

func (o *BatchPatchIdentitiesResponse) HasIdentities() bool

HasIdentities returns a boolean if a field has been set.

func (BatchPatchIdentitiesResponse) MarshalJSON ¶

func (o BatchPatchIdentitiesResponse) MarshalJSON() ([]byte, error)

func (*BatchPatchIdentitiesResponse) SetIdentities ¶

SetIdentities gets a reference to the given []IdentityPatchResponse and assigns it to the Identities field.

func (BatchPatchIdentitiesResponse) ToMap ¶

func (o BatchPatchIdentitiesResponse) ToMap() (map[string]interface{}, error)

func (*BatchPatchIdentitiesResponse) UnmarshalJSON ¶

func (o *BatchPatchIdentitiesResponse) UnmarshalJSON(bytes []byte) (err error)

type CheckOplSyntaxResult ¶

type CheckOplSyntaxResult struct {
	// The list of syntax errors
	Errors               []ParseError `json:"errors,omitempty"`
	AdditionalProperties map[string]interface{}
}

CheckOplSyntaxResult struct for CheckOplSyntaxResult

func NewCheckOplSyntaxResult ¶

func NewCheckOplSyntaxResult() *CheckOplSyntaxResult

NewCheckOplSyntaxResult instantiates a new CheckOplSyntaxResult 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 NewCheckOplSyntaxResultWithDefaults ¶

func NewCheckOplSyntaxResultWithDefaults() *CheckOplSyntaxResult

NewCheckOplSyntaxResultWithDefaults instantiates a new CheckOplSyntaxResult 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 (*CheckOplSyntaxResult) GetErrors ¶

func (o *CheckOplSyntaxResult) GetErrors() []ParseError

GetErrors returns the Errors field value if set, zero value otherwise.

func (*CheckOplSyntaxResult) GetErrorsOk ¶

func (o *CheckOplSyntaxResult) GetErrorsOk() ([]ParseError, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckOplSyntaxResult) HasErrors ¶

func (o *CheckOplSyntaxResult) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (CheckOplSyntaxResult) MarshalJSON ¶

func (o CheckOplSyntaxResult) MarshalJSON() ([]byte, error)

func (*CheckOplSyntaxResult) SetErrors ¶

func (o *CheckOplSyntaxResult) SetErrors(v []ParseError)

SetErrors gets a reference to the given []ParseError and assigns it to the Errors field.

func (CheckOplSyntaxResult) ToMap ¶

func (o CheckOplSyntaxResult) ToMap() (map[string]interface{}, error)

func (*CheckOplSyntaxResult) UnmarshalJSON ¶

func (o *CheckOplSyntaxResult) UnmarshalJSON(bytes []byte) (err error)

type CheckPermissionResult ¶

type CheckPermissionResult struct {
	// whether the relation tuple is allowed
	Allowed              bool `json:"allowed"`
	AdditionalProperties map[string]interface{}
}

CheckPermissionResult The content of the allowed field is mirrored in the HTTP status code.

func NewCheckPermissionResult ¶

func NewCheckPermissionResult(allowed bool) *CheckPermissionResult

NewCheckPermissionResult instantiates a new CheckPermissionResult 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 NewCheckPermissionResultWithDefaults ¶

func NewCheckPermissionResultWithDefaults() *CheckPermissionResult

NewCheckPermissionResultWithDefaults instantiates a new CheckPermissionResult 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 (*CheckPermissionResult) GetAllowed ¶

func (o *CheckPermissionResult) GetAllowed() bool

GetAllowed returns the Allowed field value

func (*CheckPermissionResult) GetAllowedOk ¶

func (o *CheckPermissionResult) GetAllowedOk() (*bool, bool)

GetAllowedOk returns a tuple with the Allowed field value and a boolean to check if the value has been set.

func (CheckPermissionResult) MarshalJSON ¶

func (o CheckPermissionResult) MarshalJSON() ([]byte, error)

func (*CheckPermissionResult) SetAllowed ¶

func (o *CheckPermissionResult) SetAllowed(v bool)

SetAllowed sets field value

func (CheckPermissionResult) ToMap ¶

func (o CheckPermissionResult) ToMap() (map[string]interface{}, error)

func (*CheckPermissionResult) UnmarshalJSON ¶

func (o *CheckPermissionResult) UnmarshalJSON(bytes []byte) (err error)

type CloudAccount ¶

type CloudAccount struct {
	Email                *string `json:"email,omitempty"`
	Id                   *string `json:"id,omitempty"`
	Name                 *string `json:"name,omitempty"`
	AdditionalProperties map[string]interface{}
}

CloudAccount struct for CloudAccount

func NewCloudAccount ¶

func NewCloudAccount() *CloudAccount

NewCloudAccount instantiates a new CloudAccount 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 NewCloudAccountWithDefaults ¶

func NewCloudAccountWithDefaults() *CloudAccount

NewCloudAccountWithDefaults instantiates a new CloudAccount 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 (*CloudAccount) GetEmail ¶

func (o *CloudAccount) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*CloudAccount) GetEmailOk ¶

func (o *CloudAccount) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CloudAccount) GetId ¶

func (o *CloudAccount) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*CloudAccount) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CloudAccount) GetName ¶

func (o *CloudAccount) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*CloudAccount) GetNameOk ¶

func (o *CloudAccount) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CloudAccount) HasEmail ¶

func (o *CloudAccount) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*CloudAccount) HasId ¶

func (o *CloudAccount) HasId() bool

HasId returns a boolean if a field has been set.

func (*CloudAccount) HasName ¶

func (o *CloudAccount) HasName() bool

HasName returns a boolean if a field has been set.

func (CloudAccount) MarshalJSON ¶

func (o CloudAccount) MarshalJSON() ([]byte, error)

func (*CloudAccount) SetEmail ¶

func (o *CloudAccount) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*CloudAccount) SetId ¶

func (o *CloudAccount) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CloudAccount) SetName ¶

func (o *CloudAccount) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (CloudAccount) ToMap ¶

func (o CloudAccount) ToMap() (map[string]interface{}, error)

func (*CloudAccount) UnmarshalJSON ¶

func (o *CloudAccount) UnmarshalJSON(bytes []byte) (err error)

type Configuration ¶

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration ¶

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader ¶

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL ¶

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext ¶

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type ConsistencyRequestParameters ¶

type ConsistencyRequestParameters struct {
	// Read Consistency Level (preview)  The read consistency level determines the consistency guarantee for reads:  strong (slow): The read is guaranteed to return the most recent data committed at the start of the read. eventual (very fast): The result will return data that is about 4.8 seconds old.  The default consistency guarantee can be changed in the Ory Network Console or using the Ory CLI with `ory patch project --replace '/previews/default_read_consistency_level=\"strong\"'`.  Setting the default consistency level to `eventual` may cause regressions in the future as we add consistency controls to more APIs. Currently, the following APIs will be affected by this setting:  `GET /admin/identities`  This feature is in preview and only available in Ory Network.  ConsistencyLevelUnset  ConsistencyLevelUnset is the unset / default consistency level. strong ConsistencyLevelStrong  ConsistencyLevelStrong is the strong consistency level. eventual ConsistencyLevelEventual  ConsistencyLevelEventual is the eventual consistency level using follower read timestamps.
	Consistency          *string `json:"consistency,omitempty"`
	AdditionalProperties map[string]interface{}
}

ConsistencyRequestParameters Control API consistency guarantees

func NewConsistencyRequestParameters ¶

func NewConsistencyRequestParameters() *ConsistencyRequestParameters

NewConsistencyRequestParameters instantiates a new ConsistencyRequestParameters 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 NewConsistencyRequestParametersWithDefaults ¶

func NewConsistencyRequestParametersWithDefaults() *ConsistencyRequestParameters

NewConsistencyRequestParametersWithDefaults instantiates a new ConsistencyRequestParameters 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 (*ConsistencyRequestParameters) GetConsistency ¶

func (o *ConsistencyRequestParameters) GetConsistency() string

GetConsistency returns the Consistency field value if set, zero value otherwise.

func (*ConsistencyRequestParameters) GetConsistencyOk ¶

func (o *ConsistencyRequestParameters) GetConsistencyOk() (*string, bool)

GetConsistencyOk returns a tuple with the Consistency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConsistencyRequestParameters) HasConsistency ¶

func (o *ConsistencyRequestParameters) HasConsistency() bool

HasConsistency returns a boolean if a field has been set.

func (ConsistencyRequestParameters) MarshalJSON ¶

func (o ConsistencyRequestParameters) MarshalJSON() ([]byte, error)

func (*ConsistencyRequestParameters) SetConsistency ¶

func (o *ConsistencyRequestParameters) SetConsistency(v string)

SetConsistency gets a reference to the given string and assigns it to the Consistency field.

func (ConsistencyRequestParameters) ToMap ¶

func (o ConsistencyRequestParameters) ToMap() (map[string]interface{}, error)

func (*ConsistencyRequestParameters) UnmarshalJSON ¶

func (o *ConsistencyRequestParameters) UnmarshalJSON(bytes []byte) (err error)

type ContinueWith ¶

type ContinueWith struct {
	ContinueWithRecoveryUi         *ContinueWithRecoveryUi
	ContinueWithSetOrySessionToken *ContinueWithSetOrySessionToken
	ContinueWithSettingsUi         *ContinueWithSettingsUi
	ContinueWithVerificationUi     *ContinueWithVerificationUi
}

ContinueWith - struct for ContinueWith

func ContinueWithRecoveryUiAsContinueWith ¶

func ContinueWithRecoveryUiAsContinueWith(v *ContinueWithRecoveryUi) ContinueWith

ContinueWithRecoveryUiAsContinueWith is a convenience function that returns ContinueWithRecoveryUi wrapped in ContinueWith

func ContinueWithSetOrySessionTokenAsContinueWith ¶

func ContinueWithSetOrySessionTokenAsContinueWith(v *ContinueWithSetOrySessionToken) ContinueWith

ContinueWithSetOrySessionTokenAsContinueWith is a convenience function that returns ContinueWithSetOrySessionToken wrapped in ContinueWith

func ContinueWithSettingsUiAsContinueWith ¶

func ContinueWithSettingsUiAsContinueWith(v *ContinueWithSettingsUi) ContinueWith

ContinueWithSettingsUiAsContinueWith is a convenience function that returns ContinueWithSettingsUi wrapped in ContinueWith

func ContinueWithVerificationUiAsContinueWith ¶

func ContinueWithVerificationUiAsContinueWith(v *ContinueWithVerificationUi) ContinueWith

ContinueWithVerificationUiAsContinueWith is a convenience function that returns ContinueWithVerificationUi wrapped in ContinueWith

func (*ContinueWith) GetActualInstance ¶

func (obj *ContinueWith) GetActualInstance() interface{}

Get the actual instance

func (ContinueWith) MarshalJSON ¶

func (src ContinueWith) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ContinueWith) UnmarshalJSON ¶

func (dst *ContinueWith) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ContinueWithRecoveryUi ¶

type ContinueWithRecoveryUi struct {
	// Action will always be `show_recovery_ui` show_recovery_ui ContinueWithActionShowRecoveryUIString
	Action               string                     `json:"action"`
	Flow                 ContinueWithRecoveryUiFlow `json:"flow"`
	AdditionalProperties map[string]interface{}
}

ContinueWithRecoveryUi Indicates, that the UI flow could be continued by showing a recovery ui

func NewContinueWithRecoveryUi ¶

func NewContinueWithRecoveryUi(action string, flow ContinueWithRecoveryUiFlow) *ContinueWithRecoveryUi

NewContinueWithRecoveryUi instantiates a new ContinueWithRecoveryUi 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 NewContinueWithRecoveryUiWithDefaults ¶

func NewContinueWithRecoveryUiWithDefaults() *ContinueWithRecoveryUi

NewContinueWithRecoveryUiWithDefaults instantiates a new ContinueWithRecoveryUi 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 (*ContinueWithRecoveryUi) GetAction ¶

func (o *ContinueWithRecoveryUi) GetAction() string

GetAction returns the Action field value

func (*ContinueWithRecoveryUi) GetActionOk ¶

func (o *ContinueWithRecoveryUi) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value and a boolean to check if the value has been set.

func (*ContinueWithRecoveryUi) GetFlow ¶

GetFlow returns the Flow field value

func (*ContinueWithRecoveryUi) GetFlowOk ¶

GetFlowOk returns a tuple with the Flow field value and a boolean to check if the value has been set.

func (ContinueWithRecoveryUi) MarshalJSON ¶

func (o ContinueWithRecoveryUi) MarshalJSON() ([]byte, error)

func (*ContinueWithRecoveryUi) SetAction ¶

func (o *ContinueWithRecoveryUi) SetAction(v string)

SetAction sets field value

func (*ContinueWithRecoveryUi) SetFlow ¶

SetFlow sets field value

func (ContinueWithRecoveryUi) ToMap ¶

func (o ContinueWithRecoveryUi) ToMap() (map[string]interface{}, error)

func (*ContinueWithRecoveryUi) UnmarshalJSON ¶

func (o *ContinueWithRecoveryUi) UnmarshalJSON(bytes []byte) (err error)

type ContinueWithRecoveryUiFlow ¶

type ContinueWithRecoveryUiFlow struct {
	// The ID of the recovery flow
	Id string `json:"id"`
	// The URL of the recovery flow
	Url                  *string `json:"url,omitempty"`
	AdditionalProperties map[string]interface{}
}

ContinueWithRecoveryUiFlow struct for ContinueWithRecoveryUiFlow

func NewContinueWithRecoveryUiFlow ¶

func NewContinueWithRecoveryUiFlow(id string) *ContinueWithRecoveryUiFlow

NewContinueWithRecoveryUiFlow instantiates a new ContinueWithRecoveryUiFlow 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 NewContinueWithRecoveryUiFlowWithDefaults ¶

func NewContinueWithRecoveryUiFlowWithDefaults() *ContinueWithRecoveryUiFlow

NewContinueWithRecoveryUiFlowWithDefaults instantiates a new ContinueWithRecoveryUiFlow 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 (*ContinueWithRecoveryUiFlow) GetId ¶

GetId returns the Id field value

func (*ContinueWithRecoveryUiFlow) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ContinueWithRecoveryUiFlow) GetUrl ¶

func (o *ContinueWithRecoveryUiFlow) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*ContinueWithRecoveryUiFlow) GetUrlOk ¶

func (o *ContinueWithRecoveryUiFlow) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContinueWithRecoveryUiFlow) HasUrl ¶

func (o *ContinueWithRecoveryUiFlow) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (ContinueWithRecoveryUiFlow) MarshalJSON ¶

func (o ContinueWithRecoveryUiFlow) MarshalJSON() ([]byte, error)

func (*ContinueWithRecoveryUiFlow) SetId ¶

func (o *ContinueWithRecoveryUiFlow) SetId(v string)

SetId sets field value

func (*ContinueWithRecoveryUiFlow) SetUrl ¶

func (o *ContinueWithRecoveryUiFlow) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (ContinueWithRecoveryUiFlow) ToMap ¶

func (o ContinueWithRecoveryUiFlow) ToMap() (map[string]interface{}, error)

func (*ContinueWithRecoveryUiFlow) UnmarshalJSON ¶

func (o *ContinueWithRecoveryUiFlow) UnmarshalJSON(bytes []byte) (err error)

type ContinueWithSetOrySessionToken ¶

type ContinueWithSetOrySessionToken struct {
	// Action will always be `set_ory_session_token` set_ory_session_token ContinueWithActionSetOrySessionTokenString
	Action string `json:"action"`
	// Token is the token of the session
	OrySessionToken      string `json:"ory_session_token"`
	AdditionalProperties map[string]interface{}
}

ContinueWithSetOrySessionToken Indicates that a session was issued, and the application should use this token for authenticated requests

func NewContinueWithSetOrySessionToken ¶

func NewContinueWithSetOrySessionToken(action string, orySessionToken string) *ContinueWithSetOrySessionToken

NewContinueWithSetOrySessionToken instantiates a new ContinueWithSetOrySessionToken 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 NewContinueWithSetOrySessionTokenWithDefaults ¶

func NewContinueWithSetOrySessionTokenWithDefaults() *ContinueWithSetOrySessionToken

NewContinueWithSetOrySessionTokenWithDefaults instantiates a new ContinueWithSetOrySessionToken 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 (*ContinueWithSetOrySessionToken) GetAction ¶

func (o *ContinueWithSetOrySessionToken) GetAction() string

GetAction returns the Action field value

func (*ContinueWithSetOrySessionToken) GetActionOk ¶

func (o *ContinueWithSetOrySessionToken) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value and a boolean to check if the value has been set.

func (*ContinueWithSetOrySessionToken) GetOrySessionToken ¶

func (o *ContinueWithSetOrySessionToken) GetOrySessionToken() string

GetOrySessionToken returns the OrySessionToken field value

func (*ContinueWithSetOrySessionToken) GetOrySessionTokenOk ¶

func (o *ContinueWithSetOrySessionToken) GetOrySessionTokenOk() (*string, bool)

GetOrySessionTokenOk returns a tuple with the OrySessionToken field value and a boolean to check if the value has been set.

func (ContinueWithSetOrySessionToken) MarshalJSON ¶

func (o ContinueWithSetOrySessionToken) MarshalJSON() ([]byte, error)

func (*ContinueWithSetOrySessionToken) SetAction ¶

func (o *ContinueWithSetOrySessionToken) SetAction(v string)

SetAction sets field value

func (*ContinueWithSetOrySessionToken) SetOrySessionToken ¶

func (o *ContinueWithSetOrySessionToken) SetOrySessionToken(v string)

SetOrySessionToken sets field value

func (ContinueWithSetOrySessionToken) ToMap ¶

func (o ContinueWithSetOrySessionToken) ToMap() (map[string]interface{}, error)

func (*ContinueWithSetOrySessionToken) UnmarshalJSON ¶

func (o *ContinueWithSetOrySessionToken) UnmarshalJSON(bytes []byte) (err error)

type ContinueWithSettingsUi ¶

type ContinueWithSettingsUi struct {
	// Action will always be `show_settings_ui` show_settings_ui ContinueWithActionShowSettingsUIString
	Action               string                     `json:"action"`
	Flow                 ContinueWithSettingsUiFlow `json:"flow"`
	AdditionalProperties map[string]interface{}
}

ContinueWithSettingsUi Indicates, that the UI flow could be continued by showing a settings ui

func NewContinueWithSettingsUi ¶

func NewContinueWithSettingsUi(action string, flow ContinueWithSettingsUiFlow) *ContinueWithSettingsUi

NewContinueWithSettingsUi instantiates a new ContinueWithSettingsUi 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 NewContinueWithSettingsUiWithDefaults ¶

func NewContinueWithSettingsUiWithDefaults() *ContinueWithSettingsUi

NewContinueWithSettingsUiWithDefaults instantiates a new ContinueWithSettingsUi 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 (*ContinueWithSettingsUi) GetAction ¶

func (o *ContinueWithSettingsUi) GetAction() string

GetAction returns the Action field value

func (*ContinueWithSettingsUi) GetActionOk ¶

func (o *ContinueWithSettingsUi) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value and a boolean to check if the value has been set.

func (*ContinueWithSettingsUi) GetFlow ¶

GetFlow returns the Flow field value

func (*ContinueWithSettingsUi) GetFlowOk ¶

GetFlowOk returns a tuple with the Flow field value and a boolean to check if the value has been set.

func (ContinueWithSettingsUi) MarshalJSON ¶

func (o ContinueWithSettingsUi) MarshalJSON() ([]byte, error)

func (*ContinueWithSettingsUi) SetAction ¶

func (o *ContinueWithSettingsUi) SetAction(v string)

SetAction sets field value

func (*ContinueWithSettingsUi) SetFlow ¶

SetFlow sets field value

func (ContinueWithSettingsUi) ToMap ¶

func (o ContinueWithSettingsUi) ToMap() (map[string]interface{}, error)

func (*ContinueWithSettingsUi) UnmarshalJSON ¶

func (o *ContinueWithSettingsUi) UnmarshalJSON(bytes []byte) (err error)

type ContinueWithSettingsUiFlow ¶

type ContinueWithSettingsUiFlow struct {
	// The ID of the settings flow
	Id                   string `json:"id"`
	AdditionalProperties map[string]interface{}
}

ContinueWithSettingsUiFlow struct for ContinueWithSettingsUiFlow

func NewContinueWithSettingsUiFlow ¶

func NewContinueWithSettingsUiFlow(id string) *ContinueWithSettingsUiFlow

NewContinueWithSettingsUiFlow instantiates a new ContinueWithSettingsUiFlow 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 NewContinueWithSettingsUiFlowWithDefaults ¶

func NewContinueWithSettingsUiFlowWithDefaults() *ContinueWithSettingsUiFlow

NewContinueWithSettingsUiFlowWithDefaults instantiates a new ContinueWithSettingsUiFlow 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 (*ContinueWithSettingsUiFlow) GetId ¶

GetId returns the Id field value

func (*ContinueWithSettingsUiFlow) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (ContinueWithSettingsUiFlow) MarshalJSON ¶

func (o ContinueWithSettingsUiFlow) MarshalJSON() ([]byte, error)

func (*ContinueWithSettingsUiFlow) SetId ¶

func (o *ContinueWithSettingsUiFlow) SetId(v string)

SetId sets field value

func (ContinueWithSettingsUiFlow) ToMap ¶

func (o ContinueWithSettingsUiFlow) ToMap() (map[string]interface{}, error)

func (*ContinueWithSettingsUiFlow) UnmarshalJSON ¶

func (o *ContinueWithSettingsUiFlow) UnmarshalJSON(bytes []byte) (err error)

type ContinueWithVerificationUi ¶

type ContinueWithVerificationUi struct {
	// Action will always be `show_verification_ui` show_verification_ui ContinueWithActionShowVerificationUIString
	Action               string                         `json:"action"`
	Flow                 ContinueWithVerificationUiFlow `json:"flow"`
	AdditionalProperties map[string]interface{}
}

ContinueWithVerificationUi Indicates, that the UI flow could be continued by showing a verification ui

func NewContinueWithVerificationUi ¶

func NewContinueWithVerificationUi(action string, flow ContinueWithVerificationUiFlow) *ContinueWithVerificationUi

NewContinueWithVerificationUi instantiates a new ContinueWithVerificationUi 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 NewContinueWithVerificationUiWithDefaults ¶

func NewContinueWithVerificationUiWithDefaults() *ContinueWithVerificationUi

NewContinueWithVerificationUiWithDefaults instantiates a new ContinueWithVerificationUi 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 (*ContinueWithVerificationUi) GetAction ¶

func (o *ContinueWithVerificationUi) GetAction() string

GetAction returns the Action field value

func (*ContinueWithVerificationUi) GetActionOk ¶

func (o *ContinueWithVerificationUi) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value and a boolean to check if the value has been set.

func (*ContinueWithVerificationUi) GetFlow ¶

GetFlow returns the Flow field value

func (*ContinueWithVerificationUi) GetFlowOk ¶

GetFlowOk returns a tuple with the Flow field value and a boolean to check if the value has been set.

func (ContinueWithVerificationUi) MarshalJSON ¶

func (o ContinueWithVerificationUi) MarshalJSON() ([]byte, error)

func (*ContinueWithVerificationUi) SetAction ¶

func (o *ContinueWithVerificationUi) SetAction(v string)

SetAction sets field value

func (*ContinueWithVerificationUi) SetFlow ¶

SetFlow sets field value

func (ContinueWithVerificationUi) ToMap ¶

func (o ContinueWithVerificationUi) ToMap() (map[string]interface{}, error)

func (*ContinueWithVerificationUi) UnmarshalJSON ¶

func (o *ContinueWithVerificationUi) UnmarshalJSON(bytes []byte) (err error)

type ContinueWithVerificationUiFlow ¶

type ContinueWithVerificationUiFlow struct {
	// The ID of the verification flow
	Id string `json:"id"`
	// The URL of the verification flow
	Url *string `json:"url,omitempty"`
	// The address that should be verified in this flow
	VerifiableAddress    string `json:"verifiable_address"`
	AdditionalProperties map[string]interface{}
}

ContinueWithVerificationUiFlow struct for ContinueWithVerificationUiFlow

func NewContinueWithVerificationUiFlow ¶

func NewContinueWithVerificationUiFlow(id string, verifiableAddress string) *ContinueWithVerificationUiFlow

NewContinueWithVerificationUiFlow instantiates a new ContinueWithVerificationUiFlow 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 NewContinueWithVerificationUiFlowWithDefaults ¶

func NewContinueWithVerificationUiFlowWithDefaults() *ContinueWithVerificationUiFlow

NewContinueWithVerificationUiFlowWithDefaults instantiates a new ContinueWithVerificationUiFlow 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 (*ContinueWithVerificationUiFlow) GetId ¶

GetId returns the Id field value

func (*ContinueWithVerificationUiFlow) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ContinueWithVerificationUiFlow) GetUrl ¶

GetUrl returns the Url field value if set, zero value otherwise.

func (*ContinueWithVerificationUiFlow) GetUrlOk ¶

func (o *ContinueWithVerificationUiFlow) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContinueWithVerificationUiFlow) GetVerifiableAddress ¶

func (o *ContinueWithVerificationUiFlow) GetVerifiableAddress() string

GetVerifiableAddress returns the VerifiableAddress field value

func (*ContinueWithVerificationUiFlow) GetVerifiableAddressOk ¶

func (o *ContinueWithVerificationUiFlow) GetVerifiableAddressOk() (*string, bool)

GetVerifiableAddressOk returns a tuple with the VerifiableAddress field value and a boolean to check if the value has been set.

func (*ContinueWithVerificationUiFlow) HasUrl ¶

HasUrl returns a boolean if a field has been set.

func (ContinueWithVerificationUiFlow) MarshalJSON ¶

func (o ContinueWithVerificationUiFlow) MarshalJSON() ([]byte, error)

func (*ContinueWithVerificationUiFlow) SetId ¶

SetId sets field value

func (*ContinueWithVerificationUiFlow) SetUrl ¶

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*ContinueWithVerificationUiFlow) SetVerifiableAddress ¶

func (o *ContinueWithVerificationUiFlow) SetVerifiableAddress(v string)

SetVerifiableAddress sets field value

func (ContinueWithVerificationUiFlow) ToMap ¶

func (o ContinueWithVerificationUiFlow) ToMap() (map[string]interface{}, error)

func (*ContinueWithVerificationUiFlow) UnmarshalJSON ¶

func (o *ContinueWithVerificationUiFlow) UnmarshalJSON(bytes []byte) (err error)

type CourierAPI ¶

type CourierAPI interface {

	/*
		GetCourierMessage Get a Message

		Gets a specific messages by the given ID.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id MessageID is the ID of the message.
		@return CourierAPIGetCourierMessageRequest
	*/
	GetCourierMessage(ctx context.Context, id string) CourierAPIGetCourierMessageRequest

	// GetCourierMessageExecute executes the request
	//  @return Message
	GetCourierMessageExecute(r CourierAPIGetCourierMessageRequest) (*Message, *http.Response, error)

	/*
		ListCourierMessages List Messages

		Lists all messages by given status and recipient.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return CourierAPIListCourierMessagesRequest
	*/
	ListCourierMessages(ctx context.Context) CourierAPIListCourierMessagesRequest

	// ListCourierMessagesExecute executes the request
	//  @return []Message
	ListCourierMessagesExecute(r CourierAPIListCourierMessagesRequest) ([]Message, *http.Response, error)
}

type CourierAPIGetCourierMessageRequest ¶

type CourierAPIGetCourierMessageRequest struct {
	ApiService CourierAPI
	// contains filtered or unexported fields
}

func (CourierAPIGetCourierMessageRequest) Execute ¶

type CourierAPIListCourierMessagesRequest ¶

type CourierAPIListCourierMessagesRequest struct {
	ApiService CourierAPI
	// contains filtered or unexported fields
}

func (CourierAPIListCourierMessagesRequest) Execute ¶

func (CourierAPIListCourierMessagesRequest) PageSize ¶

Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func (CourierAPIListCourierMessagesRequest) PageToken ¶

Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func (CourierAPIListCourierMessagesRequest) Recipient ¶

Recipient filters out messages based on recipient. If no value is provided, it doesn't take effect on filter.

func (CourierAPIListCourierMessagesRequest) Status ¶

Status filters out messages based on status. If no value is provided, it doesn't take effect on filter.

type CourierAPIService ¶

type CourierAPIService service

CourierAPIService CourierAPI service

func (*CourierAPIService) GetCourierMessage ¶

GetCourierMessage Get a Message

Gets a specific messages by the given ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id MessageID is the ID of the message.
@return CourierAPIGetCourierMessageRequest

func (*CourierAPIService) GetCourierMessageExecute ¶

func (a *CourierAPIService) GetCourierMessageExecute(r CourierAPIGetCourierMessageRequest) (*Message, *http.Response, error)

Execute executes the request

@return Message

func (*CourierAPIService) ListCourierMessages ¶

ListCourierMessages List Messages

Lists all messages by given status and recipient.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return CourierAPIListCourierMessagesRequest

func (*CourierAPIService) ListCourierMessagesExecute ¶

func (a *CourierAPIService) ListCourierMessagesExecute(r CourierAPIListCourierMessagesRequest) ([]Message, *http.Response, error)

Execute executes the request

@return []Message

type CourierMessageStatus ¶

type CourierMessageStatus string

CourierMessageStatus A Message's Status

const (
	COURIERMESSAGESTATUS_QUEUED     CourierMessageStatus = "queued"
	COURIERMESSAGESTATUS_SENT       CourierMessageStatus = "sent"
	COURIERMESSAGESTATUS_PROCESSING CourierMessageStatus = "processing"
	COURIERMESSAGESTATUS_ABANDONED  CourierMessageStatus = "abandoned"
)

List of courierMessageStatus

func NewCourierMessageStatusFromValue ¶

func NewCourierMessageStatusFromValue(v string) (*CourierMessageStatus, error)

NewCourierMessageStatusFromValue returns a pointer to a valid CourierMessageStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (CourierMessageStatus) IsValid ¶

func (v CourierMessageStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (CourierMessageStatus) Ptr ¶

Ptr returns reference to courierMessageStatus value

func (*CourierMessageStatus) UnmarshalJSON ¶

func (v *CourierMessageStatus) UnmarshalJSON(src []byte) error

type CourierMessageType ¶

type CourierMessageType string

CourierMessageType It can either be `email` or `phone`

const (
	COURIERMESSAGETYPE_EMAIL CourierMessageType = "email"
	COURIERMESSAGETYPE_PHONE CourierMessageType = "phone"
)

List of courierMessageType

func NewCourierMessageTypeFromValue ¶

func NewCourierMessageTypeFromValue(v string) (*CourierMessageType, error)

NewCourierMessageTypeFromValue returns a pointer to a valid CourierMessageType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (CourierMessageType) IsValid ¶

func (v CourierMessageType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (CourierMessageType) Ptr ¶

Ptr returns reference to courierMessageType value

func (*CourierMessageType) UnmarshalJSON ¶

func (v *CourierMessageType) UnmarshalJSON(src []byte) error

type CreateCustomDomainBody ¶

type CreateCustomDomainBody struct {
	// The domain where cookies will be set. Has to be a parent domain of the custom hostname to work.
	CookieDomain *string `json:"cookie_domain,omitempty"`
	// CORS Allowed origins for the custom hostname.
	CorsAllowedOrigins []string `json:"cors_allowed_origins,omitempty"`
	// CORS Enabled for the custom hostname.
	CorsEnabled *bool `json:"cors_enabled,omitempty"`
	// The base URL where the custom user interface will be exposed.
	CustomUiBaseUrl *string `json:"custom_ui_base_url,omitempty"`
	// The custom hostname where the API will be exposed.
	Hostname             *string `json:"hostname,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateCustomDomainBody Create Custom Hostname Request Body

func NewCreateCustomDomainBody ¶

func NewCreateCustomDomainBody() *CreateCustomDomainBody

NewCreateCustomDomainBody instantiates a new CreateCustomDomainBody 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 NewCreateCustomDomainBodyWithDefaults ¶

func NewCreateCustomDomainBodyWithDefaults() *CreateCustomDomainBody

NewCreateCustomDomainBodyWithDefaults instantiates a new CreateCustomDomainBody 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 (*CreateCustomDomainBody) GetCookieDomain ¶

func (o *CreateCustomDomainBody) GetCookieDomain() string

GetCookieDomain returns the CookieDomain field value if set, zero value otherwise.

func (*CreateCustomDomainBody) GetCookieDomainOk ¶

func (o *CreateCustomDomainBody) GetCookieDomainOk() (*string, bool)

GetCookieDomainOk returns a tuple with the CookieDomain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateCustomDomainBody) GetCorsAllowedOrigins ¶

func (o *CreateCustomDomainBody) GetCorsAllowedOrigins() []string

GetCorsAllowedOrigins returns the CorsAllowedOrigins field value if set, zero value otherwise.

func (*CreateCustomDomainBody) GetCorsAllowedOriginsOk ¶

func (o *CreateCustomDomainBody) GetCorsAllowedOriginsOk() ([]string, bool)

GetCorsAllowedOriginsOk returns a tuple with the CorsAllowedOrigins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateCustomDomainBody) GetCorsEnabled ¶

func (o *CreateCustomDomainBody) GetCorsEnabled() bool

GetCorsEnabled returns the CorsEnabled field value if set, zero value otherwise.

func (*CreateCustomDomainBody) GetCorsEnabledOk ¶

func (o *CreateCustomDomainBody) GetCorsEnabledOk() (*bool, bool)

GetCorsEnabledOk returns a tuple with the CorsEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateCustomDomainBody) GetCustomUiBaseUrl ¶

func (o *CreateCustomDomainBody) GetCustomUiBaseUrl() string

GetCustomUiBaseUrl returns the CustomUiBaseUrl field value if set, zero value otherwise.

func (*CreateCustomDomainBody) GetCustomUiBaseUrlOk ¶

func (o *CreateCustomDomainBody) GetCustomUiBaseUrlOk() (*string, bool)

GetCustomUiBaseUrlOk returns a tuple with the CustomUiBaseUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateCustomDomainBody) GetHostname ¶

func (o *CreateCustomDomainBody) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*CreateCustomDomainBody) GetHostnameOk ¶

func (o *CreateCustomDomainBody) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateCustomDomainBody) HasCookieDomain ¶

func (o *CreateCustomDomainBody) HasCookieDomain() bool

HasCookieDomain returns a boolean if a field has been set.

func (*CreateCustomDomainBody) HasCorsAllowedOrigins ¶

func (o *CreateCustomDomainBody) HasCorsAllowedOrigins() bool

HasCorsAllowedOrigins returns a boolean if a field has been set.

func (*CreateCustomDomainBody) HasCorsEnabled ¶

func (o *CreateCustomDomainBody) HasCorsEnabled() bool

HasCorsEnabled returns a boolean if a field has been set.

func (*CreateCustomDomainBody) HasCustomUiBaseUrl ¶

func (o *CreateCustomDomainBody) HasCustomUiBaseUrl() bool

HasCustomUiBaseUrl returns a boolean if a field has been set.

func (*CreateCustomDomainBody) HasHostname ¶

func (o *CreateCustomDomainBody) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (CreateCustomDomainBody) MarshalJSON ¶

func (o CreateCustomDomainBody) MarshalJSON() ([]byte, error)

func (*CreateCustomDomainBody) SetCookieDomain ¶

func (o *CreateCustomDomainBody) SetCookieDomain(v string)

SetCookieDomain gets a reference to the given string and assigns it to the CookieDomain field.

func (*CreateCustomDomainBody) SetCorsAllowedOrigins ¶

func (o *CreateCustomDomainBody) SetCorsAllowedOrigins(v []string)

SetCorsAllowedOrigins gets a reference to the given []string and assigns it to the CorsAllowedOrigins field.

func (*CreateCustomDomainBody) SetCorsEnabled ¶

func (o *CreateCustomDomainBody) SetCorsEnabled(v bool)

SetCorsEnabled gets a reference to the given bool and assigns it to the CorsEnabled field.

func (*CreateCustomDomainBody) SetCustomUiBaseUrl ¶

func (o *CreateCustomDomainBody) SetCustomUiBaseUrl(v string)

SetCustomUiBaseUrl gets a reference to the given string and assigns it to the CustomUiBaseUrl field.

func (*CreateCustomDomainBody) SetHostname ¶

func (o *CreateCustomDomainBody) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (CreateCustomDomainBody) ToMap ¶

func (o CreateCustomDomainBody) ToMap() (map[string]interface{}, error)

func (*CreateCustomDomainBody) UnmarshalJSON ¶

func (o *CreateCustomDomainBody) UnmarshalJSON(bytes []byte) (err error)

type CreateEventStreamBody ¶

type CreateEventStreamBody struct {
	// The AWS IAM role ARN to assume when publishing to the SNS topic.
	RoleArn string `json:"role_arn"`
	// The AWS SNS topic ARN.
	TopicArn string `json:"topic_arn"`
	// The type of the event stream (AWS SNS, GCP Pub/Sub, etc).
	Type                 string `json:"type"`
	AdditionalProperties map[string]interface{}
}

CreateEventStreamBody Create Event Stream Request Body

func NewCreateEventStreamBody ¶

func NewCreateEventStreamBody(roleArn string, topicArn string, type_ string) *CreateEventStreamBody

NewCreateEventStreamBody instantiates a new CreateEventStreamBody 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 NewCreateEventStreamBodyWithDefaults ¶

func NewCreateEventStreamBodyWithDefaults() *CreateEventStreamBody

NewCreateEventStreamBodyWithDefaults instantiates a new CreateEventStreamBody 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 (*CreateEventStreamBody) GetRoleArn ¶

func (o *CreateEventStreamBody) GetRoleArn() string

GetRoleArn returns the RoleArn field value

func (*CreateEventStreamBody) GetRoleArnOk ¶

func (o *CreateEventStreamBody) GetRoleArnOk() (*string, bool)

GetRoleArnOk returns a tuple with the RoleArn field value and a boolean to check if the value has been set.

func (*CreateEventStreamBody) GetTopicArn ¶

func (o *CreateEventStreamBody) GetTopicArn() string

GetTopicArn returns the TopicArn field value

func (*CreateEventStreamBody) GetTopicArnOk ¶

func (o *CreateEventStreamBody) GetTopicArnOk() (*string, bool)

GetTopicArnOk returns a tuple with the TopicArn field value and a boolean to check if the value has been set.

func (*CreateEventStreamBody) GetType ¶

func (o *CreateEventStreamBody) GetType() string

GetType returns the Type field value

func (*CreateEventStreamBody) GetTypeOk ¶

func (o *CreateEventStreamBody) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (CreateEventStreamBody) MarshalJSON ¶

func (o CreateEventStreamBody) MarshalJSON() ([]byte, error)

func (*CreateEventStreamBody) SetRoleArn ¶

func (o *CreateEventStreamBody) SetRoleArn(v string)

SetRoleArn sets field value

func (*CreateEventStreamBody) SetTopicArn ¶

func (o *CreateEventStreamBody) SetTopicArn(v string)

SetTopicArn sets field value

func (*CreateEventStreamBody) SetType ¶

func (o *CreateEventStreamBody) SetType(v string)

SetType sets field value

func (CreateEventStreamBody) ToMap ¶

func (o CreateEventStreamBody) ToMap() (map[string]interface{}, error)

func (*CreateEventStreamBody) UnmarshalJSON ¶

func (o *CreateEventStreamBody) UnmarshalJSON(bytes []byte) (err error)

type CreateIdentityBody ¶

type CreateIdentityBody struct {
	Credentials *IdentityWithCredentials `json:"credentials,omitempty"`
	// Store metadata about the user which is only accessible through admin APIs such as `GET /admin/identities/<id>`.
	MetadataAdmin interface{} `json:"metadata_admin,omitempty"`
	// Store metadata about the identity which the identity itself can see when calling for example the session endpoint. Do not store sensitive information (e.g. credit score) about the identity in this field.
	MetadataPublic interface{} `json:"metadata_public,omitempty"`
	// RecoveryAddresses contains all the addresses that can be used to recover an identity.  Use this structure to import recovery addresses for an identity. Please keep in mind that the address needs to be represented in the Identity Schema or this field will be overwritten on the next identity update.
	RecoveryAddresses []RecoveryIdentityAddress `json:"recovery_addresses,omitempty"`
	// SchemaID is the ID of the JSON Schema to be used for validating the identity's traits.
	SchemaId string         `json:"schema_id"`
	State    *IdentityState `json:"state,omitempty"`
	// Traits represent an identity's traits. The identity is able to create, modify, and delete traits in a self-service manner. The input will always be validated against the JSON Schema defined in `schema_url`.
	Traits map[string]interface{} `json:"traits"`
	// VerifiableAddresses contains all the addresses that can be verified by the user.  Use this structure to import verified addresses for an identity. Please keep in mind that the address needs to be represented in the Identity Schema or this field will be overwritten on the next identity update.
	VerifiableAddresses  []VerifiableIdentityAddress `json:"verifiable_addresses,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateIdentityBody Create Identity Body

func NewCreateIdentityBody ¶

func NewCreateIdentityBody(schemaId string, traits map[string]interface{}) *CreateIdentityBody

NewCreateIdentityBody instantiates a new CreateIdentityBody 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 NewCreateIdentityBodyWithDefaults ¶

func NewCreateIdentityBodyWithDefaults() *CreateIdentityBody

NewCreateIdentityBodyWithDefaults instantiates a new CreateIdentityBody 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 (*CreateIdentityBody) GetCredentials ¶

func (o *CreateIdentityBody) GetCredentials() IdentityWithCredentials

GetCredentials returns the Credentials field value if set, zero value otherwise.

func (*CreateIdentityBody) GetCredentialsOk ¶

func (o *CreateIdentityBody) GetCredentialsOk() (*IdentityWithCredentials, bool)

GetCredentialsOk returns a tuple with the Credentials field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateIdentityBody) GetMetadataAdmin ¶

func (o *CreateIdentityBody) GetMetadataAdmin() interface{}

GetMetadataAdmin returns the MetadataAdmin field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CreateIdentityBody) GetMetadataAdminOk ¶

func (o *CreateIdentityBody) GetMetadataAdminOk() (*interface{}, bool)

GetMetadataAdminOk returns a tuple with the MetadataAdmin field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CreateIdentityBody) GetMetadataPublic ¶

func (o *CreateIdentityBody) GetMetadataPublic() interface{}

GetMetadataPublic returns the MetadataPublic field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CreateIdentityBody) GetMetadataPublicOk ¶

func (o *CreateIdentityBody) GetMetadataPublicOk() (*interface{}, bool)

GetMetadataPublicOk returns a tuple with the MetadataPublic field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CreateIdentityBody) GetRecoveryAddresses ¶

func (o *CreateIdentityBody) GetRecoveryAddresses() []RecoveryIdentityAddress

GetRecoveryAddresses returns the RecoveryAddresses field value if set, zero value otherwise.

func (*CreateIdentityBody) GetRecoveryAddressesOk ¶

func (o *CreateIdentityBody) GetRecoveryAddressesOk() ([]RecoveryIdentityAddress, bool)

GetRecoveryAddressesOk returns a tuple with the RecoveryAddresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateIdentityBody) GetSchemaId ¶

func (o *CreateIdentityBody) GetSchemaId() string

GetSchemaId returns the SchemaId field value

func (*CreateIdentityBody) GetSchemaIdOk ¶

func (o *CreateIdentityBody) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value and a boolean to check if the value has been set.

func (*CreateIdentityBody) GetState ¶

func (o *CreateIdentityBody) GetState() IdentityState

GetState returns the State field value if set, zero value otherwise.

func (*CreateIdentityBody) GetStateOk ¶

func (o *CreateIdentityBody) GetStateOk() (*IdentityState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateIdentityBody) GetTraits ¶

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

GetTraits returns the Traits field value

func (*CreateIdentityBody) GetTraitsOk ¶

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

GetTraitsOk returns a tuple with the Traits field value and a boolean to check if the value has been set.

func (*CreateIdentityBody) GetVerifiableAddresses ¶

func (o *CreateIdentityBody) GetVerifiableAddresses() []VerifiableIdentityAddress

GetVerifiableAddresses returns the VerifiableAddresses field value if set, zero value otherwise.

func (*CreateIdentityBody) GetVerifiableAddressesOk ¶

func (o *CreateIdentityBody) GetVerifiableAddressesOk() ([]VerifiableIdentityAddress, bool)

GetVerifiableAddressesOk returns a tuple with the VerifiableAddresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateIdentityBody) HasCredentials ¶

func (o *CreateIdentityBody) HasCredentials() bool

HasCredentials returns a boolean if a field has been set.

func (*CreateIdentityBody) HasMetadataAdmin ¶

func (o *CreateIdentityBody) HasMetadataAdmin() bool

HasMetadataAdmin returns a boolean if a field has been set.

func (*CreateIdentityBody) HasMetadataPublic ¶

func (o *CreateIdentityBody) HasMetadataPublic() bool

HasMetadataPublic returns a boolean if a field has been set.

func (*CreateIdentityBody) HasRecoveryAddresses ¶

func (o *CreateIdentityBody) HasRecoveryAddresses() bool

HasRecoveryAddresses returns a boolean if a field has been set.

func (*CreateIdentityBody) HasState ¶

func (o *CreateIdentityBody) HasState() bool

HasState returns a boolean if a field has been set.

func (*CreateIdentityBody) HasVerifiableAddresses ¶

func (o *CreateIdentityBody) HasVerifiableAddresses() bool

HasVerifiableAddresses returns a boolean if a field has been set.

func (CreateIdentityBody) MarshalJSON ¶

func (o CreateIdentityBody) MarshalJSON() ([]byte, error)

func (*CreateIdentityBody) SetCredentials ¶

func (o *CreateIdentityBody) SetCredentials(v IdentityWithCredentials)

SetCredentials gets a reference to the given IdentityWithCredentials and assigns it to the Credentials field.

func (*CreateIdentityBody) SetMetadataAdmin ¶

func (o *CreateIdentityBody) SetMetadataAdmin(v interface{})

SetMetadataAdmin gets a reference to the given interface{} and assigns it to the MetadataAdmin field.

func (*CreateIdentityBody) SetMetadataPublic ¶

func (o *CreateIdentityBody) SetMetadataPublic(v interface{})

SetMetadataPublic gets a reference to the given interface{} and assigns it to the MetadataPublic field.

func (*CreateIdentityBody) SetRecoveryAddresses ¶

func (o *CreateIdentityBody) SetRecoveryAddresses(v []RecoveryIdentityAddress)

SetRecoveryAddresses gets a reference to the given []RecoveryIdentityAddress and assigns it to the RecoveryAddresses field.

func (*CreateIdentityBody) SetSchemaId ¶

func (o *CreateIdentityBody) SetSchemaId(v string)

SetSchemaId sets field value

func (*CreateIdentityBody) SetState ¶

func (o *CreateIdentityBody) SetState(v IdentityState)

SetState gets a reference to the given IdentityState and assigns it to the State field.

func (*CreateIdentityBody) SetTraits ¶

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

SetTraits sets field value

func (*CreateIdentityBody) SetVerifiableAddresses ¶

func (o *CreateIdentityBody) SetVerifiableAddresses(v []VerifiableIdentityAddress)

SetVerifiableAddresses gets a reference to the given []VerifiableIdentityAddress and assigns it to the VerifiableAddresses field.

func (CreateIdentityBody) ToMap ¶

func (o CreateIdentityBody) ToMap() (map[string]interface{}, error)

func (*CreateIdentityBody) UnmarshalJSON ¶

func (o *CreateIdentityBody) UnmarshalJSON(bytes []byte) (err error)

type CreateInviteResponse ¶

type CreateInviteResponse struct {
	// A list of all invites for this resource
	AllInvites           []MemberInvite `json:"all_invites"`
	CreatedInvite        MemberInvite   `json:"created_invite"`
	AdditionalProperties map[string]interface{}
}

CreateInviteResponse struct for CreateInviteResponse

func NewCreateInviteResponse ¶

func NewCreateInviteResponse(allInvites []MemberInvite, createdInvite MemberInvite) *CreateInviteResponse

NewCreateInviteResponse instantiates a new CreateInviteResponse 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 NewCreateInviteResponseWithDefaults ¶

func NewCreateInviteResponseWithDefaults() *CreateInviteResponse

NewCreateInviteResponseWithDefaults instantiates a new CreateInviteResponse 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 (*CreateInviteResponse) GetAllInvites ¶

func (o *CreateInviteResponse) GetAllInvites() []MemberInvite

GetAllInvites returns the AllInvites field value

func (*CreateInviteResponse) GetAllInvitesOk ¶

func (o *CreateInviteResponse) GetAllInvitesOk() ([]MemberInvite, bool)

GetAllInvitesOk returns a tuple with the AllInvites field value and a boolean to check if the value has been set.

func (*CreateInviteResponse) GetCreatedInvite ¶

func (o *CreateInviteResponse) GetCreatedInvite() MemberInvite

GetCreatedInvite returns the CreatedInvite field value

func (*CreateInviteResponse) GetCreatedInviteOk ¶

func (o *CreateInviteResponse) GetCreatedInviteOk() (*MemberInvite, bool)

GetCreatedInviteOk returns a tuple with the CreatedInvite field value and a boolean to check if the value has been set.

func (CreateInviteResponse) MarshalJSON ¶

func (o CreateInviteResponse) MarshalJSON() ([]byte, error)

func (*CreateInviteResponse) SetAllInvites ¶

func (o *CreateInviteResponse) SetAllInvites(v []MemberInvite)

SetAllInvites sets field value

func (*CreateInviteResponse) SetCreatedInvite ¶

func (o *CreateInviteResponse) SetCreatedInvite(v MemberInvite)

SetCreatedInvite sets field value

func (CreateInviteResponse) ToMap ¶

func (o CreateInviteResponse) ToMap() (map[string]interface{}, error)

func (*CreateInviteResponse) UnmarshalJSON ¶

func (o *CreateInviteResponse) UnmarshalJSON(bytes []byte) (err error)

type CreateJsonWebKeySet ¶

type CreateJsonWebKeySet struct {
	// JSON Web Key Algorithm  The algorithm to be used for creating the key. Supports `RS256`, `ES256`, `ES512`, `HS512`, and `HS256`.
	Alg string `json:"alg"`
	// JSON Web Key ID  The Key ID of the key to be created.
	Kid string `json:"kid"`
	// JSON Web Key Use  The \"use\" (public key use) parameter identifies the intended use of the public key. The \"use\" parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Valid values are \"enc\" and \"sig\".
	Use                  string `json:"use"`
	AdditionalProperties map[string]interface{}
}

CreateJsonWebKeySet Create JSON Web Key Set Request Body

func NewCreateJsonWebKeySet ¶

func NewCreateJsonWebKeySet(alg string, kid string, use string) *CreateJsonWebKeySet

NewCreateJsonWebKeySet instantiates a new CreateJsonWebKeySet 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 NewCreateJsonWebKeySetWithDefaults ¶

func NewCreateJsonWebKeySetWithDefaults() *CreateJsonWebKeySet

NewCreateJsonWebKeySetWithDefaults instantiates a new CreateJsonWebKeySet 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 (*CreateJsonWebKeySet) GetAlg ¶

func (o *CreateJsonWebKeySet) GetAlg() string

GetAlg returns the Alg field value

func (*CreateJsonWebKeySet) GetAlgOk ¶

func (o *CreateJsonWebKeySet) GetAlgOk() (*string, bool)

GetAlgOk returns a tuple with the Alg field value and a boolean to check if the value has been set.

func (*CreateJsonWebKeySet) GetKid ¶

func (o *CreateJsonWebKeySet) GetKid() string

GetKid returns the Kid field value

func (*CreateJsonWebKeySet) GetKidOk ¶

func (o *CreateJsonWebKeySet) GetKidOk() (*string, bool)

GetKidOk returns a tuple with the Kid field value and a boolean to check if the value has been set.

func (*CreateJsonWebKeySet) GetUse ¶

func (o *CreateJsonWebKeySet) GetUse() string

GetUse returns the Use field value

func (*CreateJsonWebKeySet) GetUseOk ¶

func (o *CreateJsonWebKeySet) GetUseOk() (*string, bool)

GetUseOk returns a tuple with the Use field value and a boolean to check if the value has been set.

func (CreateJsonWebKeySet) MarshalJSON ¶

func (o CreateJsonWebKeySet) MarshalJSON() ([]byte, error)

func (*CreateJsonWebKeySet) SetAlg ¶

func (o *CreateJsonWebKeySet) SetAlg(v string)

SetAlg sets field value

func (*CreateJsonWebKeySet) SetKid ¶

func (o *CreateJsonWebKeySet) SetKid(v string)

SetKid sets field value

func (*CreateJsonWebKeySet) SetUse ¶

func (o *CreateJsonWebKeySet) SetUse(v string)

SetUse sets field value

func (CreateJsonWebKeySet) ToMap ¶

func (o CreateJsonWebKeySet) ToMap() (map[string]interface{}, error)

func (*CreateJsonWebKeySet) UnmarshalJSON ¶

func (o *CreateJsonWebKeySet) UnmarshalJSON(bytes []byte) (err error)

type CreateProjectApiKeyRequest ¶

type CreateProjectApiKeyRequest struct {
	// The Token Name  A descriptive name for the token.  in: body
	Name                 string `json:"name"`
	AdditionalProperties map[string]interface{}
}

CreateProjectApiKeyRequest struct for CreateProjectApiKeyRequest

func NewCreateProjectApiKeyRequest ¶

func NewCreateProjectApiKeyRequest(name string) *CreateProjectApiKeyRequest

NewCreateProjectApiKeyRequest instantiates a new CreateProjectApiKeyRequest 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 NewCreateProjectApiKeyRequestWithDefaults ¶

func NewCreateProjectApiKeyRequestWithDefaults() *CreateProjectApiKeyRequest

NewCreateProjectApiKeyRequestWithDefaults instantiates a new CreateProjectApiKeyRequest 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 (*CreateProjectApiKeyRequest) GetName ¶

func (o *CreateProjectApiKeyRequest) GetName() string

GetName returns the Name field value

func (*CreateProjectApiKeyRequest) GetNameOk ¶

func (o *CreateProjectApiKeyRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (CreateProjectApiKeyRequest) MarshalJSON ¶

func (o CreateProjectApiKeyRequest) MarshalJSON() ([]byte, error)

func (*CreateProjectApiKeyRequest) SetName ¶

func (o *CreateProjectApiKeyRequest) SetName(v string)

SetName sets field value

func (CreateProjectApiKeyRequest) ToMap ¶

func (o CreateProjectApiKeyRequest) ToMap() (map[string]interface{}, error)

func (*CreateProjectApiKeyRequest) UnmarshalJSON ¶

func (o *CreateProjectApiKeyRequest) UnmarshalJSON(bytes []byte) (err error)

type CreateProjectBody ¶

type CreateProjectBody struct {
	// The name of the project to be created
	Name                 string         `json:"name"`
	WorkspaceId          NullableString `json:"workspace_id,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateProjectBody Create Project Request Body

func NewCreateProjectBody ¶

func NewCreateProjectBody(name string) *CreateProjectBody

NewCreateProjectBody instantiates a new CreateProjectBody 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 NewCreateProjectBodyWithDefaults ¶

func NewCreateProjectBodyWithDefaults() *CreateProjectBody

NewCreateProjectBodyWithDefaults instantiates a new CreateProjectBody 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 (*CreateProjectBody) GetName ¶

func (o *CreateProjectBody) GetName() string

GetName returns the Name field value

func (*CreateProjectBody) GetNameOk ¶

func (o *CreateProjectBody) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*CreateProjectBody) GetWorkspaceId ¶

func (o *CreateProjectBody) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CreateProjectBody) GetWorkspaceIdOk ¶

func (o *CreateProjectBody) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CreateProjectBody) HasWorkspaceId ¶

func (o *CreateProjectBody) HasWorkspaceId() bool

HasWorkspaceId returns a boolean if a field has been set.

func (CreateProjectBody) MarshalJSON ¶

func (o CreateProjectBody) MarshalJSON() ([]byte, error)

func (*CreateProjectBody) SetName ¶

func (o *CreateProjectBody) SetName(v string)

SetName sets field value

func (*CreateProjectBody) SetWorkspaceId ¶

func (o *CreateProjectBody) SetWorkspaceId(v string)

SetWorkspaceId gets a reference to the given NullableString and assigns it to the WorkspaceId field.

func (*CreateProjectBody) SetWorkspaceIdNil ¶

func (o *CreateProjectBody) SetWorkspaceIdNil()

SetWorkspaceIdNil sets the value for WorkspaceId to be an explicit nil

func (CreateProjectBody) ToMap ¶

func (o CreateProjectBody) ToMap() (map[string]interface{}, error)

func (*CreateProjectBody) UnmarshalJSON ¶

func (o *CreateProjectBody) UnmarshalJSON(bytes []byte) (err error)

func (*CreateProjectBody) UnsetWorkspaceId ¶

func (o *CreateProjectBody) UnsetWorkspaceId()

UnsetWorkspaceId ensures that no value is present for WorkspaceId, not even an explicit nil

type CreateProjectBranding ¶

type CreateProjectBranding struct {
	FaviconType          *string                `json:"favicon_type,omitempty"`
	FaviconUrl           *string                `json:"favicon_url,omitempty"`
	LogoType             *string                `json:"logo_type,omitempty"`
	LogoUrl              *string                `json:"logo_url,omitempty"`
	Name                 *string                `json:"name,omitempty"`
	Theme                *ProjectBrandingColors `json:"theme,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateProjectBranding Create a Project Branding

func NewCreateProjectBranding ¶

func NewCreateProjectBranding() *CreateProjectBranding

NewCreateProjectBranding instantiates a new CreateProjectBranding 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 NewCreateProjectBrandingWithDefaults ¶

func NewCreateProjectBrandingWithDefaults() *CreateProjectBranding

NewCreateProjectBrandingWithDefaults instantiates a new CreateProjectBranding 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 (*CreateProjectBranding) GetFaviconType ¶

func (o *CreateProjectBranding) GetFaviconType() string

GetFaviconType returns the FaviconType field value if set, zero value otherwise.

func (*CreateProjectBranding) GetFaviconTypeOk ¶

func (o *CreateProjectBranding) GetFaviconTypeOk() (*string, bool)

GetFaviconTypeOk returns a tuple with the FaviconType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectBranding) GetFaviconUrl ¶

func (o *CreateProjectBranding) GetFaviconUrl() string

GetFaviconUrl returns the FaviconUrl field value if set, zero value otherwise.

func (*CreateProjectBranding) GetFaviconUrlOk ¶

func (o *CreateProjectBranding) GetFaviconUrlOk() (*string, bool)

GetFaviconUrlOk returns a tuple with the FaviconUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectBranding) GetLogoType ¶

func (o *CreateProjectBranding) GetLogoType() string

GetLogoType returns the LogoType field value if set, zero value otherwise.

func (*CreateProjectBranding) GetLogoTypeOk ¶

func (o *CreateProjectBranding) GetLogoTypeOk() (*string, bool)

GetLogoTypeOk returns a tuple with the LogoType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectBranding) GetLogoUrl ¶

func (o *CreateProjectBranding) GetLogoUrl() string

GetLogoUrl returns the LogoUrl field value if set, zero value otherwise.

func (*CreateProjectBranding) GetLogoUrlOk ¶

func (o *CreateProjectBranding) GetLogoUrlOk() (*string, bool)

GetLogoUrlOk returns a tuple with the LogoUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectBranding) GetName ¶

func (o *CreateProjectBranding) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*CreateProjectBranding) GetNameOk ¶

func (o *CreateProjectBranding) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectBranding) GetTheme ¶

GetTheme returns the Theme field value if set, zero value otherwise.

func (*CreateProjectBranding) GetThemeOk ¶

func (o *CreateProjectBranding) GetThemeOk() (*ProjectBrandingColors, bool)

GetThemeOk returns a tuple with the Theme field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectBranding) HasFaviconType ¶

func (o *CreateProjectBranding) HasFaviconType() bool

HasFaviconType returns a boolean if a field has been set.

func (*CreateProjectBranding) HasFaviconUrl ¶

func (o *CreateProjectBranding) HasFaviconUrl() bool

HasFaviconUrl returns a boolean if a field has been set.

func (*CreateProjectBranding) HasLogoType ¶

func (o *CreateProjectBranding) HasLogoType() bool

HasLogoType returns a boolean if a field has been set.

func (*CreateProjectBranding) HasLogoUrl ¶

func (o *CreateProjectBranding) HasLogoUrl() bool

HasLogoUrl returns a boolean if a field has been set.

func (*CreateProjectBranding) HasName ¶

func (o *CreateProjectBranding) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateProjectBranding) HasTheme ¶

func (o *CreateProjectBranding) HasTheme() bool

HasTheme returns a boolean if a field has been set.

func (CreateProjectBranding) MarshalJSON ¶

func (o CreateProjectBranding) MarshalJSON() ([]byte, error)

func (*CreateProjectBranding) SetFaviconType ¶

func (o *CreateProjectBranding) SetFaviconType(v string)

SetFaviconType gets a reference to the given string and assigns it to the FaviconType field.

func (*CreateProjectBranding) SetFaviconUrl ¶

func (o *CreateProjectBranding) SetFaviconUrl(v string)

SetFaviconUrl gets a reference to the given string and assigns it to the FaviconUrl field.

func (*CreateProjectBranding) SetLogoType ¶

func (o *CreateProjectBranding) SetLogoType(v string)

SetLogoType gets a reference to the given string and assigns it to the LogoType field.

func (*CreateProjectBranding) SetLogoUrl ¶

func (o *CreateProjectBranding) SetLogoUrl(v string)

SetLogoUrl gets a reference to the given string and assigns it to the LogoUrl field.

func (*CreateProjectBranding) SetName ¶

func (o *CreateProjectBranding) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*CreateProjectBranding) SetTheme ¶

SetTheme gets a reference to the given ProjectBrandingColors and assigns it to the Theme field.

func (CreateProjectBranding) ToMap ¶

func (o CreateProjectBranding) ToMap() (map[string]interface{}, error)

func (*CreateProjectBranding) UnmarshalJSON ¶

func (o *CreateProjectBranding) UnmarshalJSON(bytes []byte) (err error)

type CreateProjectMemberInviteBody ¶

type CreateProjectMemberInviteBody struct {
	// A email to invite
	InviteeEmail         *string `json:"invitee_email,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateProjectMemberInviteBody Create Project MemberInvite Request Body

func NewCreateProjectMemberInviteBody ¶

func NewCreateProjectMemberInviteBody() *CreateProjectMemberInviteBody

NewCreateProjectMemberInviteBody instantiates a new CreateProjectMemberInviteBody 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 NewCreateProjectMemberInviteBodyWithDefaults ¶

func NewCreateProjectMemberInviteBodyWithDefaults() *CreateProjectMemberInviteBody

NewCreateProjectMemberInviteBodyWithDefaults instantiates a new CreateProjectMemberInviteBody 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 (*CreateProjectMemberInviteBody) GetInviteeEmail ¶

func (o *CreateProjectMemberInviteBody) GetInviteeEmail() string

GetInviteeEmail returns the InviteeEmail field value if set, zero value otherwise.

func (*CreateProjectMemberInviteBody) GetInviteeEmailOk ¶

func (o *CreateProjectMemberInviteBody) GetInviteeEmailOk() (*string, bool)

GetInviteeEmailOk returns a tuple with the InviteeEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectMemberInviteBody) HasInviteeEmail ¶

func (o *CreateProjectMemberInviteBody) HasInviteeEmail() bool

HasInviteeEmail returns a boolean if a field has been set.

func (CreateProjectMemberInviteBody) MarshalJSON ¶

func (o CreateProjectMemberInviteBody) MarshalJSON() ([]byte, error)

func (*CreateProjectMemberInviteBody) SetInviteeEmail ¶

func (o *CreateProjectMemberInviteBody) SetInviteeEmail(v string)

SetInviteeEmail gets a reference to the given string and assigns it to the InviteeEmail field.

func (CreateProjectMemberInviteBody) ToMap ¶

func (o CreateProjectMemberInviteBody) ToMap() (map[string]interface{}, error)

func (*CreateProjectMemberInviteBody) UnmarshalJSON ¶

func (o *CreateProjectMemberInviteBody) UnmarshalJSON(bytes []byte) (err error)

type CreateProjectNormalizedPayload ¶

type CreateProjectNormalizedPayload struct {
	// The Project's Revision Creation Date
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// Whether to disable the account experience welcome screen, which is hosted under `/ui/welcome`.
	DisableAccountExperienceWelcomeScreen *bool    `json:"disable_account_experience_welcome_screen,omitempty"`
	HydraOauth2AllowedTopLevelClaims      []string `json:"hydra_oauth2_allowed_top_level_claims,omitempty"`
	// Automatically grant authorized OAuth2 Scope in OAuth2 Client Credentials Flow.  Each OAuth2 Client is allowed to request a predefined OAuth2 Scope (for example `read write`). If this option is enabled, the full scope is automatically granted when performing the OAuth2 Client Credentials flow.  If disabled, the OAuth2 Client has to request the scope in the OAuth2 request by providing the `scope` query parameter.  Setting this option to true is common if you need compatibility with MITREid.  This governs the \"oauth2.client_credentials.default_grant_allowed_scope\" setting.
	HydraOauth2ClientCredentialsDefaultGrantAllowedScope *bool `json:"hydra_oauth2_client_credentials_default_grant_allowed_scope,omitempty"`
	// Set to true if you want to exclude claim `nbf (not before)` part of access token.  This governs the \"oauth2.exclude_not_before_claim\" setting.
	HydraOauth2ExcludeNotBeforeClaim *bool `json:"hydra_oauth2_exclude_not_before_claim,omitempty"`
	// Configures if the issued at (`iat`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523).  If set to `false`, the `iat` claim is required. Set this value to `true` only after careful consideration.  This governs the \"oauth2.grant.jwt.iat_optional\" setting.
	HydraOauth2GrantJwtIatOptional *bool `json:"hydra_oauth2_grant_jwt_iat_optional,omitempty"`
	// Configures if the JSON Web Token ID (`jti`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523).  If set to `false`, the `jti` claim is required. Set this value to `true` only after careful consideration.  This governs the \"oauth2.grant.jwt.jti_optional\" setting.
	HydraOauth2GrantJwtJtiOptional *bool `json:"hydra_oauth2_grant_jwt_jti_optional,omitempty"`
	// Configures what the maximum age of a JWT assertion used in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523) can be.  This feature uses the `exp` claim and `iat` claim to calculate assertion age. Assertions exceeding the max age will be denied.  Useful as a safety measure and recommended to keep below 720h.  This governs the \"oauth2.grant.jwt.max_ttl\" setting.
	HydraOauth2GrantJwtMaxTtl *string `json:"hydra_oauth2_grant_jwt_max_ttl,omitempty"`
	// Configures whether PKCE should be enforced for all OAuth2 Clients.  This governs the \"oauth2.pkce.enforced\" setting.
	HydraOauth2PkceEnforced *bool `json:"hydra_oauth2_pkce_enforced,omitempty"`
	// Configures whether PKCE should be enforced for OAuth2 Clients without a client secret (public clients).  This governs the \"oauth2.pkce.enforced_for_public_clients\" setting.
	HydraOauth2PkceEnforcedForPublicClients *bool `json:"hydra_oauth2_pkce_enforced_for_public_clients,omitempty"`
	// Sets the Refresh Token Hook Endpoint. If set this endpoint will be called during the OAuth2 Token Refresh grant update the OAuth2 Access Token claims.  This governs the \"oauth2.refresh_token_hook\" setting.
	HydraOauth2RefreshTokenHook *string `json:"hydra_oauth2_refresh_token_hook,omitempty"`
	// Sets the token hook endpoint for all grant types. If set it will be called while providing token to customize claims.  This governs the \"oauth2.token_hook.url\" setting.
	HydraOauth2TokenHook                           *string  `json:"hydra_oauth2_token_hook,omitempty"`
	HydraOidcDynamicClientRegistrationDefaultScope []string `json:"hydra_oidc_dynamic_client_registration_default_scope,omitempty"`
	// Configures OpenID Connect Dynamic Client Registration.  This governs the \"oidc.dynamic_client_registration.enabled\" setting.
	HydraOidcDynamicClientRegistrationEnabled *bool `json:"hydra_oidc_dynamic_client_registration_enabled,omitempty"`
	// Configures OpenID Connect Discovery and overwrites the pairwise algorithm  This governs the \"oidc.subject_identifiers.pairwise_salt\" setting.
	HydraOidcSubjectIdentifiersPairwiseSalt   *string  `json:"hydra_oidc_subject_identifiers_pairwise_salt,omitempty"`
	HydraOidcSubjectIdentifiersSupportedTypes []string `json:"hydra_oidc_subject_identifiers_supported_types,omitempty"`
	HydraSecretsCookie                        []string `json:"hydra_secrets_cookie,omitempty"`
	HydraSecretsSystem                        []string `json:"hydra_secrets_system,omitempty"`
	// Configures the Ory Hydra Cookie Same Site Legacy Workaround  This governs the \"serve.cookies.same_site_legacy_workaround\" setting.
	HydraServeCookiesSameSiteLegacyWorkaround *bool `json:"hydra_serve_cookies_same_site_legacy_workaround,omitempty"`
	// Configures the Ory Hydra Cookie Same Site Mode  This governs the \"serve.cookies.same_site_mode\" setting.
	HydraServeCookiesSameSiteMode *string `json:"hydra_serve_cookies_same_site_mode,omitempty"`
	// Defines access token type. jwt is a bad idea, see https://www.ory.sh/docs/hydra/advanced#json-web-tokens  This governs the \"strategies.access_token\" setting. opaque Oauth2AccessTokenStrategyOpaque jwt Oauth2AccessTokenStrategyJwt
	HydraStrategiesAccessToken *string `json:"hydra_strategies_access_token,omitempty"`
	// Defines how scopes are matched. For more details have a look at https://github.com/ory/fosite#scopes  This governs the \"strategies.scope\" setting. exact Oauth2ScopeStrategyExact wildcard Oauth2ScopeStrategyWildcard
	HydraStrategiesScope *string `json:"hydra_strategies_scope,omitempty"`
	// This governs the \"ttl.access_token\" setting.
	HydraTtlAccessToken *string `json:"hydra_ttl_access_token,omitempty"`
	// Configures how long refresh tokens are valid.  Set to -1 for refresh tokens to never expire. This is not recommended!  This governs the \"ttl.auth_code\" setting.
	HydraTtlAuthCode *string `json:"hydra_ttl_auth_code,omitempty"`
	// This governs the \"ttl.id_token\" setting.
	HydraTtlIdToken *string `json:"hydra_ttl_id_token,omitempty"`
	// Configures how long a user login and consent flow may take.  This governs the \"ttl.login_consent_request\" setting.
	HydraTtlLoginConsentRequest *string `json:"hydra_ttl_login_consent_request,omitempty"`
	// Configures how long refresh tokens are valid.  Set to -1 for refresh tokens to never expire. This is not recommended!  This governs the \"ttl.refresh_token\" setting.
	HydraTtlRefreshToken *string `json:"hydra_ttl_refresh_token,omitempty"`
	// Sets the OAuth2 Consent Endpoint URL of the OAuth2 User Login & Consent flow.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.consent\" setting.
	HydraUrlsConsent *string `json:"hydra_urls_consent,omitempty"`
	// Sets the OAuth2 Error URL of the OAuth2 User Login & Consent flow.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.error\" setting.
	HydraUrlsError *string `json:"hydra_urls_error,omitempty"`
	// Sets the OAuth2 Login Endpoint URL of the OAuth2 User Login & Consent flow.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.login\" setting.
	HydraUrlsLogin *string `json:"hydra_urls_login,omitempty"`
	// Sets the logout endpoint.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.logout\" setting.
	HydraUrlsLogout *string `json:"hydra_urls_logout,omitempty"`
	// When an OAuth2-related user agent requests to log out, they will be redirected to this url afterwards per default.  Defaults to the Ory Account Experience in development and your application in production mode when a custom domain is connected.  This governs the \"urls.post_logout_redirect\" setting.
	HydraUrlsPostLogoutRedirect *string `json:"hydra_urls_post_logout_redirect,omitempty"`
	// Sets the OAuth2 Registration Endpoint URL of the OAuth2 User Login & Consent flow.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.registration\" setting.
	HydraUrlsRegistration *string `json:"hydra_urls_registration,omitempty"`
	// This value will be used as the issuer in access and ID tokens. It must be specified and using HTTPS protocol, unless the development mode is enabled.  On the Ory Network it will be very rare that you want to modify this value. If left empty, it will default to the correct value for the Ory Network.  This governs the \"urls.self.issuer\" setting.
	HydraUrlsSelfIssuer             *string  `json:"hydra_urls_self_issuer,omitempty"`
	HydraWebfingerJwksBroadcastKeys []string `json:"hydra_webfinger_jwks_broadcast_keys,omitempty"`
	// Configures OpenID Connect Discovery and overwrites the OAuth2 Authorization URL.  This governs the \"webfinger.oidc.discovery.auth_url\" setting.
	HydraWebfingerOidcDiscoveryAuthUrl *string `json:"hydra_webfinger_oidc_discovery_auth_url,omitempty"`
	// Configures OpenID Connect Discovery and overwrites the OpenID Connect Dynamic Client Registration Endpoint.  This governs the \"webfinger.oidc.discovery.client_registration_url\" setting.
	HydraWebfingerOidcDiscoveryClientRegistrationUrl *string `json:"hydra_webfinger_oidc_discovery_client_registration_url,omitempty"`
	// Configures OpenID Connect Discovery and overwrites the JWKS URL.  This governs the \"webfinger.oidc.discovery.jwks_url\" setting.
	HydraWebfingerOidcDiscoveryJwksUrl         *string  `json:"hydra_webfinger_oidc_discovery_jwks_url,omitempty"`
	HydraWebfingerOidcDiscoverySupportedClaims []string `json:"hydra_webfinger_oidc_discovery_supported_claims,omitempty"`
	HydraWebfingerOidcDiscoverySupportedScope  []string `json:"hydra_webfinger_oidc_discovery_supported_scope,omitempty"`
	// Configures OpenID Connect Discovery and overwrites the OAuth2 Token URL.  This governs the \"webfinger.oidc.discovery.token_url\" setting.
	HydraWebfingerOidcDiscoveryTokenUrl *string `json:"hydra_webfinger_oidc_discovery_token_url,omitempty"`
	// Configures OpenID Connect Discovery and overwrites userinfo endpoint to be advertised at the OpenID Connect Discovery endpoint /.well-known/openid-configuration. Defaults to Ory Hydra's userinfo endpoint at /userinfo. Set this value if you want to handle this endpoint yourself.  This governs the \"webfinger.oidc.discovery.userinfo_url\" setting.
	HydraWebfingerOidcDiscoveryUserinfoUrl *string `json:"hydra_webfinger_oidc_discovery_userinfo_url,omitempty"`
	// The revision ID.
	Id *string `json:"id,omitempty"`
	// The Revisions' Keto Namespace Configuration  The string is a URL pointing to an OPL file with the configuration.
	KetoNamespaceConfiguration *string         `json:"keto_namespace_configuration,omitempty"`
	KetoNamespaces             []KetoNamespace `json:"keto_namespaces,omitempty"`
	// Configures the Ory Kratos Cookie SameSite Attribute  This governs the \"cookies.same_site\" setting.
	KratosCookiesSameSite *string                                   `json:"kratos_cookies_same_site,omitempty"`
	KratosCourierChannels []NormalizedProjectRevisionCourierChannel `json:"kratos_courier_channels,omitempty"`
	// The delivery strategy to use when sending emails  `smtp`: Use SMTP server `http`: Use the built in HTTP client to send the email to some remote service
	KratosCourierDeliveryStrategy *string `json:"kratos_courier_delivery_strategy,omitempty"`
	// The location of the API key to use in the HTTP email sending service's authentication  `header`: Send the key value pair as a header `cookie`: Send the key value pair as a cookie This governs the \"courier.http.auth.config.in\" setting
	KratosCourierHttpRequestConfigAuthApiKeyIn *string `json:"kratos_courier_http_request_config_auth_api_key_in,omitempty"`
	// The name of the API key to use in the HTTP email sending service's authentication  This governs the \"courier.http.auth.config.name\" setting
	KratosCourierHttpRequestConfigAuthApiKeyName *string `json:"kratos_courier_http_request_config_auth_api_key_name,omitempty"`
	// The value of the API key to use in the HTTP email sending service's authentication  This governs the \"courier.http.auth.config.value\" setting
	KratosCourierHttpRequestConfigAuthApiKeyValue *string `json:"kratos_courier_http_request_config_auth_api_key_value,omitempty"`
	// The password to use for basic auth in the HTTP email sending service's authentication  This governs the \"courier.http.auth.config.password\" setting
	KratosCourierHttpRequestConfigAuthBasicAuthPassword *string `json:"kratos_courier_http_request_config_auth_basic_auth_password,omitempty"`
	// The user to use for basic auth in the HTTP email sending service's authentication  This governs the \"courier.http.auth.config.user\" setting
	KratosCourierHttpRequestConfigAuthBasicAuthUser *string `json:"kratos_courier_http_request_config_auth_basic_auth_user,omitempty"`
	// The authentication type to use while contacting the remote HTTP email sending service  `basic_auth`: Use Basic Authentication `api_key`: Use API Key Authentication in a header or cookie
	KratosCourierHttpRequestConfigAuthType *string `json:"kratos_courier_http_request_config_auth_type,omitempty"`
	// The Jsonnet template to generate the body to send to the remote HTTP email sending service  Should be valid Jsonnet and base64 encoded  This governs the \"courier.http.body\" setting
	KratosCourierHttpRequestConfigBody *string `json:"kratos_courier_http_request_config_body,omitempty"`
	// NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-
	KratosCourierHttpRequestConfigHeaders map[string]interface{} `json:"kratos_courier_http_request_config_headers,omitempty"`
	// The http METHOD to use when calling the remote HTTP email sending service
	KratosCourierHttpRequestConfigMethod *string `json:"kratos_courier_http_request_config_method,omitempty"`
	// The URL of the remote HTTP email sending service  This governs the \"courier.http.url\" setting
	KratosCourierHttpRequestConfigUrl *string `json:"kratos_courier_http_request_config_url,omitempty"`
	// Configures the Ory Kratos SMTP Connection URI  This governs the \"courier.smtp.connection_uri\" setting.
	KratosCourierSmtpConnectionUri *string `json:"kratos_courier_smtp_connection_uri,omitempty"`
	// Configures the Ory Kratos SMTP From Address  This governs the \"courier.smtp.from_address\" setting.
	KratosCourierSmtpFromAddress *string `json:"kratos_courier_smtp_from_address,omitempty"`
	// Configures the Ory Kratos SMTP From Name  This governs the \"courier.smtp.from_name\" setting.
	KratosCourierSmtpFromName *string `json:"kratos_courier_smtp_from_name,omitempty"`
	// NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-
	KratosCourierSmtpHeaders map[string]interface{} `json:"kratos_courier_smtp_headers,omitempty"`
	// Configures the local_name to use in SMTP connections  This governs the \"courier.smtp.local_name\" setting.
	KratosCourierSmtpLocalName *string `json:"kratos_courier_smtp_local_name,omitempty"`
	// Configures the Ory Kratos Valid Login via Code Email Body HTML Template  This governs the \"courier.smtp.templates.login_code.valid.email.body.html\" setting.
	KratosCourierTemplatesLoginCodeValidEmailBodyHtml *string `json:"kratos_courier_templates_login_code_valid_email_body_html,omitempty"`
	// Configures the Ory Kratos Valid Login via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.login_code.valid.email.body.plaintext\" setting.
	KratosCourierTemplatesLoginCodeValidEmailBodyPlaintext *string `json:"kratos_courier_templates_login_code_valid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Valid Login via Code Email Subject Template  This governs the \"courier.smtp.templates.login_code.valid.email.subject\" setting.
	KratosCourierTemplatesLoginCodeValidEmailSubject *string `json:"kratos_courier_templates_login_code_valid_email_subject,omitempty"`
	// Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template  This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.
	KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml *string `json:"kratos_courier_templates_recovery_code_invalid_email_body_html,omitempty"`
	// Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting.
	KratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext *string `json:"kratos_courier_templates_recovery_code_invalid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Invalid Recovery via Code Email Subject Template  This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.
	KratosCourierTemplatesRecoveryCodeInvalidEmailSubject *string `json:"kratos_courier_templates_recovery_code_invalid_email_subject,omitempty"`
	// Configures the Ory Kratos Valid Recovery via Code Email Body HTML Template  This governs the \"courier.smtp.templates.recovery_code.valid.email.body.html\" setting.
	KratosCourierTemplatesRecoveryCodeValidEmailBodyHtml *string `json:"kratos_courier_templates_recovery_code_valid_email_body_html,omitempty"`
	// Configures the Ory Kratos Valid Recovery via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.recovery_code.valid.email.body.plaintext\" setting.
	KratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext *string `json:"kratos_courier_templates_recovery_code_valid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Valid Recovery via Code Email Subject Template  This governs the \"courier.smtp.templates.recovery_code.valid.email.subject\" setting.
	KratosCourierTemplatesRecoveryCodeValidEmailSubject *string `json:"kratos_courier_templates_recovery_code_valid_email_subject,omitempty"`
	// Configures the Ory Kratos Invalid Recovery Email Body HTML Template  This governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.
	KratosCourierTemplatesRecoveryInvalidEmailBodyHtml *string `json:"kratos_courier_templates_recovery_invalid_email_body_html,omitempty"`
	// Configures the Ory Kratos Invalid Recovery Email Body Plaintext Template  This governs the \"courier.smtp.templates.recovery.invalid.email.body.plaintext\" setting.
	KratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext *string `json:"kratos_courier_templates_recovery_invalid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Invalid Recovery Email Subject Template  This governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.
	KratosCourierTemplatesRecoveryInvalidEmailSubject *string `json:"kratos_courier_templates_recovery_invalid_email_subject,omitempty"`
	// Configures the Ory Kratos Valid Recovery Email Body HTML Template  This governs the \"courier.smtp.templates.recovery.valid.email.body.html\" setting.
	KratosCourierTemplatesRecoveryValidEmailBodyHtml *string `json:"kratos_courier_templates_recovery_valid_email_body_html,omitempty"`
	// Configures the Ory Kratos Valid Recovery Email Body Plaintext Template  This governs the \"courier.smtp.templates.recovery.valid.email.body.plaintext\" setting.
	KratosCourierTemplatesRecoveryValidEmailBodyPlaintext *string `json:"kratos_courier_templates_recovery_valid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Valid Recovery Email Subject Template  This governs the \"courier.smtp.templates.recovery.valid.email.subject\" setting.
	KratosCourierTemplatesRecoveryValidEmailSubject *string `json:"kratos_courier_templates_recovery_valid_email_subject,omitempty"`
	// Configures the Ory Kratos Valid Registration via Code Email Body HTML Template  This governs the \"courier.smtp.templates.registration_code.valid.email.body.html\" setting.
	KratosCourierTemplatesRegistrationCodeValidEmailBodyHtml *string `json:"kratos_courier_templates_registration_code_valid_email_body_html,omitempty"`
	// Configures the Ory Kratos Valid Registration via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.registration_code.valid.email.body.plaintext\" setting.
	KratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext *string `json:"kratos_courier_templates_registration_code_valid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Valid Registration via Code Email Subject Template  This governs the \"courier.smtp.templates.registration_code.valid.email.subject\" setting.
	KratosCourierTemplatesRegistrationCodeValidEmailSubject *string `json:"kratos_courier_templates_registration_code_valid_email_subject,omitempty"`
	// Configures the Ory Kratos Invalid Verification via Code Email Body HTML Template  This governs the \"courier.smtp.templates.verification_code.invalid.email.body.html\" setting.
	KratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml *string `json:"kratos_courier_templates_verification_code_invalid_email_body_html,omitempty"`
	// Configures the Ory Kratos Invalid Verification via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.verification_code.invalid.email.body.plaintext\" setting.
	KratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext *string `json:"kratos_courier_templates_verification_code_invalid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Invalid Verification via Code Email Subject Template  This governs the \"courier.smtp.templates.verification_code.invalid.email.subject\" setting.
	KratosCourierTemplatesVerificationCodeInvalidEmailSubject *string `json:"kratos_courier_templates_verification_code_invalid_email_subject,omitempty"`
	// Configures the Ory Kratos Valid Verification via Code Email Body HTML Template  This governs the \"courier.smtp.templates.verification_code.valid.email.body.html\" setting.
	KratosCourierTemplatesVerificationCodeValidEmailBodyHtml *string `json:"kratos_courier_templates_verification_code_valid_email_body_html,omitempty"`
	// Configures the Ory Kratos Valid Verification via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.verification_code.valid.email.body.plaintext\" setting.
	KratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext *string `json:"kratos_courier_templates_verification_code_valid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Valid Verification via Code Email Subject Template  This governs the \"courier.smtp.templates.verification_code.valid.email.subject\" setting.
	KratosCourierTemplatesVerificationCodeValidEmailSubject *string `json:"kratos_courier_templates_verification_code_valid_email_subject,omitempty"`
	// Configures the Ory Kratos Valid Verification via Code SMS Body Plaintext  This governs the \"courier.smtp.templates.verification_code.valid.sms.body.plaintext\" setting.
	KratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext *string `json:"kratos_courier_templates_verification_code_valid_sms_body_plaintext,omitempty"`
	// Configures the Ory Kratos Invalid Verification Email Body HTML Template  This governs the \"courier.smtp.templates.verification.invalid.email.body.html\" setting.
	KratosCourierTemplatesVerificationInvalidEmailBodyHtml *string `json:"kratos_courier_templates_verification_invalid_email_body_html,omitempty"`
	// Configures the Ory Kratos Invalid Verification Email Body Plaintext Template  This governs the \"courier.smtp.templates.verification.invalid.email.body.plaintext\" setting.
	KratosCourierTemplatesVerificationInvalidEmailBodyPlaintext *string `json:"kratos_courier_templates_verification_invalid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Invalid Verification Email Subject Template  This governs the \"courier.smtp.templates.verification.invalid.email.subject\" setting.
	KratosCourierTemplatesVerificationInvalidEmailSubject *string `json:"kratos_courier_templates_verification_invalid_email_subject,omitempty"`
	// Configures the Ory Kratos Valid Verification Email Body HTML Template  This governs the \"courier.smtp.templates.verification.valid.email.body.html\" setting.
	KratosCourierTemplatesVerificationValidEmailBodyHtml *string `json:"kratos_courier_templates_verification_valid_email_body_html,omitempty"`
	// Configures the Ory Kratos Valid Verification Email Body Plaintext Template  This governs the \"courier.smtp.templates.verification.valid.email.body.plaintext\" setting.
	KratosCourierTemplatesVerificationValidEmailBodyPlaintext *string `json:"kratos_courier_templates_verification_valid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Valid Verification Email Subject Template  This governs the \"courier.smtp.templates.verification.valid.email.subject\" setting.
	KratosCourierTemplatesVerificationValidEmailSubject *string `json:"kratos_courier_templates_verification_valid_email_subject,omitempty"`
	// Configures the Ory Kratos Session caching feature flag  This governs the \"feature_flags.cacheable_sessions\" setting.
	KratosFeatureFlagsCacheableSessions *bool `json:"kratos_feature_flags_cacheable_sessions,omitempty"`
	// Configures the Ory Kratos Session use_continue_with_transitions flag  This governs the \"feature_flags.use_continue_with_transitions\" setting.
	KratosFeatureFlagsUseContinueWithTransitions *bool                                     `json:"kratos_feature_flags_use_continue_with_transitions,omitempty"`
	KratosIdentitySchemas                        []NormalizedProjectRevisionIdentitySchema `json:"kratos_identity_schemas,omitempty"`
	// NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-
	KratosOauth2ProviderHeaders map[string]interface{} `json:"kratos_oauth2_provider_headers,omitempty"`
	// Kratos OAuth2 Provider Override Return To  Enabling this allows Kratos to set the return_to parameter automatically to the OAuth2 request URL on the login flow, allowing complex flows such as recovery to continue to the initial OAuth2 flow.
	KratosOauth2ProviderOverrideReturnTo *bool `json:"kratos_oauth2_provider_override_return_to,omitempty"`
	// The Revisions' OAuth2 Provider Integration URL  This governs the \"oauth2_provider.url\" setting.
	KratosOauth2ProviderUrl *string `json:"kratos_oauth2_provider_url,omitempty"`
	// Configures the default read consistency level for identity APIs  This governs the `preview.default_read_consistency_level` setting.  The read consistency level determines the consistency guarantee for reads:  strong (slow): The read is guaranteed to return the most recent data committed at the start of the read. eventual (very fast): The result will return data that is about 4.8 seconds old.  Setting the default consistency level to `eventual` may cause regressions in the future as we add consistency controls to more APIs. Currently, the following APIs will be affected by this setting:  `GET /admin/identities`  Defaults to \"strong\" for new and existing projects. This feature is in preview. Use with caution.
	KratosPreviewDefaultReadConsistencyLevel *string  `json:"kratos_preview_default_read_consistency_level,omitempty"`
	KratosSecretsCipher                      []string `json:"kratos_secrets_cipher,omitempty"`
	KratosSecretsCookie                      []string `json:"kratos_secrets_cookie,omitempty"`
	KratosSecretsDefault                     []string `json:"kratos_secrets_default,omitempty"`
	KratosSelfserviceAllowedReturnUrls       []string `json:"kratos_selfservice_allowed_return_urls,omitempty"`
	// Configures the Ory Kratos Default Return URL  This governs the \"selfservice.allowed_return_urls\" setting.
	KratosSelfserviceDefaultBrowserReturnUrl *string `json:"kratos_selfservice_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Error UI URL  This governs the \"selfservice.flows.error.ui_url\" setting.
	KratosSelfserviceFlowsErrorUiUrl *string `json:"kratos_selfservice_flows_error_ui_url,omitempty"`
	// Configures the Ory Kratos Login After Password Default Return URL  This governs the \"selfservice.flows.code.after.password.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_login_after_code_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Login Default Return URL  This governs the \"selfservice.flows.login.after.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_login_after_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Login After Password Default Return URL  This governs the \"selfservice.flows.lookup_secret.after.password.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Login After OIDC Default Return URL  This governs the \"selfservice.flows.login.after.oidc.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_login_after_oidc_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Login After Password Default Return URL  This governs the \"selfservice.flows.login.after.password.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_login_after_password_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Login After Password Default Return URL  This governs the \"selfservice.flows.totp.after.password.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_login_after_totp_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Login After WebAuthn Default Return URL  This governs the \"selfservice.flows.login.after.webauthn.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_login_after_webauthn_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Login Lifespan  This governs the \"selfservice.flows.login.lifespan\" setting.
	KratosSelfserviceFlowsLoginLifespan *string `json:"kratos_selfservice_flows_login_lifespan,omitempty"`
	// Configures the Ory Kratos Login UI URL  This governs the \"selfservice.flows.login.ui_url\" setting.
	KratosSelfserviceFlowsLoginUiUrl *string `json:"kratos_selfservice_flows_login_ui_url,omitempty"`
	// Configures the Ory Kratos Logout Default Return URL  This governs the \"selfservice.flows.logout.after.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_logout_after_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Recovery Default Return URL  This governs the \"selfservice.flows.recovery.after.default_browser_return_url\" setting.
	KratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_recovery_after_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Recovery Enabled Setting  This governs the \"selfservice.flows.recovery.enabled\" setting.
	KratosSelfserviceFlowsRecoveryEnabled *bool `json:"kratos_selfservice_flows_recovery_enabled,omitempty"`
	// Configures the Ory Kratos Recovery Lifespan  This governs the \"selfservice.flows.recovery.lifespan\" setting.
	KratosSelfserviceFlowsRecoveryLifespan *string `json:"kratos_selfservice_flows_recovery_lifespan,omitempty"`
	// Configures whether to notify unknown recipients of a Ory Kratos recovery flow  This governs the \"selfservice.flows.recovery.notify_unknown_recipients\" setting.
	KratosSelfserviceFlowsRecoveryNotifyUnknownRecipients *bool `json:"kratos_selfservice_flows_recovery_notify_unknown_recipients,omitempty"`
	// Configures the Ory Kratos Recovery UI URL  This governs the \"selfservice.flows.recovery.ui_url\" setting.
	KratosSelfserviceFlowsRecoveryUiUrl *string `json:"kratos_selfservice_flows_recovery_ui_url,omitempty"`
	// Configures the Ory Kratos Recovery strategy to use (\"link\" or \"code\")  This governs the \"selfservice.flows.recovery.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode
	KratosSelfserviceFlowsRecoveryUse *string `json:"kratos_selfservice_flows_recovery_use,omitempty"`
	// Configures the Ory Kratos Registration After Code Default Return URL  This governs the \"selfservice.flows.registration.after.code.default_browser_return_url\" setting.
	KratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_registration_after_code_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Registration Default Return URL  This governs the \"selfservice.flows.registration.after.default_browser_return_url\" setting.
	KratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_registration_after_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Registration After OIDC Default Return URL  This governs the \"selfservice.flows.registration.after.oidc.default_browser_return_url\" setting.
	KratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_registration_after_oidc_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Registration After Password Default Return URL  This governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.
	KratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_registration_after_password_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Registration After Password Default Return URL  This governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.
	KratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url,omitempty"`
	// Configures the Whether Ory Kratos Registration is Enabled  This governs the \"selfservice.flows.registration.enabled\" setting.0
	KratosSelfserviceFlowsRegistrationEnabled *bool `json:"kratos_selfservice_flows_registration_enabled,omitempty"`
	// Configures the Ory Kratos Registration Lifespan  This governs the \"selfservice.flows.registration.lifespan\" setting.
	KratosSelfserviceFlowsRegistrationLifespan *string `json:"kratos_selfservice_flows_registration_lifespan,omitempty"`
	// Configures the Ory Kratos Registration Login Hints  Shows helpful information when a user tries to sign up with a duplicate account.  This governs the \"selfservice.flows.registration.login_hints\" setting.
	KratosSelfserviceFlowsRegistrationLoginHints *bool `json:"kratos_selfservice_flows_registration_login_hints,omitempty"`
	// Configures the Ory Kratos Registration UI URL  This governs the \"selfservice.flows.registration.ui_url\" setting.
	KratosSelfserviceFlowsRegistrationUiUrl *string `json:"kratos_selfservice_flows_registration_ui_url,omitempty"`
	// Configures the Ory Kratos Settings Default Return URL  This governs the \"selfservice.flows.settings.after.default_browser_return_url\" setting.
	KratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_settings_after_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Settings Default Return URL After Updating Lookup Secrets  This governs the \"selfservice.flows.settings.after.lookup_secret.default_browser_return_url\" setting.
	KratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Settings Default Return URL After Updating Social Sign In  This governs the \"selfservice.flows.settings.after.oidc.default_browser_return_url\" setting.
	KratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_settings_after_oidc_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Settings Default Return URL After Updating Passwords  This governs the \"selfservice.flows.settings.after.password.default_browser_return_url\" setting.
	KratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_settings_after_password_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Settings Default Return URL After Updating Profiles  This governs the \"selfservice.flows.settings.after.profile.default_browser_return_url\" setting.
	KratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_settings_after_profile_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Settings Default Return URL After Updating TOTP  This governs the \"selfservice.flows.settings.after.totp.default_browser_return_url\" setting.
	KratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_settings_after_totp_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Settings Default Return URL After Updating WebAuthn  This governs the \"selfservice.flows.settings.webauthn.profile.default_browser_return_url\" setting.
	KratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Settings Lifespan  This governs the \"selfservice.flows.settings.lifespan\" setting.
	KratosSelfserviceFlowsSettingsLifespan *string `json:"kratos_selfservice_flows_settings_lifespan,omitempty"`
	// Configures the Ory Kratos Settings Privileged Session Max Age  This governs the \"selfservice.flows.settings.privileged_session_max_age\" setting.
	KratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge *string `json:"kratos_selfservice_flows_settings_privileged_session_max_age,omitempty"`
	// Configures the Ory Kratos Settings Required AAL  This governs the \"selfservice.flows.settings.required_aal\" setting.
	KratosSelfserviceFlowsSettingsRequiredAal *string `json:"kratos_selfservice_flows_settings_required_aal,omitempty"`
	// Configures the Ory Kratos Settings UI URL  This governs the \"selfservice.flows.settings.ui_url\" setting.
	KratosSelfserviceFlowsSettingsUiUrl *string `json:"kratos_selfservice_flows_settings_ui_url,omitempty"`
	// Configures the Ory Kratos Verification Default Return URL  This governs the \"selfservice.flows.verification.after.default_browser_return_url\" setting.
	KratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_verification_after_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Verification Enabled Setting  This governs the \"selfservice.flows.verification.enabled\" setting.
	KratosSelfserviceFlowsVerificationEnabled *bool `json:"kratos_selfservice_flows_verification_enabled,omitempty"`
	// Configures the Ory Kratos Verification Lifespan  This governs the \"selfservice.flows.verification.lifespan\" setting.
	KratosSelfserviceFlowsVerificationLifespan *string `json:"kratos_selfservice_flows_verification_lifespan,omitempty"`
	// Configures whether to notify unknown recipients of a Ory Kratos verification flow  This governs the \"selfservice.flows.verification.notify_unknown_recipients\" setting.
	KratosSelfserviceFlowsVerificationNotifyUnknownRecipients *bool `json:"kratos_selfservice_flows_verification_notify_unknown_recipients,omitempty"`
	// Configures the Ory Kratos Verification UI URL  This governs the \"selfservice.flows.verification.ui_url\" setting.
	KratosSelfserviceFlowsVerificationUiUrl *string `json:"kratos_selfservice_flows_verification_ui_url,omitempty"`
	// Configures the Ory Kratos Strategy to use for Verification  This governs the \"selfservice.flows.verification.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode
	KratosSelfserviceFlowsVerificationUse *string `json:"kratos_selfservice_flows_verification_use,omitempty"`
	// Configures the Ory Kratos Code Method's lifespan  This governs the \"selfservice.methods.code.config.lifespan\" setting.
	KratosSelfserviceMethodsCodeConfigLifespan *string `json:"kratos_selfservice_methods_code_config_lifespan,omitempty"`
	// Configures whether Ory Kratos Code Method is enabled  This governs the \"selfservice.methods.code.enabled\" setting.
	KratosSelfserviceMethodsCodeEnabled *bool `json:"kratos_selfservice_methods_code_enabled,omitempty"`
	// Configues whether Ory Kratos Passwordless should use the Code Method  This governs the \"selfservice.methods.code.passwordless_enabled\" setting.
	KratosSelfserviceMethodsCodePasswordlessEnabled *bool `json:"kratos_selfservice_methods_code_passwordless_enabled,omitempty"`
	// Configures the Base URL which Recovery, Verification, and Login Links Point to  It is recommended to leave this value empty. It will be appropriately configured to the best matching domain (e.g. when using custom domains) automatically.  This governs the \"selfservice.methods.link.config.base_url\" setting.
	KratosSelfserviceMethodsLinkConfigBaseUrl *string `json:"kratos_selfservice_methods_link_config_base_url,omitempty"`
	// Configures the Ory Kratos Link Method's lifespan  This governs the \"selfservice.methods.link.config.lifespan\" setting.
	KratosSelfserviceMethodsLinkConfigLifespan *string `json:"kratos_selfservice_methods_link_config_lifespan,omitempty"`
	// Configures whether Ory Kratos Link Method is enabled  This governs the \"selfservice.methods.link.enabled\" setting.
	KratosSelfserviceMethodsLinkEnabled *bool `json:"kratos_selfservice_methods_link_enabled,omitempty"`
	// Configures whether Ory Kratos TOTP Lookup Secret is enabled  This governs the \"selfservice.methods.lookup_secret.enabled\" setting.
	KratosSelfserviceMethodsLookupSecretEnabled *bool `json:"kratos_selfservice_methods_lookup_secret_enabled,omitempty"`
	// Configures the Ory Kratos Third Party / OpenID Connect base redirect URI  This governs the \"selfservice.methods.oidc.config.base_redirect_uri\" setting.
	KratosSelfserviceMethodsOidcConfigBaseRedirectUri *string                                       `json:"kratos_selfservice_methods_oidc_config_base_redirect_uri,omitempty"`
	KratosSelfserviceMethodsOidcConfigProviders       []NormalizedProjectRevisionThirdPartyProvider `json:"kratos_selfservice_methods_oidc_config_providers,omitempty"`
	// Configures whether Ory Kratos Third Party / OpenID Connect Login is enabled  This governs the \"selfservice.methods.oidc.enabled\" setting.
	KratosSelfserviceMethodsOidcEnabled *bool `json:"kratos_selfservice_methods_oidc_enabled,omitempty"`
	// Configures whether Ory Kratos Password HIBP Checks is enabled  This governs the \"selfservice.methods.password.config.haveibeenpwned_enabled\" setting.
	KratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled *bool `json:"kratos_selfservice_methods_password_config_haveibeenpwned_enabled,omitempty"`
	// Configures whether Ory Kratos Password should disable the similarity policy.  This governs the \"selfservice.methods.password.config.identifier_similarity_check_enabled\" setting.
	KratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled *bool `json:"kratos_selfservice_methods_password_config_identifier_similarity_check_enabled,omitempty"`
	// Configures whether Ory Kratos Password Should ignore HIBPWND Network Errors  This governs the \"selfservice.methods.password.config.ignore_network_errors\" setting.
	KratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors *bool `json:"kratos_selfservice_methods_password_config_ignore_network_errors,omitempty"`
	// Configures Ory Kratos Password Max Breaches Detection  This governs the \"selfservice.methods.password.config.max_breaches\" setting.
	KratosSelfserviceMethodsPasswordConfigMaxBreaches *int64 `json:"kratos_selfservice_methods_password_config_max_breaches,omitempty"`
	// Configures the minimum length of passwords.  This governs the \"selfservice.methods.password.config.min_password_length\" setting.
	KratosSelfserviceMethodsPasswordConfigMinPasswordLength *int64 `json:"kratos_selfservice_methods_password_config_min_password_length,omitempty"`
	// Configures whether Ory Kratos Password Method is enabled  This governs the \"selfservice.methods.password.enabled\" setting.
	KratosSelfserviceMethodsPasswordEnabled *bool `json:"kratos_selfservice_methods_password_enabled,omitempty"`
	// Configures whether Ory Kratos Profile Method is enabled  This governs the \"selfservice.methods.profile.enabled\" setting.
	KratosSelfserviceMethodsProfileEnabled *bool `json:"kratos_selfservice_methods_profile_enabled,omitempty"`
	// Configures Ory Kratos TOTP Issuer  This governs the \"selfservice.methods.totp.config.issuer\" setting.
	KratosSelfserviceMethodsTotpConfigIssuer *string `json:"kratos_selfservice_methods_totp_config_issuer,omitempty"`
	// Configures whether Ory Kratos TOTP Method is enabled  This governs the \"selfservice.methods.totp.enabled\" setting.
	KratosSelfserviceMethodsTotpEnabled *bool `json:"kratos_selfservice_methods_totp_enabled,omitempty"`
	// Configures whether Ory Kratos Webauthn is used for passwordless flows  This governs the \"selfservice.methods.webauthn.config.passwordless\" setting.
	KratosSelfserviceMethodsWebauthnConfigPasswordless *bool `json:"kratos_selfservice_methods_webauthn_config_passwordless,omitempty"`
	// Configures the Ory Kratos Webauthn RP Display Name  This governs the \"selfservice.methods.webauthn.config.rp.display_name\" setting.
	KratosSelfserviceMethodsWebauthnConfigRpDisplayName *string `json:"kratos_selfservice_methods_webauthn_config_rp_display_name,omitempty"`
	// Configures the Ory Kratos Webauthn RP Icon  This governs the \"selfservice.methods.webauthn.config.rp.icon\" setting. Deprecated: This value will be ignored due to security considerations.
	KratosSelfserviceMethodsWebauthnConfigRpIcon *string `json:"kratos_selfservice_methods_webauthn_config_rp_icon,omitempty"`
	// Configures the Ory Kratos Webauthn RP ID  This governs the \"selfservice.methods.webauthn.config.rp.id\" setting.
	KratosSelfserviceMethodsWebauthnConfigRpId      *string  `json:"kratos_selfservice_methods_webauthn_config_rp_id,omitempty"`
	KratosSelfserviceMethodsWebauthnConfigRpOrigins []string `json:"kratos_selfservice_methods_webauthn_config_rp_origins,omitempty"`
	// Configures whether Ory Kratos Webauthn is enabled  This governs the \"selfservice.methods.webauthn.enabled\" setting.
	KratosSelfserviceMethodsWebauthnEnabled *bool `json:"kratos_selfservice_methods_webauthn_enabled,omitempty"`
	// Configures the Ory Kratos Session Cookie Persistent Attribute  This governs the \"session.cookie.persistent\" setting.
	KratosSessionCookiePersistent *bool `json:"kratos_session_cookie_persistent,omitempty"`
	// Configures the Ory Kratos Session Cookie SameSite Attribute  This governs the \"session.cookie.same_site\" setting.
	KratosSessionCookieSameSite *string `json:"kratos_session_cookie_same_site,omitempty"`
	// Configures the Ory Kratos Session Lifespan  This governs the \"session.lifespan\" setting.
	KratosSessionLifespan *string `json:"kratos_session_lifespan,omitempty"`
	// Configures the Ory Kratos Session Whoami AAL requirement  This governs the \"session.whoami.required_aal\" setting.
	KratosSessionWhoamiRequiredAal        *string                                      `json:"kratos_session_whoami_required_aal,omitempty"`
	KratosSessionWhoamiTokenizerTemplates []NormalizedProjectRevisionTokenizerTemplate `json:"kratos_session_whoami_tokenizer_templates,omitempty"`
	// The project's name.
	Name string `json:"name"`
	// The Revision's Project ID
	ProjectId                    *string                         `json:"project_id,omitempty"`
	ProjectRevisionHooks         []NormalizedProjectRevisionHook `json:"project_revision_hooks,omitempty"`
	ServeAdminCorsAllowedOrigins []string                        `json:"serve_admin_cors_allowed_origins,omitempty"`
	// Enable CORS headers on all admin APIs  This governs the \"serve.admin.cors.enabled\" setting.
	ServeAdminCorsEnabled         *bool    `json:"serve_admin_cors_enabled,omitempty"`
	ServePublicCorsAllowedOrigins []string `json:"serve_public_cors_allowed_origins,omitempty"`
	// Enable CORS headers on all public APIs  This governs the \"serve.public.cors.enabled\" setting.
	ServePublicCorsEnabled *bool `json:"serve_public_cors_enabled,omitempty"`
	// Whether the project should employ strict security measures. Setting this to true is recommended for going into production.
	StrictSecurity *bool `json:"strict_security,omitempty"`
	// Last Time Project's Revision was Updated
	UpdatedAt            *time.Time     `json:"updated_at,omitempty"`
	WorkspaceId          NullableString `json:"workspace_id,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateProjectNormalizedPayload Create project (normalized) request payload

func NewCreateProjectNormalizedPayload ¶

func NewCreateProjectNormalizedPayload(name string) *CreateProjectNormalizedPayload

NewCreateProjectNormalizedPayload instantiates a new CreateProjectNormalizedPayload 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 NewCreateProjectNormalizedPayloadWithDefaults ¶

func NewCreateProjectNormalizedPayloadWithDefaults() *CreateProjectNormalizedPayload

NewCreateProjectNormalizedPayloadWithDefaults instantiates a new CreateProjectNormalizedPayload 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 (*CreateProjectNormalizedPayload) GetCreatedAt ¶

func (o *CreateProjectNormalizedPayload) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetCreatedAtOk ¶

func (o *CreateProjectNormalizedPayload) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetDisableAccountExperienceWelcomeScreen ¶

func (o *CreateProjectNormalizedPayload) GetDisableAccountExperienceWelcomeScreen() bool

GetDisableAccountExperienceWelcomeScreen returns the DisableAccountExperienceWelcomeScreen field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetDisableAccountExperienceWelcomeScreenOk ¶

func (o *CreateProjectNormalizedPayload) GetDisableAccountExperienceWelcomeScreenOk() (*bool, bool)

GetDisableAccountExperienceWelcomeScreenOk returns a tuple with the DisableAccountExperienceWelcomeScreen field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraOauth2AllowedTopLevelClaims ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2AllowedTopLevelClaims() []string

GetHydraOauth2AllowedTopLevelClaims returns the HydraOauth2AllowedTopLevelClaims field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraOauth2AllowedTopLevelClaimsOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2AllowedTopLevelClaimsOk() ([]string, bool)

GetHydraOauth2AllowedTopLevelClaimsOk returns a tuple with the HydraOauth2AllowedTopLevelClaims field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraOauth2ClientCredentialsDefaultGrantAllowedScope ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2ClientCredentialsDefaultGrantAllowedScope() bool

GetHydraOauth2ClientCredentialsDefaultGrantAllowedScope returns the HydraOauth2ClientCredentialsDefaultGrantAllowedScope field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraOauth2ClientCredentialsDefaultGrantAllowedScopeOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2ClientCredentialsDefaultGrantAllowedScopeOk() (*bool, bool)

GetHydraOauth2ClientCredentialsDefaultGrantAllowedScopeOk returns a tuple with the HydraOauth2ClientCredentialsDefaultGrantAllowedScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraOauth2ExcludeNotBeforeClaim ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2ExcludeNotBeforeClaim() bool

GetHydraOauth2ExcludeNotBeforeClaim returns the HydraOauth2ExcludeNotBeforeClaim field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraOauth2ExcludeNotBeforeClaimOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2ExcludeNotBeforeClaimOk() (*bool, bool)

GetHydraOauth2ExcludeNotBeforeClaimOk returns a tuple with the HydraOauth2ExcludeNotBeforeClaim field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraOauth2GrantJwtIatOptional ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2GrantJwtIatOptional() bool

GetHydraOauth2GrantJwtIatOptional returns the HydraOauth2GrantJwtIatOptional field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraOauth2GrantJwtIatOptionalOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2GrantJwtIatOptionalOk() (*bool, bool)

GetHydraOauth2GrantJwtIatOptionalOk returns a tuple with the HydraOauth2GrantJwtIatOptional field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraOauth2GrantJwtJtiOptional ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2GrantJwtJtiOptional() bool

GetHydraOauth2GrantJwtJtiOptional returns the HydraOauth2GrantJwtJtiOptional field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraOauth2GrantJwtJtiOptionalOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2GrantJwtJtiOptionalOk() (*bool, bool)

GetHydraOauth2GrantJwtJtiOptionalOk returns a tuple with the HydraOauth2GrantJwtJtiOptional field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraOauth2GrantJwtMaxTtl ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2GrantJwtMaxTtl() string

GetHydraOauth2GrantJwtMaxTtl returns the HydraOauth2GrantJwtMaxTtl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraOauth2GrantJwtMaxTtlOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2GrantJwtMaxTtlOk() (*string, bool)

GetHydraOauth2GrantJwtMaxTtlOk returns a tuple with the HydraOauth2GrantJwtMaxTtl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraOauth2PkceEnforced ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2PkceEnforced() bool

GetHydraOauth2PkceEnforced returns the HydraOauth2PkceEnforced field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraOauth2PkceEnforcedForPublicClients ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2PkceEnforcedForPublicClients() bool

GetHydraOauth2PkceEnforcedForPublicClients returns the HydraOauth2PkceEnforcedForPublicClients field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraOauth2PkceEnforcedForPublicClientsOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2PkceEnforcedForPublicClientsOk() (*bool, bool)

GetHydraOauth2PkceEnforcedForPublicClientsOk returns a tuple with the HydraOauth2PkceEnforcedForPublicClients field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraOauth2PkceEnforcedOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2PkceEnforcedOk() (*bool, bool)

GetHydraOauth2PkceEnforcedOk returns a tuple with the HydraOauth2PkceEnforced field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraOauth2RefreshTokenHook ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2RefreshTokenHook() string

GetHydraOauth2RefreshTokenHook returns the HydraOauth2RefreshTokenHook field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraOauth2RefreshTokenHookOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2RefreshTokenHookOk() (*string, bool)

GetHydraOauth2RefreshTokenHookOk returns a tuple with the HydraOauth2RefreshTokenHook field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraOauth2TokenHook ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2TokenHook() string

GetHydraOauth2TokenHook returns the HydraOauth2TokenHook field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraOauth2TokenHookOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraOauth2TokenHookOk() (*string, bool)

GetHydraOauth2TokenHookOk returns a tuple with the HydraOauth2TokenHook field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraOidcDynamicClientRegistrationDefaultScope ¶

func (o *CreateProjectNormalizedPayload) GetHydraOidcDynamicClientRegistrationDefaultScope() []string

GetHydraOidcDynamicClientRegistrationDefaultScope returns the HydraOidcDynamicClientRegistrationDefaultScope field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraOidcDynamicClientRegistrationDefaultScopeOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraOidcDynamicClientRegistrationDefaultScopeOk() ([]string, bool)

GetHydraOidcDynamicClientRegistrationDefaultScopeOk returns a tuple with the HydraOidcDynamicClientRegistrationDefaultScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraOidcDynamicClientRegistrationEnabled ¶

func (o *CreateProjectNormalizedPayload) GetHydraOidcDynamicClientRegistrationEnabled() bool

GetHydraOidcDynamicClientRegistrationEnabled returns the HydraOidcDynamicClientRegistrationEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraOidcDynamicClientRegistrationEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraOidcDynamicClientRegistrationEnabledOk() (*bool, bool)

GetHydraOidcDynamicClientRegistrationEnabledOk returns a tuple with the HydraOidcDynamicClientRegistrationEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraOidcSubjectIdentifiersPairwiseSalt ¶

func (o *CreateProjectNormalizedPayload) GetHydraOidcSubjectIdentifiersPairwiseSalt() string

GetHydraOidcSubjectIdentifiersPairwiseSalt returns the HydraOidcSubjectIdentifiersPairwiseSalt field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraOidcSubjectIdentifiersPairwiseSaltOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraOidcSubjectIdentifiersPairwiseSaltOk() (*string, bool)

GetHydraOidcSubjectIdentifiersPairwiseSaltOk returns a tuple with the HydraOidcSubjectIdentifiersPairwiseSalt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraOidcSubjectIdentifiersSupportedTypes ¶

func (o *CreateProjectNormalizedPayload) GetHydraOidcSubjectIdentifiersSupportedTypes() []string

GetHydraOidcSubjectIdentifiersSupportedTypes returns the HydraOidcSubjectIdentifiersSupportedTypes field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraOidcSubjectIdentifiersSupportedTypesOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraOidcSubjectIdentifiersSupportedTypesOk() ([]string, bool)

GetHydraOidcSubjectIdentifiersSupportedTypesOk returns a tuple with the HydraOidcSubjectIdentifiersSupportedTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraSecretsCookie ¶

func (o *CreateProjectNormalizedPayload) GetHydraSecretsCookie() []string

GetHydraSecretsCookie returns the HydraSecretsCookie field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraSecretsCookieOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraSecretsCookieOk() ([]string, bool)

GetHydraSecretsCookieOk returns a tuple with the HydraSecretsCookie field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraSecretsSystem ¶

func (o *CreateProjectNormalizedPayload) GetHydraSecretsSystem() []string

GetHydraSecretsSystem returns the HydraSecretsSystem field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraSecretsSystemOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraSecretsSystemOk() ([]string, bool)

GetHydraSecretsSystemOk returns a tuple with the HydraSecretsSystem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraServeCookiesSameSiteLegacyWorkaround ¶

func (o *CreateProjectNormalizedPayload) GetHydraServeCookiesSameSiteLegacyWorkaround() bool

GetHydraServeCookiesSameSiteLegacyWorkaround returns the HydraServeCookiesSameSiteLegacyWorkaround field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraServeCookiesSameSiteLegacyWorkaroundOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraServeCookiesSameSiteLegacyWorkaroundOk() (*bool, bool)

GetHydraServeCookiesSameSiteLegacyWorkaroundOk returns a tuple with the HydraServeCookiesSameSiteLegacyWorkaround field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraServeCookiesSameSiteMode ¶

func (o *CreateProjectNormalizedPayload) GetHydraServeCookiesSameSiteMode() string

GetHydraServeCookiesSameSiteMode returns the HydraServeCookiesSameSiteMode field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraServeCookiesSameSiteModeOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraServeCookiesSameSiteModeOk() (*string, bool)

GetHydraServeCookiesSameSiteModeOk returns a tuple with the HydraServeCookiesSameSiteMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraStrategiesAccessToken ¶

func (o *CreateProjectNormalizedPayload) GetHydraStrategiesAccessToken() string

GetHydraStrategiesAccessToken returns the HydraStrategiesAccessToken field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraStrategiesAccessTokenOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraStrategiesAccessTokenOk() (*string, bool)

GetHydraStrategiesAccessTokenOk returns a tuple with the HydraStrategiesAccessToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraStrategiesScope ¶

func (o *CreateProjectNormalizedPayload) GetHydraStrategiesScope() string

GetHydraStrategiesScope returns the HydraStrategiesScope field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraStrategiesScopeOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraStrategiesScopeOk() (*string, bool)

GetHydraStrategiesScopeOk returns a tuple with the HydraStrategiesScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraTtlAccessToken ¶

func (o *CreateProjectNormalizedPayload) GetHydraTtlAccessToken() string

GetHydraTtlAccessToken returns the HydraTtlAccessToken field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraTtlAccessTokenOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraTtlAccessTokenOk() (*string, bool)

GetHydraTtlAccessTokenOk returns a tuple with the HydraTtlAccessToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraTtlAuthCode ¶

func (o *CreateProjectNormalizedPayload) GetHydraTtlAuthCode() string

GetHydraTtlAuthCode returns the HydraTtlAuthCode field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraTtlAuthCodeOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraTtlAuthCodeOk() (*string, bool)

GetHydraTtlAuthCodeOk returns a tuple with the HydraTtlAuthCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraTtlIdToken ¶

func (o *CreateProjectNormalizedPayload) GetHydraTtlIdToken() string

GetHydraTtlIdToken returns the HydraTtlIdToken field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraTtlIdTokenOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraTtlIdTokenOk() (*string, bool)

GetHydraTtlIdTokenOk returns a tuple with the HydraTtlIdToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraTtlLoginConsentRequest ¶

func (o *CreateProjectNormalizedPayload) GetHydraTtlLoginConsentRequest() string

GetHydraTtlLoginConsentRequest returns the HydraTtlLoginConsentRequest field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraTtlLoginConsentRequestOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraTtlLoginConsentRequestOk() (*string, bool)

GetHydraTtlLoginConsentRequestOk returns a tuple with the HydraTtlLoginConsentRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraTtlRefreshToken ¶

func (o *CreateProjectNormalizedPayload) GetHydraTtlRefreshToken() string

GetHydraTtlRefreshToken returns the HydraTtlRefreshToken field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraTtlRefreshTokenOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraTtlRefreshTokenOk() (*string, bool)

GetHydraTtlRefreshTokenOk returns a tuple with the HydraTtlRefreshToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraUrlsConsent ¶

func (o *CreateProjectNormalizedPayload) GetHydraUrlsConsent() string

GetHydraUrlsConsent returns the HydraUrlsConsent field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraUrlsConsentOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraUrlsConsentOk() (*string, bool)

GetHydraUrlsConsentOk returns a tuple with the HydraUrlsConsent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraUrlsError ¶

func (o *CreateProjectNormalizedPayload) GetHydraUrlsError() string

GetHydraUrlsError returns the HydraUrlsError field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraUrlsErrorOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraUrlsErrorOk() (*string, bool)

GetHydraUrlsErrorOk returns a tuple with the HydraUrlsError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraUrlsLogin ¶

func (o *CreateProjectNormalizedPayload) GetHydraUrlsLogin() string

GetHydraUrlsLogin returns the HydraUrlsLogin field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraUrlsLoginOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraUrlsLoginOk() (*string, bool)

GetHydraUrlsLoginOk returns a tuple with the HydraUrlsLogin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraUrlsLogout ¶

func (o *CreateProjectNormalizedPayload) GetHydraUrlsLogout() string

GetHydraUrlsLogout returns the HydraUrlsLogout field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraUrlsLogoutOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraUrlsLogoutOk() (*string, bool)

GetHydraUrlsLogoutOk returns a tuple with the HydraUrlsLogout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraUrlsPostLogoutRedirect ¶

func (o *CreateProjectNormalizedPayload) GetHydraUrlsPostLogoutRedirect() string

GetHydraUrlsPostLogoutRedirect returns the HydraUrlsPostLogoutRedirect field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraUrlsPostLogoutRedirectOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraUrlsPostLogoutRedirectOk() (*string, bool)

GetHydraUrlsPostLogoutRedirectOk returns a tuple with the HydraUrlsPostLogoutRedirect field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraUrlsRegistration ¶

func (o *CreateProjectNormalizedPayload) GetHydraUrlsRegistration() string

GetHydraUrlsRegistration returns the HydraUrlsRegistration field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraUrlsRegistrationOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraUrlsRegistrationOk() (*string, bool)

GetHydraUrlsRegistrationOk returns a tuple with the HydraUrlsRegistration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraUrlsSelfIssuer ¶

func (o *CreateProjectNormalizedPayload) GetHydraUrlsSelfIssuer() string

GetHydraUrlsSelfIssuer returns the HydraUrlsSelfIssuer field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraUrlsSelfIssuerOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraUrlsSelfIssuerOk() (*string, bool)

GetHydraUrlsSelfIssuerOk returns a tuple with the HydraUrlsSelfIssuer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerJwksBroadcastKeys ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerJwksBroadcastKeys() []string

GetHydraWebfingerJwksBroadcastKeys returns the HydraWebfingerJwksBroadcastKeys field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerJwksBroadcastKeysOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerJwksBroadcastKeysOk() ([]string, bool)

GetHydraWebfingerJwksBroadcastKeysOk returns a tuple with the HydraWebfingerJwksBroadcastKeys field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryAuthUrl ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryAuthUrl() string

GetHydraWebfingerOidcDiscoveryAuthUrl returns the HydraWebfingerOidcDiscoveryAuthUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryAuthUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryAuthUrlOk() (*string, bool)

GetHydraWebfingerOidcDiscoveryAuthUrlOk returns a tuple with the HydraWebfingerOidcDiscoveryAuthUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryClientRegistrationUrl ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryClientRegistrationUrl() string

GetHydraWebfingerOidcDiscoveryClientRegistrationUrl returns the HydraWebfingerOidcDiscoveryClientRegistrationUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryClientRegistrationUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryClientRegistrationUrlOk() (*string, bool)

GetHydraWebfingerOidcDiscoveryClientRegistrationUrlOk returns a tuple with the HydraWebfingerOidcDiscoveryClientRegistrationUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryJwksUrl ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryJwksUrl() string

GetHydraWebfingerOidcDiscoveryJwksUrl returns the HydraWebfingerOidcDiscoveryJwksUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryJwksUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryJwksUrlOk() (*string, bool)

GetHydraWebfingerOidcDiscoveryJwksUrlOk returns a tuple with the HydraWebfingerOidcDiscoveryJwksUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoverySupportedClaims ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoverySupportedClaims() []string

GetHydraWebfingerOidcDiscoverySupportedClaims returns the HydraWebfingerOidcDiscoverySupportedClaims field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoverySupportedClaimsOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoverySupportedClaimsOk() ([]string, bool)

GetHydraWebfingerOidcDiscoverySupportedClaimsOk returns a tuple with the HydraWebfingerOidcDiscoverySupportedClaims field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoverySupportedScope ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoverySupportedScope() []string

GetHydraWebfingerOidcDiscoverySupportedScope returns the HydraWebfingerOidcDiscoverySupportedScope field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoverySupportedScopeOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoverySupportedScopeOk() ([]string, bool)

GetHydraWebfingerOidcDiscoverySupportedScopeOk returns a tuple with the HydraWebfingerOidcDiscoverySupportedScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryTokenUrl ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryTokenUrl() string

GetHydraWebfingerOidcDiscoveryTokenUrl returns the HydraWebfingerOidcDiscoveryTokenUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryTokenUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryTokenUrlOk() (*string, bool)

GetHydraWebfingerOidcDiscoveryTokenUrlOk returns a tuple with the HydraWebfingerOidcDiscoveryTokenUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryUserinfoUrl ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryUserinfoUrl() string

GetHydraWebfingerOidcDiscoveryUserinfoUrl returns the HydraWebfingerOidcDiscoveryUserinfoUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryUserinfoUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetHydraWebfingerOidcDiscoveryUserinfoUrlOk() (*string, bool)

GetHydraWebfingerOidcDiscoveryUserinfoUrlOk returns a tuple with the HydraWebfingerOidcDiscoveryUserinfoUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKetoNamespaceConfiguration ¶

func (o *CreateProjectNormalizedPayload) GetKetoNamespaceConfiguration() string

GetKetoNamespaceConfiguration returns the KetoNamespaceConfiguration field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKetoNamespaceConfigurationOk ¶

func (o *CreateProjectNormalizedPayload) GetKetoNamespaceConfigurationOk() (*string, bool)

GetKetoNamespaceConfigurationOk returns a tuple with the KetoNamespaceConfiguration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKetoNamespaces ¶

func (o *CreateProjectNormalizedPayload) GetKetoNamespaces() []KetoNamespace

GetKetoNamespaces returns the KetoNamespaces field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKetoNamespacesOk ¶

func (o *CreateProjectNormalizedPayload) GetKetoNamespacesOk() ([]KetoNamespace, bool)

GetKetoNamespacesOk returns a tuple with the KetoNamespaces field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCookiesSameSite ¶

func (o *CreateProjectNormalizedPayload) GetKratosCookiesSameSite() string

GetKratosCookiesSameSite returns the KratosCookiesSameSite field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCookiesSameSiteOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCookiesSameSiteOk() (*string, bool)

GetKratosCookiesSameSiteOk returns a tuple with the KratosCookiesSameSite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierChannels ¶

GetKratosCourierChannels returns the KratosCourierChannels field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierChannelsOk ¶

GetKratosCourierChannelsOk returns a tuple with the KratosCourierChannels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierDeliveryStrategy ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierDeliveryStrategy() string

GetKratosCourierDeliveryStrategy returns the KratosCourierDeliveryStrategy field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierDeliveryStrategyOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierDeliveryStrategyOk() (*string, bool)

GetKratosCourierDeliveryStrategyOk returns a tuple with the KratosCourierDeliveryStrategy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthApiKeyIn ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthApiKeyIn() string

GetKratosCourierHttpRequestConfigAuthApiKeyIn returns the KratosCourierHttpRequestConfigAuthApiKeyIn field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthApiKeyInOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthApiKeyInOk() (*string, bool)

GetKratosCourierHttpRequestConfigAuthApiKeyInOk returns a tuple with the KratosCourierHttpRequestConfigAuthApiKeyIn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthApiKeyName ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthApiKeyName() string

GetKratosCourierHttpRequestConfigAuthApiKeyName returns the KratosCourierHttpRequestConfigAuthApiKeyName field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthApiKeyNameOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthApiKeyNameOk() (*string, bool)

GetKratosCourierHttpRequestConfigAuthApiKeyNameOk returns a tuple with the KratosCourierHttpRequestConfigAuthApiKeyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthApiKeyValue ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthApiKeyValue() string

GetKratosCourierHttpRequestConfigAuthApiKeyValue returns the KratosCourierHttpRequestConfigAuthApiKeyValue field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthApiKeyValueOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthApiKeyValueOk() (*string, bool)

GetKratosCourierHttpRequestConfigAuthApiKeyValueOk returns a tuple with the KratosCourierHttpRequestConfigAuthApiKeyValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthBasicAuthPassword ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthBasicAuthPassword() string

GetKratosCourierHttpRequestConfigAuthBasicAuthPassword returns the KratosCourierHttpRequestConfigAuthBasicAuthPassword field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthBasicAuthPasswordOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthBasicAuthPasswordOk() (*string, bool)

GetKratosCourierHttpRequestConfigAuthBasicAuthPasswordOk returns a tuple with the KratosCourierHttpRequestConfigAuthBasicAuthPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthBasicAuthUser ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthBasicAuthUser() string

GetKratosCourierHttpRequestConfigAuthBasicAuthUser returns the KratosCourierHttpRequestConfigAuthBasicAuthUser field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthBasicAuthUserOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthBasicAuthUserOk() (*string, bool)

GetKratosCourierHttpRequestConfigAuthBasicAuthUserOk returns a tuple with the KratosCourierHttpRequestConfigAuthBasicAuthUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthType ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthType() string

GetKratosCourierHttpRequestConfigAuthType returns the KratosCourierHttpRequestConfigAuthType field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthTypeOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigAuthTypeOk() (*string, bool)

GetKratosCourierHttpRequestConfigAuthTypeOk returns a tuple with the KratosCourierHttpRequestConfigAuthType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigBody ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigBody() string

GetKratosCourierHttpRequestConfigBody returns the KratosCourierHttpRequestConfigBody field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigBodyOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigBodyOk() (*string, bool)

GetKratosCourierHttpRequestConfigBodyOk returns a tuple with the KratosCourierHttpRequestConfigBody field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigHeaders ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigHeaders() map[string]interface{}

GetKratosCourierHttpRequestConfigHeaders returns the KratosCourierHttpRequestConfigHeaders field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigHeadersOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigHeadersOk() (map[string]interface{}, bool)

GetKratosCourierHttpRequestConfigHeadersOk returns a tuple with the KratosCourierHttpRequestConfigHeaders field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigMethod ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigMethod() string

GetKratosCourierHttpRequestConfigMethod returns the KratosCourierHttpRequestConfigMethod field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigMethodOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigMethodOk() (*string, bool)

GetKratosCourierHttpRequestConfigMethodOk returns a tuple with the KratosCourierHttpRequestConfigMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigUrl() string

GetKratosCourierHttpRequestConfigUrl returns the KratosCourierHttpRequestConfigUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierHttpRequestConfigUrlOk() (*string, bool)

GetKratosCourierHttpRequestConfigUrlOk returns a tuple with the KratosCourierHttpRequestConfigUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierSmtpConnectionUri ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierSmtpConnectionUri() string

GetKratosCourierSmtpConnectionUri returns the KratosCourierSmtpConnectionUri field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierSmtpConnectionUriOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierSmtpConnectionUriOk() (*string, bool)

GetKratosCourierSmtpConnectionUriOk returns a tuple with the KratosCourierSmtpConnectionUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierSmtpFromAddress ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierSmtpFromAddress() string

GetKratosCourierSmtpFromAddress returns the KratosCourierSmtpFromAddress field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierSmtpFromAddressOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierSmtpFromAddressOk() (*string, bool)

GetKratosCourierSmtpFromAddressOk returns a tuple with the KratosCourierSmtpFromAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierSmtpFromName ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierSmtpFromName() string

GetKratosCourierSmtpFromName returns the KratosCourierSmtpFromName field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierSmtpFromNameOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierSmtpFromNameOk() (*string, bool)

GetKratosCourierSmtpFromNameOk returns a tuple with the KratosCourierSmtpFromName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierSmtpHeaders ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierSmtpHeaders() map[string]interface{}

GetKratosCourierSmtpHeaders returns the KratosCourierSmtpHeaders field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CreateProjectNormalizedPayload) GetKratosCourierSmtpHeadersOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierSmtpHeadersOk() (map[string]interface{}, bool)

GetKratosCourierSmtpHeadersOk returns a tuple with the KratosCourierSmtpHeaders field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CreateProjectNormalizedPayload) GetKratosCourierSmtpLocalName ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierSmtpLocalName() string

GetKratosCourierSmtpLocalName returns the KratosCourierSmtpLocalName field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierSmtpLocalNameOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierSmtpLocalNameOk() (*string, bool)

GetKratosCourierSmtpLocalNameOk returns a tuple with the KratosCourierSmtpLocalName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesLoginCodeValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesLoginCodeValidEmailBodyHtml() string

GetKratosCourierTemplatesLoginCodeValidEmailBodyHtml returns the KratosCourierTemplatesLoginCodeValidEmailBodyHtml field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesLoginCodeValidEmailBodyHtmlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesLoginCodeValidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesLoginCodeValidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesLoginCodeValidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext() string

GetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext returns the KratosCourierTemplatesLoginCodeValidEmailBodyPlaintext field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintextOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesLoginCodeValidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesLoginCodeValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesLoginCodeValidEmailSubject() string

GetKratosCourierTemplatesLoginCodeValidEmailSubject returns the KratosCourierTemplatesLoginCodeValidEmailSubject field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesLoginCodeValidEmailSubjectOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesLoginCodeValidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesLoginCodeValidEmailSubjectOk returns a tuple with the KratosCourierTemplatesLoginCodeValidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml() string

GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml returns the KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtmlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext() string

GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext returns the KratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintextOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeInvalidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeInvalidEmailSubject() string

GetKratosCourierTemplatesRecoveryCodeInvalidEmailSubject returns the KratosCourierTemplatesRecoveryCodeInvalidEmailSubject field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeInvalidEmailSubjectOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeInvalidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesRecoveryCodeInvalidEmailSubjectOk returns a tuple with the KratosCourierTemplatesRecoveryCodeInvalidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml() string

GetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml returns the KratosCourierTemplatesRecoveryCodeValidEmailBodyHtml field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtmlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesRecoveryCodeValidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext() string

GetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext returns the KratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintextOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeValidEmailSubject() string

GetKratosCourierTemplatesRecoveryCodeValidEmailSubject returns the KratosCourierTemplatesRecoveryCodeValidEmailSubject field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeValidEmailSubjectOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryCodeValidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesRecoveryCodeValidEmailSubjectOk returns a tuple with the KratosCourierTemplatesRecoveryCodeValidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryInvalidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryInvalidEmailBodyHtml() string

GetKratosCourierTemplatesRecoveryInvalidEmailBodyHtml returns the KratosCourierTemplatesRecoveryInvalidEmailBodyHtml field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryInvalidEmailBodyHtmlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryInvalidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesRecoveryInvalidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesRecoveryInvalidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext() string

GetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext returns the KratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintextOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryInvalidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryInvalidEmailSubject() string

GetKratosCourierTemplatesRecoveryInvalidEmailSubject returns the KratosCourierTemplatesRecoveryInvalidEmailSubject field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryInvalidEmailSubjectOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryInvalidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesRecoveryInvalidEmailSubjectOk returns a tuple with the KratosCourierTemplatesRecoveryInvalidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryValidEmailBodyHtml() string

GetKratosCourierTemplatesRecoveryValidEmailBodyHtml returns the KratosCourierTemplatesRecoveryValidEmailBodyHtml field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryValidEmailBodyHtmlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryValidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesRecoveryValidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesRecoveryValidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryValidEmailBodyPlaintext() string

GetKratosCourierTemplatesRecoveryValidEmailBodyPlaintext returns the KratosCourierTemplatesRecoveryValidEmailBodyPlaintext field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryValidEmailBodyPlaintextOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryValidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesRecoveryValidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesRecoveryValidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryValidEmailSubject() string

GetKratosCourierTemplatesRecoveryValidEmailSubject returns the KratosCourierTemplatesRecoveryValidEmailSubject field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryValidEmailSubjectOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRecoveryValidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesRecoveryValidEmailSubjectOk returns a tuple with the KratosCourierTemplatesRecoveryValidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml() string

GetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml returns the KratosCourierTemplatesRegistrationCodeValidEmailBodyHtml field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtmlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesRegistrationCodeValidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext() string

GetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext returns the KratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintextOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRegistrationCodeValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRegistrationCodeValidEmailSubject() string

GetKratosCourierTemplatesRegistrationCodeValidEmailSubject returns the KratosCourierTemplatesRegistrationCodeValidEmailSubject field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesRegistrationCodeValidEmailSubjectOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesRegistrationCodeValidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesRegistrationCodeValidEmailSubjectOk returns a tuple with the KratosCourierTemplatesRegistrationCodeValidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml() string

GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml returns the KratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtmlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext() string

GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext returns the KratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintextOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeInvalidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeInvalidEmailSubject() string

GetKratosCourierTemplatesVerificationCodeInvalidEmailSubject returns the KratosCourierTemplatesVerificationCodeInvalidEmailSubject field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeInvalidEmailSubjectOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeInvalidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesVerificationCodeInvalidEmailSubjectOk returns a tuple with the KratosCourierTemplatesVerificationCodeInvalidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidEmailBodyHtml() string

GetKratosCourierTemplatesVerificationCodeValidEmailBodyHtml returns the KratosCourierTemplatesVerificationCodeValidEmailBodyHtml field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidEmailBodyHtmlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesVerificationCodeValidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesVerificationCodeValidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext() string

GetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext returns the KratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintextOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidEmailSubject() string

GetKratosCourierTemplatesVerificationCodeValidEmailSubject returns the KratosCourierTemplatesVerificationCodeValidEmailSubject field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidEmailSubjectOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesVerificationCodeValidEmailSubjectOk returns a tuple with the KratosCourierTemplatesVerificationCodeValidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext() string

GetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext returns the KratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintextOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintextOk returns a tuple with the KratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationInvalidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationInvalidEmailBodyHtml() string

GetKratosCourierTemplatesVerificationInvalidEmailBodyHtml returns the KratosCourierTemplatesVerificationInvalidEmailBodyHtml field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationInvalidEmailBodyHtmlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationInvalidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesVerificationInvalidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesVerificationInvalidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext() string

GetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext returns the KratosCourierTemplatesVerificationInvalidEmailBodyPlaintext field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintextOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesVerificationInvalidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationInvalidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationInvalidEmailSubject() string

GetKratosCourierTemplatesVerificationInvalidEmailSubject returns the KratosCourierTemplatesVerificationInvalidEmailSubject field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationInvalidEmailSubjectOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationInvalidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesVerificationInvalidEmailSubjectOk returns a tuple with the KratosCourierTemplatesVerificationInvalidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationValidEmailBodyHtml() string

GetKratosCourierTemplatesVerificationValidEmailBodyHtml returns the KratosCourierTemplatesVerificationValidEmailBodyHtml field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationValidEmailBodyHtmlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationValidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesVerificationValidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesVerificationValidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationValidEmailBodyPlaintext() string

GetKratosCourierTemplatesVerificationValidEmailBodyPlaintext returns the KratosCourierTemplatesVerificationValidEmailBodyPlaintext field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationValidEmailBodyPlaintextOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationValidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesVerificationValidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesVerificationValidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationValidEmailSubject() string

GetKratosCourierTemplatesVerificationValidEmailSubject returns the KratosCourierTemplatesVerificationValidEmailSubject field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationValidEmailSubjectOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosCourierTemplatesVerificationValidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesVerificationValidEmailSubjectOk returns a tuple with the KratosCourierTemplatesVerificationValidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosFeatureFlagsCacheableSessions ¶

func (o *CreateProjectNormalizedPayload) GetKratosFeatureFlagsCacheableSessions() bool

GetKratosFeatureFlagsCacheableSessions returns the KratosFeatureFlagsCacheableSessions field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosFeatureFlagsCacheableSessionsOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosFeatureFlagsCacheableSessionsOk() (*bool, bool)

GetKratosFeatureFlagsCacheableSessionsOk returns a tuple with the KratosFeatureFlagsCacheableSessions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosFeatureFlagsUseContinueWithTransitions ¶

func (o *CreateProjectNormalizedPayload) GetKratosFeatureFlagsUseContinueWithTransitions() bool

GetKratosFeatureFlagsUseContinueWithTransitions returns the KratosFeatureFlagsUseContinueWithTransitions field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosFeatureFlagsUseContinueWithTransitionsOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosFeatureFlagsUseContinueWithTransitionsOk() (*bool, bool)

GetKratosFeatureFlagsUseContinueWithTransitionsOk returns a tuple with the KratosFeatureFlagsUseContinueWithTransitions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosIdentitySchemas ¶

GetKratosIdentitySchemas returns the KratosIdentitySchemas field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosIdentitySchemasOk ¶

GetKratosIdentitySchemasOk returns a tuple with the KratosIdentitySchemas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosOauth2ProviderHeaders ¶

func (o *CreateProjectNormalizedPayload) GetKratosOauth2ProviderHeaders() map[string]interface{}

GetKratosOauth2ProviderHeaders returns the KratosOauth2ProviderHeaders field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CreateProjectNormalizedPayload) GetKratosOauth2ProviderHeadersOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosOauth2ProviderHeadersOk() (map[string]interface{}, bool)

GetKratosOauth2ProviderHeadersOk returns a tuple with the KratosOauth2ProviderHeaders field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CreateProjectNormalizedPayload) GetKratosOauth2ProviderOverrideReturnTo ¶

func (o *CreateProjectNormalizedPayload) GetKratosOauth2ProviderOverrideReturnTo() bool

GetKratosOauth2ProviderOverrideReturnTo returns the KratosOauth2ProviderOverrideReturnTo field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosOauth2ProviderOverrideReturnToOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosOauth2ProviderOverrideReturnToOk() (*bool, bool)

GetKratosOauth2ProviderOverrideReturnToOk returns a tuple with the KratosOauth2ProviderOverrideReturnTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosOauth2ProviderUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosOauth2ProviderUrl() string

GetKratosOauth2ProviderUrl returns the KratosOauth2ProviderUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosOauth2ProviderUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosOauth2ProviderUrlOk() (*string, bool)

GetKratosOauth2ProviderUrlOk returns a tuple with the KratosOauth2ProviderUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosPreviewDefaultReadConsistencyLevel ¶

func (o *CreateProjectNormalizedPayload) GetKratosPreviewDefaultReadConsistencyLevel() string

GetKratosPreviewDefaultReadConsistencyLevel returns the KratosPreviewDefaultReadConsistencyLevel field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosPreviewDefaultReadConsistencyLevelOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosPreviewDefaultReadConsistencyLevelOk() (*string, bool)

GetKratosPreviewDefaultReadConsistencyLevelOk returns a tuple with the KratosPreviewDefaultReadConsistencyLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSecretsCipher ¶

func (o *CreateProjectNormalizedPayload) GetKratosSecretsCipher() []string

GetKratosSecretsCipher returns the KratosSecretsCipher field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSecretsCipherOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSecretsCipherOk() ([]string, bool)

GetKratosSecretsCipherOk returns a tuple with the KratosSecretsCipher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSecretsCookie ¶

func (o *CreateProjectNormalizedPayload) GetKratosSecretsCookie() []string

GetKratosSecretsCookie returns the KratosSecretsCookie field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSecretsCookieOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSecretsCookieOk() ([]string, bool)

GetKratosSecretsCookieOk returns a tuple with the KratosSecretsCookie field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSecretsDefault ¶

func (o *CreateProjectNormalizedPayload) GetKratosSecretsDefault() []string

GetKratosSecretsDefault returns the KratosSecretsDefault field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSecretsDefaultOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSecretsDefaultOk() ([]string, bool)

GetKratosSecretsDefaultOk returns a tuple with the KratosSecretsDefault field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceAllowedReturnUrls ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceAllowedReturnUrls() []string

GetKratosSelfserviceAllowedReturnUrls returns the KratosSelfserviceAllowedReturnUrls field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceAllowedReturnUrlsOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceAllowedReturnUrlsOk() ([]string, bool)

GetKratosSelfserviceAllowedReturnUrlsOk returns a tuple with the KratosSelfserviceAllowedReturnUrls field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceDefaultBrowserReturnUrl() string

GetKratosSelfserviceDefaultBrowserReturnUrl returns the KratosSelfserviceDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsErrorUiUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsErrorUiUrl() string

GetKratosSelfserviceFlowsErrorUiUrl returns the KratosSelfserviceFlowsErrorUiUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsErrorUiUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsErrorUiUrlOk() (*string, bool)

GetKratosSelfserviceFlowsErrorUiUrlOk returns a tuple with the KratosSelfserviceFlowsErrorUiUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginLifespan ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginLifespan() string

GetKratosSelfserviceFlowsLoginLifespan returns the KratosSelfserviceFlowsLoginLifespan field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginLifespanOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginLifespanOk() (*string, bool)

GetKratosSelfserviceFlowsLoginLifespanOk returns a tuple with the KratosSelfserviceFlowsLoginLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginUiUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginUiUrl() string

GetKratosSelfserviceFlowsLoginUiUrl returns the KratosSelfserviceFlowsLoginUiUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginUiUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLoginUiUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginUiUrlOk returns a tuple with the KratosSelfserviceFlowsLoginUiUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryEnabled ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryEnabled() bool

GetKratosSelfserviceFlowsRecoveryEnabled returns the KratosSelfserviceFlowsRecoveryEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryEnabledOk() (*bool, bool)

GetKratosSelfserviceFlowsRecoveryEnabledOk returns a tuple with the KratosSelfserviceFlowsRecoveryEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryLifespan ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryLifespan() string

GetKratosSelfserviceFlowsRecoveryLifespan returns the KratosSelfserviceFlowsRecoveryLifespan field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryLifespanOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryLifespanOk() (*string, bool)

GetKratosSelfserviceFlowsRecoveryLifespanOk returns a tuple with the KratosSelfserviceFlowsRecoveryLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients() bool

GetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients returns the KratosSelfserviceFlowsRecoveryNotifyUnknownRecipients field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipientsOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipientsOk() (*bool, bool)

GetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipientsOk returns a tuple with the KratosSelfserviceFlowsRecoveryNotifyUnknownRecipients field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryUiUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryUiUrl() string

GetKratosSelfserviceFlowsRecoveryUiUrl returns the KratosSelfserviceFlowsRecoveryUiUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryUiUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryUiUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRecoveryUiUrlOk returns a tuple with the KratosSelfserviceFlowsRecoveryUiUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryUse ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryUse() string

GetKratosSelfserviceFlowsRecoveryUse returns the KratosSelfserviceFlowsRecoveryUse field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryUseOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRecoveryUseOk() (*string, bool)

GetKratosSelfserviceFlowsRecoveryUseOk returns a tuple with the KratosSelfserviceFlowsRecoveryUse field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationEnabled ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationEnabled() bool

GetKratosSelfserviceFlowsRegistrationEnabled returns the KratosSelfserviceFlowsRegistrationEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationEnabledOk() (*bool, bool)

GetKratosSelfserviceFlowsRegistrationEnabledOk returns a tuple with the KratosSelfserviceFlowsRegistrationEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationLifespan ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationLifespan() string

GetKratosSelfserviceFlowsRegistrationLifespan returns the KratosSelfserviceFlowsRegistrationLifespan field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationLifespanOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationLifespanOk() (*string, bool)

GetKratosSelfserviceFlowsRegistrationLifespanOk returns a tuple with the KratosSelfserviceFlowsRegistrationLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationLoginHints ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationLoginHints() bool

GetKratosSelfserviceFlowsRegistrationLoginHints returns the KratosSelfserviceFlowsRegistrationLoginHints field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationLoginHintsOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationLoginHintsOk() (*bool, bool)

GetKratosSelfserviceFlowsRegistrationLoginHintsOk returns a tuple with the KratosSelfserviceFlowsRegistrationLoginHints field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationUiUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationUiUrl() string

GetKratosSelfserviceFlowsRegistrationUiUrl returns the KratosSelfserviceFlowsRegistrationUiUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationUiUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsRegistrationUiUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRegistrationUiUrlOk returns a tuple with the KratosSelfserviceFlowsRegistrationUiUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsLifespan ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsLifespan() string

GetKratosSelfserviceFlowsSettingsLifespan returns the KratosSelfserviceFlowsSettingsLifespan field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsLifespanOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsLifespanOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsLifespanOk returns a tuple with the KratosSelfserviceFlowsSettingsLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge() string

GetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge returns the KratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAgeOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAgeOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAgeOk returns a tuple with the KratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsRequiredAal ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsRequiredAal() string

GetKratosSelfserviceFlowsSettingsRequiredAal returns the KratosSelfserviceFlowsSettingsRequiredAal field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsRequiredAalOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsRequiredAalOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsRequiredAalOk returns a tuple with the KratosSelfserviceFlowsSettingsRequiredAal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsUiUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsUiUrl() string

GetKratosSelfserviceFlowsSettingsUiUrl returns the KratosSelfserviceFlowsSettingsUiUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsUiUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsSettingsUiUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsUiUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsUiUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationEnabled ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationEnabled() bool

GetKratosSelfserviceFlowsVerificationEnabled returns the KratosSelfserviceFlowsVerificationEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationEnabledOk() (*bool, bool)

GetKratosSelfserviceFlowsVerificationEnabledOk returns a tuple with the KratosSelfserviceFlowsVerificationEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationLifespan ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationLifespan() string

GetKratosSelfserviceFlowsVerificationLifespan returns the KratosSelfserviceFlowsVerificationLifespan field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationLifespanOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationLifespanOk() (*string, bool)

GetKratosSelfserviceFlowsVerificationLifespanOk returns a tuple with the KratosSelfserviceFlowsVerificationLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationNotifyUnknownRecipients ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationNotifyUnknownRecipients() bool

GetKratosSelfserviceFlowsVerificationNotifyUnknownRecipients returns the KratosSelfserviceFlowsVerificationNotifyUnknownRecipients field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationNotifyUnknownRecipientsOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationNotifyUnknownRecipientsOk() (*bool, bool)

GetKratosSelfserviceFlowsVerificationNotifyUnknownRecipientsOk returns a tuple with the KratosSelfserviceFlowsVerificationNotifyUnknownRecipients field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationUiUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationUiUrl() string

GetKratosSelfserviceFlowsVerificationUiUrl returns the KratosSelfserviceFlowsVerificationUiUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationUiUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationUiUrlOk() (*string, bool)

GetKratosSelfserviceFlowsVerificationUiUrlOk returns a tuple with the KratosSelfserviceFlowsVerificationUiUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationUse ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationUse() string

GetKratosSelfserviceFlowsVerificationUse returns the KratosSelfserviceFlowsVerificationUse field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationUseOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceFlowsVerificationUseOk() (*string, bool)

GetKratosSelfserviceFlowsVerificationUseOk returns a tuple with the KratosSelfserviceFlowsVerificationUse field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsCodeConfigLifespan ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsCodeConfigLifespan() string

GetKratosSelfserviceMethodsCodeConfigLifespan returns the KratosSelfserviceMethodsCodeConfigLifespan field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsCodeConfigLifespanOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsCodeConfigLifespanOk() (*string, bool)

GetKratosSelfserviceMethodsCodeConfigLifespanOk returns a tuple with the KratosSelfserviceMethodsCodeConfigLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsCodeEnabled ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsCodeEnabled() bool

GetKratosSelfserviceMethodsCodeEnabled returns the KratosSelfserviceMethodsCodeEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsCodeEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsCodeEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsCodeEnabledOk returns a tuple with the KratosSelfserviceMethodsCodeEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsCodePasswordlessEnabled ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsCodePasswordlessEnabled() bool

GetKratosSelfserviceMethodsCodePasswordlessEnabled returns the KratosSelfserviceMethodsCodePasswordlessEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsCodePasswordlessEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsCodePasswordlessEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsCodePasswordlessEnabledOk returns a tuple with the KratosSelfserviceMethodsCodePasswordlessEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLinkConfigBaseUrl ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLinkConfigBaseUrl() string

GetKratosSelfserviceMethodsLinkConfigBaseUrl returns the KratosSelfserviceMethodsLinkConfigBaseUrl field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLinkConfigBaseUrlOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLinkConfigBaseUrlOk() (*string, bool)

GetKratosSelfserviceMethodsLinkConfigBaseUrlOk returns a tuple with the KratosSelfserviceMethodsLinkConfigBaseUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLinkConfigLifespan ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLinkConfigLifespan() string

GetKratosSelfserviceMethodsLinkConfigLifespan returns the KratosSelfserviceMethodsLinkConfigLifespan field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLinkConfigLifespanOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLinkConfigLifespanOk() (*string, bool)

GetKratosSelfserviceMethodsLinkConfigLifespanOk returns a tuple with the KratosSelfserviceMethodsLinkConfigLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLinkEnabled ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLinkEnabled() bool

GetKratosSelfserviceMethodsLinkEnabled returns the KratosSelfserviceMethodsLinkEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLinkEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLinkEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsLinkEnabledOk returns a tuple with the KratosSelfserviceMethodsLinkEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLookupSecretEnabled ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLookupSecretEnabled() bool

GetKratosSelfserviceMethodsLookupSecretEnabled returns the KratosSelfserviceMethodsLookupSecretEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLookupSecretEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsLookupSecretEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsLookupSecretEnabledOk returns a tuple with the KratosSelfserviceMethodsLookupSecretEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsOidcConfigBaseRedirectUri ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsOidcConfigBaseRedirectUri() string

GetKratosSelfserviceMethodsOidcConfigBaseRedirectUri returns the KratosSelfserviceMethodsOidcConfigBaseRedirectUri field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsOidcConfigBaseRedirectUriOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsOidcConfigBaseRedirectUriOk() (*string, bool)

GetKratosSelfserviceMethodsOidcConfigBaseRedirectUriOk returns a tuple with the KratosSelfserviceMethodsOidcConfigBaseRedirectUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsOidcConfigProviders ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsOidcConfigProviders() []NormalizedProjectRevisionThirdPartyProvider

GetKratosSelfserviceMethodsOidcConfigProviders returns the KratosSelfserviceMethodsOidcConfigProviders field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsOidcConfigProvidersOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsOidcConfigProvidersOk() ([]NormalizedProjectRevisionThirdPartyProvider, bool)

GetKratosSelfserviceMethodsOidcConfigProvidersOk returns a tuple with the KratosSelfserviceMethodsOidcConfigProviders field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsOidcEnabled ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsOidcEnabled() bool

GetKratosSelfserviceMethodsOidcEnabled returns the KratosSelfserviceMethodsOidcEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsOidcEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsOidcEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsOidcEnabledOk returns a tuple with the KratosSelfserviceMethodsOidcEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled() bool

GetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled returns the KratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabledOk returns a tuple with the KratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled() bool

GetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled returns the KratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabledOk returns a tuple with the KratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors() bool

GetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors returns the KratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrorsOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrorsOk() (*bool, bool)

GetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrorsOk returns a tuple with the KratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigMaxBreaches ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigMaxBreaches() int64

GetKratosSelfserviceMethodsPasswordConfigMaxBreaches returns the KratosSelfserviceMethodsPasswordConfigMaxBreaches field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigMaxBreachesOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigMaxBreachesOk() (*int64, bool)

GetKratosSelfserviceMethodsPasswordConfigMaxBreachesOk returns a tuple with the KratosSelfserviceMethodsPasswordConfigMaxBreaches field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigMinPasswordLength ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigMinPasswordLength() int64

GetKratosSelfserviceMethodsPasswordConfigMinPasswordLength returns the KratosSelfserviceMethodsPasswordConfigMinPasswordLength field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigMinPasswordLengthOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordConfigMinPasswordLengthOk() (*int64, bool)

GetKratosSelfserviceMethodsPasswordConfigMinPasswordLengthOk returns a tuple with the KratosSelfserviceMethodsPasswordConfigMinPasswordLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordEnabled ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordEnabled() bool

GetKratosSelfserviceMethodsPasswordEnabled returns the KratosSelfserviceMethodsPasswordEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsPasswordEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsPasswordEnabledOk returns a tuple with the KratosSelfserviceMethodsPasswordEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsProfileEnabled ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsProfileEnabled() bool

GetKratosSelfserviceMethodsProfileEnabled returns the KratosSelfserviceMethodsProfileEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsProfileEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsProfileEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsProfileEnabledOk returns a tuple with the KratosSelfserviceMethodsProfileEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsTotpConfigIssuer ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsTotpConfigIssuer() string

GetKratosSelfserviceMethodsTotpConfigIssuer returns the KratosSelfserviceMethodsTotpConfigIssuer field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsTotpConfigIssuerOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsTotpConfigIssuerOk() (*string, bool)

GetKratosSelfserviceMethodsTotpConfigIssuerOk returns a tuple with the KratosSelfserviceMethodsTotpConfigIssuer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsTotpEnabled ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsTotpEnabled() bool

GetKratosSelfserviceMethodsTotpEnabled returns the KratosSelfserviceMethodsTotpEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsTotpEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsTotpEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsTotpEnabledOk returns a tuple with the KratosSelfserviceMethodsTotpEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigPasswordless ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigPasswordless() bool

GetKratosSelfserviceMethodsWebauthnConfigPasswordless returns the KratosSelfserviceMethodsWebauthnConfigPasswordless field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigPasswordlessOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigPasswordlessOk() (*bool, bool)

GetKratosSelfserviceMethodsWebauthnConfigPasswordlessOk returns a tuple with the KratosSelfserviceMethodsWebauthnConfigPasswordless field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpDisplayName ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpDisplayName() string

GetKratosSelfserviceMethodsWebauthnConfigRpDisplayName returns the KratosSelfserviceMethodsWebauthnConfigRpDisplayName field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpDisplayNameOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpDisplayNameOk() (*string, bool)

GetKratosSelfserviceMethodsWebauthnConfigRpDisplayNameOk returns a tuple with the KratosSelfserviceMethodsWebauthnConfigRpDisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpIcon ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpIcon() string

GetKratosSelfserviceMethodsWebauthnConfigRpIcon returns the KratosSelfserviceMethodsWebauthnConfigRpIcon field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpIconOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpIconOk() (*string, bool)

GetKratosSelfserviceMethodsWebauthnConfigRpIconOk returns a tuple with the KratosSelfserviceMethodsWebauthnConfigRpIcon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpId ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpId() string

GetKratosSelfserviceMethodsWebauthnConfigRpId returns the KratosSelfserviceMethodsWebauthnConfigRpId field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpIdOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpIdOk() (*string, bool)

GetKratosSelfserviceMethodsWebauthnConfigRpIdOk returns a tuple with the KratosSelfserviceMethodsWebauthnConfigRpId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpOrigins ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpOrigins() []string

GetKratosSelfserviceMethodsWebauthnConfigRpOrigins returns the KratosSelfserviceMethodsWebauthnConfigRpOrigins field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpOriginsOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnConfigRpOriginsOk() ([]string, bool)

GetKratosSelfserviceMethodsWebauthnConfigRpOriginsOk returns a tuple with the KratosSelfserviceMethodsWebauthnConfigRpOrigins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnEnabled ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnEnabled() bool

GetKratosSelfserviceMethodsWebauthnEnabled returns the KratosSelfserviceMethodsWebauthnEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSelfserviceMethodsWebauthnEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsWebauthnEnabledOk returns a tuple with the KratosSelfserviceMethodsWebauthnEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSessionCookiePersistent ¶

func (o *CreateProjectNormalizedPayload) GetKratosSessionCookiePersistent() bool

GetKratosSessionCookiePersistent returns the KratosSessionCookiePersistent field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSessionCookiePersistentOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSessionCookiePersistentOk() (*bool, bool)

GetKratosSessionCookiePersistentOk returns a tuple with the KratosSessionCookiePersistent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSessionCookieSameSite ¶

func (o *CreateProjectNormalizedPayload) GetKratosSessionCookieSameSite() string

GetKratosSessionCookieSameSite returns the KratosSessionCookieSameSite field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSessionCookieSameSiteOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSessionCookieSameSiteOk() (*string, bool)

GetKratosSessionCookieSameSiteOk returns a tuple with the KratosSessionCookieSameSite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSessionLifespan ¶

func (o *CreateProjectNormalizedPayload) GetKratosSessionLifespan() string

GetKratosSessionLifespan returns the KratosSessionLifespan field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSessionLifespanOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSessionLifespanOk() (*string, bool)

GetKratosSessionLifespanOk returns a tuple with the KratosSessionLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSessionWhoamiRequiredAal ¶

func (o *CreateProjectNormalizedPayload) GetKratosSessionWhoamiRequiredAal() string

GetKratosSessionWhoamiRequiredAal returns the KratosSessionWhoamiRequiredAal field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSessionWhoamiRequiredAalOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSessionWhoamiRequiredAalOk() (*string, bool)

GetKratosSessionWhoamiRequiredAalOk returns a tuple with the KratosSessionWhoamiRequiredAal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetKratosSessionWhoamiTokenizerTemplates ¶

func (o *CreateProjectNormalizedPayload) GetKratosSessionWhoamiTokenizerTemplates() []NormalizedProjectRevisionTokenizerTemplate

GetKratosSessionWhoamiTokenizerTemplates returns the KratosSessionWhoamiTokenizerTemplates field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetKratosSessionWhoamiTokenizerTemplatesOk ¶

func (o *CreateProjectNormalizedPayload) GetKratosSessionWhoamiTokenizerTemplatesOk() ([]NormalizedProjectRevisionTokenizerTemplate, bool)

GetKratosSessionWhoamiTokenizerTemplatesOk returns a tuple with the KratosSessionWhoamiTokenizerTemplates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetName ¶

GetName returns the Name field value

func (*CreateProjectNormalizedPayload) GetNameOk ¶

func (o *CreateProjectNormalizedPayload) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetProjectId ¶

func (o *CreateProjectNormalizedPayload) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetProjectIdOk ¶

func (o *CreateProjectNormalizedPayload) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetProjectRevisionHooks ¶

func (o *CreateProjectNormalizedPayload) GetProjectRevisionHooks() []NormalizedProjectRevisionHook

GetProjectRevisionHooks returns the ProjectRevisionHooks field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetProjectRevisionHooksOk ¶

func (o *CreateProjectNormalizedPayload) GetProjectRevisionHooksOk() ([]NormalizedProjectRevisionHook, bool)

GetProjectRevisionHooksOk returns a tuple with the ProjectRevisionHooks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetServeAdminCorsAllowedOrigins ¶

func (o *CreateProjectNormalizedPayload) GetServeAdminCorsAllowedOrigins() []string

GetServeAdminCorsAllowedOrigins returns the ServeAdminCorsAllowedOrigins field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetServeAdminCorsAllowedOriginsOk ¶

func (o *CreateProjectNormalizedPayload) GetServeAdminCorsAllowedOriginsOk() ([]string, bool)

GetServeAdminCorsAllowedOriginsOk returns a tuple with the ServeAdminCorsAllowedOrigins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetServeAdminCorsEnabled ¶

func (o *CreateProjectNormalizedPayload) GetServeAdminCorsEnabled() bool

GetServeAdminCorsEnabled returns the ServeAdminCorsEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetServeAdminCorsEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetServeAdminCorsEnabledOk() (*bool, bool)

GetServeAdminCorsEnabledOk returns a tuple with the ServeAdminCorsEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetServePublicCorsAllowedOrigins ¶

func (o *CreateProjectNormalizedPayload) GetServePublicCorsAllowedOrigins() []string

GetServePublicCorsAllowedOrigins returns the ServePublicCorsAllowedOrigins field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetServePublicCorsAllowedOriginsOk ¶

func (o *CreateProjectNormalizedPayload) GetServePublicCorsAllowedOriginsOk() ([]string, bool)

GetServePublicCorsAllowedOriginsOk returns a tuple with the ServePublicCorsAllowedOrigins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetServePublicCorsEnabled ¶

func (o *CreateProjectNormalizedPayload) GetServePublicCorsEnabled() bool

GetServePublicCorsEnabled returns the ServePublicCorsEnabled field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetServePublicCorsEnabledOk ¶

func (o *CreateProjectNormalizedPayload) GetServePublicCorsEnabledOk() (*bool, bool)

GetServePublicCorsEnabledOk returns a tuple with the ServePublicCorsEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetStrictSecurity ¶

func (o *CreateProjectNormalizedPayload) GetStrictSecurity() bool

GetStrictSecurity returns the StrictSecurity field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetStrictSecurityOk ¶

func (o *CreateProjectNormalizedPayload) GetStrictSecurityOk() (*bool, bool)

GetStrictSecurityOk returns a tuple with the StrictSecurity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetUpdatedAt ¶

func (o *CreateProjectNormalizedPayload) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*CreateProjectNormalizedPayload) GetUpdatedAtOk ¶

func (o *CreateProjectNormalizedPayload) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateProjectNormalizedPayload) GetWorkspaceId ¶

func (o *CreateProjectNormalizedPayload) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CreateProjectNormalizedPayload) GetWorkspaceIdOk ¶

func (o *CreateProjectNormalizedPayload) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CreateProjectNormalizedPayload) HasCreatedAt ¶

func (o *CreateProjectNormalizedPayload) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasDisableAccountExperienceWelcomeScreen ¶

func (o *CreateProjectNormalizedPayload) HasDisableAccountExperienceWelcomeScreen() bool

HasDisableAccountExperienceWelcomeScreen returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraOauth2AllowedTopLevelClaims ¶

func (o *CreateProjectNormalizedPayload) HasHydraOauth2AllowedTopLevelClaims() bool

HasHydraOauth2AllowedTopLevelClaims returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraOauth2ClientCredentialsDefaultGrantAllowedScope ¶

func (o *CreateProjectNormalizedPayload) HasHydraOauth2ClientCredentialsDefaultGrantAllowedScope() bool

HasHydraOauth2ClientCredentialsDefaultGrantAllowedScope returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraOauth2ExcludeNotBeforeClaim ¶

func (o *CreateProjectNormalizedPayload) HasHydraOauth2ExcludeNotBeforeClaim() bool

HasHydraOauth2ExcludeNotBeforeClaim returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraOauth2GrantJwtIatOptional ¶

func (o *CreateProjectNormalizedPayload) HasHydraOauth2GrantJwtIatOptional() bool

HasHydraOauth2GrantJwtIatOptional returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraOauth2GrantJwtJtiOptional ¶

func (o *CreateProjectNormalizedPayload) HasHydraOauth2GrantJwtJtiOptional() bool

HasHydraOauth2GrantJwtJtiOptional returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraOauth2GrantJwtMaxTtl ¶

func (o *CreateProjectNormalizedPayload) HasHydraOauth2GrantJwtMaxTtl() bool

HasHydraOauth2GrantJwtMaxTtl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraOauth2PkceEnforced ¶

func (o *CreateProjectNormalizedPayload) HasHydraOauth2PkceEnforced() bool

HasHydraOauth2PkceEnforced returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraOauth2PkceEnforcedForPublicClients ¶

func (o *CreateProjectNormalizedPayload) HasHydraOauth2PkceEnforcedForPublicClients() bool

HasHydraOauth2PkceEnforcedForPublicClients returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraOauth2RefreshTokenHook ¶

func (o *CreateProjectNormalizedPayload) HasHydraOauth2RefreshTokenHook() bool

HasHydraOauth2RefreshTokenHook returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraOauth2TokenHook ¶

func (o *CreateProjectNormalizedPayload) HasHydraOauth2TokenHook() bool

HasHydraOauth2TokenHook returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraOidcDynamicClientRegistrationDefaultScope ¶

func (o *CreateProjectNormalizedPayload) HasHydraOidcDynamicClientRegistrationDefaultScope() bool

HasHydraOidcDynamicClientRegistrationDefaultScope returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraOidcDynamicClientRegistrationEnabled ¶

func (o *CreateProjectNormalizedPayload) HasHydraOidcDynamicClientRegistrationEnabled() bool

HasHydraOidcDynamicClientRegistrationEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraOidcSubjectIdentifiersPairwiseSalt ¶

func (o *CreateProjectNormalizedPayload) HasHydraOidcSubjectIdentifiersPairwiseSalt() bool

HasHydraOidcSubjectIdentifiersPairwiseSalt returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraOidcSubjectIdentifiersSupportedTypes ¶

func (o *CreateProjectNormalizedPayload) HasHydraOidcSubjectIdentifiersSupportedTypes() bool

HasHydraOidcSubjectIdentifiersSupportedTypes returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraSecretsCookie ¶

func (o *CreateProjectNormalizedPayload) HasHydraSecretsCookie() bool

HasHydraSecretsCookie returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraSecretsSystem ¶

func (o *CreateProjectNormalizedPayload) HasHydraSecretsSystem() bool

HasHydraSecretsSystem returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraServeCookiesSameSiteLegacyWorkaround ¶

func (o *CreateProjectNormalizedPayload) HasHydraServeCookiesSameSiteLegacyWorkaround() bool

HasHydraServeCookiesSameSiteLegacyWorkaround returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraServeCookiesSameSiteMode ¶

func (o *CreateProjectNormalizedPayload) HasHydraServeCookiesSameSiteMode() bool

HasHydraServeCookiesSameSiteMode returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraStrategiesAccessToken ¶

func (o *CreateProjectNormalizedPayload) HasHydraStrategiesAccessToken() bool

HasHydraStrategiesAccessToken returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraStrategiesScope ¶

func (o *CreateProjectNormalizedPayload) HasHydraStrategiesScope() bool

HasHydraStrategiesScope returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraTtlAccessToken ¶

func (o *CreateProjectNormalizedPayload) HasHydraTtlAccessToken() bool

HasHydraTtlAccessToken returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraTtlAuthCode ¶

func (o *CreateProjectNormalizedPayload) HasHydraTtlAuthCode() bool

HasHydraTtlAuthCode returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraTtlIdToken ¶

func (o *CreateProjectNormalizedPayload) HasHydraTtlIdToken() bool

HasHydraTtlIdToken returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraTtlLoginConsentRequest ¶

func (o *CreateProjectNormalizedPayload) HasHydraTtlLoginConsentRequest() bool

HasHydraTtlLoginConsentRequest returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraTtlRefreshToken ¶

func (o *CreateProjectNormalizedPayload) HasHydraTtlRefreshToken() bool

HasHydraTtlRefreshToken returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraUrlsConsent ¶

func (o *CreateProjectNormalizedPayload) HasHydraUrlsConsent() bool

HasHydraUrlsConsent returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraUrlsError ¶

func (o *CreateProjectNormalizedPayload) HasHydraUrlsError() bool

HasHydraUrlsError returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraUrlsLogin ¶

func (o *CreateProjectNormalizedPayload) HasHydraUrlsLogin() bool

HasHydraUrlsLogin returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraUrlsLogout ¶

func (o *CreateProjectNormalizedPayload) HasHydraUrlsLogout() bool

HasHydraUrlsLogout returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraUrlsPostLogoutRedirect ¶

func (o *CreateProjectNormalizedPayload) HasHydraUrlsPostLogoutRedirect() bool

HasHydraUrlsPostLogoutRedirect returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraUrlsRegistration ¶

func (o *CreateProjectNormalizedPayload) HasHydraUrlsRegistration() bool

HasHydraUrlsRegistration returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraUrlsSelfIssuer ¶

func (o *CreateProjectNormalizedPayload) HasHydraUrlsSelfIssuer() bool

HasHydraUrlsSelfIssuer returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraWebfingerJwksBroadcastKeys ¶

func (o *CreateProjectNormalizedPayload) HasHydraWebfingerJwksBroadcastKeys() bool

HasHydraWebfingerJwksBroadcastKeys returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraWebfingerOidcDiscoveryAuthUrl ¶

func (o *CreateProjectNormalizedPayload) HasHydraWebfingerOidcDiscoveryAuthUrl() bool

HasHydraWebfingerOidcDiscoveryAuthUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraWebfingerOidcDiscoveryClientRegistrationUrl ¶

func (o *CreateProjectNormalizedPayload) HasHydraWebfingerOidcDiscoveryClientRegistrationUrl() bool

HasHydraWebfingerOidcDiscoveryClientRegistrationUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraWebfingerOidcDiscoveryJwksUrl ¶

func (o *CreateProjectNormalizedPayload) HasHydraWebfingerOidcDiscoveryJwksUrl() bool

HasHydraWebfingerOidcDiscoveryJwksUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraWebfingerOidcDiscoverySupportedClaims ¶

func (o *CreateProjectNormalizedPayload) HasHydraWebfingerOidcDiscoverySupportedClaims() bool

HasHydraWebfingerOidcDiscoverySupportedClaims returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraWebfingerOidcDiscoverySupportedScope ¶

func (o *CreateProjectNormalizedPayload) HasHydraWebfingerOidcDiscoverySupportedScope() bool

HasHydraWebfingerOidcDiscoverySupportedScope returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraWebfingerOidcDiscoveryTokenUrl ¶

func (o *CreateProjectNormalizedPayload) HasHydraWebfingerOidcDiscoveryTokenUrl() bool

HasHydraWebfingerOidcDiscoveryTokenUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasHydraWebfingerOidcDiscoveryUserinfoUrl ¶

func (o *CreateProjectNormalizedPayload) HasHydraWebfingerOidcDiscoveryUserinfoUrl() bool

HasHydraWebfingerOidcDiscoveryUserinfoUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasId ¶

HasId returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKetoNamespaceConfiguration ¶

func (o *CreateProjectNormalizedPayload) HasKetoNamespaceConfiguration() bool

HasKetoNamespaceConfiguration returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKetoNamespaces ¶

func (o *CreateProjectNormalizedPayload) HasKetoNamespaces() bool

HasKetoNamespaces returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCookiesSameSite ¶

func (o *CreateProjectNormalizedPayload) HasKratosCookiesSameSite() bool

HasKratosCookiesSameSite returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierChannels ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierChannels() bool

HasKratosCourierChannels returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierDeliveryStrategy ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierDeliveryStrategy() bool

HasKratosCourierDeliveryStrategy returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigAuthApiKeyIn ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigAuthApiKeyIn() bool

HasKratosCourierHttpRequestConfigAuthApiKeyIn returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigAuthApiKeyName ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigAuthApiKeyName() bool

HasKratosCourierHttpRequestConfigAuthApiKeyName returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigAuthApiKeyValue ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigAuthApiKeyValue() bool

HasKratosCourierHttpRequestConfigAuthApiKeyValue returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigAuthBasicAuthPassword ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigAuthBasicAuthPassword() bool

HasKratosCourierHttpRequestConfigAuthBasicAuthPassword returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigAuthBasicAuthUser ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigAuthBasicAuthUser() bool

HasKratosCourierHttpRequestConfigAuthBasicAuthUser returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigAuthType ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigAuthType() bool

HasKratosCourierHttpRequestConfigAuthType returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigBody ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigBody() bool

HasKratosCourierHttpRequestConfigBody returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigHeaders ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigHeaders() bool

HasKratosCourierHttpRequestConfigHeaders returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigMethod ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigMethod() bool

HasKratosCourierHttpRequestConfigMethod returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierHttpRequestConfigUrl() bool

HasKratosCourierHttpRequestConfigUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierSmtpConnectionUri ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierSmtpConnectionUri() bool

HasKratosCourierSmtpConnectionUri returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierSmtpFromAddress ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierSmtpFromAddress() bool

HasKratosCourierSmtpFromAddress returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierSmtpFromName ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierSmtpFromName() bool

HasKratosCourierSmtpFromName returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierSmtpHeaders ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierSmtpHeaders() bool

HasKratosCourierSmtpHeaders returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierSmtpLocalName ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierSmtpLocalName() bool

HasKratosCourierSmtpLocalName returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesLoginCodeValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesLoginCodeValidEmailBodyHtml() bool

HasKratosCourierTemplatesLoginCodeValidEmailBodyHtml returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext() bool

HasKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesLoginCodeValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesLoginCodeValidEmailSubject() bool

HasKratosCourierTemplatesLoginCodeValidEmailSubject returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml() bool

HasKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext() bool

HasKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryCodeInvalidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryCodeInvalidEmailSubject() bool

HasKratosCourierTemplatesRecoveryCodeInvalidEmailSubject returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml() bool

HasKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext() bool

HasKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryCodeValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryCodeValidEmailSubject() bool

HasKratosCourierTemplatesRecoveryCodeValidEmailSubject returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryInvalidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryInvalidEmailBodyHtml() bool

HasKratosCourierTemplatesRecoveryInvalidEmailBodyHtml returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext() bool

HasKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryInvalidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryInvalidEmailSubject() bool

HasKratosCourierTemplatesRecoveryInvalidEmailSubject returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryValidEmailBodyHtml() bool

HasKratosCourierTemplatesRecoveryValidEmailBodyHtml returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryValidEmailBodyPlaintext() bool

HasKratosCourierTemplatesRecoveryValidEmailBodyPlaintext returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRecoveryValidEmailSubject() bool

HasKratosCourierTemplatesRecoveryValidEmailSubject returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml() bool

HasKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext() bool

HasKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesRegistrationCodeValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesRegistrationCodeValidEmailSubject() bool

HasKratosCourierTemplatesRegistrationCodeValidEmailSubject returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml() bool

HasKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext() bool

HasKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationCodeInvalidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationCodeInvalidEmailSubject() bool

HasKratosCourierTemplatesVerificationCodeInvalidEmailSubject returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationCodeValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationCodeValidEmailBodyHtml() bool

HasKratosCourierTemplatesVerificationCodeValidEmailBodyHtml returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext() bool

HasKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationCodeValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationCodeValidEmailSubject() bool

HasKratosCourierTemplatesVerificationCodeValidEmailSubject returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext() bool

HasKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationInvalidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationInvalidEmailBodyHtml() bool

HasKratosCourierTemplatesVerificationInvalidEmailBodyHtml returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext() bool

HasKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationInvalidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationInvalidEmailSubject() bool

HasKratosCourierTemplatesVerificationInvalidEmailSubject returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationValidEmailBodyHtml() bool

HasKratosCourierTemplatesVerificationValidEmailBodyHtml returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationValidEmailBodyPlaintext() bool

HasKratosCourierTemplatesVerificationValidEmailBodyPlaintext returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) HasKratosCourierTemplatesVerificationValidEmailSubject() bool

HasKratosCourierTemplatesVerificationValidEmailSubject returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosFeatureFlagsCacheableSessions ¶

func (o *CreateProjectNormalizedPayload) HasKratosFeatureFlagsCacheableSessions() bool

HasKratosFeatureFlagsCacheableSessions returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosFeatureFlagsUseContinueWithTransitions ¶

func (o *CreateProjectNormalizedPayload) HasKratosFeatureFlagsUseContinueWithTransitions() bool

HasKratosFeatureFlagsUseContinueWithTransitions returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosIdentitySchemas ¶

func (o *CreateProjectNormalizedPayload) HasKratosIdentitySchemas() bool

HasKratosIdentitySchemas returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosOauth2ProviderHeaders ¶

func (o *CreateProjectNormalizedPayload) HasKratosOauth2ProviderHeaders() bool

HasKratosOauth2ProviderHeaders returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosOauth2ProviderOverrideReturnTo ¶

func (o *CreateProjectNormalizedPayload) HasKratosOauth2ProviderOverrideReturnTo() bool

HasKratosOauth2ProviderOverrideReturnTo returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosOauth2ProviderUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosOauth2ProviderUrl() bool

HasKratosOauth2ProviderUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosPreviewDefaultReadConsistencyLevel ¶

func (o *CreateProjectNormalizedPayload) HasKratosPreviewDefaultReadConsistencyLevel() bool

HasKratosPreviewDefaultReadConsistencyLevel returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSecretsCipher ¶

func (o *CreateProjectNormalizedPayload) HasKratosSecretsCipher() bool

HasKratosSecretsCipher returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSecretsCookie ¶

func (o *CreateProjectNormalizedPayload) HasKratosSecretsCookie() bool

HasKratosSecretsCookie returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSecretsDefault ¶

func (o *CreateProjectNormalizedPayload) HasKratosSecretsDefault() bool

HasKratosSecretsDefault returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceAllowedReturnUrls ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceAllowedReturnUrls() bool

HasKratosSelfserviceAllowedReturnUrls returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceDefaultBrowserReturnUrl() bool

HasKratosSelfserviceDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsErrorUiUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsErrorUiUrl() bool

HasKratosSelfserviceFlowsErrorUiUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginLifespan ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginLifespan() bool

HasKratosSelfserviceFlowsLoginLifespan returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginUiUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLoginUiUrl() bool

HasKratosSelfserviceFlowsLoginUiUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRecoveryEnabled ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRecoveryEnabled() bool

HasKratosSelfserviceFlowsRecoveryEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRecoveryLifespan ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRecoveryLifespan() bool

HasKratosSelfserviceFlowsRecoveryLifespan returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients() bool

HasKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRecoveryUiUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRecoveryUiUrl() bool

HasKratosSelfserviceFlowsRecoveryUiUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRecoveryUse ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRecoveryUse() bool

HasKratosSelfserviceFlowsRecoveryUse returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationEnabled ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationEnabled() bool

HasKratosSelfserviceFlowsRegistrationEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationLifespan ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationLifespan() bool

HasKratosSelfserviceFlowsRegistrationLifespan returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationLoginHints ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationLoginHints() bool

HasKratosSelfserviceFlowsRegistrationLoginHints returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationUiUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsRegistrationUiUrl() bool

HasKratosSelfserviceFlowsRegistrationUiUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsLifespan ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsLifespan() bool

HasKratosSelfserviceFlowsSettingsLifespan returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge() bool

HasKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsRequiredAal ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsRequiredAal() bool

HasKratosSelfserviceFlowsSettingsRequiredAal returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsUiUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsSettingsUiUrl() bool

HasKratosSelfserviceFlowsSettingsUiUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsVerificationEnabled ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsVerificationEnabled() bool

HasKratosSelfserviceFlowsVerificationEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsVerificationLifespan ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsVerificationLifespan() bool

HasKratosSelfserviceFlowsVerificationLifespan returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsVerificationNotifyUnknownRecipients ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsVerificationNotifyUnknownRecipients() bool

HasKratosSelfserviceFlowsVerificationNotifyUnknownRecipients returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsVerificationUiUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsVerificationUiUrl() bool

HasKratosSelfserviceFlowsVerificationUiUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsVerificationUse ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceFlowsVerificationUse() bool

HasKratosSelfserviceFlowsVerificationUse returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsCodeConfigLifespan ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsCodeConfigLifespan() bool

HasKratosSelfserviceMethodsCodeConfigLifespan returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsCodeEnabled ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsCodeEnabled() bool

HasKratosSelfserviceMethodsCodeEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsCodePasswordlessEnabled ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsCodePasswordlessEnabled() bool

HasKratosSelfserviceMethodsCodePasswordlessEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsLinkConfigBaseUrl ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsLinkConfigBaseUrl() bool

HasKratosSelfserviceMethodsLinkConfigBaseUrl returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsLinkConfigLifespan ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsLinkConfigLifespan() bool

HasKratosSelfserviceMethodsLinkConfigLifespan returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsLinkEnabled ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsLinkEnabled() bool

HasKratosSelfserviceMethodsLinkEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsLookupSecretEnabled ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsLookupSecretEnabled() bool

HasKratosSelfserviceMethodsLookupSecretEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsOidcConfigBaseRedirectUri ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsOidcConfigBaseRedirectUri() bool

HasKratosSelfserviceMethodsOidcConfigBaseRedirectUri returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsOidcConfigProviders ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsOidcConfigProviders() bool

HasKratosSelfserviceMethodsOidcConfigProviders returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsOidcEnabled ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsOidcEnabled() bool

HasKratosSelfserviceMethodsOidcEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled() bool

HasKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled() bool

HasKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors() bool

HasKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsPasswordConfigMaxBreaches ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsPasswordConfigMaxBreaches() bool

HasKratosSelfserviceMethodsPasswordConfigMaxBreaches returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsPasswordConfigMinPasswordLength ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsPasswordConfigMinPasswordLength() bool

HasKratosSelfserviceMethodsPasswordConfigMinPasswordLength returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsPasswordEnabled ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsPasswordEnabled() bool

HasKratosSelfserviceMethodsPasswordEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsProfileEnabled ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsProfileEnabled() bool

HasKratosSelfserviceMethodsProfileEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsTotpConfigIssuer ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsTotpConfigIssuer() bool

HasKratosSelfserviceMethodsTotpConfigIssuer returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsTotpEnabled ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsTotpEnabled() bool

HasKratosSelfserviceMethodsTotpEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsWebauthnConfigPasswordless ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsWebauthnConfigPasswordless() bool

HasKratosSelfserviceMethodsWebauthnConfigPasswordless returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsWebauthnConfigRpDisplayName ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsWebauthnConfigRpDisplayName() bool

HasKratosSelfserviceMethodsWebauthnConfigRpDisplayName returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsWebauthnConfigRpIcon ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsWebauthnConfigRpIcon() bool

HasKratosSelfserviceMethodsWebauthnConfigRpIcon returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsWebauthnConfigRpId ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsWebauthnConfigRpId() bool

HasKratosSelfserviceMethodsWebauthnConfigRpId returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsWebauthnConfigRpOrigins ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsWebauthnConfigRpOrigins() bool

HasKratosSelfserviceMethodsWebauthnConfigRpOrigins returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsWebauthnEnabled ¶

func (o *CreateProjectNormalizedPayload) HasKratosSelfserviceMethodsWebauthnEnabled() bool

HasKratosSelfserviceMethodsWebauthnEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSessionCookiePersistent ¶

func (o *CreateProjectNormalizedPayload) HasKratosSessionCookiePersistent() bool

HasKratosSessionCookiePersistent returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSessionCookieSameSite ¶

func (o *CreateProjectNormalizedPayload) HasKratosSessionCookieSameSite() bool

HasKratosSessionCookieSameSite returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSessionLifespan ¶

func (o *CreateProjectNormalizedPayload) HasKratosSessionLifespan() bool

HasKratosSessionLifespan returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSessionWhoamiRequiredAal ¶

func (o *CreateProjectNormalizedPayload) HasKratosSessionWhoamiRequiredAal() bool

HasKratosSessionWhoamiRequiredAal returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasKratosSessionWhoamiTokenizerTemplates ¶

func (o *CreateProjectNormalizedPayload) HasKratosSessionWhoamiTokenizerTemplates() bool

HasKratosSessionWhoamiTokenizerTemplates returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasProjectId ¶

func (o *CreateProjectNormalizedPayload) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasProjectRevisionHooks ¶

func (o *CreateProjectNormalizedPayload) HasProjectRevisionHooks() bool

HasProjectRevisionHooks returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasServeAdminCorsAllowedOrigins ¶

func (o *CreateProjectNormalizedPayload) HasServeAdminCorsAllowedOrigins() bool

HasServeAdminCorsAllowedOrigins returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasServeAdminCorsEnabled ¶

func (o *CreateProjectNormalizedPayload) HasServeAdminCorsEnabled() bool

HasServeAdminCorsEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasServePublicCorsAllowedOrigins ¶

func (o *CreateProjectNormalizedPayload) HasServePublicCorsAllowedOrigins() bool

HasServePublicCorsAllowedOrigins returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasServePublicCorsEnabled ¶

func (o *CreateProjectNormalizedPayload) HasServePublicCorsEnabled() bool

HasServePublicCorsEnabled returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasStrictSecurity ¶

func (o *CreateProjectNormalizedPayload) HasStrictSecurity() bool

HasStrictSecurity returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasUpdatedAt ¶

func (o *CreateProjectNormalizedPayload) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*CreateProjectNormalizedPayload) HasWorkspaceId ¶

func (o *CreateProjectNormalizedPayload) HasWorkspaceId() bool

HasWorkspaceId returns a boolean if a field has been set.

func (CreateProjectNormalizedPayload) MarshalJSON ¶

func (o CreateProjectNormalizedPayload) MarshalJSON() ([]byte, error)

func (*CreateProjectNormalizedPayload) SetCreatedAt ¶

func (o *CreateProjectNormalizedPayload) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*CreateProjectNormalizedPayload) SetDisableAccountExperienceWelcomeScreen ¶

func (o *CreateProjectNormalizedPayload) SetDisableAccountExperienceWelcomeScreen(v bool)

SetDisableAccountExperienceWelcomeScreen gets a reference to the given bool and assigns it to the DisableAccountExperienceWelcomeScreen field.

func (*CreateProjectNormalizedPayload) SetHydraOauth2AllowedTopLevelClaims ¶

func (o *CreateProjectNormalizedPayload) SetHydraOauth2AllowedTopLevelClaims(v []string)

SetHydraOauth2AllowedTopLevelClaims gets a reference to the given []string and assigns it to the HydraOauth2AllowedTopLevelClaims field.

func (*CreateProjectNormalizedPayload) SetHydraOauth2ClientCredentialsDefaultGrantAllowedScope ¶

func (o *CreateProjectNormalizedPayload) SetHydraOauth2ClientCredentialsDefaultGrantAllowedScope(v bool)

SetHydraOauth2ClientCredentialsDefaultGrantAllowedScope gets a reference to the given bool and assigns it to the HydraOauth2ClientCredentialsDefaultGrantAllowedScope field.

func (*CreateProjectNormalizedPayload) SetHydraOauth2ExcludeNotBeforeClaim ¶

func (o *CreateProjectNormalizedPayload) SetHydraOauth2ExcludeNotBeforeClaim(v bool)

SetHydraOauth2ExcludeNotBeforeClaim gets a reference to the given bool and assigns it to the HydraOauth2ExcludeNotBeforeClaim field.

func (*CreateProjectNormalizedPayload) SetHydraOauth2GrantJwtIatOptional ¶

func (o *CreateProjectNormalizedPayload) SetHydraOauth2GrantJwtIatOptional(v bool)

SetHydraOauth2GrantJwtIatOptional gets a reference to the given bool and assigns it to the HydraOauth2GrantJwtIatOptional field.

func (*CreateProjectNormalizedPayload) SetHydraOauth2GrantJwtJtiOptional ¶

func (o *CreateProjectNormalizedPayload) SetHydraOauth2GrantJwtJtiOptional(v bool)

SetHydraOauth2GrantJwtJtiOptional gets a reference to the given bool and assigns it to the HydraOauth2GrantJwtJtiOptional field.

func (*CreateProjectNormalizedPayload) SetHydraOauth2GrantJwtMaxTtl ¶

func (o *CreateProjectNormalizedPayload) SetHydraOauth2GrantJwtMaxTtl(v string)

SetHydraOauth2GrantJwtMaxTtl gets a reference to the given string and assigns it to the HydraOauth2GrantJwtMaxTtl field.

func (*CreateProjectNormalizedPayload) SetHydraOauth2PkceEnforced ¶

func (o *CreateProjectNormalizedPayload) SetHydraOauth2PkceEnforced(v bool)

SetHydraOauth2PkceEnforced gets a reference to the given bool and assigns it to the HydraOauth2PkceEnforced field.

func (*CreateProjectNormalizedPayload) SetHydraOauth2PkceEnforcedForPublicClients ¶

func (o *CreateProjectNormalizedPayload) SetHydraOauth2PkceEnforcedForPublicClients(v bool)

SetHydraOauth2PkceEnforcedForPublicClients gets a reference to the given bool and assigns it to the HydraOauth2PkceEnforcedForPublicClients field.

func (*CreateProjectNormalizedPayload) SetHydraOauth2RefreshTokenHook ¶

func (o *CreateProjectNormalizedPayload) SetHydraOauth2RefreshTokenHook(v string)

SetHydraOauth2RefreshTokenHook gets a reference to the given string and assigns it to the HydraOauth2RefreshTokenHook field.

func (*CreateProjectNormalizedPayload) SetHydraOauth2TokenHook ¶

func (o *CreateProjectNormalizedPayload) SetHydraOauth2TokenHook(v string)

SetHydraOauth2TokenHook gets a reference to the given string and assigns it to the HydraOauth2TokenHook field.

func (*CreateProjectNormalizedPayload) SetHydraOidcDynamicClientRegistrationDefaultScope ¶

func (o *CreateProjectNormalizedPayload) SetHydraOidcDynamicClientRegistrationDefaultScope(v []string)

SetHydraOidcDynamicClientRegistrationDefaultScope gets a reference to the given []string and assigns it to the HydraOidcDynamicClientRegistrationDefaultScope field.

func (*CreateProjectNormalizedPayload) SetHydraOidcDynamicClientRegistrationEnabled ¶

func (o *CreateProjectNormalizedPayload) SetHydraOidcDynamicClientRegistrationEnabled(v bool)

SetHydraOidcDynamicClientRegistrationEnabled gets a reference to the given bool and assigns it to the HydraOidcDynamicClientRegistrationEnabled field.

func (*CreateProjectNormalizedPayload) SetHydraOidcSubjectIdentifiersPairwiseSalt ¶

func (o *CreateProjectNormalizedPayload) SetHydraOidcSubjectIdentifiersPairwiseSalt(v string)

SetHydraOidcSubjectIdentifiersPairwiseSalt gets a reference to the given string and assigns it to the HydraOidcSubjectIdentifiersPairwiseSalt field.

func (*CreateProjectNormalizedPayload) SetHydraOidcSubjectIdentifiersSupportedTypes ¶

func (o *CreateProjectNormalizedPayload) SetHydraOidcSubjectIdentifiersSupportedTypes(v []string)

SetHydraOidcSubjectIdentifiersSupportedTypes gets a reference to the given []string and assigns it to the HydraOidcSubjectIdentifiersSupportedTypes field.

func (*CreateProjectNormalizedPayload) SetHydraSecretsCookie ¶

func (o *CreateProjectNormalizedPayload) SetHydraSecretsCookie(v []string)

SetHydraSecretsCookie gets a reference to the given []string and assigns it to the HydraSecretsCookie field.

func (*CreateProjectNormalizedPayload) SetHydraSecretsSystem ¶

func (o *CreateProjectNormalizedPayload) SetHydraSecretsSystem(v []string)

SetHydraSecretsSystem gets a reference to the given []string and assigns it to the HydraSecretsSystem field.

func (*CreateProjectNormalizedPayload) SetHydraServeCookiesSameSiteLegacyWorkaround ¶

func (o *CreateProjectNormalizedPayload) SetHydraServeCookiesSameSiteLegacyWorkaround(v bool)

SetHydraServeCookiesSameSiteLegacyWorkaround gets a reference to the given bool and assigns it to the HydraServeCookiesSameSiteLegacyWorkaround field.

func (*CreateProjectNormalizedPayload) SetHydraServeCookiesSameSiteMode ¶

func (o *CreateProjectNormalizedPayload) SetHydraServeCookiesSameSiteMode(v string)

SetHydraServeCookiesSameSiteMode gets a reference to the given string and assigns it to the HydraServeCookiesSameSiteMode field.

func (*CreateProjectNormalizedPayload) SetHydraStrategiesAccessToken ¶

func (o *CreateProjectNormalizedPayload) SetHydraStrategiesAccessToken(v string)

SetHydraStrategiesAccessToken gets a reference to the given string and assigns it to the HydraStrategiesAccessToken field.

func (*CreateProjectNormalizedPayload) SetHydraStrategiesScope ¶

func (o *CreateProjectNormalizedPayload) SetHydraStrategiesScope(v string)

SetHydraStrategiesScope gets a reference to the given string and assigns it to the HydraStrategiesScope field.

func (*CreateProjectNormalizedPayload) SetHydraTtlAccessToken ¶

func (o *CreateProjectNormalizedPayload) SetHydraTtlAccessToken(v string)

SetHydraTtlAccessToken gets a reference to the given string and assigns it to the HydraTtlAccessToken field.

func (*CreateProjectNormalizedPayload) SetHydraTtlAuthCode ¶

func (o *CreateProjectNormalizedPayload) SetHydraTtlAuthCode(v string)

SetHydraTtlAuthCode gets a reference to the given string and assigns it to the HydraTtlAuthCode field.

func (*CreateProjectNormalizedPayload) SetHydraTtlIdToken ¶

func (o *CreateProjectNormalizedPayload) SetHydraTtlIdToken(v string)

SetHydraTtlIdToken gets a reference to the given string and assigns it to the HydraTtlIdToken field.

func (*CreateProjectNormalizedPayload) SetHydraTtlLoginConsentRequest ¶

func (o *CreateProjectNormalizedPayload) SetHydraTtlLoginConsentRequest(v string)

SetHydraTtlLoginConsentRequest gets a reference to the given string and assigns it to the HydraTtlLoginConsentRequest field.

func (*CreateProjectNormalizedPayload) SetHydraTtlRefreshToken ¶

func (o *CreateProjectNormalizedPayload) SetHydraTtlRefreshToken(v string)

SetHydraTtlRefreshToken gets a reference to the given string and assigns it to the HydraTtlRefreshToken field.

func (*CreateProjectNormalizedPayload) SetHydraUrlsConsent ¶

func (o *CreateProjectNormalizedPayload) SetHydraUrlsConsent(v string)

SetHydraUrlsConsent gets a reference to the given string and assigns it to the HydraUrlsConsent field.

func (*CreateProjectNormalizedPayload) SetHydraUrlsError ¶

func (o *CreateProjectNormalizedPayload) SetHydraUrlsError(v string)

SetHydraUrlsError gets a reference to the given string and assigns it to the HydraUrlsError field.

func (*CreateProjectNormalizedPayload) SetHydraUrlsLogin ¶

func (o *CreateProjectNormalizedPayload) SetHydraUrlsLogin(v string)

SetHydraUrlsLogin gets a reference to the given string and assigns it to the HydraUrlsLogin field.

func (*CreateProjectNormalizedPayload) SetHydraUrlsLogout ¶

func (o *CreateProjectNormalizedPayload) SetHydraUrlsLogout(v string)

SetHydraUrlsLogout gets a reference to the given string and assigns it to the HydraUrlsLogout field.

func (*CreateProjectNormalizedPayload) SetHydraUrlsPostLogoutRedirect ¶

func (o *CreateProjectNormalizedPayload) SetHydraUrlsPostLogoutRedirect(v string)

SetHydraUrlsPostLogoutRedirect gets a reference to the given string and assigns it to the HydraUrlsPostLogoutRedirect field.

func (*CreateProjectNormalizedPayload) SetHydraUrlsRegistration ¶

func (o *CreateProjectNormalizedPayload) SetHydraUrlsRegistration(v string)

SetHydraUrlsRegistration gets a reference to the given string and assigns it to the HydraUrlsRegistration field.

func (*CreateProjectNormalizedPayload) SetHydraUrlsSelfIssuer ¶

func (o *CreateProjectNormalizedPayload) SetHydraUrlsSelfIssuer(v string)

SetHydraUrlsSelfIssuer gets a reference to the given string and assigns it to the HydraUrlsSelfIssuer field.

func (*CreateProjectNormalizedPayload) SetHydraWebfingerJwksBroadcastKeys ¶

func (o *CreateProjectNormalizedPayload) SetHydraWebfingerJwksBroadcastKeys(v []string)

SetHydraWebfingerJwksBroadcastKeys gets a reference to the given []string and assigns it to the HydraWebfingerJwksBroadcastKeys field.

func (*CreateProjectNormalizedPayload) SetHydraWebfingerOidcDiscoveryAuthUrl ¶

func (o *CreateProjectNormalizedPayload) SetHydraWebfingerOidcDiscoveryAuthUrl(v string)

SetHydraWebfingerOidcDiscoveryAuthUrl gets a reference to the given string and assigns it to the HydraWebfingerOidcDiscoveryAuthUrl field.

func (*CreateProjectNormalizedPayload) SetHydraWebfingerOidcDiscoveryClientRegistrationUrl ¶

func (o *CreateProjectNormalizedPayload) SetHydraWebfingerOidcDiscoveryClientRegistrationUrl(v string)

SetHydraWebfingerOidcDiscoveryClientRegistrationUrl gets a reference to the given string and assigns it to the HydraWebfingerOidcDiscoveryClientRegistrationUrl field.

func (*CreateProjectNormalizedPayload) SetHydraWebfingerOidcDiscoveryJwksUrl ¶

func (o *CreateProjectNormalizedPayload) SetHydraWebfingerOidcDiscoveryJwksUrl(v string)

SetHydraWebfingerOidcDiscoveryJwksUrl gets a reference to the given string and assigns it to the HydraWebfingerOidcDiscoveryJwksUrl field.

func (*CreateProjectNormalizedPayload) SetHydraWebfingerOidcDiscoverySupportedClaims ¶

func (o *CreateProjectNormalizedPayload) SetHydraWebfingerOidcDiscoverySupportedClaims(v []string)

SetHydraWebfingerOidcDiscoverySupportedClaims gets a reference to the given []string and assigns it to the HydraWebfingerOidcDiscoverySupportedClaims field.

func (*CreateProjectNormalizedPayload) SetHydraWebfingerOidcDiscoverySupportedScope ¶

func (o *CreateProjectNormalizedPayload) SetHydraWebfingerOidcDiscoverySupportedScope(v []string)

SetHydraWebfingerOidcDiscoverySupportedScope gets a reference to the given []string and assigns it to the HydraWebfingerOidcDiscoverySupportedScope field.

func (*CreateProjectNormalizedPayload) SetHydraWebfingerOidcDiscoveryTokenUrl ¶

func (o *CreateProjectNormalizedPayload) SetHydraWebfingerOidcDiscoveryTokenUrl(v string)

SetHydraWebfingerOidcDiscoveryTokenUrl gets a reference to the given string and assigns it to the HydraWebfingerOidcDiscoveryTokenUrl field.

func (*CreateProjectNormalizedPayload) SetHydraWebfingerOidcDiscoveryUserinfoUrl ¶

func (o *CreateProjectNormalizedPayload) SetHydraWebfingerOidcDiscoveryUserinfoUrl(v string)

SetHydraWebfingerOidcDiscoveryUserinfoUrl gets a reference to the given string and assigns it to the HydraWebfingerOidcDiscoveryUserinfoUrl field.

func (*CreateProjectNormalizedPayload) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*CreateProjectNormalizedPayload) SetKetoNamespaceConfiguration ¶

func (o *CreateProjectNormalizedPayload) SetKetoNamespaceConfiguration(v string)

SetKetoNamespaceConfiguration gets a reference to the given string and assigns it to the KetoNamespaceConfiguration field.

func (*CreateProjectNormalizedPayload) SetKetoNamespaces ¶

func (o *CreateProjectNormalizedPayload) SetKetoNamespaces(v []KetoNamespace)

SetKetoNamespaces gets a reference to the given []KetoNamespace and assigns it to the KetoNamespaces field.

func (*CreateProjectNormalizedPayload) SetKratosCookiesSameSite ¶

func (o *CreateProjectNormalizedPayload) SetKratosCookiesSameSite(v string)

SetKratosCookiesSameSite gets a reference to the given string and assigns it to the KratosCookiesSameSite field.

func (*CreateProjectNormalizedPayload) SetKratosCourierChannels ¶

SetKratosCourierChannels gets a reference to the given []NormalizedProjectRevisionCourierChannel and assigns it to the KratosCourierChannels field.

func (*CreateProjectNormalizedPayload) SetKratosCourierDeliveryStrategy ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierDeliveryStrategy(v string)

SetKratosCourierDeliveryStrategy gets a reference to the given string and assigns it to the KratosCourierDeliveryStrategy field.

func (*CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigAuthApiKeyIn ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigAuthApiKeyIn(v string)

SetKratosCourierHttpRequestConfigAuthApiKeyIn gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigAuthApiKeyIn field.

func (*CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigAuthApiKeyName ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigAuthApiKeyName(v string)

SetKratosCourierHttpRequestConfigAuthApiKeyName gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigAuthApiKeyName field.

func (*CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigAuthApiKeyValue ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigAuthApiKeyValue(v string)

SetKratosCourierHttpRequestConfigAuthApiKeyValue gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigAuthApiKeyValue field.

func (*CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigAuthBasicAuthPassword ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigAuthBasicAuthPassword(v string)

SetKratosCourierHttpRequestConfigAuthBasicAuthPassword gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigAuthBasicAuthPassword field.

func (*CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigAuthBasicAuthUser ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigAuthBasicAuthUser(v string)

SetKratosCourierHttpRequestConfigAuthBasicAuthUser gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigAuthBasicAuthUser field.

func (*CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigAuthType ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigAuthType(v string)

SetKratosCourierHttpRequestConfigAuthType gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigAuthType field.

func (*CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigBody ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigBody(v string)

SetKratosCourierHttpRequestConfigBody gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigBody field.

func (*CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigHeaders ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigHeaders(v map[string]interface{})

SetKratosCourierHttpRequestConfigHeaders gets a reference to the given map[string]interface{} and assigns it to the KratosCourierHttpRequestConfigHeaders field.

func (*CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigMethod ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigMethod(v string)

SetKratosCourierHttpRequestConfigMethod gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigMethod field.

func (*CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierHttpRequestConfigUrl(v string)

SetKratosCourierHttpRequestConfigUrl gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigUrl field.

func (*CreateProjectNormalizedPayload) SetKratosCourierSmtpConnectionUri ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierSmtpConnectionUri(v string)

SetKratosCourierSmtpConnectionUri gets a reference to the given string and assigns it to the KratosCourierSmtpConnectionUri field.

func (*CreateProjectNormalizedPayload) SetKratosCourierSmtpFromAddress ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierSmtpFromAddress(v string)

SetKratosCourierSmtpFromAddress gets a reference to the given string and assigns it to the KratosCourierSmtpFromAddress field.

func (*CreateProjectNormalizedPayload) SetKratosCourierSmtpFromName ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierSmtpFromName(v string)

SetKratosCourierSmtpFromName gets a reference to the given string and assigns it to the KratosCourierSmtpFromName field.

func (*CreateProjectNormalizedPayload) SetKratosCourierSmtpHeaders ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierSmtpHeaders(v map[string]interface{})

SetKratosCourierSmtpHeaders gets a reference to the given map[string]interface{} and assigns it to the KratosCourierSmtpHeaders field.

func (*CreateProjectNormalizedPayload) SetKratosCourierSmtpLocalName ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierSmtpLocalName(v string)

SetKratosCourierSmtpLocalName gets a reference to the given string and assigns it to the KratosCourierSmtpLocalName field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesLoginCodeValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesLoginCodeValidEmailBodyHtml(v string)

SetKratosCourierTemplatesLoginCodeValidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesLoginCodeValidEmailBodyHtml field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesLoginCodeValidEmailBodyPlaintext field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesLoginCodeValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesLoginCodeValidEmailSubject(v string)

SetKratosCourierTemplatesLoginCodeValidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesLoginCodeValidEmailSubject field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml(v string)

SetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryCodeInvalidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryCodeInvalidEmailSubject(v string)

SetKratosCourierTemplatesRecoveryCodeInvalidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryCodeInvalidEmailSubject field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml(v string)

SetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryCodeValidEmailBodyHtml field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryCodeValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryCodeValidEmailSubject(v string)

SetKratosCourierTemplatesRecoveryCodeValidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryCodeValidEmailSubject field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryInvalidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryInvalidEmailBodyHtml(v string)

SetKratosCourierTemplatesRecoveryInvalidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryInvalidEmailBodyHtml field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryInvalidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryInvalidEmailSubject(v string)

SetKratosCourierTemplatesRecoveryInvalidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryInvalidEmailSubject field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryValidEmailBodyHtml(v string)

SetKratosCourierTemplatesRecoveryValidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryValidEmailBodyHtml field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryValidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesRecoveryValidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryValidEmailBodyPlaintext field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRecoveryValidEmailSubject(v string)

SetKratosCourierTemplatesRecoveryValidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryValidEmailSubject field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml(v string)

SetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesRegistrationCodeValidEmailBodyHtml field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesRegistrationCodeValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesRegistrationCodeValidEmailSubject(v string)

SetKratosCourierTemplatesRegistrationCodeValidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesRegistrationCodeValidEmailSubject field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml(v string)

SetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationCodeInvalidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationCodeInvalidEmailSubject(v string)

SetKratosCourierTemplatesVerificationCodeInvalidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationCodeInvalidEmailSubject field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationCodeValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationCodeValidEmailBodyHtml(v string)

SetKratosCourierTemplatesVerificationCodeValidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationCodeValidEmailBodyHtml field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationCodeValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationCodeValidEmailSubject(v string)

SetKratosCourierTemplatesVerificationCodeValidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationCodeValidEmailSubject field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext(v string)

SetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationInvalidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationInvalidEmailBodyHtml(v string)

SetKratosCourierTemplatesVerificationInvalidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationInvalidEmailBodyHtml field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationInvalidEmailBodyPlaintext field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationInvalidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationInvalidEmailSubject(v string)

SetKratosCourierTemplatesVerificationInvalidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationInvalidEmailSubject field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationValidEmailBodyHtml ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationValidEmailBodyHtml(v string)

SetKratosCourierTemplatesVerificationValidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationValidEmailBodyHtml field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationValidEmailBodyPlaintext ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationValidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesVerificationValidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationValidEmailBodyPlaintext field.

func (*CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationValidEmailSubject ¶

func (o *CreateProjectNormalizedPayload) SetKratosCourierTemplatesVerificationValidEmailSubject(v string)

SetKratosCourierTemplatesVerificationValidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationValidEmailSubject field.

func (*CreateProjectNormalizedPayload) SetKratosFeatureFlagsCacheableSessions ¶

func (o *CreateProjectNormalizedPayload) SetKratosFeatureFlagsCacheableSessions(v bool)

SetKratosFeatureFlagsCacheableSessions gets a reference to the given bool and assigns it to the KratosFeatureFlagsCacheableSessions field.

func (*CreateProjectNormalizedPayload) SetKratosFeatureFlagsUseContinueWithTransitions ¶

func (o *CreateProjectNormalizedPayload) SetKratosFeatureFlagsUseContinueWithTransitions(v bool)

SetKratosFeatureFlagsUseContinueWithTransitions gets a reference to the given bool and assigns it to the KratosFeatureFlagsUseContinueWithTransitions field.

func (*CreateProjectNormalizedPayload) SetKratosIdentitySchemas ¶

SetKratosIdentitySchemas gets a reference to the given []NormalizedProjectRevisionIdentitySchema and assigns it to the KratosIdentitySchemas field.

func (*CreateProjectNormalizedPayload) SetKratosOauth2ProviderHeaders ¶

func (o *CreateProjectNormalizedPayload) SetKratosOauth2ProviderHeaders(v map[string]interface{})

SetKratosOauth2ProviderHeaders gets a reference to the given map[string]interface{} and assigns it to the KratosOauth2ProviderHeaders field.

func (*CreateProjectNormalizedPayload) SetKratosOauth2ProviderOverrideReturnTo ¶

func (o *CreateProjectNormalizedPayload) SetKratosOauth2ProviderOverrideReturnTo(v bool)

SetKratosOauth2ProviderOverrideReturnTo gets a reference to the given bool and assigns it to the KratosOauth2ProviderOverrideReturnTo field.

func (*CreateProjectNormalizedPayload) SetKratosOauth2ProviderUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosOauth2ProviderUrl(v string)

SetKratosOauth2ProviderUrl gets a reference to the given string and assigns it to the KratosOauth2ProviderUrl field.

func (*CreateProjectNormalizedPayload) SetKratosPreviewDefaultReadConsistencyLevel ¶

func (o *CreateProjectNormalizedPayload) SetKratosPreviewDefaultReadConsistencyLevel(v string)

SetKratosPreviewDefaultReadConsistencyLevel gets a reference to the given string and assigns it to the KratosPreviewDefaultReadConsistencyLevel field.

func (*CreateProjectNormalizedPayload) SetKratosSecretsCipher ¶

func (o *CreateProjectNormalizedPayload) SetKratosSecretsCipher(v []string)

SetKratosSecretsCipher gets a reference to the given []string and assigns it to the KratosSecretsCipher field.

func (*CreateProjectNormalizedPayload) SetKratosSecretsCookie ¶

func (o *CreateProjectNormalizedPayload) SetKratosSecretsCookie(v []string)

SetKratosSecretsCookie gets a reference to the given []string and assigns it to the KratosSecretsCookie field.

func (*CreateProjectNormalizedPayload) SetKratosSecretsDefault ¶

func (o *CreateProjectNormalizedPayload) SetKratosSecretsDefault(v []string)

SetKratosSecretsDefault gets a reference to the given []string and assigns it to the KratosSecretsDefault field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceAllowedReturnUrls ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceAllowedReturnUrls(v []string)

SetKratosSelfserviceAllowedReturnUrls gets a reference to the given []string and assigns it to the KratosSelfserviceAllowedReturnUrls field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsErrorUiUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsErrorUiUrl(v string)

SetKratosSelfserviceFlowsErrorUiUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsErrorUiUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginLifespan ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginLifespan(v string)

SetKratosSelfserviceFlowsLoginLifespan gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginLifespan field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginUiUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLoginUiUrl(v string)

SetKratosSelfserviceFlowsLoginUiUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginUiUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRecoveryEnabled ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRecoveryEnabled(v bool)

SetKratosSelfserviceFlowsRecoveryEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceFlowsRecoveryEnabled field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRecoveryLifespan ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRecoveryLifespan(v string)

SetKratosSelfserviceFlowsRecoveryLifespan gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRecoveryLifespan field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients(v bool)

SetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients gets a reference to the given bool and assigns it to the KratosSelfserviceFlowsRecoveryNotifyUnknownRecipients field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRecoveryUiUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRecoveryUiUrl(v string)

SetKratosSelfserviceFlowsRecoveryUiUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRecoveryUiUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRecoveryUse ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRecoveryUse(v string)

SetKratosSelfserviceFlowsRecoveryUse gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRecoveryUse field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationEnabled ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationEnabled(v bool)

SetKratosSelfserviceFlowsRegistrationEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceFlowsRegistrationEnabled field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationLifespan ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationLifespan(v string)

SetKratosSelfserviceFlowsRegistrationLifespan gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRegistrationLifespan field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationLoginHints ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationLoginHints(v bool)

SetKratosSelfserviceFlowsRegistrationLoginHints gets a reference to the given bool and assigns it to the KratosSelfserviceFlowsRegistrationLoginHints field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationUiUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsRegistrationUiUrl(v string)

SetKratosSelfserviceFlowsRegistrationUiUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRegistrationUiUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsLifespan ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsLifespan(v string)

SetKratosSelfserviceFlowsSettingsLifespan gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsLifespan field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge(v string)

SetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsRequiredAal ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsRequiredAal(v string)

SetKratosSelfserviceFlowsSettingsRequiredAal gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsRequiredAal field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsUiUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsSettingsUiUrl(v string)

SetKratosSelfserviceFlowsSettingsUiUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsUiUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsVerificationEnabled ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsVerificationEnabled(v bool)

SetKratosSelfserviceFlowsVerificationEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceFlowsVerificationEnabled field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsVerificationLifespan ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsVerificationLifespan(v string)

SetKratosSelfserviceFlowsVerificationLifespan gets a reference to the given string and assigns it to the KratosSelfserviceFlowsVerificationLifespan field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsVerificationNotifyUnknownRecipients ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsVerificationNotifyUnknownRecipients(v bool)

SetKratosSelfserviceFlowsVerificationNotifyUnknownRecipients gets a reference to the given bool and assigns it to the KratosSelfserviceFlowsVerificationNotifyUnknownRecipients field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsVerificationUiUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsVerificationUiUrl(v string)

SetKratosSelfserviceFlowsVerificationUiUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsVerificationUiUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsVerificationUse ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceFlowsVerificationUse(v string)

SetKratosSelfserviceFlowsVerificationUse gets a reference to the given string and assigns it to the KratosSelfserviceFlowsVerificationUse field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsCodeConfigLifespan ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsCodeConfigLifespan(v string)

SetKratosSelfserviceMethodsCodeConfigLifespan gets a reference to the given string and assigns it to the KratosSelfserviceMethodsCodeConfigLifespan field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsCodeEnabled ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsCodeEnabled(v bool)

SetKratosSelfserviceMethodsCodeEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsCodeEnabled field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsCodePasswordlessEnabled ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsCodePasswordlessEnabled(v bool)

SetKratosSelfserviceMethodsCodePasswordlessEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsCodePasswordlessEnabled field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsLinkConfigBaseUrl ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsLinkConfigBaseUrl(v string)

SetKratosSelfserviceMethodsLinkConfigBaseUrl gets a reference to the given string and assigns it to the KratosSelfserviceMethodsLinkConfigBaseUrl field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsLinkConfigLifespan ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsLinkConfigLifespan(v string)

SetKratosSelfserviceMethodsLinkConfigLifespan gets a reference to the given string and assigns it to the KratosSelfserviceMethodsLinkConfigLifespan field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsLinkEnabled ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsLinkEnabled(v bool)

SetKratosSelfserviceMethodsLinkEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsLinkEnabled field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsLookupSecretEnabled ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsLookupSecretEnabled(v bool)

SetKratosSelfserviceMethodsLookupSecretEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsLookupSecretEnabled field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsOidcConfigBaseRedirectUri ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsOidcConfigBaseRedirectUri(v string)

SetKratosSelfserviceMethodsOidcConfigBaseRedirectUri gets a reference to the given string and assigns it to the KratosSelfserviceMethodsOidcConfigBaseRedirectUri field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsOidcConfigProviders ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsOidcConfigProviders(v []NormalizedProjectRevisionThirdPartyProvider)

SetKratosSelfserviceMethodsOidcConfigProviders gets a reference to the given []NormalizedProjectRevisionThirdPartyProvider and assigns it to the KratosSelfserviceMethodsOidcConfigProviders field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsOidcEnabled ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsOidcEnabled(v bool)

SetKratosSelfserviceMethodsOidcEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsOidcEnabled field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled(v bool)

SetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled(v bool)

SetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors(v bool)

SetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsPasswordConfigMaxBreaches ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsPasswordConfigMaxBreaches(v int64)

SetKratosSelfserviceMethodsPasswordConfigMaxBreaches gets a reference to the given int64 and assigns it to the KratosSelfserviceMethodsPasswordConfigMaxBreaches field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsPasswordConfigMinPasswordLength ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsPasswordConfigMinPasswordLength(v int64)

SetKratosSelfserviceMethodsPasswordConfigMinPasswordLength gets a reference to the given int64 and assigns it to the KratosSelfserviceMethodsPasswordConfigMinPasswordLength field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsPasswordEnabled ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsPasswordEnabled(v bool)

SetKratosSelfserviceMethodsPasswordEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsPasswordEnabled field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsProfileEnabled ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsProfileEnabled(v bool)

SetKratosSelfserviceMethodsProfileEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsProfileEnabled field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsTotpConfigIssuer ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsTotpConfigIssuer(v string)

SetKratosSelfserviceMethodsTotpConfigIssuer gets a reference to the given string and assigns it to the KratosSelfserviceMethodsTotpConfigIssuer field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsTotpEnabled ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsTotpEnabled(v bool)

SetKratosSelfserviceMethodsTotpEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsTotpEnabled field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsWebauthnConfigPasswordless ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsWebauthnConfigPasswordless(v bool)

SetKratosSelfserviceMethodsWebauthnConfigPasswordless gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsWebauthnConfigPasswordless field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsWebauthnConfigRpDisplayName ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsWebauthnConfigRpDisplayName(v string)

SetKratosSelfserviceMethodsWebauthnConfigRpDisplayName gets a reference to the given string and assigns it to the KratosSelfserviceMethodsWebauthnConfigRpDisplayName field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsWebauthnConfigRpIcon ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsWebauthnConfigRpIcon(v string)

SetKratosSelfserviceMethodsWebauthnConfigRpIcon gets a reference to the given string and assigns it to the KratosSelfserviceMethodsWebauthnConfigRpIcon field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsWebauthnConfigRpId ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsWebauthnConfigRpId(v string)

SetKratosSelfserviceMethodsWebauthnConfigRpId gets a reference to the given string and assigns it to the KratosSelfserviceMethodsWebauthnConfigRpId field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsWebauthnConfigRpOrigins ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsWebauthnConfigRpOrigins(v []string)

SetKratosSelfserviceMethodsWebauthnConfigRpOrigins gets a reference to the given []string and assigns it to the KratosSelfserviceMethodsWebauthnConfigRpOrigins field.

func (*CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsWebauthnEnabled ¶

func (o *CreateProjectNormalizedPayload) SetKratosSelfserviceMethodsWebauthnEnabled(v bool)

SetKratosSelfserviceMethodsWebauthnEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsWebauthnEnabled field.

func (*CreateProjectNormalizedPayload) SetKratosSessionCookiePersistent ¶

func (o *CreateProjectNormalizedPayload) SetKratosSessionCookiePersistent(v bool)

SetKratosSessionCookiePersistent gets a reference to the given bool and assigns it to the KratosSessionCookiePersistent field.

func (*CreateProjectNormalizedPayload) SetKratosSessionCookieSameSite ¶

func (o *CreateProjectNormalizedPayload) SetKratosSessionCookieSameSite(v string)

SetKratosSessionCookieSameSite gets a reference to the given string and assigns it to the KratosSessionCookieSameSite field.

func (*CreateProjectNormalizedPayload) SetKratosSessionLifespan ¶

func (o *CreateProjectNormalizedPayload) SetKratosSessionLifespan(v string)

SetKratosSessionLifespan gets a reference to the given string and assigns it to the KratosSessionLifespan field.

func (*CreateProjectNormalizedPayload) SetKratosSessionWhoamiRequiredAal ¶

func (o *CreateProjectNormalizedPayload) SetKratosSessionWhoamiRequiredAal(v string)

SetKratosSessionWhoamiRequiredAal gets a reference to the given string and assigns it to the KratosSessionWhoamiRequiredAal field.

func (*CreateProjectNormalizedPayload) SetKratosSessionWhoamiTokenizerTemplates ¶

func (o *CreateProjectNormalizedPayload) SetKratosSessionWhoamiTokenizerTemplates(v []NormalizedProjectRevisionTokenizerTemplate)

SetKratosSessionWhoamiTokenizerTemplates gets a reference to the given []NormalizedProjectRevisionTokenizerTemplate and assigns it to the KratosSessionWhoamiTokenizerTemplates field.

func (*CreateProjectNormalizedPayload) SetName ¶

func (o *CreateProjectNormalizedPayload) SetName(v string)

SetName sets field value

func (*CreateProjectNormalizedPayload) SetProjectId ¶

func (o *CreateProjectNormalizedPayload) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*CreateProjectNormalizedPayload) SetProjectRevisionHooks ¶

func (o *CreateProjectNormalizedPayload) SetProjectRevisionHooks(v []NormalizedProjectRevisionHook)

SetProjectRevisionHooks gets a reference to the given []NormalizedProjectRevisionHook and assigns it to the ProjectRevisionHooks field.

func (*CreateProjectNormalizedPayload) SetServeAdminCorsAllowedOrigins ¶

func (o *CreateProjectNormalizedPayload) SetServeAdminCorsAllowedOrigins(v []string)

SetServeAdminCorsAllowedOrigins gets a reference to the given []string and assigns it to the ServeAdminCorsAllowedOrigins field.

func (*CreateProjectNormalizedPayload) SetServeAdminCorsEnabled ¶

func (o *CreateProjectNormalizedPayload) SetServeAdminCorsEnabled(v bool)

SetServeAdminCorsEnabled gets a reference to the given bool and assigns it to the ServeAdminCorsEnabled field.

func (*CreateProjectNormalizedPayload) SetServePublicCorsAllowedOrigins ¶

func (o *CreateProjectNormalizedPayload) SetServePublicCorsAllowedOrigins(v []string)

SetServePublicCorsAllowedOrigins gets a reference to the given []string and assigns it to the ServePublicCorsAllowedOrigins field.

func (*CreateProjectNormalizedPayload) SetServePublicCorsEnabled ¶

func (o *CreateProjectNormalizedPayload) SetServePublicCorsEnabled(v bool)

SetServePublicCorsEnabled gets a reference to the given bool and assigns it to the ServePublicCorsEnabled field.

func (*CreateProjectNormalizedPayload) SetStrictSecurity ¶

func (o *CreateProjectNormalizedPayload) SetStrictSecurity(v bool)

SetStrictSecurity gets a reference to the given bool and assigns it to the StrictSecurity field.

func (*CreateProjectNormalizedPayload) SetUpdatedAt ¶

func (o *CreateProjectNormalizedPayload) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*CreateProjectNormalizedPayload) SetWorkspaceId ¶

func (o *CreateProjectNormalizedPayload) SetWorkspaceId(v string)

SetWorkspaceId gets a reference to the given NullableString and assigns it to the WorkspaceId field.

func (*CreateProjectNormalizedPayload) SetWorkspaceIdNil ¶

func (o *CreateProjectNormalizedPayload) SetWorkspaceIdNil()

SetWorkspaceIdNil sets the value for WorkspaceId to be an explicit nil

func (CreateProjectNormalizedPayload) ToMap ¶

func (o CreateProjectNormalizedPayload) ToMap() (map[string]interface{}, error)

func (*CreateProjectNormalizedPayload) UnmarshalJSON ¶

func (o *CreateProjectNormalizedPayload) UnmarshalJSON(bytes []byte) (err error)

func (*CreateProjectNormalizedPayload) UnsetWorkspaceId ¶

func (o *CreateProjectNormalizedPayload) UnsetWorkspaceId()

UnsetWorkspaceId ensures that no value is present for WorkspaceId, not even an explicit nil

type CreateRecoveryCodeForIdentityBody ¶

type CreateRecoveryCodeForIdentityBody struct {
	// Code Expires In  The recovery code will expire after that amount of time has passed. Defaults to the configuration value of `selfservice.methods.code.config.lifespan`.
	ExpiresIn *string `json:"expires_in,omitempty"`
	// Identity to Recover  The identity's ID you wish to recover.
	IdentityId           string `json:"identity_id"`
	AdditionalProperties map[string]interface{}
}

CreateRecoveryCodeForIdentityBody Create Recovery Code for Identity Request Body

func NewCreateRecoveryCodeForIdentityBody ¶

func NewCreateRecoveryCodeForIdentityBody(identityId string) *CreateRecoveryCodeForIdentityBody

NewCreateRecoveryCodeForIdentityBody instantiates a new CreateRecoveryCodeForIdentityBody 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 NewCreateRecoveryCodeForIdentityBodyWithDefaults ¶

func NewCreateRecoveryCodeForIdentityBodyWithDefaults() *CreateRecoveryCodeForIdentityBody

NewCreateRecoveryCodeForIdentityBodyWithDefaults instantiates a new CreateRecoveryCodeForIdentityBody 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 (*CreateRecoveryCodeForIdentityBody) GetExpiresIn ¶

func (o *CreateRecoveryCodeForIdentityBody) GetExpiresIn() string

GetExpiresIn returns the ExpiresIn field value if set, zero value otherwise.

func (*CreateRecoveryCodeForIdentityBody) GetExpiresInOk ¶

func (o *CreateRecoveryCodeForIdentityBody) GetExpiresInOk() (*string, bool)

GetExpiresInOk returns a tuple with the ExpiresIn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateRecoveryCodeForIdentityBody) GetIdentityId ¶

func (o *CreateRecoveryCodeForIdentityBody) GetIdentityId() string

GetIdentityId returns the IdentityId field value

func (*CreateRecoveryCodeForIdentityBody) GetIdentityIdOk ¶

func (o *CreateRecoveryCodeForIdentityBody) GetIdentityIdOk() (*string, bool)

GetIdentityIdOk returns a tuple with the IdentityId field value and a boolean to check if the value has been set.

func (*CreateRecoveryCodeForIdentityBody) HasExpiresIn ¶

func (o *CreateRecoveryCodeForIdentityBody) HasExpiresIn() bool

HasExpiresIn returns a boolean if a field has been set.

func (CreateRecoveryCodeForIdentityBody) MarshalJSON ¶

func (o CreateRecoveryCodeForIdentityBody) MarshalJSON() ([]byte, error)

func (*CreateRecoveryCodeForIdentityBody) SetExpiresIn ¶

func (o *CreateRecoveryCodeForIdentityBody) SetExpiresIn(v string)

SetExpiresIn gets a reference to the given string and assigns it to the ExpiresIn field.

func (*CreateRecoveryCodeForIdentityBody) SetIdentityId ¶

func (o *CreateRecoveryCodeForIdentityBody) SetIdentityId(v string)

SetIdentityId sets field value

func (CreateRecoveryCodeForIdentityBody) ToMap ¶

func (o CreateRecoveryCodeForIdentityBody) ToMap() (map[string]interface{}, error)

func (*CreateRecoveryCodeForIdentityBody) UnmarshalJSON ¶

func (o *CreateRecoveryCodeForIdentityBody) UnmarshalJSON(bytes []byte) (err error)

type CreateRecoveryLinkForIdentityBody ¶

type CreateRecoveryLinkForIdentityBody struct {
	// Link Expires In  The recovery link will expire after that amount of time has passed. Defaults to the configuration value of `selfservice.methods.code.config.lifespan`.
	ExpiresIn *string `json:"expires_in,omitempty"`
	// Identity to Recover  The identity's ID you wish to recover.
	IdentityId           string `json:"identity_id"`
	AdditionalProperties map[string]interface{}
}

CreateRecoveryLinkForIdentityBody Create Recovery Link for Identity Request Body

func NewCreateRecoveryLinkForIdentityBody ¶

func NewCreateRecoveryLinkForIdentityBody(identityId string) *CreateRecoveryLinkForIdentityBody

NewCreateRecoveryLinkForIdentityBody instantiates a new CreateRecoveryLinkForIdentityBody 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 NewCreateRecoveryLinkForIdentityBodyWithDefaults ¶

func NewCreateRecoveryLinkForIdentityBodyWithDefaults() *CreateRecoveryLinkForIdentityBody

NewCreateRecoveryLinkForIdentityBodyWithDefaults instantiates a new CreateRecoveryLinkForIdentityBody 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 (*CreateRecoveryLinkForIdentityBody) GetExpiresIn ¶

func (o *CreateRecoveryLinkForIdentityBody) GetExpiresIn() string

GetExpiresIn returns the ExpiresIn field value if set, zero value otherwise.

func (*CreateRecoveryLinkForIdentityBody) GetExpiresInOk ¶

func (o *CreateRecoveryLinkForIdentityBody) GetExpiresInOk() (*string, bool)

GetExpiresInOk returns a tuple with the ExpiresIn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateRecoveryLinkForIdentityBody) GetIdentityId ¶

func (o *CreateRecoveryLinkForIdentityBody) GetIdentityId() string

GetIdentityId returns the IdentityId field value

func (*CreateRecoveryLinkForIdentityBody) GetIdentityIdOk ¶

func (o *CreateRecoveryLinkForIdentityBody) GetIdentityIdOk() (*string, bool)

GetIdentityIdOk returns a tuple with the IdentityId field value and a boolean to check if the value has been set.

func (*CreateRecoveryLinkForIdentityBody) HasExpiresIn ¶

func (o *CreateRecoveryLinkForIdentityBody) HasExpiresIn() bool

HasExpiresIn returns a boolean if a field has been set.

func (CreateRecoveryLinkForIdentityBody) MarshalJSON ¶

func (o CreateRecoveryLinkForIdentityBody) MarshalJSON() ([]byte, error)

func (*CreateRecoveryLinkForIdentityBody) SetExpiresIn ¶

func (o *CreateRecoveryLinkForIdentityBody) SetExpiresIn(v string)

SetExpiresIn gets a reference to the given string and assigns it to the ExpiresIn field.

func (*CreateRecoveryLinkForIdentityBody) SetIdentityId ¶

func (o *CreateRecoveryLinkForIdentityBody) SetIdentityId(v string)

SetIdentityId sets field value

func (CreateRecoveryLinkForIdentityBody) ToMap ¶

func (o CreateRecoveryLinkForIdentityBody) ToMap() (map[string]interface{}, error)

func (*CreateRecoveryLinkForIdentityBody) UnmarshalJSON ¶

func (o *CreateRecoveryLinkForIdentityBody) UnmarshalJSON(bytes []byte) (err error)

type CreateRelationshipBody ¶

type CreateRelationshipBody struct {
	// Namespace to query
	Namespace *string `json:"namespace,omitempty"`
	// Object to query
	Object *string `json:"object,omitempty"`
	// Relation to query
	Relation *string `json:"relation,omitempty"`
	// SubjectID to query  Either SubjectSet or SubjectID can be provided.
	SubjectId            *string     `json:"subject_id,omitempty"`
	SubjectSet           *SubjectSet `json:"subject_set,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateRelationshipBody Create Relationship Request Body

func NewCreateRelationshipBody ¶

func NewCreateRelationshipBody() *CreateRelationshipBody

NewCreateRelationshipBody instantiates a new CreateRelationshipBody 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 NewCreateRelationshipBodyWithDefaults ¶

func NewCreateRelationshipBodyWithDefaults() *CreateRelationshipBody

NewCreateRelationshipBodyWithDefaults instantiates a new CreateRelationshipBody 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 (*CreateRelationshipBody) GetNamespace ¶

func (o *CreateRelationshipBody) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*CreateRelationshipBody) GetNamespaceOk ¶

func (o *CreateRelationshipBody) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateRelationshipBody) GetObject ¶

func (o *CreateRelationshipBody) GetObject() string

GetObject returns the Object field value if set, zero value otherwise.

func (*CreateRelationshipBody) GetObjectOk ¶

func (o *CreateRelationshipBody) GetObjectOk() (*string, bool)

GetObjectOk returns a tuple with the Object field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateRelationshipBody) GetRelation ¶

func (o *CreateRelationshipBody) GetRelation() string

GetRelation returns the Relation field value if set, zero value otherwise.

func (*CreateRelationshipBody) GetRelationOk ¶

func (o *CreateRelationshipBody) GetRelationOk() (*string, bool)

GetRelationOk returns a tuple with the Relation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateRelationshipBody) GetSubjectId ¶

func (o *CreateRelationshipBody) GetSubjectId() string

GetSubjectId returns the SubjectId field value if set, zero value otherwise.

func (*CreateRelationshipBody) GetSubjectIdOk ¶

func (o *CreateRelationshipBody) GetSubjectIdOk() (*string, bool)

GetSubjectIdOk returns a tuple with the SubjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateRelationshipBody) GetSubjectSet ¶

func (o *CreateRelationshipBody) GetSubjectSet() SubjectSet

GetSubjectSet returns the SubjectSet field value if set, zero value otherwise.

func (*CreateRelationshipBody) GetSubjectSetOk ¶

func (o *CreateRelationshipBody) GetSubjectSetOk() (*SubjectSet, bool)

GetSubjectSetOk returns a tuple with the SubjectSet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateRelationshipBody) HasNamespace ¶

func (o *CreateRelationshipBody) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*CreateRelationshipBody) HasObject ¶

func (o *CreateRelationshipBody) HasObject() bool

HasObject returns a boolean if a field has been set.

func (*CreateRelationshipBody) HasRelation ¶

func (o *CreateRelationshipBody) HasRelation() bool

HasRelation returns a boolean if a field has been set.

func (*CreateRelationshipBody) HasSubjectId ¶

func (o *CreateRelationshipBody) HasSubjectId() bool

HasSubjectId returns a boolean if a field has been set.

func (*CreateRelationshipBody) HasSubjectSet ¶

func (o *CreateRelationshipBody) HasSubjectSet() bool

HasSubjectSet returns a boolean if a field has been set.

func (CreateRelationshipBody) MarshalJSON ¶

func (o CreateRelationshipBody) MarshalJSON() ([]byte, error)

func (*CreateRelationshipBody) SetNamespace ¶

func (o *CreateRelationshipBody) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*CreateRelationshipBody) SetObject ¶

func (o *CreateRelationshipBody) SetObject(v string)

SetObject gets a reference to the given string and assigns it to the Object field.

func (*CreateRelationshipBody) SetRelation ¶

func (o *CreateRelationshipBody) SetRelation(v string)

SetRelation gets a reference to the given string and assigns it to the Relation field.

func (*CreateRelationshipBody) SetSubjectId ¶

func (o *CreateRelationshipBody) SetSubjectId(v string)

SetSubjectId gets a reference to the given string and assigns it to the SubjectId field.

func (*CreateRelationshipBody) SetSubjectSet ¶

func (o *CreateRelationshipBody) SetSubjectSet(v SubjectSet)

SetSubjectSet gets a reference to the given SubjectSet and assigns it to the SubjectSet field.

func (CreateRelationshipBody) ToMap ¶

func (o CreateRelationshipBody) ToMap() (map[string]interface{}, error)

func (*CreateRelationshipBody) UnmarshalJSON ¶

func (o *CreateRelationshipBody) UnmarshalJSON(bytes []byte) (err error)

type CreateSubscriptionBody ¶

type CreateSubscriptionBody struct {
	//  usd USD eur Euro
	Currency *string `json:"currency,omitempty"`
	//  monthly Monthly yearly Yearly
	Interval              string         `json:"interval"`
	Plan                  string         `json:"plan"`
	ProvisionFirstProject NullableString `json:"provision_first_project,omitempty"`
	ReturnTo              *string        `json:"return_to,omitempty"`
	Workspace             NullableString `json:"workspace,omitempty"`
	AdditionalProperties  map[string]interface{}
}

CreateSubscriptionBody Create Subscription Request Body

func NewCreateSubscriptionBody ¶

func NewCreateSubscriptionBody(interval string, plan string) *CreateSubscriptionBody

NewCreateSubscriptionBody instantiates a new CreateSubscriptionBody 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 NewCreateSubscriptionBodyWithDefaults ¶

func NewCreateSubscriptionBodyWithDefaults() *CreateSubscriptionBody

NewCreateSubscriptionBodyWithDefaults instantiates a new CreateSubscriptionBody 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 (*CreateSubscriptionBody) GetCurrency ¶

func (o *CreateSubscriptionBody) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*CreateSubscriptionBody) GetCurrencyOk ¶

func (o *CreateSubscriptionBody) GetCurrencyOk() (*string, bool)

GetCurrencyOk returns a tuple with the Currency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateSubscriptionBody) GetInterval ¶

func (o *CreateSubscriptionBody) GetInterval() string

GetInterval returns the Interval field value

func (*CreateSubscriptionBody) GetIntervalOk ¶

func (o *CreateSubscriptionBody) GetIntervalOk() (*string, bool)

GetIntervalOk returns a tuple with the Interval field value and a boolean to check if the value has been set.

func (*CreateSubscriptionBody) GetPlan ¶

func (o *CreateSubscriptionBody) GetPlan() string

GetPlan returns the Plan field value

func (*CreateSubscriptionBody) GetPlanOk ¶

func (o *CreateSubscriptionBody) GetPlanOk() (*string, bool)

GetPlanOk returns a tuple with the Plan field value and a boolean to check if the value has been set.

func (*CreateSubscriptionBody) GetProvisionFirstProject ¶

func (o *CreateSubscriptionBody) GetProvisionFirstProject() string

GetProvisionFirstProject returns the ProvisionFirstProject field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CreateSubscriptionBody) GetProvisionFirstProjectOk ¶

func (o *CreateSubscriptionBody) GetProvisionFirstProjectOk() (*string, bool)

GetProvisionFirstProjectOk returns a tuple with the ProvisionFirstProject field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CreateSubscriptionBody) GetReturnTo ¶

func (o *CreateSubscriptionBody) GetReturnTo() string

GetReturnTo returns the ReturnTo field value if set, zero value otherwise.

func (*CreateSubscriptionBody) GetReturnToOk ¶

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

GetReturnToOk returns a tuple with the ReturnTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateSubscriptionBody) GetWorkspace ¶

func (o *CreateSubscriptionBody) GetWorkspace() string

GetWorkspace returns the Workspace field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CreateSubscriptionBody) GetWorkspaceOk ¶

func (o *CreateSubscriptionBody) GetWorkspaceOk() (*string, bool)

GetWorkspaceOk returns a tuple with the Workspace field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CreateSubscriptionBody) HasCurrency ¶

func (o *CreateSubscriptionBody) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (*CreateSubscriptionBody) HasProvisionFirstProject ¶

func (o *CreateSubscriptionBody) HasProvisionFirstProject() bool

HasProvisionFirstProject returns a boolean if a field has been set.

func (*CreateSubscriptionBody) HasReturnTo ¶

func (o *CreateSubscriptionBody) HasReturnTo() bool

HasReturnTo returns a boolean if a field has been set.

func (*CreateSubscriptionBody) HasWorkspace ¶

func (o *CreateSubscriptionBody) HasWorkspace() bool

HasWorkspace returns a boolean if a field has been set.

func (CreateSubscriptionBody) MarshalJSON ¶

func (o CreateSubscriptionBody) MarshalJSON() ([]byte, error)

func (*CreateSubscriptionBody) SetCurrency ¶

func (o *CreateSubscriptionBody) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

func (*CreateSubscriptionBody) SetInterval ¶

func (o *CreateSubscriptionBody) SetInterval(v string)

SetInterval sets field value

func (*CreateSubscriptionBody) SetPlan ¶

func (o *CreateSubscriptionBody) SetPlan(v string)

SetPlan sets field value

func (*CreateSubscriptionBody) SetProvisionFirstProject ¶

func (o *CreateSubscriptionBody) SetProvisionFirstProject(v string)

SetProvisionFirstProject gets a reference to the given NullableString and assigns it to the ProvisionFirstProject field.

func (*CreateSubscriptionBody) SetProvisionFirstProjectNil ¶

func (o *CreateSubscriptionBody) SetProvisionFirstProjectNil()

SetProvisionFirstProjectNil sets the value for ProvisionFirstProject to be an explicit nil

func (*CreateSubscriptionBody) SetReturnTo ¶

func (o *CreateSubscriptionBody) SetReturnTo(v string)

SetReturnTo gets a reference to the given string and assigns it to the ReturnTo field.

func (*CreateSubscriptionBody) SetWorkspace ¶

func (o *CreateSubscriptionBody) SetWorkspace(v string)

SetWorkspace gets a reference to the given NullableString and assigns it to the Workspace field.

func (*CreateSubscriptionBody) SetWorkspaceNil ¶

func (o *CreateSubscriptionBody) SetWorkspaceNil()

SetWorkspaceNil sets the value for Workspace to be an explicit nil

func (CreateSubscriptionBody) ToMap ¶

func (o CreateSubscriptionBody) ToMap() (map[string]interface{}, error)

func (*CreateSubscriptionBody) UnmarshalJSON ¶

func (o *CreateSubscriptionBody) UnmarshalJSON(bytes []byte) (err error)

func (*CreateSubscriptionBody) UnsetProvisionFirstProject ¶

func (o *CreateSubscriptionBody) UnsetProvisionFirstProject()

UnsetProvisionFirstProject ensures that no value is present for ProvisionFirstProject, not even an explicit nil

func (*CreateSubscriptionBody) UnsetWorkspace ¶

func (o *CreateSubscriptionBody) UnsetWorkspace()

UnsetWorkspace ensures that no value is present for Workspace, not even an explicit nil

type CreateVerifiableCredentialRequestBody ¶

type CreateVerifiableCredentialRequestBody struct {
	Format               *string                    `json:"format,omitempty"`
	Proof                *VerifiableCredentialProof `json:"proof,omitempty"`
	Types                []string                   `json:"types,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateVerifiableCredentialRequestBody struct for CreateVerifiableCredentialRequestBody

func NewCreateVerifiableCredentialRequestBody ¶

func NewCreateVerifiableCredentialRequestBody() *CreateVerifiableCredentialRequestBody

NewCreateVerifiableCredentialRequestBody instantiates a new CreateVerifiableCredentialRequestBody 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 NewCreateVerifiableCredentialRequestBodyWithDefaults ¶

func NewCreateVerifiableCredentialRequestBodyWithDefaults() *CreateVerifiableCredentialRequestBody

NewCreateVerifiableCredentialRequestBodyWithDefaults instantiates a new CreateVerifiableCredentialRequestBody 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 (*CreateVerifiableCredentialRequestBody) GetFormat ¶

GetFormat returns the Format field value if set, zero value otherwise.

func (*CreateVerifiableCredentialRequestBody) GetFormatOk ¶

func (o *CreateVerifiableCredentialRequestBody) GetFormatOk() (*string, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVerifiableCredentialRequestBody) GetProof ¶

GetProof returns the Proof field value if set, zero value otherwise.

func (*CreateVerifiableCredentialRequestBody) GetProofOk ¶

GetProofOk returns a tuple with the Proof field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVerifiableCredentialRequestBody) GetTypes ¶

GetTypes returns the Types field value if set, zero value otherwise.

func (*CreateVerifiableCredentialRequestBody) GetTypesOk ¶

func (o *CreateVerifiableCredentialRequestBody) GetTypesOk() ([]string, bool)

GetTypesOk returns a tuple with the Types field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateVerifiableCredentialRequestBody) HasFormat ¶

HasFormat returns a boolean if a field has been set.

func (*CreateVerifiableCredentialRequestBody) HasProof ¶

HasProof returns a boolean if a field has been set.

func (*CreateVerifiableCredentialRequestBody) HasTypes ¶

HasTypes returns a boolean if a field has been set.

func (CreateVerifiableCredentialRequestBody) MarshalJSON ¶

func (o CreateVerifiableCredentialRequestBody) MarshalJSON() ([]byte, error)

func (*CreateVerifiableCredentialRequestBody) SetFormat ¶

SetFormat gets a reference to the given string and assigns it to the Format field.

func (*CreateVerifiableCredentialRequestBody) SetProof ¶

SetProof gets a reference to the given VerifiableCredentialProof and assigns it to the Proof field.

func (*CreateVerifiableCredentialRequestBody) SetTypes ¶

SetTypes gets a reference to the given []string and assigns it to the Types field.

func (CreateVerifiableCredentialRequestBody) ToMap ¶

func (o CreateVerifiableCredentialRequestBody) ToMap() (map[string]interface{}, error)

func (*CreateVerifiableCredentialRequestBody) UnmarshalJSON ¶

func (o *CreateVerifiableCredentialRequestBody) UnmarshalJSON(bytes []byte) (err error)

type CreateWorkspaceMemberInviteBody ¶

type CreateWorkspaceMemberInviteBody struct {
	// A email to invite
	InviteeEmail         *string `json:"invitee_email,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateWorkspaceMemberInviteBody Create Workspace Invite Request Body

func NewCreateWorkspaceMemberInviteBody ¶

func NewCreateWorkspaceMemberInviteBody() *CreateWorkspaceMemberInviteBody

NewCreateWorkspaceMemberInviteBody instantiates a new CreateWorkspaceMemberInviteBody 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 NewCreateWorkspaceMemberInviteBodyWithDefaults ¶

func NewCreateWorkspaceMemberInviteBodyWithDefaults() *CreateWorkspaceMemberInviteBody

NewCreateWorkspaceMemberInviteBodyWithDefaults instantiates a new CreateWorkspaceMemberInviteBody 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 (*CreateWorkspaceMemberInviteBody) GetInviteeEmail ¶

func (o *CreateWorkspaceMemberInviteBody) GetInviteeEmail() string

GetInviteeEmail returns the InviteeEmail field value if set, zero value otherwise.

func (*CreateWorkspaceMemberInviteBody) GetInviteeEmailOk ¶

func (o *CreateWorkspaceMemberInviteBody) GetInviteeEmailOk() (*string, bool)

GetInviteeEmailOk returns a tuple with the InviteeEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateWorkspaceMemberInviteBody) HasInviteeEmail ¶

func (o *CreateWorkspaceMemberInviteBody) HasInviteeEmail() bool

HasInviteeEmail returns a boolean if a field has been set.

func (CreateWorkspaceMemberInviteBody) MarshalJSON ¶

func (o CreateWorkspaceMemberInviteBody) MarshalJSON() ([]byte, error)

func (*CreateWorkspaceMemberInviteBody) SetInviteeEmail ¶

func (o *CreateWorkspaceMemberInviteBody) SetInviteeEmail(v string)

SetInviteeEmail gets a reference to the given string and assigns it to the InviteeEmail field.

func (CreateWorkspaceMemberInviteBody) ToMap ¶

func (o CreateWorkspaceMemberInviteBody) ToMap() (map[string]interface{}, error)

func (*CreateWorkspaceMemberInviteBody) UnmarshalJSON ¶

func (o *CreateWorkspaceMemberInviteBody) UnmarshalJSON(bytes []byte) (err error)

type CredentialSupportedDraft00 ¶

type CredentialSupportedDraft00 struct {
	// OpenID Connect Verifiable Credentials Cryptographic Binding Methods Supported  Contains a list of cryptographic binding methods supported for signing the proof.
	CryptographicBindingMethodsSupported []string `json:"cryptographic_binding_methods_supported,omitempty"`
	// OpenID Connect Verifiable Credentials Cryptographic Suites Supported  Contains a list of cryptographic suites methods supported for signing the proof.
	CryptographicSuitesSupported []string `json:"cryptographic_suites_supported,omitempty"`
	// OpenID Connect Verifiable Credentials Format  Contains the format that is supported by this authorization server.
	Format *string `json:"format,omitempty"`
	// OpenID Connect Verifiable Credentials Types  Contains the types of verifiable credentials supported.
	Types                []string `json:"types,omitempty"`
	AdditionalProperties map[string]interface{}
}

CredentialSupportedDraft00 Includes information about the supported verifiable credentials.

func NewCredentialSupportedDraft00 ¶

func NewCredentialSupportedDraft00() *CredentialSupportedDraft00

NewCredentialSupportedDraft00 instantiates a new CredentialSupportedDraft00 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 NewCredentialSupportedDraft00WithDefaults ¶

func NewCredentialSupportedDraft00WithDefaults() *CredentialSupportedDraft00

NewCredentialSupportedDraft00WithDefaults instantiates a new CredentialSupportedDraft00 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 (*CredentialSupportedDraft00) GetCryptographicBindingMethodsSupported ¶

func (o *CredentialSupportedDraft00) GetCryptographicBindingMethodsSupported() []string

GetCryptographicBindingMethodsSupported returns the CryptographicBindingMethodsSupported field value if set, zero value otherwise.

func (*CredentialSupportedDraft00) GetCryptographicBindingMethodsSupportedOk ¶

func (o *CredentialSupportedDraft00) GetCryptographicBindingMethodsSupportedOk() ([]string, bool)

GetCryptographicBindingMethodsSupportedOk returns a tuple with the CryptographicBindingMethodsSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CredentialSupportedDraft00) GetCryptographicSuitesSupported ¶

func (o *CredentialSupportedDraft00) GetCryptographicSuitesSupported() []string

GetCryptographicSuitesSupported returns the CryptographicSuitesSupported field value if set, zero value otherwise.

func (*CredentialSupportedDraft00) GetCryptographicSuitesSupportedOk ¶

func (o *CredentialSupportedDraft00) GetCryptographicSuitesSupportedOk() ([]string, bool)

GetCryptographicSuitesSupportedOk returns a tuple with the CryptographicSuitesSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CredentialSupportedDraft00) GetFormat ¶

func (o *CredentialSupportedDraft00) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise.

func (*CredentialSupportedDraft00) GetFormatOk ¶

func (o *CredentialSupportedDraft00) GetFormatOk() (*string, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CredentialSupportedDraft00) GetTypes ¶

func (o *CredentialSupportedDraft00) GetTypes() []string

GetTypes returns the Types field value if set, zero value otherwise.

func (*CredentialSupportedDraft00) GetTypesOk ¶

func (o *CredentialSupportedDraft00) GetTypesOk() ([]string, bool)

GetTypesOk returns a tuple with the Types field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CredentialSupportedDraft00) HasCryptographicBindingMethodsSupported ¶

func (o *CredentialSupportedDraft00) HasCryptographicBindingMethodsSupported() bool

HasCryptographicBindingMethodsSupported returns a boolean if a field has been set.

func (*CredentialSupportedDraft00) HasCryptographicSuitesSupported ¶

func (o *CredentialSupportedDraft00) HasCryptographicSuitesSupported() bool

HasCryptographicSuitesSupported returns a boolean if a field has been set.

func (*CredentialSupportedDraft00) HasFormat ¶

func (o *CredentialSupportedDraft00) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*CredentialSupportedDraft00) HasTypes ¶

func (o *CredentialSupportedDraft00) HasTypes() bool

HasTypes returns a boolean if a field has been set.

func (CredentialSupportedDraft00) MarshalJSON ¶

func (o CredentialSupportedDraft00) MarshalJSON() ([]byte, error)

func (*CredentialSupportedDraft00) SetCryptographicBindingMethodsSupported ¶

func (o *CredentialSupportedDraft00) SetCryptographicBindingMethodsSupported(v []string)

SetCryptographicBindingMethodsSupported gets a reference to the given []string and assigns it to the CryptographicBindingMethodsSupported field.

func (*CredentialSupportedDraft00) SetCryptographicSuitesSupported ¶

func (o *CredentialSupportedDraft00) SetCryptographicSuitesSupported(v []string)

SetCryptographicSuitesSupported gets a reference to the given []string and assigns it to the CryptographicSuitesSupported field.

func (*CredentialSupportedDraft00) SetFormat ¶

func (o *CredentialSupportedDraft00) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (*CredentialSupportedDraft00) SetTypes ¶

func (o *CredentialSupportedDraft00) SetTypes(v []string)

SetTypes gets a reference to the given []string and assigns it to the Types field.

func (CredentialSupportedDraft00) ToMap ¶

func (o CredentialSupportedDraft00) ToMap() (map[string]interface{}, error)

func (*CredentialSupportedDraft00) UnmarshalJSON ¶

func (o *CredentialSupportedDraft00) UnmarshalJSON(bytes []byte) (err error)

type CustomDomain ¶

type CustomDomain struct {
	CookieDomain         *string    `json:"cookie_domain,omitempty"`
	CorsAllowedOrigins   []string   `json:"cors_allowed_origins,omitempty"`
	CorsEnabled          *bool      `json:"cors_enabled,omitempty"`
	CreatedAt            *time.Time `json:"created_at,omitempty"`
	CustomUiBaseUrl      *string    `json:"custom_ui_base_url,omitempty"`
	Hostname             *string    `json:"hostname,omitempty"`
	Id                   *string    `json:"id,omitempty"`
	SslStatus            *string    `json:"ssl_status,omitempty"`
	UpdatedAt            *time.Time `json:"updated_at,omitempty"`
	VerificationErrors   []string   `json:"verification_errors,omitempty"`
	VerificationStatus   *string    `json:"verification_status,omitempty"`
	AdditionalProperties map[string]interface{}
}

CustomDomain Custom Hostname

func NewCustomDomain ¶

func NewCustomDomain() *CustomDomain

NewCustomDomain instantiates a new CustomDomain 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 NewCustomDomainWithDefaults ¶

func NewCustomDomainWithDefaults() *CustomDomain

NewCustomDomainWithDefaults instantiates a new CustomDomain 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 (*CustomDomain) GetCookieDomain ¶

func (o *CustomDomain) GetCookieDomain() string

GetCookieDomain returns the CookieDomain field value if set, zero value otherwise.

func (*CustomDomain) GetCookieDomainOk ¶

func (o *CustomDomain) GetCookieDomainOk() (*string, bool)

GetCookieDomainOk returns a tuple with the CookieDomain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomDomain) GetCorsAllowedOrigins ¶

func (o *CustomDomain) GetCorsAllowedOrigins() []string

GetCorsAllowedOrigins returns the CorsAllowedOrigins field value if set, zero value otherwise.

func (*CustomDomain) GetCorsAllowedOriginsOk ¶

func (o *CustomDomain) GetCorsAllowedOriginsOk() ([]string, bool)

GetCorsAllowedOriginsOk returns a tuple with the CorsAllowedOrigins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomDomain) GetCorsEnabled ¶

func (o *CustomDomain) GetCorsEnabled() bool

GetCorsEnabled returns the CorsEnabled field value if set, zero value otherwise.

func (*CustomDomain) GetCorsEnabledOk ¶

func (o *CustomDomain) GetCorsEnabledOk() (*bool, bool)

GetCorsEnabledOk returns a tuple with the CorsEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomDomain) GetCreatedAt ¶

func (o *CustomDomain) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*CustomDomain) GetCreatedAtOk ¶

func (o *CustomDomain) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomDomain) GetCustomUiBaseUrl ¶

func (o *CustomDomain) GetCustomUiBaseUrl() string

GetCustomUiBaseUrl returns the CustomUiBaseUrl field value if set, zero value otherwise.

func (*CustomDomain) GetCustomUiBaseUrlOk ¶

func (o *CustomDomain) GetCustomUiBaseUrlOk() (*string, bool)

GetCustomUiBaseUrlOk returns a tuple with the CustomUiBaseUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomDomain) GetHostname ¶

func (o *CustomDomain) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*CustomDomain) GetHostnameOk ¶

func (o *CustomDomain) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomDomain) GetId ¶

func (o *CustomDomain) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*CustomDomain) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomDomain) GetSslStatus ¶

func (o *CustomDomain) GetSslStatus() string

GetSslStatus returns the SslStatus field value if set, zero value otherwise.

func (*CustomDomain) GetSslStatusOk ¶

func (o *CustomDomain) GetSslStatusOk() (*string, bool)

GetSslStatusOk returns a tuple with the SslStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomDomain) GetUpdatedAt ¶

func (o *CustomDomain) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*CustomDomain) GetUpdatedAtOk ¶

func (o *CustomDomain) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomDomain) GetVerificationErrors ¶

func (o *CustomDomain) GetVerificationErrors() []string

GetVerificationErrors returns the VerificationErrors field value if set, zero value otherwise.

func (*CustomDomain) GetVerificationErrorsOk ¶

func (o *CustomDomain) GetVerificationErrorsOk() ([]string, bool)

GetVerificationErrorsOk returns a tuple with the VerificationErrors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomDomain) GetVerificationStatus ¶

func (o *CustomDomain) GetVerificationStatus() string

GetVerificationStatus returns the VerificationStatus field value if set, zero value otherwise.

func (*CustomDomain) GetVerificationStatusOk ¶

func (o *CustomDomain) GetVerificationStatusOk() (*string, bool)

GetVerificationStatusOk returns a tuple with the VerificationStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomDomain) HasCookieDomain ¶

func (o *CustomDomain) HasCookieDomain() bool

HasCookieDomain returns a boolean if a field has been set.

func (*CustomDomain) HasCorsAllowedOrigins ¶

func (o *CustomDomain) HasCorsAllowedOrigins() bool

HasCorsAllowedOrigins returns a boolean if a field has been set.

func (*CustomDomain) HasCorsEnabled ¶

func (o *CustomDomain) HasCorsEnabled() bool

HasCorsEnabled returns a boolean if a field has been set.

func (*CustomDomain) HasCreatedAt ¶

func (o *CustomDomain) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*CustomDomain) HasCustomUiBaseUrl ¶

func (o *CustomDomain) HasCustomUiBaseUrl() bool

HasCustomUiBaseUrl returns a boolean if a field has been set.

func (*CustomDomain) HasHostname ¶

func (o *CustomDomain) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*CustomDomain) HasId ¶

func (o *CustomDomain) HasId() bool

HasId returns a boolean if a field has been set.

func (*CustomDomain) HasSslStatus ¶

func (o *CustomDomain) HasSslStatus() bool

HasSslStatus returns a boolean if a field has been set.

func (*CustomDomain) HasUpdatedAt ¶

func (o *CustomDomain) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*CustomDomain) HasVerificationErrors ¶

func (o *CustomDomain) HasVerificationErrors() bool

HasVerificationErrors returns a boolean if a field has been set.

func (*CustomDomain) HasVerificationStatus ¶

func (o *CustomDomain) HasVerificationStatus() bool

HasVerificationStatus returns a boolean if a field has been set.

func (CustomDomain) MarshalJSON ¶

func (o CustomDomain) MarshalJSON() ([]byte, error)

func (*CustomDomain) SetCookieDomain ¶

func (o *CustomDomain) SetCookieDomain(v string)

SetCookieDomain gets a reference to the given string and assigns it to the CookieDomain field.

func (*CustomDomain) SetCorsAllowedOrigins ¶

func (o *CustomDomain) SetCorsAllowedOrigins(v []string)

SetCorsAllowedOrigins gets a reference to the given []string and assigns it to the CorsAllowedOrigins field.

func (*CustomDomain) SetCorsEnabled ¶

func (o *CustomDomain) SetCorsEnabled(v bool)

SetCorsEnabled gets a reference to the given bool and assigns it to the CorsEnabled field.

func (*CustomDomain) SetCreatedAt ¶

func (o *CustomDomain) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*CustomDomain) SetCustomUiBaseUrl ¶

func (o *CustomDomain) SetCustomUiBaseUrl(v string)

SetCustomUiBaseUrl gets a reference to the given string and assigns it to the CustomUiBaseUrl field.

func (*CustomDomain) SetHostname ¶

func (o *CustomDomain) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*CustomDomain) SetId ¶

func (o *CustomDomain) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CustomDomain) SetSslStatus ¶

func (o *CustomDomain) SetSslStatus(v string)

SetSslStatus gets a reference to the given string and assigns it to the SslStatus field.

func (*CustomDomain) SetUpdatedAt ¶

func (o *CustomDomain) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*CustomDomain) SetVerificationErrors ¶

func (o *CustomDomain) SetVerificationErrors(v []string)

SetVerificationErrors gets a reference to the given []string and assigns it to the VerificationErrors field.

func (*CustomDomain) SetVerificationStatus ¶

func (o *CustomDomain) SetVerificationStatus(v string)

SetVerificationStatus gets a reference to the given string and assigns it to the VerificationStatus field.

func (CustomDomain) ToMap ¶

func (o CustomDomain) ToMap() (map[string]interface{}, error)

func (*CustomDomain) UnmarshalJSON ¶

func (o *CustomDomain) UnmarshalJSON(bytes []byte) (err error)

type DeleteMySessionsCount ¶

type DeleteMySessionsCount struct {
	// The number of sessions that were revoked.
	Count                *int64 `json:"count,omitempty"`
	AdditionalProperties map[string]interface{}
}

DeleteMySessionsCount Deleted Session Count

func NewDeleteMySessionsCount ¶

func NewDeleteMySessionsCount() *DeleteMySessionsCount

NewDeleteMySessionsCount instantiates a new DeleteMySessionsCount 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 NewDeleteMySessionsCountWithDefaults ¶

func NewDeleteMySessionsCountWithDefaults() *DeleteMySessionsCount

NewDeleteMySessionsCountWithDefaults instantiates a new DeleteMySessionsCount 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 (*DeleteMySessionsCount) GetCount ¶

func (o *DeleteMySessionsCount) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*DeleteMySessionsCount) GetCountOk ¶

func (o *DeleteMySessionsCount) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeleteMySessionsCount) HasCount ¶

func (o *DeleteMySessionsCount) HasCount() bool

HasCount returns a boolean if a field has been set.

func (DeleteMySessionsCount) MarshalJSON ¶

func (o DeleteMySessionsCount) MarshalJSON() ([]byte, error)

func (*DeleteMySessionsCount) SetCount ¶

func (o *DeleteMySessionsCount) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (DeleteMySessionsCount) ToMap ¶

func (o DeleteMySessionsCount) ToMap() (map[string]interface{}, error)

func (*DeleteMySessionsCount) UnmarshalJSON ¶

func (o *DeleteMySessionsCount) UnmarshalJSON(bytes []byte) (err error)

type EmailTemplateData ¶

type EmailTemplateData struct {
	Body                 EmailTemplateDataBody `json:"body"`
	Subject              string                `json:"subject"`
	AdditionalProperties map[string]interface{}
}

EmailTemplateData Contains the data of the email template, including the subject and body in HTML and plaintext variants

func NewEmailTemplateData ¶

func NewEmailTemplateData(body EmailTemplateDataBody, subject string) *EmailTemplateData

NewEmailTemplateData instantiates a new EmailTemplateData 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 NewEmailTemplateDataWithDefaults ¶

func NewEmailTemplateDataWithDefaults() *EmailTemplateData

NewEmailTemplateDataWithDefaults instantiates a new EmailTemplateData 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 (*EmailTemplateData) GetBody ¶

GetBody returns the Body field value

func (*EmailTemplateData) GetBodyOk ¶

func (o *EmailTemplateData) GetBodyOk() (*EmailTemplateDataBody, bool)

GetBodyOk returns a tuple with the Body field value and a boolean to check if the value has been set.

func (*EmailTemplateData) GetSubject ¶

func (o *EmailTemplateData) GetSubject() string

GetSubject returns the Subject field value

func (*EmailTemplateData) GetSubjectOk ¶

func (o *EmailTemplateData) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (EmailTemplateData) MarshalJSON ¶

func (o EmailTemplateData) MarshalJSON() ([]byte, error)

func (*EmailTemplateData) SetBody ¶

SetBody sets field value

func (*EmailTemplateData) SetSubject ¶

func (o *EmailTemplateData) SetSubject(v string)

SetSubject sets field value

func (EmailTemplateData) ToMap ¶

func (o EmailTemplateData) ToMap() (map[string]interface{}, error)

func (*EmailTemplateData) UnmarshalJSON ¶

func (o *EmailTemplateData) UnmarshalJSON(bytes []byte) (err error)

type EmailTemplateDataBody ¶

type EmailTemplateDataBody struct {
	Html                 string `json:"html"`
	Plaintext            string `json:"plaintext"`
	AdditionalProperties map[string]interface{}
}

EmailTemplateDataBody struct for EmailTemplateDataBody

func NewEmailTemplateDataBody ¶

func NewEmailTemplateDataBody(html string, plaintext string) *EmailTemplateDataBody

NewEmailTemplateDataBody instantiates a new EmailTemplateDataBody 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 NewEmailTemplateDataBodyWithDefaults ¶

func NewEmailTemplateDataBodyWithDefaults() *EmailTemplateDataBody

NewEmailTemplateDataBodyWithDefaults instantiates a new EmailTemplateDataBody 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 (*EmailTemplateDataBody) GetHtml ¶

func (o *EmailTemplateDataBody) GetHtml() string

GetHtml returns the Html field value

func (*EmailTemplateDataBody) GetHtmlOk ¶

func (o *EmailTemplateDataBody) GetHtmlOk() (*string, bool)

GetHtmlOk returns a tuple with the Html field value and a boolean to check if the value has been set.

func (*EmailTemplateDataBody) GetPlaintext ¶

func (o *EmailTemplateDataBody) GetPlaintext() string

GetPlaintext returns the Plaintext field value

func (*EmailTemplateDataBody) GetPlaintextOk ¶

func (o *EmailTemplateDataBody) GetPlaintextOk() (*string, bool)

GetPlaintextOk returns a tuple with the Plaintext field value and a boolean to check if the value has been set.

func (EmailTemplateDataBody) MarshalJSON ¶

func (o EmailTemplateDataBody) MarshalJSON() ([]byte, error)

func (*EmailTemplateDataBody) SetHtml ¶

func (o *EmailTemplateDataBody) SetHtml(v string)

SetHtml sets field value

func (*EmailTemplateDataBody) SetPlaintext ¶

func (o *EmailTemplateDataBody) SetPlaintext(v string)

SetPlaintext sets field value

func (EmailTemplateDataBody) ToMap ¶

func (o EmailTemplateDataBody) ToMap() (map[string]interface{}, error)

func (*EmailTemplateDataBody) UnmarshalJSON ¶

func (o *EmailTemplateDataBody) UnmarshalJSON(bytes []byte) (err error)

type ErrorAuthenticatorAssuranceLevelNotSatisfied ¶

type ErrorAuthenticatorAssuranceLevelNotSatisfied struct {
	Error *GenericError `json:"error,omitempty"`
	// Points to where to redirect the user to next.
	RedirectBrowserTo    *string `json:"redirect_browser_to,omitempty"`
	AdditionalProperties map[string]interface{}
}

ErrorAuthenticatorAssuranceLevelNotSatisfied struct for ErrorAuthenticatorAssuranceLevelNotSatisfied

func NewErrorAuthenticatorAssuranceLevelNotSatisfied ¶

func NewErrorAuthenticatorAssuranceLevelNotSatisfied() *ErrorAuthenticatorAssuranceLevelNotSatisfied

NewErrorAuthenticatorAssuranceLevelNotSatisfied instantiates a new ErrorAuthenticatorAssuranceLevelNotSatisfied 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 NewErrorAuthenticatorAssuranceLevelNotSatisfiedWithDefaults ¶

func NewErrorAuthenticatorAssuranceLevelNotSatisfiedWithDefaults() *ErrorAuthenticatorAssuranceLevelNotSatisfied

NewErrorAuthenticatorAssuranceLevelNotSatisfiedWithDefaults instantiates a new ErrorAuthenticatorAssuranceLevelNotSatisfied 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 (*ErrorAuthenticatorAssuranceLevelNotSatisfied) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*ErrorAuthenticatorAssuranceLevelNotSatisfied) GetErrorOk ¶

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorAuthenticatorAssuranceLevelNotSatisfied) GetRedirectBrowserTo ¶

func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) GetRedirectBrowserTo() string

GetRedirectBrowserTo returns the RedirectBrowserTo field value if set, zero value otherwise.

func (*ErrorAuthenticatorAssuranceLevelNotSatisfied) GetRedirectBrowserToOk ¶

func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) GetRedirectBrowserToOk() (*string, bool)

GetRedirectBrowserToOk returns a tuple with the RedirectBrowserTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorAuthenticatorAssuranceLevelNotSatisfied) HasError ¶

HasError returns a boolean if a field has been set.

func (*ErrorAuthenticatorAssuranceLevelNotSatisfied) HasRedirectBrowserTo ¶

func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) HasRedirectBrowserTo() bool

HasRedirectBrowserTo returns a boolean if a field has been set.

func (ErrorAuthenticatorAssuranceLevelNotSatisfied) MarshalJSON ¶

func (*ErrorAuthenticatorAssuranceLevelNotSatisfied) SetError ¶

SetError gets a reference to the given GenericError and assigns it to the Error field.

func (*ErrorAuthenticatorAssuranceLevelNotSatisfied) SetRedirectBrowserTo ¶

func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) SetRedirectBrowserTo(v string)

SetRedirectBrowserTo gets a reference to the given string and assigns it to the RedirectBrowserTo field.

func (ErrorAuthenticatorAssuranceLevelNotSatisfied) ToMap ¶

func (o ErrorAuthenticatorAssuranceLevelNotSatisfied) ToMap() (map[string]interface{}, error)

func (*ErrorAuthenticatorAssuranceLevelNotSatisfied) UnmarshalJSON ¶

func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) UnmarshalJSON(bytes []byte) (err error)

type ErrorBrowserLocationChangeRequired ¶

type ErrorBrowserLocationChangeRequired struct {
	Error *ErrorGeneric `json:"error,omitempty"`
	// Points to where to redirect the user to next.
	RedirectBrowserTo    *string `json:"redirect_browser_to,omitempty"`
	AdditionalProperties map[string]interface{}
}

ErrorBrowserLocationChangeRequired struct for ErrorBrowserLocationChangeRequired

func NewErrorBrowserLocationChangeRequired ¶

func NewErrorBrowserLocationChangeRequired() *ErrorBrowserLocationChangeRequired

NewErrorBrowserLocationChangeRequired instantiates a new ErrorBrowserLocationChangeRequired 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 NewErrorBrowserLocationChangeRequiredWithDefaults ¶

func NewErrorBrowserLocationChangeRequiredWithDefaults() *ErrorBrowserLocationChangeRequired

NewErrorBrowserLocationChangeRequiredWithDefaults instantiates a new ErrorBrowserLocationChangeRequired 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 (*ErrorBrowserLocationChangeRequired) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*ErrorBrowserLocationChangeRequired) GetErrorOk ¶

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorBrowserLocationChangeRequired) GetRedirectBrowserTo ¶

func (o *ErrorBrowserLocationChangeRequired) GetRedirectBrowserTo() string

GetRedirectBrowserTo returns the RedirectBrowserTo field value if set, zero value otherwise.

func (*ErrorBrowserLocationChangeRequired) GetRedirectBrowserToOk ¶

func (o *ErrorBrowserLocationChangeRequired) GetRedirectBrowserToOk() (*string, bool)

GetRedirectBrowserToOk returns a tuple with the RedirectBrowserTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorBrowserLocationChangeRequired) HasError ¶

HasError returns a boolean if a field has been set.

func (*ErrorBrowserLocationChangeRequired) HasRedirectBrowserTo ¶

func (o *ErrorBrowserLocationChangeRequired) HasRedirectBrowserTo() bool

HasRedirectBrowserTo returns a boolean if a field has been set.

func (ErrorBrowserLocationChangeRequired) MarshalJSON ¶

func (o ErrorBrowserLocationChangeRequired) MarshalJSON() ([]byte, error)

func (*ErrorBrowserLocationChangeRequired) SetError ¶

SetError gets a reference to the given ErrorGeneric and assigns it to the Error field.

func (*ErrorBrowserLocationChangeRequired) SetRedirectBrowserTo ¶

func (o *ErrorBrowserLocationChangeRequired) SetRedirectBrowserTo(v string)

SetRedirectBrowserTo gets a reference to the given string and assigns it to the RedirectBrowserTo field.

func (ErrorBrowserLocationChangeRequired) ToMap ¶

func (o ErrorBrowserLocationChangeRequired) ToMap() (map[string]interface{}, error)

func (*ErrorBrowserLocationChangeRequired) UnmarshalJSON ¶

func (o *ErrorBrowserLocationChangeRequired) UnmarshalJSON(bytes []byte) (err error)

type ErrorFlowReplaced ¶

type ErrorFlowReplaced struct {
	Error *GenericError `json:"error,omitempty"`
	// The flow ID that should be used for the new flow as it contains the correct messages.
	UseFlowId            *string `json:"use_flow_id,omitempty"`
	AdditionalProperties map[string]interface{}
}

ErrorFlowReplaced Is sent when a flow is replaced by a different flow of the same class

func NewErrorFlowReplaced ¶

func NewErrorFlowReplaced() *ErrorFlowReplaced

NewErrorFlowReplaced instantiates a new ErrorFlowReplaced 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 NewErrorFlowReplacedWithDefaults ¶

func NewErrorFlowReplacedWithDefaults() *ErrorFlowReplaced

NewErrorFlowReplacedWithDefaults instantiates a new ErrorFlowReplaced 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 (*ErrorFlowReplaced) GetError ¶

func (o *ErrorFlowReplaced) GetError() GenericError

GetError returns the Error field value if set, zero value otherwise.

func (*ErrorFlowReplaced) GetErrorOk ¶

func (o *ErrorFlowReplaced) GetErrorOk() (*GenericError, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorFlowReplaced) GetUseFlowId ¶

func (o *ErrorFlowReplaced) GetUseFlowId() string

GetUseFlowId returns the UseFlowId field value if set, zero value otherwise.

func (*ErrorFlowReplaced) GetUseFlowIdOk ¶

func (o *ErrorFlowReplaced) GetUseFlowIdOk() (*string, bool)

GetUseFlowIdOk returns a tuple with the UseFlowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorFlowReplaced) HasError ¶

func (o *ErrorFlowReplaced) HasError() bool

HasError returns a boolean if a field has been set.

func (*ErrorFlowReplaced) HasUseFlowId ¶

func (o *ErrorFlowReplaced) HasUseFlowId() bool

HasUseFlowId returns a boolean if a field has been set.

func (ErrorFlowReplaced) MarshalJSON ¶

func (o ErrorFlowReplaced) MarshalJSON() ([]byte, error)

func (*ErrorFlowReplaced) SetError ¶

func (o *ErrorFlowReplaced) SetError(v GenericError)

SetError gets a reference to the given GenericError and assigns it to the Error field.

func (*ErrorFlowReplaced) SetUseFlowId ¶

func (o *ErrorFlowReplaced) SetUseFlowId(v string)

SetUseFlowId gets a reference to the given string and assigns it to the UseFlowId field.

func (ErrorFlowReplaced) ToMap ¶

func (o ErrorFlowReplaced) ToMap() (map[string]interface{}, error)

func (*ErrorFlowReplaced) UnmarshalJSON ¶

func (o *ErrorFlowReplaced) UnmarshalJSON(bytes []byte) (err error)

type ErrorGeneric ¶

type ErrorGeneric struct {
	Error                GenericErrorContent `json:"error"`
	AdditionalProperties map[string]interface{}
}

ErrorGeneric The standard Ory JSON API error format.

func NewErrorGeneric ¶

func NewErrorGeneric(error_ GenericErrorContent) *ErrorGeneric

NewErrorGeneric instantiates a new ErrorGeneric 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 NewErrorGenericWithDefaults ¶

func NewErrorGenericWithDefaults() *ErrorGeneric

NewErrorGenericWithDefaults instantiates a new ErrorGeneric 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 (*ErrorGeneric) GetError ¶

func (o *ErrorGeneric) GetError() GenericErrorContent

GetError returns the Error field value

func (*ErrorGeneric) GetErrorOk ¶

func (o *ErrorGeneric) GetErrorOk() (*GenericErrorContent, bool)

GetErrorOk returns a tuple with the Error field value and a boolean to check if the value has been set.

func (ErrorGeneric) MarshalJSON ¶

func (o ErrorGeneric) MarshalJSON() ([]byte, error)

func (*ErrorGeneric) SetError ¶

func (o *ErrorGeneric) SetError(v GenericErrorContent)

SetError sets field value

func (ErrorGeneric) ToMap ¶

func (o ErrorGeneric) ToMap() (map[string]interface{}, error)

func (*ErrorGeneric) UnmarshalJSON ¶

func (o *ErrorGeneric) UnmarshalJSON(bytes []byte) (err error)

type ErrorOAuth2 ¶

type ErrorOAuth2 struct {
	// Error
	Error *string `json:"error,omitempty"`
	// Error Debug Information  Only available in dev mode.
	ErrorDebug *string `json:"error_debug,omitempty"`
	// Error Description
	ErrorDescription *string `json:"error_description,omitempty"`
	// Error Hint  Helps the user identify the error cause.
	ErrorHint *string `json:"error_hint,omitempty"`
	// HTTP Status Code
	StatusCode           *int64 `json:"status_code,omitempty"`
	AdditionalProperties map[string]interface{}
}

ErrorOAuth2 Error

func NewErrorOAuth2 ¶

func NewErrorOAuth2() *ErrorOAuth2

NewErrorOAuth2 instantiates a new ErrorOAuth2 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 NewErrorOAuth2WithDefaults ¶

func NewErrorOAuth2WithDefaults() *ErrorOAuth2

NewErrorOAuth2WithDefaults instantiates a new ErrorOAuth2 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 (*ErrorOAuth2) GetError ¶

func (o *ErrorOAuth2) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*ErrorOAuth2) GetErrorDebug ¶

func (o *ErrorOAuth2) GetErrorDebug() string

GetErrorDebug returns the ErrorDebug field value if set, zero value otherwise.

func (*ErrorOAuth2) GetErrorDebugOk ¶

func (o *ErrorOAuth2) GetErrorDebugOk() (*string, bool)

GetErrorDebugOk returns a tuple with the ErrorDebug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorOAuth2) GetErrorDescription ¶

func (o *ErrorOAuth2) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise.

func (*ErrorOAuth2) GetErrorDescriptionOk ¶

func (o *ErrorOAuth2) GetErrorDescriptionOk() (*string, bool)

GetErrorDescriptionOk returns a tuple with the ErrorDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorOAuth2) GetErrorHint ¶

func (o *ErrorOAuth2) GetErrorHint() string

GetErrorHint returns the ErrorHint field value if set, zero value otherwise.

func (*ErrorOAuth2) GetErrorHintOk ¶

func (o *ErrorOAuth2) GetErrorHintOk() (*string, bool)

GetErrorHintOk returns a tuple with the ErrorHint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorOAuth2) GetErrorOk ¶

func (o *ErrorOAuth2) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorOAuth2) GetStatusCode ¶

func (o *ErrorOAuth2) GetStatusCode() int64

GetStatusCode returns the StatusCode field value if set, zero value otherwise.

func (*ErrorOAuth2) GetStatusCodeOk ¶

func (o *ErrorOAuth2) GetStatusCodeOk() (*int64, bool)

GetStatusCodeOk returns a tuple with the StatusCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorOAuth2) HasError ¶

func (o *ErrorOAuth2) HasError() bool

HasError returns a boolean if a field has been set.

func (*ErrorOAuth2) HasErrorDebug ¶

func (o *ErrorOAuth2) HasErrorDebug() bool

HasErrorDebug returns a boolean if a field has been set.

func (*ErrorOAuth2) HasErrorDescription ¶

func (o *ErrorOAuth2) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*ErrorOAuth2) HasErrorHint ¶

func (o *ErrorOAuth2) HasErrorHint() bool

HasErrorHint returns a boolean if a field has been set.

func (*ErrorOAuth2) HasStatusCode ¶

func (o *ErrorOAuth2) HasStatusCode() bool

HasStatusCode returns a boolean if a field has been set.

func (ErrorOAuth2) MarshalJSON ¶

func (o ErrorOAuth2) MarshalJSON() ([]byte, error)

func (*ErrorOAuth2) SetError ¶

func (o *ErrorOAuth2) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*ErrorOAuth2) SetErrorDebug ¶

func (o *ErrorOAuth2) SetErrorDebug(v string)

SetErrorDebug gets a reference to the given string and assigns it to the ErrorDebug field.

func (*ErrorOAuth2) SetErrorDescription ¶

func (o *ErrorOAuth2) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given string and assigns it to the ErrorDescription field.

func (*ErrorOAuth2) SetErrorHint ¶

func (o *ErrorOAuth2) SetErrorHint(v string)

SetErrorHint gets a reference to the given string and assigns it to the ErrorHint field.

func (*ErrorOAuth2) SetStatusCode ¶

func (o *ErrorOAuth2) SetStatusCode(v int64)

SetStatusCode gets a reference to the given int64 and assigns it to the StatusCode field.

func (ErrorOAuth2) ToMap ¶

func (o ErrorOAuth2) ToMap() (map[string]interface{}, error)

func (*ErrorOAuth2) UnmarshalJSON ¶

func (o *ErrorOAuth2) UnmarshalJSON(bytes []byte) (err error)

type EventStream ¶

type EventStream struct {
	CreatedAt            *time.Time `json:"created_at,omitempty"`
	Id                   *string    `json:"id,omitempty"`
	RoleArn              *string    `json:"role_arn,omitempty"`
	TopicArn             *string    `json:"topic_arn,omitempty"`
	Type                 *string    `json:"type,omitempty"`
	UpdatedAt            *time.Time `json:"updated_at,omitempty"`
	AdditionalProperties map[string]interface{}
}

EventStream Event Stream

func NewEventStream ¶

func NewEventStream() *EventStream

NewEventStream instantiates a new EventStream 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 NewEventStreamWithDefaults ¶

func NewEventStreamWithDefaults() *EventStream

NewEventStreamWithDefaults instantiates a new EventStream 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 (*EventStream) GetCreatedAt ¶

func (o *EventStream) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*EventStream) GetCreatedAtOk ¶

func (o *EventStream) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventStream) GetId ¶

func (o *EventStream) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*EventStream) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventStream) GetRoleArn ¶

func (o *EventStream) GetRoleArn() string

GetRoleArn returns the RoleArn field value if set, zero value otherwise.

func (*EventStream) GetRoleArnOk ¶

func (o *EventStream) GetRoleArnOk() (*string, bool)

GetRoleArnOk returns a tuple with the RoleArn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventStream) GetTopicArn ¶

func (o *EventStream) GetTopicArn() string

GetTopicArn returns the TopicArn field value if set, zero value otherwise.

func (*EventStream) GetTopicArnOk ¶

func (o *EventStream) GetTopicArnOk() (*string, bool)

GetTopicArnOk returns a tuple with the TopicArn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventStream) GetType ¶

func (o *EventStream) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*EventStream) GetTypeOk ¶

func (o *EventStream) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventStream) GetUpdatedAt ¶

func (o *EventStream) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*EventStream) GetUpdatedAtOk ¶

func (o *EventStream) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EventStream) HasCreatedAt ¶

func (o *EventStream) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*EventStream) HasId ¶

func (o *EventStream) HasId() bool

HasId returns a boolean if a field has been set.

func (*EventStream) HasRoleArn ¶

func (o *EventStream) HasRoleArn() bool

HasRoleArn returns a boolean if a field has been set.

func (*EventStream) HasTopicArn ¶

func (o *EventStream) HasTopicArn() bool

HasTopicArn returns a boolean if a field has been set.

func (*EventStream) HasType ¶

func (o *EventStream) HasType() bool

HasType returns a boolean if a field has been set.

func (*EventStream) HasUpdatedAt ¶

func (o *EventStream) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (EventStream) MarshalJSON ¶

func (o EventStream) MarshalJSON() ([]byte, error)

func (*EventStream) SetCreatedAt ¶

func (o *EventStream) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*EventStream) SetId ¶

func (o *EventStream) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*EventStream) SetRoleArn ¶

func (o *EventStream) SetRoleArn(v string)

SetRoleArn gets a reference to the given string and assigns it to the RoleArn field.

func (*EventStream) SetTopicArn ¶

func (o *EventStream) SetTopicArn(v string)

SetTopicArn gets a reference to the given string and assigns it to the TopicArn field.

func (*EventStream) SetType ¶

func (o *EventStream) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*EventStream) SetUpdatedAt ¶

func (o *EventStream) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (EventStream) ToMap ¶

func (o EventStream) ToMap() (map[string]interface{}, error)

func (*EventStream) UnmarshalJSON ¶

func (o *EventStream) UnmarshalJSON(bytes []byte) (err error)

type EventsAPI ¶

type EventsAPI interface {

	/*
		CreateEventStream Create an event stream for your project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID  The project's ID.
		@return EventsAPICreateEventStreamRequest
	*/
	CreateEventStream(ctx context.Context, projectId string) EventsAPICreateEventStreamRequest

	// CreateEventStreamExecute executes the request
	//  @return EventStream
	CreateEventStreamExecute(r EventsAPICreateEventStreamRequest) (*EventStream, *http.Response, error)

	/*
		DeleteEventStream Remove an event stream from a project

		Remove an event stream from a project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID  The project's ID.
		@param eventStreamId Event Stream ID  The ID of the event stream to be deleted, as returned when created.
		@return EventsAPIDeleteEventStreamRequest
	*/
	DeleteEventStream(ctx context.Context, projectId string, eventStreamId string) EventsAPIDeleteEventStreamRequest

	// DeleteEventStreamExecute executes the request
	DeleteEventStreamExecute(r EventsAPIDeleteEventStreamRequest) (*http.Response, error)

	/*
		ListEventStreams List all event streams for the project. This endpoint is not paginated.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID  The project's ID.
		@return EventsAPIListEventStreamsRequest
	*/
	ListEventStreams(ctx context.Context, projectId string) EventsAPIListEventStreamsRequest

	// ListEventStreamsExecute executes the request
	//  @return ListEventStreams
	ListEventStreamsExecute(r EventsAPIListEventStreamsRequest) (*ListEventStreams, *http.Response, error)

	/*
		SetEventStream Update an event stream for a project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID  The project's ID.
		@param eventStreamId Event Stream ID  The event stream's ID.
		@return EventsAPISetEventStreamRequest
	*/
	SetEventStream(ctx context.Context, projectId string, eventStreamId string) EventsAPISetEventStreamRequest

	// SetEventStreamExecute executes the request
	//  @return EventStream
	SetEventStreamExecute(r EventsAPISetEventStreamRequest) (*EventStream, *http.Response, error)
}

type EventsAPICreateEventStreamRequest ¶

type EventsAPICreateEventStreamRequest struct {
	ApiService EventsAPI
	// contains filtered or unexported fields
}

func (EventsAPICreateEventStreamRequest) CreateEventStreamBody ¶

func (r EventsAPICreateEventStreamRequest) CreateEventStreamBody(createEventStreamBody CreateEventStreamBody) EventsAPICreateEventStreamRequest

func (EventsAPICreateEventStreamRequest) Execute ¶

type EventsAPIDeleteEventStreamRequest ¶

type EventsAPIDeleteEventStreamRequest struct {
	ApiService EventsAPI
	// contains filtered or unexported fields
}

func (EventsAPIDeleteEventStreamRequest) Execute ¶

type EventsAPIListEventStreamsRequest ¶

type EventsAPIListEventStreamsRequest struct {
	ApiService EventsAPI
	// contains filtered or unexported fields
}

func (EventsAPIListEventStreamsRequest) Execute ¶

type EventsAPIService ¶

type EventsAPIService service

EventsAPIService EventsAPI service

func (*EventsAPIService) CreateEventStream ¶

func (a *EventsAPIService) CreateEventStream(ctx context.Context, projectId string) EventsAPICreateEventStreamRequest

CreateEventStream Create an event stream for your project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID  The project's ID.
@return EventsAPICreateEventStreamRequest

func (*EventsAPIService) CreateEventStreamExecute ¶

Execute executes the request

@return EventStream

func (*EventsAPIService) DeleteEventStream ¶

func (a *EventsAPIService) DeleteEventStream(ctx context.Context, projectId string, eventStreamId string) EventsAPIDeleteEventStreamRequest

DeleteEventStream Remove an event stream from a project

Remove an event stream from a project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID  The project's ID.
@param eventStreamId Event Stream ID  The ID of the event stream to be deleted, as returned when created.
@return EventsAPIDeleteEventStreamRequest

func (*EventsAPIService) DeleteEventStreamExecute ¶

func (a *EventsAPIService) DeleteEventStreamExecute(r EventsAPIDeleteEventStreamRequest) (*http.Response, error)

Execute executes the request

func (*EventsAPIService) ListEventStreams ¶

func (a *EventsAPIService) ListEventStreams(ctx context.Context, projectId string) EventsAPIListEventStreamsRequest

ListEventStreams List all event streams for the project. This endpoint is not paginated.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID  The project's ID.
@return EventsAPIListEventStreamsRequest

func (*EventsAPIService) ListEventStreamsExecute ¶

Execute executes the request

@return ListEventStreams

func (*EventsAPIService) SetEventStream ¶

func (a *EventsAPIService) SetEventStream(ctx context.Context, projectId string, eventStreamId string) EventsAPISetEventStreamRequest

SetEventStream Update an event stream for a project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID  The project's ID.
@param eventStreamId Event Stream ID  The event stream's ID.
@return EventsAPISetEventStreamRequest

func (*EventsAPIService) SetEventStreamExecute ¶

Execute executes the request

@return EventStream

type EventsAPISetEventStreamRequest ¶

type EventsAPISetEventStreamRequest struct {
	ApiService EventsAPI
	// contains filtered or unexported fields
}

func (EventsAPISetEventStreamRequest) Execute ¶

func (EventsAPISetEventStreamRequest) SetEventStreamBody ¶

func (r EventsAPISetEventStreamRequest) SetEventStreamBody(setEventStreamBody SetEventStreamBody) EventsAPISetEventStreamRequest

type ExpandedPermissionTree ¶

type ExpandedPermissionTree struct {
	// The children of the node, possibly none.
	Children []ExpandedPermissionTree `json:"children,omitempty"`
	Tuple    *Relationship            `json:"tuple,omitempty"`
	// The type of the node. union TreeNodeUnion exclusion TreeNodeExclusion intersection TreeNodeIntersection leaf TreeNodeLeaf tuple_to_subject_set TreeNodeTupleToSubjectSet computed_subject_set TreeNodeComputedSubjectSet not TreeNodeNot unspecified TreeNodeUnspecified
	Type                 string `json:"type"`
	AdditionalProperties map[string]interface{}
}

ExpandedPermissionTree struct for ExpandedPermissionTree

func NewExpandedPermissionTree ¶

func NewExpandedPermissionTree(type_ string) *ExpandedPermissionTree

NewExpandedPermissionTree instantiates a new ExpandedPermissionTree 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 NewExpandedPermissionTreeWithDefaults ¶

func NewExpandedPermissionTreeWithDefaults() *ExpandedPermissionTree

NewExpandedPermissionTreeWithDefaults instantiates a new ExpandedPermissionTree 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 (*ExpandedPermissionTree) GetChildren ¶

GetChildren returns the Children field value if set, zero value otherwise.

func (*ExpandedPermissionTree) GetChildrenOk ¶

func (o *ExpandedPermissionTree) GetChildrenOk() ([]ExpandedPermissionTree, bool)

GetChildrenOk returns a tuple with the Children field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpandedPermissionTree) GetTuple ¶

func (o *ExpandedPermissionTree) GetTuple() Relationship

GetTuple returns the Tuple field value if set, zero value otherwise.

func (*ExpandedPermissionTree) GetTupleOk ¶

func (o *ExpandedPermissionTree) GetTupleOk() (*Relationship, bool)

GetTupleOk returns a tuple with the Tuple field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpandedPermissionTree) GetType ¶

func (o *ExpandedPermissionTree) GetType() string

GetType returns the Type field value

func (*ExpandedPermissionTree) GetTypeOk ¶

func (o *ExpandedPermissionTree) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*ExpandedPermissionTree) HasChildren ¶

func (o *ExpandedPermissionTree) HasChildren() bool

HasChildren returns a boolean if a field has been set.

func (*ExpandedPermissionTree) HasTuple ¶

func (o *ExpandedPermissionTree) HasTuple() bool

HasTuple returns a boolean if a field has been set.

func (ExpandedPermissionTree) MarshalJSON ¶

func (o ExpandedPermissionTree) MarshalJSON() ([]byte, error)

func (*ExpandedPermissionTree) SetChildren ¶

func (o *ExpandedPermissionTree) SetChildren(v []ExpandedPermissionTree)

SetChildren gets a reference to the given []ExpandedPermissionTree and assigns it to the Children field.

func (*ExpandedPermissionTree) SetTuple ¶

func (o *ExpandedPermissionTree) SetTuple(v Relationship)

SetTuple gets a reference to the given Relationship and assigns it to the Tuple field.

func (*ExpandedPermissionTree) SetType ¶

func (o *ExpandedPermissionTree) SetType(v string)

SetType sets field value

func (ExpandedPermissionTree) ToMap ¶

func (o ExpandedPermissionTree) ToMap() (map[string]interface{}, error)

func (*ExpandedPermissionTree) UnmarshalJSON ¶

func (o *ExpandedPermissionTree) UnmarshalJSON(bytes []byte) (err error)

type FlowError ¶

type FlowError struct {
	// CreatedAt is a helper struct field for gobuffalo.pop.
	CreatedAt *time.Time             `json:"created_at,omitempty"`
	Error     map[string]interface{} `json:"error,omitempty"`
	// ID of the error container.
	Id string `json:"id"`
	// UpdatedAt is a helper struct field for gobuffalo.pop.
	UpdatedAt            *time.Time `json:"updated_at,omitempty"`
	AdditionalProperties map[string]interface{}
}

FlowError struct for FlowError

func NewFlowError ¶

func NewFlowError(id string) *FlowError

NewFlowError instantiates a new FlowError 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 NewFlowErrorWithDefaults ¶

func NewFlowErrorWithDefaults() *FlowError

NewFlowErrorWithDefaults instantiates a new FlowError 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 (*FlowError) GetCreatedAt ¶

func (o *FlowError) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*FlowError) GetCreatedAtOk ¶

func (o *FlowError) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FlowError) GetError ¶

func (o *FlowError) GetError() map[string]interface{}

GetError returns the Error field value if set, zero value otherwise.

func (*FlowError) GetErrorOk ¶

func (o *FlowError) GetErrorOk() (map[string]interface{}, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FlowError) GetId ¶

func (o *FlowError) GetId() string

GetId returns the Id field value

func (*FlowError) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*FlowError) GetUpdatedAt ¶

func (o *FlowError) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*FlowError) GetUpdatedAtOk ¶

func (o *FlowError) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FlowError) HasCreatedAt ¶

func (o *FlowError) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*FlowError) HasError ¶

func (o *FlowError) HasError() bool

HasError returns a boolean if a field has been set.

func (*FlowError) HasUpdatedAt ¶

func (o *FlowError) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (FlowError) MarshalJSON ¶

func (o FlowError) MarshalJSON() ([]byte, error)

func (*FlowError) SetCreatedAt ¶

func (o *FlowError) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*FlowError) SetError ¶

func (o *FlowError) SetError(v map[string]interface{})

SetError gets a reference to the given map[string]interface{} and assigns it to the Error field.

func (*FlowError) SetId ¶

func (o *FlowError) SetId(v string)

SetId sets field value

func (*FlowError) SetUpdatedAt ¶

func (o *FlowError) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (FlowError) ToMap ¶

func (o FlowError) ToMap() (map[string]interface{}, error)

func (*FlowError) UnmarshalJSON ¶

func (o *FlowError) UnmarshalJSON(bytes []byte) (err error)

type FrontendAPI ¶

type FrontendAPI interface {

	/*
		CreateBrowserLoginFlow Create Login Flow for Browsers

		This endpoint initializes a browser-based user login flow. This endpoint will set the appropriate
	cookies and anti-CSRF measures required for browser-based flows.

	If this endpoint is opened as a link in the browser, it will be redirected to
	`selfservice.flows.login.ui_url` with the flow ID set as the query parameter `?flow=`. If a valid user session
	exists already, the browser will be redirected to `urls.default_redirect_url` unless the query parameter
	`?refresh=true` was set.

	If this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the
	case of an error, the `error.id` of the JSON response body can be one of:

	`session_already_available`: The user is already signed in.
	`session_aal1_required`: Multi-factor auth (e.g. 2fa) was requested but the user has no session yet.
	`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.
	`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!

	The optional query parameter login_challenge is set when using Kratos with
	Hydra in an OAuth2 flow. See the oauth2_provider.url configuration
	option.

	This endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.

	More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPICreateBrowserLoginFlowRequest
	*/
	CreateBrowserLoginFlow(ctx context.Context) FrontendAPICreateBrowserLoginFlowRequest

	// CreateBrowserLoginFlowExecute executes the request
	//  @return LoginFlow
	CreateBrowserLoginFlowExecute(r FrontendAPICreateBrowserLoginFlowRequest) (*LoginFlow, *http.Response, error)

	/*
		CreateBrowserLogoutFlow Create a Logout URL for Browsers

		This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user.

	This endpoint is NOT INTENDED for API clients and only works
	with browsers (Chrome, Firefox, ...). For API clients you can
	call the `/self-service/logout/api` URL directly with the Ory Session Token.

	The URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns
	a 401 error.

	When calling this endpoint from a backend, please ensure to properly forward the HTTP cookies.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPICreateBrowserLogoutFlowRequest
	*/
	CreateBrowserLogoutFlow(ctx context.Context) FrontendAPICreateBrowserLogoutFlowRequest

	// CreateBrowserLogoutFlowExecute executes the request
	//  @return LogoutFlow
	CreateBrowserLogoutFlowExecute(r FrontendAPICreateBrowserLogoutFlowRequest) (*LogoutFlow, *http.Response, error)

	/*
		CreateBrowserRecoveryFlow Create Recovery Flow for Browsers

		This endpoint initializes a browser-based account recovery flow. Once initialized, the browser will be redirected to
	`selfservice.flows.recovery.ui_url` with the flow ID set as the query parameter `?flow=`. If a valid user session
	exists, the browser is returned to the configured return URL.

	If this endpoint is called via an AJAX request, the response contains the recovery flow without any redirects
	or a 400 bad request error if the user is already authenticated.

	This endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.

	More information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPICreateBrowserRecoveryFlowRequest
	*/
	CreateBrowserRecoveryFlow(ctx context.Context) FrontendAPICreateBrowserRecoveryFlowRequest

	// CreateBrowserRecoveryFlowExecute executes the request
	//  @return RecoveryFlow
	CreateBrowserRecoveryFlowExecute(r FrontendAPICreateBrowserRecoveryFlowRequest) (*RecoveryFlow, *http.Response, error)

	/*
		CreateBrowserRegistrationFlow Create Registration Flow for Browsers

		This endpoint initializes a browser-based user registration flow. This endpoint will set the appropriate
	cookies and anti-CSRF measures required for browser-based flows.

	If this endpoint is opened as a link in the browser, it will be redirected to
	`selfservice.flows.registration.ui_url` with the flow ID set as the query parameter `?flow=`. If a valid user session
	exists already, the browser will be redirected to `urls.default_redirect_url`.

	If this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the
	case of an error, the `error.id` of the JSON response body can be one of:

	`session_already_available`: The user is already signed in.
	`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.
	`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!

	If this endpoint is called via an AJAX request, the response contains the registration flow without a redirect.

	This endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.

	More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPICreateBrowserRegistrationFlowRequest
	*/
	CreateBrowserRegistrationFlow(ctx context.Context) FrontendAPICreateBrowserRegistrationFlowRequest

	// CreateBrowserRegistrationFlowExecute executes the request
	//  @return RegistrationFlow
	CreateBrowserRegistrationFlowExecute(r FrontendAPICreateBrowserRegistrationFlowRequest) (*RegistrationFlow, *http.Response, error)

	/*
		CreateBrowserSettingsFlow Create Settings Flow for Browsers

		This endpoint initializes a browser-based user settings flow. Once initialized, the browser will be redirected to
	`selfservice.flows.settings.ui_url` with the flow ID set as the query parameter `?flow=`. If no valid
	Ory Kratos Session Cookie is included in the request, a login flow will be initialized.

	If this endpoint is opened as a link in the browser, it will be redirected to
	`selfservice.flows.settings.ui_url` with the flow ID set as the query parameter `?flow=`. If no valid user session
	was set, the browser will be redirected to the login endpoint.

	If this endpoint is called via an AJAX request, the response contains the settings flow without any redirects
	or a 401 forbidden error if no valid session was set.

	Depending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator
	Assurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn
	credentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user
	to sign in with the second factor (happens automatically for server-side browser flows) or change the configuration.

	If this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the
	case of an error, the `error.id` of the JSON response body can be one of:

	`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.
	`session_inactive`: No Ory Session was found - sign in a user first.
	`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!

	This endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.

	More information can be found at [Ory Kratos User Settings & Profile Management Documentation](../self-service/flows/user-settings).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPICreateBrowserSettingsFlowRequest
	*/
	CreateBrowserSettingsFlow(ctx context.Context) FrontendAPICreateBrowserSettingsFlowRequest

	// CreateBrowserSettingsFlowExecute executes the request
	//  @return SettingsFlow
	CreateBrowserSettingsFlowExecute(r FrontendAPICreateBrowserSettingsFlowRequest) (*SettingsFlow, *http.Response, error)

	/*
		CreateBrowserVerificationFlow Create Verification Flow for Browser Clients

		This endpoint initializes a browser-based account verification flow. Once initialized, the browser will be redirected to
	`selfservice.flows.verification.ui_url` with the flow ID set as the query parameter `?flow=`.

	If this endpoint is called via an AJAX request, the response contains the recovery flow without any redirects.

	This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...).

	More information can be found at [Ory Kratos Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPICreateBrowserVerificationFlowRequest
	*/
	CreateBrowserVerificationFlow(ctx context.Context) FrontendAPICreateBrowserVerificationFlowRequest

	// CreateBrowserVerificationFlowExecute executes the request
	//  @return VerificationFlow
	CreateBrowserVerificationFlowExecute(r FrontendAPICreateBrowserVerificationFlowRequest) (*VerificationFlow, *http.Response, error)

	/*
		CreateNativeLoginFlow Create Login Flow for Native Apps

		This endpoint initiates a login flow for native apps that do not use a browser, such as mobile devices, smart TVs, and so on.

	If a valid provided session cookie or session token is provided, a 400 Bad Request error
	will be returned unless the URL query parameter `?refresh=true` is set.

	To fetch an existing login flow call `/self-service/login/flows?flow=<flow_id>`.

	You MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server
	Pages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make
	you vulnerable to a variety of CSRF attacks, including CSRF login attacks.

	In the case of an error, the `error.id` of the JSON response body can be one of:

	`session_already_available`: The user is already signed in.
	`session_aal1_required`: Multi-factor auth (e.g. 2fa) was requested but the user has no session yet.
	`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.

	This endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).

	More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPICreateNativeLoginFlowRequest
	*/
	CreateNativeLoginFlow(ctx context.Context) FrontendAPICreateNativeLoginFlowRequest

	// CreateNativeLoginFlowExecute executes the request
	//  @return LoginFlow
	CreateNativeLoginFlowExecute(r FrontendAPICreateNativeLoginFlowRequest) (*LoginFlow, *http.Response, error)

	/*
		CreateNativeRecoveryFlow Create Recovery Flow for Native Apps

		This endpoint initiates a recovery flow for API clients such as mobile devices, smart TVs, and so on.

	If a valid provided session cookie or session token is provided, a 400 Bad Request error.

	On an existing recovery flow, use the `getRecoveryFlow` API endpoint.

	You MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server
	Pages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make
	you vulnerable to a variety of CSRF attacks.

	This endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).

	More information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPICreateNativeRecoveryFlowRequest
	*/
	CreateNativeRecoveryFlow(ctx context.Context) FrontendAPICreateNativeRecoveryFlowRequest

	// CreateNativeRecoveryFlowExecute executes the request
	//  @return RecoveryFlow
	CreateNativeRecoveryFlowExecute(r FrontendAPICreateNativeRecoveryFlowRequest) (*RecoveryFlow, *http.Response, error)

	/*
		CreateNativeRegistrationFlow Create Registration Flow for Native Apps

		This endpoint initiates a registration flow for API clients such as mobile devices, smart TVs, and so on.

	If a valid provided session cookie or session token is provided, a 400 Bad Request error
	will be returned unless the URL query parameter `?refresh=true` is set.

	To fetch an existing registration flow call `/self-service/registration/flows?flow=<flow_id>`.

	You MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server
	Pages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make
	you vulnerable to a variety of CSRF attacks.

	In the case of an error, the `error.id` of the JSON response body can be one of:

	`session_already_available`: The user is already signed in.
	`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.

	This endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).

	More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPICreateNativeRegistrationFlowRequest
	*/
	CreateNativeRegistrationFlow(ctx context.Context) FrontendAPICreateNativeRegistrationFlowRequest

	// CreateNativeRegistrationFlowExecute executes the request
	//  @return RegistrationFlow
	CreateNativeRegistrationFlowExecute(r FrontendAPICreateNativeRegistrationFlowRequest) (*RegistrationFlow, *http.Response, error)

	/*
		CreateNativeSettingsFlow Create Settings Flow for Native Apps

		This endpoint initiates a settings flow for API clients such as mobile devices, smart TVs, and so on.
	You must provide a valid Ory Kratos Session Token for this endpoint to respond with HTTP 200 OK.

	To fetch an existing settings flow call `/self-service/settings/flows?flow=<flow_id>`.

	You MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server
	Pages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make
	you vulnerable to a variety of CSRF attacks.

	Depending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator
	Assurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn
	credentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user
	to sign in with the second factor or change the configuration.

	In the case of an error, the `error.id` of the JSON response body can be one of:

	`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.
	`session_inactive`: No Ory Session was found - sign in a user first.

	This endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).

	More information can be found at [Ory Kratos User Settings & Profile Management Documentation](../self-service/flows/user-settings).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPICreateNativeSettingsFlowRequest
	*/
	CreateNativeSettingsFlow(ctx context.Context) FrontendAPICreateNativeSettingsFlowRequest

	// CreateNativeSettingsFlowExecute executes the request
	//  @return SettingsFlow
	CreateNativeSettingsFlowExecute(r FrontendAPICreateNativeSettingsFlowRequest) (*SettingsFlow, *http.Response, error)

	/*
		CreateNativeVerificationFlow Create Verification Flow for Native Apps

		This endpoint initiates a verification flow for API clients such as mobile devices, smart TVs, and so on.

	To fetch an existing verification flow call `/self-service/verification/flows?flow=<flow_id>`.

	You MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server
	Pages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make
	you vulnerable to a variety of CSRF attacks.

	This endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).

	More information can be found at [Ory Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPICreateNativeVerificationFlowRequest
	*/
	CreateNativeVerificationFlow(ctx context.Context) FrontendAPICreateNativeVerificationFlowRequest

	// CreateNativeVerificationFlowExecute executes the request
	//  @return VerificationFlow
	CreateNativeVerificationFlowExecute(r FrontendAPICreateNativeVerificationFlowRequest) (*VerificationFlow, *http.Response, error)

	/*
		DisableMyOtherSessions Disable my other sessions

		Calling this endpoint invalidates all except the current session that belong to the logged-in user.
	Session data are not deleted.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIDisableMyOtherSessionsRequest
	*/
	DisableMyOtherSessions(ctx context.Context) FrontendAPIDisableMyOtherSessionsRequest

	// DisableMyOtherSessionsExecute executes the request
	//  @return DeleteMySessionsCount
	DisableMyOtherSessionsExecute(r FrontendAPIDisableMyOtherSessionsRequest) (*DeleteMySessionsCount, *http.Response, error)

	/*
		DisableMySession Disable one of my sessions

		Calling this endpoint invalidates the specified session. The current session cannot be revoked.
	Session data are not deleted.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id ID is the session's ID.
		@return FrontendAPIDisableMySessionRequest
	*/
	DisableMySession(ctx context.Context, id string) FrontendAPIDisableMySessionRequest

	// DisableMySessionExecute executes the request
	DisableMySessionExecute(r FrontendAPIDisableMySessionRequest) (*http.Response, error)

	/*
		ExchangeSessionToken Exchange Session Token

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIExchangeSessionTokenRequest
	*/
	ExchangeSessionToken(ctx context.Context) FrontendAPIExchangeSessionTokenRequest

	// ExchangeSessionTokenExecute executes the request
	//  @return SuccessfulNativeLogin
	ExchangeSessionTokenExecute(r FrontendAPIExchangeSessionTokenRequest) (*SuccessfulNativeLogin, *http.Response, error)

	/*
		GetFlowError Get User-Flow Errors

		This endpoint returns the error associated with a user-facing self service errors.

	This endpoint supports stub values to help you implement the error UI:

	`?id=stub:500` - returns a stub 500 (Internal Server Error) error.

	More information can be found at [Ory Kratos User User Facing Error Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-facing-errors).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIGetFlowErrorRequest
	*/
	GetFlowError(ctx context.Context) FrontendAPIGetFlowErrorRequest

	// GetFlowErrorExecute executes the request
	//  @return FlowError
	GetFlowErrorExecute(r FrontendAPIGetFlowErrorRequest) (*FlowError, *http.Response, error)

	/*
		GetLoginFlow Get Login Flow

		This endpoint returns a login flow's context with, for example, error details and other information.

	Browser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header.
	For AJAX requests you must ensure that cookies are included in the request or requests will fail.

	If you use the browser-flow for server-side apps, the services need to run on a common top-level-domain
	and you need to forward the incoming HTTP Cookie header to this endpoint:

	“`js
	pseudo-code example
	router.get('/login', async function (req, res) {
	const flow = await client.getLoginFlow(req.header('cookie'), req.query['flow'])

	res.render('login', flow)
	})
	“`

	This request may fail due to several reasons. The `error.id` can be one of:

	`session_already_available`: The user is already signed in.
	`self_service_flow_expired`: The flow is expired and you should request a new one.

	More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIGetLoginFlowRequest
	*/
	GetLoginFlow(ctx context.Context) FrontendAPIGetLoginFlowRequest

	// GetLoginFlowExecute executes the request
	//  @return LoginFlow
	GetLoginFlowExecute(r FrontendAPIGetLoginFlowRequest) (*LoginFlow, *http.Response, error)

	/*
		GetRecoveryFlow Get Recovery Flow

		This endpoint returns a recovery flow's context with, for example, error details and other information.

	Browser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header.
	For AJAX requests you must ensure that cookies are included in the request or requests will fail.

	If you use the browser-flow for server-side apps, the services need to run on a common top-level-domain
	and you need to forward the incoming HTTP Cookie header to this endpoint:

	“`js
	pseudo-code example
	router.get('/recovery', async function (req, res) {
	const flow = await client.getRecoveryFlow(req.header('Cookie'), req.query['flow'])

	res.render('recovery', flow)
	})
	“`

	More information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIGetRecoveryFlowRequest
	*/
	GetRecoveryFlow(ctx context.Context) FrontendAPIGetRecoveryFlowRequest

	// GetRecoveryFlowExecute executes the request
	//  @return RecoveryFlow
	GetRecoveryFlowExecute(r FrontendAPIGetRecoveryFlowRequest) (*RecoveryFlow, *http.Response, error)

	/*
		GetRegistrationFlow Get Registration Flow

		This endpoint returns a registration flow's context with, for example, error details and other information.

	Browser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header.
	For AJAX requests you must ensure that cookies are included in the request or requests will fail.

	If you use the browser-flow for server-side apps, the services need to run on a common top-level-domain
	and you need to forward the incoming HTTP Cookie header to this endpoint:

	“`js
	pseudo-code example
	router.get('/registration', async function (req, res) {
	const flow = await client.getRegistrationFlow(req.header('cookie'), req.query['flow'])

	res.render('registration', flow)
	})
	“`

	This request may fail due to several reasons. The `error.id` can be one of:

	`session_already_available`: The user is already signed in.
	`self_service_flow_expired`: The flow is expired and you should request a new one.

	More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIGetRegistrationFlowRequest
	*/
	GetRegistrationFlow(ctx context.Context) FrontendAPIGetRegistrationFlowRequest

	// GetRegistrationFlowExecute executes the request
	//  @return RegistrationFlow
	GetRegistrationFlowExecute(r FrontendAPIGetRegistrationFlowRequest) (*RegistrationFlow, *http.Response, error)

	/*
		GetSettingsFlow Get Settings Flow

		When accessing this endpoint through Ory Kratos' Public API you must ensure that either the Ory Kratos Session Cookie
	or the Ory Kratos Session Token are set.

	Depending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator
	Assurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn
	credentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user
	to sign in with the second factor or change the configuration.

	You can access this endpoint without credentials when using Ory Kratos' Admin API.

	If this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the
	case of an error, the `error.id` of the JSON response body can be one of:

	`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.
	`session_inactive`: No Ory Session was found - sign in a user first.
	`security_identity_mismatch`: The flow was interrupted with `session_refresh_required` but apparently some other
	identity logged in instead.

	More information can be found at [Ory Kratos User Settings & Profile Management Documentation](../self-service/flows/user-settings).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIGetSettingsFlowRequest
	*/
	GetSettingsFlow(ctx context.Context) FrontendAPIGetSettingsFlowRequest

	// GetSettingsFlowExecute executes the request
	//  @return SettingsFlow
	GetSettingsFlowExecute(r FrontendAPIGetSettingsFlowRequest) (*SettingsFlow, *http.Response, error)

	/*
		GetVerificationFlow Get Verification Flow

		This endpoint returns a verification flow's context with, for example, error details and other information.

	Browser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header.
	For AJAX requests you must ensure that cookies are included in the request or requests will fail.

	If you use the browser-flow for server-side apps, the services need to run on a common top-level-domain
	and you need to forward the incoming HTTP Cookie header to this endpoint:

	“`js
	pseudo-code example
	router.get('/recovery', async function (req, res) {
	const flow = await client.getVerificationFlow(req.header('cookie'), req.query['flow'])

	res.render('verification', flow)
	})
	“`

	More information can be found at [Ory Kratos Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIGetVerificationFlowRequest
	*/
	GetVerificationFlow(ctx context.Context) FrontendAPIGetVerificationFlowRequest

	// GetVerificationFlowExecute executes the request
	//  @return VerificationFlow
	GetVerificationFlowExecute(r FrontendAPIGetVerificationFlowRequest) (*VerificationFlow, *http.Response, error)

	/*
		GetWebAuthnJavaScript Get WebAuthn JavaScript

		This endpoint provides JavaScript which is needed in order to perform WebAuthn login and registration.

	If you are building a JavaScript Browser App (e.g. in ReactJS or AngularJS) you will need to load this file:

	“`html
	<script src="https://public-kratos.example.org/.well-known/ory/webauthn.js" type="script" async />
	“`

	More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIGetWebAuthnJavaScriptRequest
	*/
	GetWebAuthnJavaScript(ctx context.Context) FrontendAPIGetWebAuthnJavaScriptRequest

	// GetWebAuthnJavaScriptExecute executes the request
	//  @return string
	GetWebAuthnJavaScriptExecute(r FrontendAPIGetWebAuthnJavaScriptRequest) (string, *http.Response, error)

	/*
		ListMySessions Get My Active Sessions

		This endpoints returns all other active sessions that belong to the logged-in user.
	The current session can be retrieved by calling the `/sessions/whoami` endpoint.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIListMySessionsRequest
	*/
	ListMySessions(ctx context.Context) FrontendAPIListMySessionsRequest

	// ListMySessionsExecute executes the request
	//  @return []Session
	ListMySessionsExecute(r FrontendAPIListMySessionsRequest) ([]Session, *http.Response, error)

	/*
		PerformNativeLogout Perform Logout for Native Apps

		Use this endpoint to log out an identity using an Ory Session Token. If the Ory Session Token was successfully
	revoked, the server returns a 204 No Content response. A 204 No Content response is also sent when
	the Ory Session Token has been revoked already before.

	If the Ory Session Token is malformed or does not exist a 403 Forbidden response will be returned.

	This endpoint does not remove any HTTP
	Cookies - use the Browser-Based Self-Service Logout Flow instead.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIPerformNativeLogoutRequest
	*/
	PerformNativeLogout(ctx context.Context) FrontendAPIPerformNativeLogoutRequest

	// PerformNativeLogoutExecute executes the request
	PerformNativeLogoutExecute(r FrontendAPIPerformNativeLogoutRequest) (*http.Response, error)

	/*
		ToSession Check Who the Current HTTP Session Belongs To

		Uses the HTTP Headers in the GET request to determine (e.g. by using checking the cookies) who is authenticated.
	Returns a session object in the body or 401 if the credentials are invalid or no credentials were sent.
	When the request it successful it adds the user ID to the 'X-Kratos-Authenticated-Identity-Id' header
	in the response.

	If you call this endpoint from a server-side application, you must forward the HTTP Cookie Header to this endpoint:

	“`js
	pseudo-code example
	router.get('/protected-endpoint', async function (req, res) {
	const session = await client.toSession(undefined, req.header('cookie'))

	console.log(session)
	})
	“`

	When calling this endpoint from a non-browser application (e.g. mobile app) you must include the session token:

	“`js
	pseudo-code example
	...
	const session = await client.toSession("the-session-token")

	console.log(session)
	“`

	When using a token template, the token is included in the `tokenized` field of the session.

	“`js
	pseudo-code example
	...
	const session = await client.toSession("the-session-token", { tokenize_as: "example-jwt-template" })

	console.log(session.tokenized) // The JWT
	“`

	Depending on your configuration this endpoint might return a 403 status code if the session has a lower Authenticator
	Assurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn
	credentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user
	to sign in with the second factor or change the configuration.

	This endpoint is useful for:

	AJAX calls. Remember to send credentials and set up CORS correctly!
	Reverse proxies and API Gateways
	Server-side calls - use the `X-Session-Token` header!

	This endpoint authenticates users by checking:

	if the `Cookie` HTTP header was set containing an Ory Kratos Session Cookie;
	if the `Authorization: bearer <ory-session-token>` HTTP header was set with a valid Ory Kratos Session Token;
	if the `X-Session-Token` HTTP header was set with a valid Ory Kratos Session Token.

	If none of these headers are set or the cookie or token are invalid, the endpoint returns a HTTP 401 status code.

	As explained above, this request may fail due to several reasons. The `error.id` can be one of:

	`session_inactive`: No active session was found in the request (e.g. no Ory Session Cookie / Ory Session Token).
	`session_aal2_required`: An active session was found but it does not fulfil the Authenticator Assurance Level, implying that the session must (e.g.) authenticate the second factor.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIToSessionRequest
	*/
	ToSession(ctx context.Context) FrontendAPIToSessionRequest

	// ToSessionExecute executes the request
	//  @return Session
	ToSessionExecute(r FrontendAPIToSessionRequest) (*Session, *http.Response, error)

	/*
		UpdateLoginFlow Submit a Login Flow

		Use this endpoint to complete a login flow. This endpoint
	behaves differently for API and browser flows.

	API flows expect `application/json` to be sent in the body and responds with
	HTTP 200 and a application/json body with the session token on success;
	HTTP 410 if the original flow expired with the appropriate error messages set and optionally a `use_flow_id` parameter in the body;
	HTTP 400 on form validation errors.

	Browser flows expect a Content-Type of `application/x-www-form-urlencoded` or `application/json` to be sent in the body and respond with
	a HTTP 303 redirect to the post/after login URL or the `return_to` value if it was set and if the login succeeded;
	a HTTP 303 redirect to the login UI URL with the flow ID containing the validation errors otherwise.

	Browser flows with an accept header of `application/json` will not redirect but instead respond with
	HTTP 200 and a application/json body with the signed in identity and a `Set-Cookie` header on success;
	HTTP 303 redirect to a fresh login flow if the original flow expired with the appropriate error messages set;
	HTTP 400 on form validation errors.

	If this endpoint is called with `Accept: application/json` in the header, the response contains the flow without a redirect. In the
	case of an error, the `error.id` of the JSON response body can be one of:

	`session_already_available`: The user is already signed in.
	`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.
	`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!
	`browser_location_change_required`: Usually sent when an AJAX request indicates that the browser needs to open a specific URL.
	Most likely used in Social Sign In flows.

	More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIUpdateLoginFlowRequest
	*/
	UpdateLoginFlow(ctx context.Context) FrontendAPIUpdateLoginFlowRequest

	// UpdateLoginFlowExecute executes the request
	//  @return SuccessfulNativeLogin
	UpdateLoginFlowExecute(r FrontendAPIUpdateLoginFlowRequest) (*SuccessfulNativeLogin, *http.Response, error)

	/*
		UpdateLogoutFlow Update Logout Flow

		This endpoint logs out an identity in a self-service manner.

	If the `Accept` HTTP header is not set to `application/json`, the browser will be redirected (HTTP 303 See Other)
	to the `return_to` parameter of the initial request or fall back to `urls.default_return_to`.

	If the `Accept` HTTP header is set to `application/json`, a 204 No Content response
	will be sent on successful logout instead.

	This endpoint is NOT INTENDED for API clients and only works
	with browsers (Chrome, Firefox, ...). For API clients you can
	call the `/self-service/logout/api` URL directly with the Ory Session Token.

	More information can be found at [Ory Kratos User Logout Documentation](https://www.ory.sh/docs/next/kratos/self-service/flows/user-logout).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIUpdateLogoutFlowRequest
	*/
	UpdateLogoutFlow(ctx context.Context) FrontendAPIUpdateLogoutFlowRequest

	// UpdateLogoutFlowExecute executes the request
	UpdateLogoutFlowExecute(r FrontendAPIUpdateLogoutFlowRequest) (*http.Response, error)

	/*
		UpdateRecoveryFlow Update Recovery Flow

		Use this endpoint to update a recovery flow. This endpoint
	behaves differently for API and browser flows and has several states:

	`choose_method` expects `flow` (in the URL query) and `email` (in the body) to be sent
	and works with API- and Browser-initiated flows.
	For API clients and Browser clients with HTTP Header `Accept: application/json` it either returns a HTTP 200 OK when the form is valid and HTTP 400 OK when the form is invalid.
	and a HTTP 303 See Other redirect with a fresh recovery flow if the flow was otherwise invalid (e.g. expired).
	For Browser clients without HTTP Header `Accept` or with `Accept: text/*` it returns a HTTP 303 See Other redirect to the Recovery UI URL with the Recovery Flow ID appended.
	`sent_email` is the success state after `choose_method` for the `link` method and allows the user to request another recovery email. It
	works for both API and Browser-initiated flows and returns the same responses as the flow in `choose_method` state.
	`passed_challenge` expects a `token` to be sent in the URL query and given the nature of the flow ("sending a recovery link")
	does not have any API capabilities. The server responds with a HTTP 303 See Other redirect either to the Settings UI URL
	(if the link was valid) and instructs the user to update their password, or a redirect to the Recover UI URL with
	a new Recovery Flow ID which contains an error message that the recovery link was invalid.

	More information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIUpdateRecoveryFlowRequest
	*/
	UpdateRecoveryFlow(ctx context.Context) FrontendAPIUpdateRecoveryFlowRequest

	// UpdateRecoveryFlowExecute executes the request
	//  @return RecoveryFlow
	UpdateRecoveryFlowExecute(r FrontendAPIUpdateRecoveryFlowRequest) (*RecoveryFlow, *http.Response, error)

	/*
		UpdateRegistrationFlow Update Registration Flow

		Use this endpoint to complete a registration flow by sending an identity's traits and password. This endpoint
	behaves differently for API and browser flows.

	API flows expect `application/json` to be sent in the body and respond with
	HTTP 200 and a application/json body with the created identity success - if the session hook is configured the
	`session` and `session_token` will also be included;
	HTTP 410 if the original flow expired with the appropriate error messages set and optionally a `use_flow_id` parameter in the body;
	HTTP 400 on form validation errors.

	Browser flows expect a Content-Type of `application/x-www-form-urlencoded` or `application/json` to be sent in the body and respond with
	a HTTP 303 redirect to the post/after registration URL or the `return_to` value if it was set and if the registration succeeded;
	a HTTP 303 redirect to the registration UI URL with the flow ID containing the validation errors otherwise.

	Browser flows with an accept header of `application/json` will not redirect but instead respond with
	HTTP 200 and a application/json body with the signed in identity and a `Set-Cookie` header on success;
	HTTP 303 redirect to a fresh login flow if the original flow expired with the appropriate error messages set;
	HTTP 400 on form validation errors.

	If this endpoint is called with `Accept: application/json` in the header, the response contains the flow without a redirect. In the
	case of an error, the `error.id` of the JSON response body can be one of:

	`session_already_available`: The user is already signed in.
	`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.
	`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!
	`browser_location_change_required`: Usually sent when an AJAX request indicates that the browser needs to open a specific URL.
	Most likely used in Social Sign In flows.

	More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIUpdateRegistrationFlowRequest
	*/
	UpdateRegistrationFlow(ctx context.Context) FrontendAPIUpdateRegistrationFlowRequest

	// UpdateRegistrationFlowExecute executes the request
	//  @return SuccessfulNativeRegistration
	UpdateRegistrationFlowExecute(r FrontendAPIUpdateRegistrationFlowRequest) (*SuccessfulNativeRegistration, *http.Response, error)

	/*
		UpdateSettingsFlow Complete Settings Flow

		Use this endpoint to complete a settings flow by sending an identity's updated password. This endpoint
	behaves differently for API and browser flows.

	API-initiated flows expect `application/json` to be sent in the body and respond with
	HTTP 200 and an application/json body with the session token on success;
	HTTP 303 redirect to a fresh settings flow if the original flow expired with the appropriate error messages set;
	HTTP 400 on form validation errors.
	HTTP 401 when the endpoint is called without a valid session token.
	HTTP 403 when `selfservice.flows.settings.privileged_session_max_age` was reached or the session's AAL is too low.
	Implies that the user needs to re-authenticate.

	Browser flows without HTTP Header `Accept` or with `Accept: text/*` respond with
	a HTTP 303 redirect to the post/after settings URL or the `return_to` value if it was set and if the flow succeeded;
	a HTTP 303 redirect to the Settings UI URL with the flow ID containing the validation errors otherwise.
	a HTTP 303 redirect to the login endpoint when `selfservice.flows.settings.privileged_session_max_age` was reached or the session's AAL is too low.

	Browser flows with HTTP Header `Accept: application/json` respond with
	HTTP 200 and a application/json body with the signed in identity and a `Set-Cookie` header on success;
	HTTP 303 redirect to a fresh login flow if the original flow expired with the appropriate error messages set;
	HTTP 401 when the endpoint is called without a valid session cookie.
	HTTP 403 when the page is accessed without a session cookie or the session's AAL is too low.
	HTTP 400 on form validation errors.

	Depending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator
	Assurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn
	credentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user
	to sign in with the second factor (happens automatically for server-side browser flows) or change the configuration.

	If this endpoint is called with a `Accept: application/json` HTTP header, the response contains the flow without a redirect. In the
	case of an error, the `error.id` of the JSON response body can be one of:

	`session_refresh_required`: The identity requested to change something that needs a privileged session. Redirect
	the identity to the login init endpoint with query parameters `?refresh=true&return_to=<the-current-browser-url>`,
	or initiate a refresh login flow otherwise.
	`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.
	`session_inactive`: No Ory Session was found - sign in a user first.
	`security_identity_mismatch`: The flow was interrupted with `session_refresh_required` but apparently some other
	identity logged in instead.
	`security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!
	`browser_location_change_required`: Usually sent when an AJAX request indicates that the browser needs to open a specific URL.
	Most likely used in Social Sign In flows.

	More information can be found at [Ory Kratos User Settings & Profile Management Documentation](../self-service/flows/user-settings).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIUpdateSettingsFlowRequest
	*/
	UpdateSettingsFlow(ctx context.Context) FrontendAPIUpdateSettingsFlowRequest

	// UpdateSettingsFlowExecute executes the request
	//  @return SettingsFlow
	UpdateSettingsFlowExecute(r FrontendAPIUpdateSettingsFlowRequest) (*SettingsFlow, *http.Response, error)

	/*
		UpdateVerificationFlow Complete Verification Flow

		Use this endpoint to complete a verification flow. This endpoint
	behaves differently for API and browser flows and has several states:

	`choose_method` expects `flow` (in the URL query) and `email` (in the body) to be sent
	and works with API- and Browser-initiated flows.
	For API clients and Browser clients with HTTP Header `Accept: application/json` it either returns a HTTP 200 OK when the form is valid and HTTP 400 OK when the form is invalid
	and a HTTP 303 See Other redirect with a fresh verification flow if the flow was otherwise invalid (e.g. expired).
	For Browser clients without HTTP Header `Accept` or with `Accept: text/*` it returns a HTTP 303 See Other redirect to the Verification UI URL with the Verification Flow ID appended.
	`sent_email` is the success state after `choose_method` when using the `link` method and allows the user to request another verification email. It
	works for both API and Browser-initiated flows and returns the same responses as the flow in `choose_method` state.
	`passed_challenge` expects a `token` to be sent in the URL query and given the nature of the flow ("sending a verification link")
	does not have any API capabilities. The server responds with a HTTP 303 See Other redirect either to the Settings UI URL
	(if the link was valid) and instructs the user to update their password, or a redirect to the Verification UI URL with
	a new Verification Flow ID which contains an error message that the verification link was invalid.

	More information can be found at [Ory Kratos Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return FrontendAPIUpdateVerificationFlowRequest
	*/
	UpdateVerificationFlow(ctx context.Context) FrontendAPIUpdateVerificationFlowRequest

	// UpdateVerificationFlowExecute executes the request
	//  @return VerificationFlow
	UpdateVerificationFlowExecute(r FrontendAPIUpdateVerificationFlowRequest) (*VerificationFlow, *http.Response, error)
}

type FrontendAPICreateBrowserLoginFlowRequest ¶

type FrontendAPICreateBrowserLoginFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPICreateBrowserLoginFlowRequest) Aal ¶

Request a Specific AuthenticationMethod Assurance Level Use this parameter to upgrade an existing session&#39;s authenticator assurance level (AAL). This allows you to ask for multi-factor authentication. When an identity sign in using e.g. username+password, the AAL is 1. If you wish to \&quot;upgrade\&quot; the session&#39;s security by asking the user to perform TOTP / WebAuth/ ... you would set this to \&quot;aal2\&quot;.

func (FrontendAPICreateBrowserLoginFlowRequest) Cookie ¶

HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.

func (FrontendAPICreateBrowserLoginFlowRequest) Execute ¶

func (FrontendAPICreateBrowserLoginFlowRequest) LoginChallenge ¶

An optional Hydra login challenge. If present, Kratos will cooperate with Ory Hydra to act as an OAuth2 identity provider. The value for this parameter comes from &#x60;login_challenge&#x60; URL Query parameter sent to your application (e.g. &#x60;/login?login_challenge&#x3D;abcde&#x60;).

func (FrontendAPICreateBrowserLoginFlowRequest) Organization ¶

An optional organization ID that should be used for logging this user in. This parameter is only effective in the Ory Network.

func (FrontendAPICreateBrowserLoginFlowRequest) Refresh ¶

Refresh a login session If set to true, this will refresh an existing login session by asking the user to sign in again. This will reset the authenticated_at time of the session.

func (FrontendAPICreateBrowserLoginFlowRequest) ReturnTo ¶

The URL to return the browser to after the flow was completed.

type FrontendAPICreateBrowserLogoutFlowRequest ¶

type FrontendAPICreateBrowserLogoutFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPICreateBrowserLogoutFlowRequest) Cookie ¶

HTTP Cookies If you call this endpoint from a backend, please include the original Cookie header in the request.

func (FrontendAPICreateBrowserLogoutFlowRequest) Execute ¶

func (FrontendAPICreateBrowserLogoutFlowRequest) ReturnTo ¶

Return to URL The URL to which the browser should be redirected to after the logout has been performed.

type FrontendAPICreateBrowserRecoveryFlowRequest ¶

type FrontendAPICreateBrowserRecoveryFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPICreateBrowserRecoveryFlowRequest) Execute ¶

func (FrontendAPICreateBrowserRecoveryFlowRequest) ReturnTo ¶

The URL to return the browser to after the flow was completed.

type FrontendAPICreateBrowserRegistrationFlowRequest ¶

type FrontendAPICreateBrowserRegistrationFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPICreateBrowserRegistrationFlowRequest) AfterVerificationReturnTo ¶

The URL to return the browser to after the verification flow was completed. After the registration flow is completed, the user will be sent a verification email. Upon completing the verification flow, this URL will be used to override the default &#x60;selfservice.flows.verification.after.default_redirect_to&#x60; value.

func (FrontendAPICreateBrowserRegistrationFlowRequest) Execute ¶

func (FrontendAPICreateBrowserRegistrationFlowRequest) LoginChallenge ¶

Ory OAuth 2.0 Login Challenge. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider. The value for this parameter comes from &#x60;login_challenge&#x60; URL Query parameter sent to your application (e.g. &#x60;/registration?login_challenge&#x3D;abcde&#x60;). This feature is compatible with Ory Hydra when not running on the Ory Network.

func (FrontendAPICreateBrowserRegistrationFlowRequest) Organization ¶

func (FrontendAPICreateBrowserRegistrationFlowRequest) ReturnTo ¶

The URL to return the browser to after the flow was completed.

type FrontendAPICreateBrowserSettingsFlowRequest ¶

type FrontendAPICreateBrowserSettingsFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPICreateBrowserSettingsFlowRequest) Cookie ¶

HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.

func (FrontendAPICreateBrowserSettingsFlowRequest) Execute ¶

func (FrontendAPICreateBrowserSettingsFlowRequest) ReturnTo ¶

The URL to return the browser to after the flow was completed.

type FrontendAPICreateBrowserVerificationFlowRequest ¶

type FrontendAPICreateBrowserVerificationFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPICreateBrowserVerificationFlowRequest) Execute ¶

func (FrontendAPICreateBrowserVerificationFlowRequest) ReturnTo ¶

The URL to return the browser to after the flow was completed.

type FrontendAPICreateNativeLoginFlowRequest ¶

type FrontendAPICreateNativeLoginFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPICreateNativeLoginFlowRequest) Aal ¶

Request a Specific AuthenticationMethod Assurance Level Use this parameter to upgrade an existing session&#39;s authenticator assurance level (AAL). This allows you to ask for multi-factor authentication. When an identity sign in using e.g. username+password, the AAL is 1. If you wish to \&quot;upgrade\&quot; the session&#39;s security by asking the user to perform TOTP / WebAuth/ ... you would set this to \&quot;aal2\&quot;.

func (FrontendAPICreateNativeLoginFlowRequest) Execute ¶

func (FrontendAPICreateNativeLoginFlowRequest) Refresh ¶

Refresh a login session If set to true, this will refresh an existing login session by asking the user to sign in again. This will reset the authenticated_at time of the session.

func (FrontendAPICreateNativeLoginFlowRequest) ReturnSessionTokenExchangeCode ¶

func (r FrontendAPICreateNativeLoginFlowRequest) ReturnSessionTokenExchangeCode(returnSessionTokenExchangeCode bool) FrontendAPICreateNativeLoginFlowRequest

EnableSessionTokenExchangeCode requests the login flow to include a code that can be used to retrieve the session token after the login flow has been completed.

func (FrontendAPICreateNativeLoginFlowRequest) ReturnTo ¶

The URL to return the browser to after the flow was completed.

func (FrontendAPICreateNativeLoginFlowRequest) XSessionToken ¶

The Session Token of the Identity performing the settings flow.

type FrontendAPICreateNativeRecoveryFlowRequest ¶

type FrontendAPICreateNativeRecoveryFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPICreateNativeRecoveryFlowRequest) Execute ¶

type FrontendAPICreateNativeRegistrationFlowRequest ¶

type FrontendAPICreateNativeRegistrationFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPICreateNativeRegistrationFlowRequest) Execute ¶

func (FrontendAPICreateNativeRegistrationFlowRequest) ReturnSessionTokenExchangeCode ¶

func (r FrontendAPICreateNativeRegistrationFlowRequest) ReturnSessionTokenExchangeCode(returnSessionTokenExchangeCode bool) FrontendAPICreateNativeRegistrationFlowRequest

EnableSessionTokenExchangeCode requests the login flow to include a code that can be used to retrieve the session token after the login flow has been completed.

func (FrontendAPICreateNativeRegistrationFlowRequest) ReturnTo ¶

The URL to return the browser to after the flow was completed.

type FrontendAPICreateNativeSettingsFlowRequest ¶

type FrontendAPICreateNativeSettingsFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPICreateNativeSettingsFlowRequest) Execute ¶

func (FrontendAPICreateNativeSettingsFlowRequest) XSessionToken ¶

The Session Token of the Identity performing the settings flow.

type FrontendAPICreateNativeVerificationFlowRequest ¶

type FrontendAPICreateNativeVerificationFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPICreateNativeVerificationFlowRequest) Execute ¶

type FrontendAPIDisableMyOtherSessionsRequest ¶

type FrontendAPIDisableMyOtherSessionsRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIDisableMyOtherSessionsRequest) Cookie ¶

Set the Cookie Header. This is especially useful when calling this endpoint from a server-side application. In that scenario you must include the HTTP Cookie Header which originally was included in the request to your server. An example of a session in the HTTP Cookie Header is: &#x60;ory_kratos_session&#x3D;a19iOVAbdzdgl70Rq1QZmrKmcjDtdsviCTZx7m9a9yHIUS8Wa9T7hvqyGTsLHi6Qifn2WUfpAKx9DWp0SJGleIn9vh2YF4A16id93kXFTgIgmwIOvbVAScyrx7yVl6bPZnCx27ec4WQDtaTewC1CpgudeDV2jQQnSaCP6ny3xa8qLH-QUgYqdQuoA_LF1phxgRCUfIrCLQOkolX5nv3ze_f&#x3D;&#x3D;&#x60;. It is ok if more than one cookie are included here as all other cookies will be ignored.

func (FrontendAPIDisableMyOtherSessionsRequest) Execute ¶

func (FrontendAPIDisableMyOtherSessionsRequest) XSessionToken ¶

Set the Session Token when calling from non-browser clients. A session token has a format of &#x60;MP2YWEMeM8MxjkGKpH4dqOQ4Q4DlSPaj&#x60;.

type FrontendAPIDisableMySessionRequest ¶

type FrontendAPIDisableMySessionRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIDisableMySessionRequest) Cookie ¶

Set the Cookie Header. This is especially useful when calling this endpoint from a server-side application. In that scenario you must include the HTTP Cookie Header which originally was included in the request to your server. An example of a session in the HTTP Cookie Header is: &#x60;ory_kratos_session&#x3D;a19iOVAbdzdgl70Rq1QZmrKmcjDtdsviCTZx7m9a9yHIUS8Wa9T7hvqyGTsLHi6Qifn2WUfpAKx9DWp0SJGleIn9vh2YF4A16id93kXFTgIgmwIOvbVAScyrx7yVl6bPZnCx27ec4WQDtaTewC1CpgudeDV2jQQnSaCP6ny3xa8qLH-QUgYqdQuoA_LF1phxgRCUfIrCLQOkolX5nv3ze_f&#x3D;&#x3D;&#x60;. It is ok if more than one cookie are included here as all other cookies will be ignored.

func (FrontendAPIDisableMySessionRequest) Execute ¶

func (FrontendAPIDisableMySessionRequest) XSessionToken ¶

Set the Session Token when calling from non-browser clients. A session token has a format of &#x60;MP2YWEMeM8MxjkGKpH4dqOQ4Q4DlSPaj&#x60;.

type FrontendAPIExchangeSessionTokenRequest ¶

type FrontendAPIExchangeSessionTokenRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIExchangeSessionTokenRequest) Execute ¶

func (FrontendAPIExchangeSessionTokenRequest) InitCode ¶

The part of the code return when initializing the flow.

func (FrontendAPIExchangeSessionTokenRequest) ReturnToCode ¶

The part of the code returned by the return_to URL.

type FrontendAPIGetFlowErrorRequest ¶

type FrontendAPIGetFlowErrorRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIGetFlowErrorRequest) Execute ¶

func (FrontendAPIGetFlowErrorRequest) Id ¶

Error is the error&#39;s ID

type FrontendAPIGetLoginFlowRequest ¶

type FrontendAPIGetLoginFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIGetLoginFlowRequest) Cookie ¶

HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.

func (FrontendAPIGetLoginFlowRequest) Execute ¶

func (FrontendAPIGetLoginFlowRequest) Id ¶

The Login Flow ID The value for this parameter comes from &#x60;flow&#x60; URL Query parameter sent to your application (e.g. &#x60;/login?flow&#x3D;abcde&#x60;).

type FrontendAPIGetRecoveryFlowRequest ¶

type FrontendAPIGetRecoveryFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIGetRecoveryFlowRequest) Cookie ¶

HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.

func (FrontendAPIGetRecoveryFlowRequest) Execute ¶

func (FrontendAPIGetRecoveryFlowRequest) Id ¶

The Flow ID The value for this parameter comes from &#x60;request&#x60; URL Query parameter sent to your application (e.g. &#x60;/recovery?flow&#x3D;abcde&#x60;).

type FrontendAPIGetRegistrationFlowRequest ¶

type FrontendAPIGetRegistrationFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIGetRegistrationFlowRequest) Cookie ¶

HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.

func (FrontendAPIGetRegistrationFlowRequest) Execute ¶

func (FrontendAPIGetRegistrationFlowRequest) Id ¶

The Registration Flow ID The value for this parameter comes from &#x60;flow&#x60; URL Query parameter sent to your application (e.g. &#x60;/registration?flow&#x3D;abcde&#x60;).

type FrontendAPIGetSettingsFlowRequest ¶

type FrontendAPIGetSettingsFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIGetSettingsFlowRequest) Cookie ¶

HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.

func (FrontendAPIGetSettingsFlowRequest) Execute ¶

func (FrontendAPIGetSettingsFlowRequest) Id ¶

ID is the Settings Flow ID The value for this parameter comes from &#x60;flow&#x60; URL Query parameter sent to your application (e.g. &#x60;/settings?flow&#x3D;abcde&#x60;).

func (FrontendAPIGetSettingsFlowRequest) XSessionToken ¶

The Session Token When using the SDK in an app without a browser, please include the session token here.

type FrontendAPIGetVerificationFlowRequest ¶

type FrontendAPIGetVerificationFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIGetVerificationFlowRequest) Cookie ¶

HTTP Cookies When using the SDK on the server side you must include the HTTP Cookie Header originally sent to your HTTP handler here.

func (FrontendAPIGetVerificationFlowRequest) Execute ¶

func (FrontendAPIGetVerificationFlowRequest) Id ¶

The Flow ID The value for this parameter comes from &#x60;request&#x60; URL Query parameter sent to your application (e.g. &#x60;/verification?flow&#x3D;abcde&#x60;).

type FrontendAPIGetWebAuthnJavaScriptRequest ¶

type FrontendAPIGetWebAuthnJavaScriptRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIGetWebAuthnJavaScriptRequest) Execute ¶

type FrontendAPIListMySessionsRequest ¶

type FrontendAPIListMySessionsRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIListMySessionsRequest) Cookie ¶

Set the Cookie Header. This is especially useful when calling this endpoint from a server-side application. In that scenario you must include the HTTP Cookie Header which originally was included in the request to your server. An example of a session in the HTTP Cookie Header is: &#x60;ory_kratos_session&#x3D;a19iOVAbdzdgl70Rq1QZmrKmcjDtdsviCTZx7m9a9yHIUS8Wa9T7hvqyGTsLHi6Qifn2WUfpAKx9DWp0SJGleIn9vh2YF4A16id93kXFTgIgmwIOvbVAScyrx7yVl6bPZnCx27ec4WQDtaTewC1CpgudeDV2jQQnSaCP6ny3xa8qLH-QUgYqdQuoA_LF1phxgRCUfIrCLQOkolX5nv3ze_f&#x3D;&#x3D;&#x60;. It is ok if more than one cookie are included here as all other cookies will be ignored.

func (FrontendAPIListMySessionsRequest) Execute ¶

func (FrontendAPIListMySessionsRequest) Page ¶

Deprecated Pagination Page DEPRECATED: Please use &#x60;page_token&#x60; instead. This parameter will be removed in the future. This value is currently an integer, but it is not sequential. The value is not the page number, but a reference. The next page can be any number and some numbers might return an empty list. For example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist. The first page can be retrieved by omitting this parameter. Following page pointers will be returned in the &#x60;Link&#x60; header.

func (FrontendAPIListMySessionsRequest) PageSize ¶

Page Size This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func (FrontendAPIListMySessionsRequest) PageToken ¶

Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func (FrontendAPIListMySessionsRequest) PerPage ¶

Deprecated Items per Page DEPRECATED: Please use &#x60;page_token&#x60; instead. This parameter will be removed in the future. This is the number of items per page.

func (FrontendAPIListMySessionsRequest) XSessionToken ¶

Set the Session Token when calling from non-browser clients. A session token has a format of &#x60;MP2YWEMeM8MxjkGKpH4dqOQ4Q4DlSPaj&#x60;.

type FrontendAPIPerformNativeLogoutRequest ¶

type FrontendAPIPerformNativeLogoutRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIPerformNativeLogoutRequest) Execute ¶

func (FrontendAPIPerformNativeLogoutRequest) PerformNativeLogoutBody ¶

type FrontendAPIService ¶

type FrontendAPIService service

FrontendAPIService FrontendAPI service

func (*FrontendAPIService) CreateBrowserLoginFlow ¶

CreateBrowserLoginFlow Create Login Flow for Browsers

This endpoint initializes a browser-based user login flow. This endpoint will set the appropriate cookies and anti-CSRF measures required for browser-based flows.

If this endpoint is opened as a link in the browser, it will be redirected to `selfservice.flows.login.ui_url` with the flow ID set as the query parameter `?flow=`. If a valid user session exists already, the browser will be redirected to `urls.default_redirect_url` unless the query parameter `?refresh=true` was set.

If this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the case of an error, the `error.id` of the JSON response body can be one of:

`session_already_available`: The user is already signed in. `session_aal1_required`: Multi-factor auth (e.g. 2fa) was requested but the user has no session yet. `security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred. `security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!

The optional query parameter login_challenge is set when using Kratos with Hydra in an OAuth2 flow. See the oauth2_provider.url configuration option.

This endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.

More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPICreateBrowserLoginFlowRequest

func (*FrontendAPIService) CreateBrowserLoginFlowExecute ¶

func (a *FrontendAPIService) CreateBrowserLoginFlowExecute(r FrontendAPICreateBrowserLoginFlowRequest) (*LoginFlow, *http.Response, error)

Execute executes the request

@return LoginFlow

func (*FrontendAPIService) CreateBrowserLogoutFlow ¶

CreateBrowserLogoutFlow Create a Logout URL for Browsers

This endpoint initializes a browser-based user logout flow and a URL which can be used to log out the user.

This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...). For API clients you can call the `/self-service/logout/api` URL directly with the Ory Session Token.

The URL is only valid for the currently signed in user. If no user is signed in, this endpoint returns a 401 error.

When calling this endpoint from a backend, please ensure to properly forward the HTTP cookies.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPICreateBrowserLogoutFlowRequest

func (*FrontendAPIService) CreateBrowserLogoutFlowExecute ¶

Execute executes the request

@return LogoutFlow

func (*FrontendAPIService) CreateBrowserRecoveryFlow ¶

CreateBrowserRecoveryFlow Create Recovery Flow for Browsers

This endpoint initializes a browser-based account recovery flow. Once initialized, the browser will be redirected to `selfservice.flows.recovery.ui_url` with the flow ID set as the query parameter `?flow=`. If a valid user session exists, the browser is returned to the configured return URL.

If this endpoint is called via an AJAX request, the response contains the recovery flow without any redirects or a 400 bad request error if the user is already authenticated.

This endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.

More information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPICreateBrowserRecoveryFlowRequest

func (*FrontendAPIService) CreateBrowserRecoveryFlowExecute ¶

Execute executes the request

@return RecoveryFlow

func (*FrontendAPIService) CreateBrowserRegistrationFlow ¶

CreateBrowserRegistrationFlow Create Registration Flow for Browsers

This endpoint initializes a browser-based user registration flow. This endpoint will set the appropriate cookies and anti-CSRF measures required for browser-based flows.

If this endpoint is opened as a link in the browser, it will be redirected to `selfservice.flows.registration.ui_url` with the flow ID set as the query parameter `?flow=`. If a valid user session exists already, the browser will be redirected to `urls.default_redirect_url`.

If this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the case of an error, the `error.id` of the JSON response body can be one of:

`session_already_available`: The user is already signed in. `security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred. `security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!

If this endpoint is called via an AJAX request, the response contains the registration flow without a redirect.

This endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.

More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPICreateBrowserRegistrationFlowRequest

func (*FrontendAPIService) CreateBrowserRegistrationFlowExecute ¶

Execute executes the request

@return RegistrationFlow

func (*FrontendAPIService) CreateBrowserSettingsFlow ¶

CreateBrowserSettingsFlow Create Settings Flow for Browsers

This endpoint initializes a browser-based user settings flow. Once initialized, the browser will be redirected to `selfservice.flows.settings.ui_url` with the flow ID set as the query parameter `?flow=`. If no valid Ory Kratos Session Cookie is included in the request, a login flow will be initialized.

If this endpoint is opened as a link in the browser, it will be redirected to `selfservice.flows.settings.ui_url` with the flow ID set as the query parameter `?flow=`. If no valid user session was set, the browser will be redirected to the login endpoint.

If this endpoint is called via an AJAX request, the response contains the settings flow without any redirects or a 401 forbidden error if no valid session was set.

Depending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator Assurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn credentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user to sign in with the second factor (happens automatically for server-side browser flows) or change the configuration.

If this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the case of an error, the `error.id` of the JSON response body can be one of:

`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred. `session_inactive`: No Ory Session was found - sign in a user first. `security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration!

This endpoint is NOT INTENDED for clients that do not have a browser (Chrome, Firefox, ...) as cookies are needed.

More information can be found at [Ory Kratos User Settings & Profile Management Documentation](../self-service/flows/user-settings).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPICreateBrowserSettingsFlowRequest

func (*FrontendAPIService) CreateBrowserSettingsFlowExecute ¶

Execute executes the request

@return SettingsFlow

func (*FrontendAPIService) CreateBrowserVerificationFlow ¶

CreateBrowserVerificationFlow Create Verification Flow for Browser Clients

This endpoint initializes a browser-based account verification flow. Once initialized, the browser will be redirected to `selfservice.flows.verification.ui_url` with the flow ID set as the query parameter `?flow=`.

If this endpoint is called via an AJAX request, the response contains the recovery flow without any redirects.

This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...).

More information can be found at [Ory Kratos Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPICreateBrowserVerificationFlowRequest

func (*FrontendAPIService) CreateBrowserVerificationFlowExecute ¶

Execute executes the request

@return VerificationFlow

func (*FrontendAPIService) CreateNativeLoginFlow ¶

CreateNativeLoginFlow Create Login Flow for Native Apps

This endpoint initiates a login flow for native apps that do not use a browser, such as mobile devices, smart TVs, and so on.

If a valid provided session cookie or session token is provided, a 400 Bad Request error will be returned unless the URL query parameter `?refresh=true` is set.

To fetch an existing login flow call `/self-service/login/flows?flow=<flow_id>`.

You MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server Pages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make you vulnerable to a variety of CSRF attacks, including CSRF login attacks.

In the case of an error, the `error.id` of the JSON response body can be one of:

`session_already_available`: The user is already signed in. `session_aal1_required`: Multi-factor auth (e.g. 2fa) was requested but the user has no session yet. `security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.

This endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).

More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPICreateNativeLoginFlowRequest

func (*FrontendAPIService) CreateNativeLoginFlowExecute ¶

Execute executes the request

@return LoginFlow

func (*FrontendAPIService) CreateNativeRecoveryFlow ¶

CreateNativeRecoveryFlow Create Recovery Flow for Native Apps

This endpoint initiates a recovery flow for API clients such as mobile devices, smart TVs, and so on.

If a valid provided session cookie or session token is provided, a 400 Bad Request error.

On an existing recovery flow, use the `getRecoveryFlow` API endpoint.

You MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server Pages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make you vulnerable to a variety of CSRF attacks.

This endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).

More information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPICreateNativeRecoveryFlowRequest

func (*FrontendAPIService) CreateNativeRecoveryFlowExecute ¶

Execute executes the request

@return RecoveryFlow

func (*FrontendAPIService) CreateNativeRegistrationFlow ¶

CreateNativeRegistrationFlow Create Registration Flow for Native Apps

This endpoint initiates a registration flow for API clients such as mobile devices, smart TVs, and so on.

If a valid provided session cookie or session token is provided, a 400 Bad Request error will be returned unless the URL query parameter `?refresh=true` is set.

To fetch an existing registration flow call `/self-service/registration/flows?flow=<flow_id>`.

You MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server Pages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make you vulnerable to a variety of CSRF attacks.

In the case of an error, the `error.id` of the JSON response body can be one of:

`session_already_available`: The user is already signed in. `security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred.

This endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).

More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPICreateNativeRegistrationFlowRequest

func (*FrontendAPIService) CreateNativeRegistrationFlowExecute ¶

Execute executes the request

@return RegistrationFlow

func (*FrontendAPIService) CreateNativeSettingsFlow ¶

CreateNativeSettingsFlow Create Settings Flow for Native Apps

This endpoint initiates a settings flow for API clients such as mobile devices, smart TVs, and so on. You must provide a valid Ory Kratos Session Token for this endpoint to respond with HTTP 200 OK.

To fetch an existing settings flow call `/self-service/settings/flows?flow=<flow_id>`.

You MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server Pages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make you vulnerable to a variety of CSRF attacks.

Depending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator Assurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn credentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user to sign in with the second factor or change the configuration.

In the case of an error, the `error.id` of the JSON response body can be one of:

`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred. `session_inactive`: No Ory Session was found - sign in a user first.

This endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).

More information can be found at [Ory Kratos User Settings & Profile Management Documentation](../self-service/flows/user-settings).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPICreateNativeSettingsFlowRequest

func (*FrontendAPIService) CreateNativeSettingsFlowExecute ¶

Execute executes the request

@return SettingsFlow

func (*FrontendAPIService) CreateNativeVerificationFlow ¶

CreateNativeVerificationFlow Create Verification Flow for Native Apps

This endpoint initiates a verification flow for API clients such as mobile devices, smart TVs, and so on.

To fetch an existing verification flow call `/self-service/verification/flows?flow=<flow_id>`.

You MUST NOT use this endpoint in client-side (Single Page Apps, ReactJS, AngularJS) nor server-side (Java Server Pages, NodeJS, PHP, Golang, ...) browser applications. Using this endpoint in these applications will make you vulnerable to a variety of CSRF attacks.

This endpoint MUST ONLY be used in scenarios such as native mobile apps (React Native, Objective C, Swift, Java, ...).

More information can be found at [Ory Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPICreateNativeVerificationFlowRequest

func (*FrontendAPIService) CreateNativeVerificationFlowExecute ¶

Execute executes the request

@return VerificationFlow

func (*FrontendAPIService) DisableMyOtherSessions ¶

DisableMyOtherSessions Disable my other sessions

Calling this endpoint invalidates all except the current session that belong to the logged-in user. Session data are not deleted.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIDisableMyOtherSessionsRequest

func (*FrontendAPIService) DisableMyOtherSessionsExecute ¶

Execute executes the request

@return DeleteMySessionsCount

func (*FrontendAPIService) DisableMySession ¶

DisableMySession Disable one of my sessions

Calling this endpoint invalidates the specified session. The current session cannot be revoked. Session data are not deleted.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID is the session's ID.
@return FrontendAPIDisableMySessionRequest

func (*FrontendAPIService) DisableMySessionExecute ¶

func (a *FrontendAPIService) DisableMySessionExecute(r FrontendAPIDisableMySessionRequest) (*http.Response, error)

Execute executes the request

func (*FrontendAPIService) ExchangeSessionToken ¶

ExchangeSessionToken Exchange Session Token

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIExchangeSessionTokenRequest

func (*FrontendAPIService) ExchangeSessionTokenExecute ¶

Execute executes the request

@return SuccessfulNativeLogin

func (*FrontendAPIService) GetFlowError ¶

GetFlowError Get User-Flow Errors

This endpoint returns the error associated with a user-facing self service errors.

This endpoint supports stub values to help you implement the error UI:

`?id=stub:500` - returns a stub 500 (Internal Server Error) error.

More information can be found at [Ory Kratos User User Facing Error Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-facing-errors).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIGetFlowErrorRequest

func (*FrontendAPIService) GetFlowErrorExecute ¶

Execute executes the request

@return FlowError

func (*FrontendAPIService) GetLoginFlow ¶

GetLoginFlow Get Login Flow

This endpoint returns a login flow's context with, for example, error details and other information.

Browser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header. For AJAX requests you must ensure that cookies are included in the request or requests will fail.

If you use the browser-flow for server-side apps, the services need to run on a common top-level-domain and you need to forward the incoming HTTP Cookie header to this endpoint:

```js pseudo-code example router.get('/login', async function (req, res) { const flow = await client.getLoginFlow(req.header('cookie'), req.query['flow'])

res.render('login', flow) }) ```

This request may fail due to several reasons. The `error.id` can be one of:

`session_already_available`: The user is already signed in. `self_service_flow_expired`: The flow is expired and you should request a new one.

More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIGetLoginFlowRequest

func (*FrontendAPIService) GetLoginFlowExecute ¶

Execute executes the request

@return LoginFlow

func (*FrontendAPIService) GetRecoveryFlow ¶

GetRecoveryFlow Get Recovery Flow

This endpoint returns a recovery flow's context with, for example, error details and other information.

Browser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header. For AJAX requests you must ensure that cookies are included in the request or requests will fail.

If you use the browser-flow for server-side apps, the services need to run on a common top-level-domain and you need to forward the incoming HTTP Cookie header to this endpoint:

```js pseudo-code example router.get('/recovery', async function (req, res) { const flow = await client.getRecoveryFlow(req.header('Cookie'), req.query['flow'])

res.render('recovery', flow) }) ```

More information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIGetRecoveryFlowRequest

func (*FrontendAPIService) GetRecoveryFlowExecute ¶

Execute executes the request

@return RecoveryFlow

func (*FrontendAPIService) GetRegistrationFlow ¶

GetRegistrationFlow Get Registration Flow

This endpoint returns a registration flow's context with, for example, error details and other information.

Browser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header. For AJAX requests you must ensure that cookies are included in the request or requests will fail.

If you use the browser-flow for server-side apps, the services need to run on a common top-level-domain and you need to forward the incoming HTTP Cookie header to this endpoint:

```js pseudo-code example router.get('/registration', async function (req, res) { const flow = await client.getRegistrationFlow(req.header('cookie'), req.query['flow'])

res.render('registration', flow) }) ```

This request may fail due to several reasons. The `error.id` can be one of:

`session_already_available`: The user is already signed in. `self_service_flow_expired`: The flow is expired and you should request a new one.

More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIGetRegistrationFlowRequest

func (*FrontendAPIService) GetRegistrationFlowExecute ¶

Execute executes the request

@return RegistrationFlow

func (*FrontendAPIService) GetSettingsFlow ¶

GetSettingsFlow Get Settings Flow

When accessing this endpoint through Ory Kratos' Public API you must ensure that either the Ory Kratos Session Cookie or the Ory Kratos Session Token are set.

Depending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator Assurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn credentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user to sign in with the second factor or change the configuration.

You can access this endpoint without credentials when using Ory Kratos' Admin API.

If this endpoint is called via an AJAX request, the response contains the flow without a redirect. In the case of an error, the `error.id` of the JSON response body can be one of:

`security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred. `session_inactive`: No Ory Session was found - sign in a user first. `security_identity_mismatch`: The flow was interrupted with `session_refresh_required` but apparently some other identity logged in instead.

More information can be found at [Ory Kratos User Settings & Profile Management Documentation](../self-service/flows/user-settings).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIGetSettingsFlowRequest

func (*FrontendAPIService) GetSettingsFlowExecute ¶

Execute executes the request

@return SettingsFlow

func (*FrontendAPIService) GetVerificationFlow ¶

GetVerificationFlow Get Verification Flow

This endpoint returns a verification flow's context with, for example, error details and other information.

Browser flows expect the anti-CSRF cookie to be included in the request's HTTP Cookie Header. For AJAX requests you must ensure that cookies are included in the request or requests will fail.

If you use the browser-flow for server-side apps, the services need to run on a common top-level-domain and you need to forward the incoming HTTP Cookie header to this endpoint:

```js pseudo-code example router.get('/recovery', async function (req, res) { const flow = await client.getVerificationFlow(req.header('cookie'), req.query['flow'])

res.render('verification', flow) }) ```

More information can be found at [Ory Kratos Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIGetVerificationFlowRequest

func (*FrontendAPIService) GetVerificationFlowExecute ¶

Execute executes the request

@return VerificationFlow

func (*FrontendAPIService) GetWebAuthnJavaScript ¶

GetWebAuthnJavaScript Get WebAuthn JavaScript

This endpoint provides JavaScript which is needed in order to perform WebAuthn login and registration.

If you are building a JavaScript Browser App (e.g. in ReactJS or AngularJS) you will need to load this file:

```html <script src="https://public-kratos.example.org/.well-known/ory/webauthn.js" type="script" async /> ```

More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIGetWebAuthnJavaScriptRequest

func (*FrontendAPIService) GetWebAuthnJavaScriptExecute ¶

func (a *FrontendAPIService) GetWebAuthnJavaScriptExecute(r FrontendAPIGetWebAuthnJavaScriptRequest) (string, *http.Response, error)

Execute executes the request

@return string

func (*FrontendAPIService) ListMySessions ¶

ListMySessions Get My Active Sessions

This endpoints returns all other active sessions that belong to the logged-in user. The current session can be retrieved by calling the `/sessions/whoami` endpoint.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIListMySessionsRequest

func (*FrontendAPIService) ListMySessionsExecute ¶

Execute executes the request

@return []Session

func (*FrontendAPIService) PerformNativeLogout ¶

PerformNativeLogout Perform Logout for Native Apps

Use this endpoint to log out an identity using an Ory Session Token. If the Ory Session Token was successfully revoked, the server returns a 204 No Content response. A 204 No Content response is also sent when the Ory Session Token has been revoked already before.

If the Ory Session Token is malformed or does not exist a 403 Forbidden response will be returned.

This endpoint does not remove any HTTP Cookies - use the Browser-Based Self-Service Logout Flow instead.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIPerformNativeLogoutRequest

func (*FrontendAPIService) PerformNativeLogoutExecute ¶

func (a *FrontendAPIService) PerformNativeLogoutExecute(r FrontendAPIPerformNativeLogoutRequest) (*http.Response, error)

Execute executes the request

func (*FrontendAPIService) ToSession ¶

ToSession Check Who the Current HTTP Session Belongs To

Uses the HTTP Headers in the GET request to determine (e.g. by using checking the cookies) who is authenticated. Returns a session object in the body or 401 if the credentials are invalid or no credentials were sent. When the request it successful it adds the user ID to the 'X-Kratos-Authenticated-Identity-Id' header in the response.

If you call this endpoint from a server-side application, you must forward the HTTP Cookie Header to this endpoint:

```js pseudo-code example router.get('/protected-endpoint', async function (req, res) { const session = await client.toSession(undefined, req.header('cookie'))

console.log(session) }) ```

When calling this endpoint from a non-browser application (e.g. mobile app) you must include the session token:

```js pseudo-code example ... const session = await client.toSession("the-session-token")

console.log(session) ```

When using a token template, the token is included in the `tokenized` field of the session.

```js pseudo-code example ... const session = await client.toSession("the-session-token", { tokenize_as: "example-jwt-template" })

console.log(session.tokenized) // The JWT ```

Depending on your configuration this endpoint might return a 403 status code if the session has a lower Authenticator Assurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn credentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user to sign in with the second factor or change the configuration.

This endpoint is useful for:

AJAX calls. Remember to send credentials and set up CORS correctly! Reverse proxies and API Gateways Server-side calls - use the `X-Session-Token` header!

This endpoint authenticates users by checking:

if the `Cookie` HTTP header was set containing an Ory Kratos Session Cookie; if the `Authorization: bearer <ory-session-token>` HTTP header was set with a valid Ory Kratos Session Token; if the `X-Session-Token` HTTP header was set with a valid Ory Kratos Session Token.

If none of these headers are set or the cookie or token are invalid, the endpoint returns a HTTP 401 status code.

As explained above, this request may fail due to several reasons. The `error.id` can be one of:

`session_inactive`: No active session was found in the request (e.g. no Ory Session Cookie / Ory Session Token). `session_aal2_required`: An active session was found but it does not fulfil the Authenticator Assurance Level, implying that the session must (e.g.) authenticate the second factor.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIToSessionRequest

func (*FrontendAPIService) ToSessionExecute ¶

Execute executes the request

@return Session

func (*FrontendAPIService) UpdateLoginFlow ¶

UpdateLoginFlow Submit a Login Flow

Use this endpoint to complete a login flow. This endpoint behaves differently for API and browser flows.

API flows expect `application/json` to be sent in the body and responds with HTTP 200 and a application/json body with the session token on success; HTTP 410 if the original flow expired with the appropriate error messages set and optionally a `use_flow_id` parameter in the body; HTTP 400 on form validation errors.

Browser flows expect a Content-Type of `application/x-www-form-urlencoded` or `application/json` to be sent in the body and respond with a HTTP 303 redirect to the post/after login URL or the `return_to` value if it was set and if the login succeeded; a HTTP 303 redirect to the login UI URL with the flow ID containing the validation errors otherwise.

Browser flows with an accept header of `application/json` will not redirect but instead respond with HTTP 200 and a application/json body with the signed in identity and a `Set-Cookie` header on success; HTTP 303 redirect to a fresh login flow if the original flow expired with the appropriate error messages set; HTTP 400 on form validation errors.

If this endpoint is called with `Accept: application/json` in the header, the response contains the flow without a redirect. In the case of an error, the `error.id` of the JSON response body can be one of:

`session_already_available`: The user is already signed in. `security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred. `security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration! `browser_location_change_required`: Usually sent when an AJAX request indicates that the browser needs to open a specific URL. Most likely used in Social Sign In flows.

More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIUpdateLoginFlowRequest

func (*FrontendAPIService) UpdateLoginFlowExecute ¶

Execute executes the request

@return SuccessfulNativeLogin

func (*FrontendAPIService) UpdateLogoutFlow ¶

UpdateLogoutFlow Update Logout Flow

This endpoint logs out an identity in a self-service manner.

If the `Accept` HTTP header is not set to `application/json`, the browser will be redirected (HTTP 303 See Other) to the `return_to` parameter of the initial request or fall back to `urls.default_return_to`.

If the `Accept` HTTP header is set to `application/json`, a 204 No Content response will be sent on successful logout instead.

This endpoint is NOT INTENDED for API clients and only works with browsers (Chrome, Firefox, ...). For API clients you can call the `/self-service/logout/api` URL directly with the Ory Session Token.

More information can be found at [Ory Kratos User Logout Documentation](https://www.ory.sh/docs/next/kratos/self-service/flows/user-logout).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIUpdateLogoutFlowRequest

func (*FrontendAPIService) UpdateLogoutFlowExecute ¶

func (a *FrontendAPIService) UpdateLogoutFlowExecute(r FrontendAPIUpdateLogoutFlowRequest) (*http.Response, error)

Execute executes the request

func (*FrontendAPIService) UpdateRecoveryFlow ¶

UpdateRecoveryFlow Update Recovery Flow

Use this endpoint to update a recovery flow. This endpoint behaves differently for API and browser flows and has several states:

`choose_method` expects `flow` (in the URL query) and `email` (in the body) to be sent and works with API- and Browser-initiated flows. For API clients and Browser clients with HTTP Header `Accept: application/json` it either returns a HTTP 200 OK when the form is valid and HTTP 400 OK when the form is invalid. and a HTTP 303 See Other redirect with a fresh recovery flow if the flow was otherwise invalid (e.g. expired). For Browser clients without HTTP Header `Accept` or with `Accept: text/*` it returns a HTTP 303 See Other redirect to the Recovery UI URL with the Recovery Flow ID appended. `sent_email` is the success state after `choose_method` for the `link` method and allows the user to request another recovery email. It works for both API and Browser-initiated flows and returns the same responses as the flow in `choose_method` state. `passed_challenge` expects a `token` to be sent in the URL query and given the nature of the flow ("sending a recovery link") does not have any API capabilities. The server responds with a HTTP 303 See Other redirect either to the Settings UI URL (if the link was valid) and instructs the user to update their password, or a redirect to the Recover UI URL with a new Recovery Flow ID which contains an error message that the recovery link was invalid.

More information can be found at [Ory Kratos Account Recovery Documentation](../self-service/flows/account-recovery).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIUpdateRecoveryFlowRequest

func (*FrontendAPIService) UpdateRecoveryFlowExecute ¶

Execute executes the request

@return RecoveryFlow

func (*FrontendAPIService) UpdateRegistrationFlow ¶

UpdateRegistrationFlow Update Registration Flow

Use this endpoint to complete a registration flow by sending an identity's traits and password. This endpoint behaves differently for API and browser flows.

API flows expect `application/json` to be sent in the body and respond with HTTP 200 and a application/json body with the created identity success - if the session hook is configured the `session` and `session_token` will also be included; HTTP 410 if the original flow expired with the appropriate error messages set and optionally a `use_flow_id` parameter in the body; HTTP 400 on form validation errors.

Browser flows expect a Content-Type of `application/x-www-form-urlencoded` or `application/json` to be sent in the body and respond with a HTTP 303 redirect to the post/after registration URL or the `return_to` value if it was set and if the registration succeeded; a HTTP 303 redirect to the registration UI URL with the flow ID containing the validation errors otherwise.

Browser flows with an accept header of `application/json` will not redirect but instead respond with HTTP 200 and a application/json body with the signed in identity and a `Set-Cookie` header on success; HTTP 303 redirect to a fresh login flow if the original flow expired with the appropriate error messages set; HTTP 400 on form validation errors.

If this endpoint is called with `Accept: application/json` in the header, the response contains the flow without a redirect. In the case of an error, the `error.id` of the JSON response body can be one of:

`session_already_available`: The user is already signed in. `security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred. `security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration! `browser_location_change_required`: Usually sent when an AJAX request indicates that the browser needs to open a specific URL. Most likely used in Social Sign In flows.

More information can be found at [Ory Kratos User Login](https://www.ory.sh/docs/kratos/self-service/flows/user-login) and [User Registration Documentation](https://www.ory.sh/docs/kratos/self-service/flows/user-registration).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIUpdateRegistrationFlowRequest

func (*FrontendAPIService) UpdateRegistrationFlowExecute ¶

Execute executes the request

@return SuccessfulNativeRegistration

func (*FrontendAPIService) UpdateSettingsFlow ¶

UpdateSettingsFlow Complete Settings Flow

Use this endpoint to complete a settings flow by sending an identity's updated password. This endpoint behaves differently for API and browser flows.

API-initiated flows expect `application/json` to be sent in the body and respond with HTTP 200 and an application/json body with the session token on success; HTTP 303 redirect to a fresh settings flow if the original flow expired with the appropriate error messages set; HTTP 400 on form validation errors. HTTP 401 when the endpoint is called without a valid session token. HTTP 403 when `selfservice.flows.settings.privileged_session_max_age` was reached or the session's AAL is too low. Implies that the user needs to re-authenticate.

Browser flows without HTTP Header `Accept` or with `Accept: text/*` respond with a HTTP 303 redirect to the post/after settings URL or the `return_to` value if it was set and if the flow succeeded; a HTTP 303 redirect to the Settings UI URL with the flow ID containing the validation errors otherwise. a HTTP 303 redirect to the login endpoint when `selfservice.flows.settings.privileged_session_max_age` was reached or the session's AAL is too low.

Browser flows with HTTP Header `Accept: application/json` respond with HTTP 200 and a application/json body with the signed in identity and a `Set-Cookie` header on success; HTTP 303 redirect to a fresh login flow if the original flow expired with the appropriate error messages set; HTTP 401 when the endpoint is called without a valid session cookie. HTTP 403 when the page is accessed without a session cookie or the session's AAL is too low. HTTP 400 on form validation errors.

Depending on your configuration this endpoint might return a 403 error if the session has a lower Authenticator Assurance Level (AAL) than is possible for the identity. This can happen if the identity has password + webauthn credentials (which would result in AAL2) but the session has only AAL1. If this error occurs, ask the user to sign in with the second factor (happens automatically for server-side browser flows) or change the configuration.

If this endpoint is called with a `Accept: application/json` HTTP header, the response contains the flow without a redirect. In the case of an error, the `error.id` of the JSON response body can be one of:

`session_refresh_required`: The identity requested to change something that needs a privileged session. Redirect the identity to the login init endpoint with query parameters `?refresh=true&return_to=<the-current-browser-url>`, or initiate a refresh login flow otherwise. `security_csrf_violation`: Unable to fetch the flow because a CSRF violation occurred. `session_inactive`: No Ory Session was found - sign in a user first. `security_identity_mismatch`: The flow was interrupted with `session_refresh_required` but apparently some other identity logged in instead. `security_identity_mismatch`: The requested `?return_to` address is not allowed to be used. Adjust this in the configuration! `browser_location_change_required`: Usually sent when an AJAX request indicates that the browser needs to open a specific URL. Most likely used in Social Sign In flows.

More information can be found at [Ory Kratos User Settings & Profile Management Documentation](../self-service/flows/user-settings).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIUpdateSettingsFlowRequest

func (*FrontendAPIService) UpdateSettingsFlowExecute ¶

Execute executes the request

@return SettingsFlow

func (*FrontendAPIService) UpdateVerificationFlow ¶

UpdateVerificationFlow Complete Verification Flow

Use this endpoint to complete a verification flow. This endpoint behaves differently for API and browser flows and has several states:

`choose_method` expects `flow` (in the URL query) and `email` (in the body) to be sent and works with API- and Browser-initiated flows. For API clients and Browser clients with HTTP Header `Accept: application/json` it either returns a HTTP 200 OK when the form is valid and HTTP 400 OK when the form is invalid and a HTTP 303 See Other redirect with a fresh verification flow if the flow was otherwise invalid (e.g. expired). For Browser clients without HTTP Header `Accept` or with `Accept: text/*` it returns a HTTP 303 See Other redirect to the Verification UI URL with the Verification Flow ID appended. `sent_email` is the success state after `choose_method` when using the `link` method and allows the user to request another verification email. It works for both API and Browser-initiated flows and returns the same responses as the flow in `choose_method` state. `passed_challenge` expects a `token` to be sent in the URL query and given the nature of the flow ("sending a verification link") does not have any API capabilities. The server responds with a HTTP 303 See Other redirect either to the Settings UI URL (if the link was valid) and instructs the user to update their password, or a redirect to the Verification UI URL with a new Verification Flow ID which contains an error message that the verification link was invalid.

More information can be found at [Ory Kratos Email and Phone Verification Documentation](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return FrontendAPIUpdateVerificationFlowRequest

func (*FrontendAPIService) UpdateVerificationFlowExecute ¶

Execute executes the request

@return VerificationFlow

type FrontendAPIToSessionRequest ¶

type FrontendAPIToSessionRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIToSessionRequest) Cookie ¶

Set the Cookie Header. This is especially useful when calling this endpoint from a server-side application. In that scenario you must include the HTTP Cookie Header which originally was included in the request to your server. An example of a session in the HTTP Cookie Header is: &#x60;ory_kratos_session&#x3D;a19iOVAbdzdgl70Rq1QZmrKmcjDtdsviCTZx7m9a9yHIUS8Wa9T7hvqyGTsLHi6Qifn2WUfpAKx9DWp0SJGleIn9vh2YF4A16id93kXFTgIgmwIOvbVAScyrx7yVl6bPZnCx27ec4WQDtaTewC1CpgudeDV2jQQnSaCP6ny3xa8qLH-QUgYqdQuoA_LF1phxgRCUfIrCLQOkolX5nv3ze_f&#x3D;&#x3D;&#x60;. It is ok if more than one cookie are included here as all other cookies will be ignored.

func (FrontendAPIToSessionRequest) Execute ¶

func (FrontendAPIToSessionRequest) TokenizeAs ¶

Returns the session additionally as a token (such as a JWT) The value of this parameter has to be a valid, configured Ory Session token template. For more information head over to [the documentation](http://ory.sh/docs/identities/session-to-jwt-cors).

func (FrontendAPIToSessionRequest) XSessionToken ¶

func (r FrontendAPIToSessionRequest) XSessionToken(xSessionToken string) FrontendAPIToSessionRequest

Set the Session Token when calling from non-browser clients. A session token has a format of &#x60;MP2YWEMeM8MxjkGKpH4dqOQ4Q4DlSPaj&#x60;.

type FrontendAPIUpdateLoginFlowRequest ¶

type FrontendAPIUpdateLoginFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIUpdateLoginFlowRequest) Cookie ¶

HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.

func (FrontendAPIUpdateLoginFlowRequest) Execute ¶

func (FrontendAPIUpdateLoginFlowRequest) Flow ¶

The Login Flow ID The value for this parameter comes from &#x60;flow&#x60; URL Query parameter sent to your application (e.g. &#x60;/login?flow&#x3D;abcde&#x60;).

func (FrontendAPIUpdateLoginFlowRequest) UpdateLoginFlowBody ¶

func (FrontendAPIUpdateLoginFlowRequest) XSessionToken ¶

The Session Token of the Identity performing the settings flow.

type FrontendAPIUpdateLogoutFlowRequest ¶

type FrontendAPIUpdateLogoutFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIUpdateLogoutFlowRequest) Cookie ¶

HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.

func (FrontendAPIUpdateLogoutFlowRequest) Execute ¶

func (FrontendAPIUpdateLogoutFlowRequest) ReturnTo ¶

The URL to return to after the logout was completed.

func (FrontendAPIUpdateLogoutFlowRequest) Token ¶

A Valid Logout Token If you do not have a logout token because you only have a session cookie, call &#x60;/self-service/logout/browser&#x60; to generate a URL for this endpoint.

type FrontendAPIUpdateRecoveryFlowRequest ¶

type FrontendAPIUpdateRecoveryFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIUpdateRecoveryFlowRequest) Cookie ¶

HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.

func (FrontendAPIUpdateRecoveryFlowRequest) Execute ¶

func (FrontendAPIUpdateRecoveryFlowRequest) Flow ¶

The Recovery Flow ID The value for this parameter comes from &#x60;flow&#x60; URL Query parameter sent to your application (e.g. &#x60;/recovery?flow&#x3D;abcde&#x60;).

func (FrontendAPIUpdateRecoveryFlowRequest) Token ¶

Recovery Token The recovery token which completes the recovery request. If the token is invalid (e.g. expired) an error will be shown to the end-user. This parameter is usually set in a link and not used by any direct API call.

func (FrontendAPIUpdateRecoveryFlowRequest) UpdateRecoveryFlowBody ¶

type FrontendAPIUpdateRegistrationFlowRequest ¶

type FrontendAPIUpdateRegistrationFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIUpdateRegistrationFlowRequest) Cookie ¶

HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.

func (FrontendAPIUpdateRegistrationFlowRequest) Execute ¶

func (FrontendAPIUpdateRegistrationFlowRequest) Flow ¶

The Registration Flow ID The value for this parameter comes from &#x60;flow&#x60; URL Query parameter sent to your application (e.g. &#x60;/registration?flow&#x3D;abcde&#x60;).

func (FrontendAPIUpdateRegistrationFlowRequest) UpdateRegistrationFlowBody ¶

type FrontendAPIUpdateSettingsFlowRequest ¶

type FrontendAPIUpdateSettingsFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIUpdateSettingsFlowRequest) Cookie ¶

HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.

func (FrontendAPIUpdateSettingsFlowRequest) Execute ¶

func (FrontendAPIUpdateSettingsFlowRequest) Flow ¶

The Settings Flow ID The value for this parameter comes from &#x60;flow&#x60; URL Query parameter sent to your application (e.g. &#x60;/settings?flow&#x3D;abcde&#x60;).

func (FrontendAPIUpdateSettingsFlowRequest) UpdateSettingsFlowBody ¶

func (FrontendAPIUpdateSettingsFlowRequest) XSessionToken ¶

The Session Token of the Identity performing the settings flow.

type FrontendAPIUpdateVerificationFlowRequest ¶

type FrontendAPIUpdateVerificationFlowRequest struct {
	ApiService FrontendAPI
	// contains filtered or unexported fields
}

func (FrontendAPIUpdateVerificationFlowRequest) Cookie ¶

HTTP Cookies When using the SDK in a browser app, on the server side you must include the HTTP Cookie Header sent by the client to your server here. This ensures that CSRF and session cookies are respected.

func (FrontendAPIUpdateVerificationFlowRequest) Execute ¶

func (FrontendAPIUpdateVerificationFlowRequest) Flow ¶

The Verification Flow ID The value for this parameter comes from &#x60;flow&#x60; URL Query parameter sent to your application (e.g. &#x60;/verification?flow&#x3D;abcde&#x60;).

func (FrontendAPIUpdateVerificationFlowRequest) Token ¶

Verification Token The verification token which completes the verification request. If the token is invalid (e.g. expired) an error will be shown to the end-user. This parameter is usually set in a link and not used by any direct API call.

func (FrontendAPIUpdateVerificationFlowRequest) UpdateVerificationFlowBody ¶

type GenericError ¶

type GenericError struct {
	// The status code
	Code *int64 `json:"code,omitempty"`
	// Debug information  This field is often not exposed to protect against leaking sensitive information.
	Debug *string `json:"debug,omitempty"`
	// Further error details
	Details interface{}          `json:"details,omitempty"`
	Error   *GenericErrorContent `json:"error,omitempty"`
	// The error ID  Useful when trying to identify various errors in application logic.
	Id *string `json:"id,omitempty"`
	// Error message  The error's message.
	Message string `json:"message"`
	// A human-readable reason for the error
	Reason *string `json:"reason,omitempty"`
	// The request ID  The request ID is often exposed internally in order to trace errors across service architectures. This is often a UUID.
	Request *string `json:"request,omitempty"`
	// The status description
	Status               *string `json:"status,omitempty"`
	AdditionalProperties map[string]interface{}
}

GenericError Error responses are sent when an error (e.g. unauthorized, bad request, ...) occurred.

func NewGenericError ¶

func NewGenericError(message string) *GenericError

NewGenericError instantiates a new GenericError 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 NewGenericErrorWithDefaults ¶

func NewGenericErrorWithDefaults() *GenericError

NewGenericErrorWithDefaults instantiates a new GenericError 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 (*GenericError) GetCode ¶

func (o *GenericError) GetCode() int64

GetCode returns the Code field value if set, zero value otherwise.

func (*GenericError) GetCodeOk ¶

func (o *GenericError) GetCodeOk() (*int64, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenericError) GetDebug ¶

func (o *GenericError) GetDebug() string

GetDebug returns the Debug field value if set, zero value otherwise.

func (*GenericError) GetDebugOk ¶

func (o *GenericError) GetDebugOk() (*string, bool)

GetDebugOk returns a tuple with the Debug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenericError) GetDetails ¶

func (o *GenericError) GetDetails() interface{}

GetDetails returns the Details field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GenericError) GetDetailsOk ¶

func (o *GenericError) GetDetailsOk() (*interface{}, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GenericError) GetError ¶

func (o *GenericError) GetError() GenericErrorContent

GetError returns the Error field value if set, zero value otherwise.

func (*GenericError) GetErrorOk ¶

func (o *GenericError) GetErrorOk() (*GenericErrorContent, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenericError) GetId ¶

func (o *GenericError) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*GenericError) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenericError) GetMessage ¶

func (o *GenericError) GetMessage() string

GetMessage returns the Message field value

func (*GenericError) GetMessageOk ¶

func (o *GenericError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*GenericError) GetReason ¶

func (o *GenericError) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*GenericError) GetReasonOk ¶

func (o *GenericError) GetReasonOk() (*string, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenericError) GetRequest ¶

func (o *GenericError) GetRequest() string

GetRequest returns the Request field value if set, zero value otherwise.

func (*GenericError) GetRequestOk ¶

func (o *GenericError) GetRequestOk() (*string, bool)

GetRequestOk returns a tuple with the Request field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenericError) GetStatus ¶

func (o *GenericError) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*GenericError) GetStatusOk ¶

func (o *GenericError) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenericError) HasCode ¶

func (o *GenericError) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*GenericError) HasDebug ¶

func (o *GenericError) HasDebug() bool

HasDebug returns a boolean if a field has been set.

func (*GenericError) HasDetails ¶

func (o *GenericError) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*GenericError) HasError ¶

func (o *GenericError) HasError() bool

HasError returns a boolean if a field has been set.

func (*GenericError) HasId ¶

func (o *GenericError) HasId() bool

HasId returns a boolean if a field has been set.

func (*GenericError) HasReason ¶

func (o *GenericError) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*GenericError) HasRequest ¶

func (o *GenericError) HasRequest() bool

HasRequest returns a boolean if a field has been set.

func (*GenericError) HasStatus ¶

func (o *GenericError) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (GenericError) MarshalJSON ¶

func (o GenericError) MarshalJSON() ([]byte, error)

func (*GenericError) SetCode ¶

func (o *GenericError) SetCode(v int64)

SetCode gets a reference to the given int64 and assigns it to the Code field.

func (*GenericError) SetDebug ¶

func (o *GenericError) SetDebug(v string)

SetDebug gets a reference to the given string and assigns it to the Debug field.

func (*GenericError) SetDetails ¶

func (o *GenericError) SetDetails(v interface{})

SetDetails gets a reference to the given interface{} and assigns it to the Details field.

func (*GenericError) SetError ¶

func (o *GenericError) SetError(v GenericErrorContent)

SetError gets a reference to the given GenericErrorContent and assigns it to the Error field.

func (*GenericError) SetId ¶

func (o *GenericError) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*GenericError) SetMessage ¶

func (o *GenericError) SetMessage(v string)

SetMessage sets field value

func (*GenericError) SetReason ¶

func (o *GenericError) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*GenericError) SetRequest ¶

func (o *GenericError) SetRequest(v string)

SetRequest gets a reference to the given string and assigns it to the Request field.

func (*GenericError) SetStatus ¶

func (o *GenericError) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (GenericError) ToMap ¶

func (o GenericError) ToMap() (map[string]interface{}, error)

func (*GenericError) UnmarshalJSON ¶

func (o *GenericError) UnmarshalJSON(bytes []byte) (err error)

type GenericErrorContent ¶

type GenericErrorContent struct {
	// Debug contains debug information. This is usually not available and has to be enabled.
	Debug *string `json:"debug,omitempty"`
	// Name is the error name.
	Error *string `json:"error,omitempty"`
	// Description contains further information on the nature of the error.
	ErrorDescription *string `json:"error_description,omitempty"`
	// Message contains the error message.
	Message *string `json:"message,omitempty"`
	// Code represents the error status code (404, 403, 401, ...).
	StatusCode           *int64 `json:"status_code,omitempty"`
	AdditionalProperties map[string]interface{}
}

GenericErrorContent Error response

func NewGenericErrorContent ¶

func NewGenericErrorContent() *GenericErrorContent

NewGenericErrorContent instantiates a new GenericErrorContent 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 NewGenericErrorContentWithDefaults ¶

func NewGenericErrorContentWithDefaults() *GenericErrorContent

NewGenericErrorContentWithDefaults instantiates a new GenericErrorContent 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 (*GenericErrorContent) GetDebug ¶

func (o *GenericErrorContent) GetDebug() string

GetDebug returns the Debug field value if set, zero value otherwise.

func (*GenericErrorContent) GetDebugOk ¶

func (o *GenericErrorContent) GetDebugOk() (*string, bool)

GetDebugOk returns a tuple with the Debug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenericErrorContent) GetError ¶

func (o *GenericErrorContent) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*GenericErrorContent) GetErrorDescription ¶

func (o *GenericErrorContent) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise.

func (*GenericErrorContent) GetErrorDescriptionOk ¶

func (o *GenericErrorContent) GetErrorDescriptionOk() (*string, bool)

GetErrorDescriptionOk returns a tuple with the ErrorDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenericErrorContent) GetErrorOk ¶

func (o *GenericErrorContent) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenericErrorContent) GetMessage ¶

func (o *GenericErrorContent) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*GenericErrorContent) GetMessageOk ¶

func (o *GenericErrorContent) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenericErrorContent) GetStatusCode ¶

func (o *GenericErrorContent) GetStatusCode() int64

GetStatusCode returns the StatusCode field value if set, zero value otherwise.

func (*GenericErrorContent) GetStatusCodeOk ¶

func (o *GenericErrorContent) GetStatusCodeOk() (*int64, bool)

GetStatusCodeOk returns a tuple with the StatusCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GenericErrorContent) HasDebug ¶

func (o *GenericErrorContent) HasDebug() bool

HasDebug returns a boolean if a field has been set.

func (*GenericErrorContent) HasError ¶

func (o *GenericErrorContent) HasError() bool

HasError returns a boolean if a field has been set.

func (*GenericErrorContent) HasErrorDescription ¶

func (o *GenericErrorContent) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*GenericErrorContent) HasMessage ¶

func (o *GenericErrorContent) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*GenericErrorContent) HasStatusCode ¶

func (o *GenericErrorContent) HasStatusCode() bool

HasStatusCode returns a boolean if a field has been set.

func (GenericErrorContent) MarshalJSON ¶

func (o GenericErrorContent) MarshalJSON() ([]byte, error)

func (*GenericErrorContent) SetDebug ¶

func (o *GenericErrorContent) SetDebug(v string)

SetDebug gets a reference to the given string and assigns it to the Debug field.

func (*GenericErrorContent) SetError ¶

func (o *GenericErrorContent) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*GenericErrorContent) SetErrorDescription ¶

func (o *GenericErrorContent) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given string and assigns it to the ErrorDescription field.

func (*GenericErrorContent) SetMessage ¶

func (o *GenericErrorContent) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*GenericErrorContent) SetStatusCode ¶

func (o *GenericErrorContent) SetStatusCode(v int64)

SetStatusCode gets a reference to the given int64 and assigns it to the StatusCode field.

func (GenericErrorContent) ToMap ¶

func (o GenericErrorContent) ToMap() (map[string]interface{}, error)

func (*GenericErrorContent) UnmarshalJSON ¶

func (o *GenericErrorContent) UnmarshalJSON(bytes []byte) (err error)

type GenericOpenAPIError ¶

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body ¶

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error ¶

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model ¶

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GenericUsage ¶

type GenericUsage struct {
	// AdditionalPrice is the price per-unit in cent exceeding IncludedUsage. A price of 0 means that no other items can be consumed.
	AdditionalPrice int64 `json:"additional_price"`
	// IncludedUsage is the number of included items.
	IncludedUsage        int64 `json:"included_usage"`
	AdditionalProperties map[string]interface{}
}

GenericUsage struct for GenericUsage

func NewGenericUsage ¶

func NewGenericUsage(additionalPrice int64, includedUsage int64) *GenericUsage

NewGenericUsage instantiates a new GenericUsage 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 NewGenericUsageWithDefaults ¶

func NewGenericUsageWithDefaults() *GenericUsage

NewGenericUsageWithDefaults instantiates a new GenericUsage 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 (*GenericUsage) GetAdditionalPrice ¶

func (o *GenericUsage) GetAdditionalPrice() int64

GetAdditionalPrice returns the AdditionalPrice field value

func (*GenericUsage) GetAdditionalPriceOk ¶

func (o *GenericUsage) GetAdditionalPriceOk() (*int64, bool)

GetAdditionalPriceOk returns a tuple with the AdditionalPrice field value and a boolean to check if the value has been set.

func (*GenericUsage) GetIncludedUsage ¶

func (o *GenericUsage) GetIncludedUsage() int64

GetIncludedUsage returns the IncludedUsage field value

func (*GenericUsage) GetIncludedUsageOk ¶

func (o *GenericUsage) GetIncludedUsageOk() (*int64, bool)

GetIncludedUsageOk returns a tuple with the IncludedUsage field value and a boolean to check if the value has been set.

func (GenericUsage) MarshalJSON ¶

func (o GenericUsage) MarshalJSON() ([]byte, error)

func (*GenericUsage) SetAdditionalPrice ¶

func (o *GenericUsage) SetAdditionalPrice(v int64)

SetAdditionalPrice sets field value

func (*GenericUsage) SetIncludedUsage ¶

func (o *GenericUsage) SetIncludedUsage(v int64)

SetIncludedUsage sets field value

func (GenericUsage) ToMap ¶

func (o GenericUsage) ToMap() (map[string]interface{}, error)

func (*GenericUsage) UnmarshalJSON ¶

func (o *GenericUsage) UnmarshalJSON(bytes []byte) (err error)

type GetAttributesCountResponse ¶

type GetAttributesCountResponse struct {
	// The list of data points.
	Data                 []AttributesCountDatapoint `json:"data"`
	AdditionalProperties map[string]interface{}
}

GetAttributesCountResponse Response of the getAttributesCount endpoint

func NewGetAttributesCountResponse ¶

func NewGetAttributesCountResponse(data []AttributesCountDatapoint) *GetAttributesCountResponse

NewGetAttributesCountResponse instantiates a new GetAttributesCountResponse 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 NewGetAttributesCountResponseWithDefaults ¶

func NewGetAttributesCountResponseWithDefaults() *GetAttributesCountResponse

NewGetAttributesCountResponseWithDefaults instantiates a new GetAttributesCountResponse 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 (*GetAttributesCountResponse) GetData ¶

GetData returns the Data field value

func (*GetAttributesCountResponse) GetDataOk ¶

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (GetAttributesCountResponse) MarshalJSON ¶

func (o GetAttributesCountResponse) MarshalJSON() ([]byte, error)

func (*GetAttributesCountResponse) SetData ¶

SetData sets field value

func (GetAttributesCountResponse) ToMap ¶

func (o GetAttributesCountResponse) ToMap() (map[string]interface{}, error)

func (*GetAttributesCountResponse) UnmarshalJSON ¶

func (o *GetAttributesCountResponse) UnmarshalJSON(bytes []byte) (err error)

type GetManagedIdentitySchemaLocation ¶

type GetManagedIdentitySchemaLocation struct {
	Location             *string `json:"location,omitempty"`
	AdditionalProperties map[string]interface{}
}

GetManagedIdentitySchemaLocation Ory Identity Schema Location

func NewGetManagedIdentitySchemaLocation ¶

func NewGetManagedIdentitySchemaLocation() *GetManagedIdentitySchemaLocation

NewGetManagedIdentitySchemaLocation instantiates a new GetManagedIdentitySchemaLocation 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 NewGetManagedIdentitySchemaLocationWithDefaults ¶

func NewGetManagedIdentitySchemaLocationWithDefaults() *GetManagedIdentitySchemaLocation

NewGetManagedIdentitySchemaLocationWithDefaults instantiates a new GetManagedIdentitySchemaLocation 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 (*GetManagedIdentitySchemaLocation) GetLocation ¶

func (o *GetManagedIdentitySchemaLocation) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*GetManagedIdentitySchemaLocation) GetLocationOk ¶

func (o *GetManagedIdentitySchemaLocation) GetLocationOk() (*string, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetManagedIdentitySchemaLocation) HasLocation ¶

func (o *GetManagedIdentitySchemaLocation) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (GetManagedIdentitySchemaLocation) MarshalJSON ¶

func (o GetManagedIdentitySchemaLocation) MarshalJSON() ([]byte, error)

func (*GetManagedIdentitySchemaLocation) SetLocation ¶

func (o *GetManagedIdentitySchemaLocation) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (GetManagedIdentitySchemaLocation) ToMap ¶

func (o GetManagedIdentitySchemaLocation) ToMap() (map[string]interface{}, error)

func (*GetManagedIdentitySchemaLocation) UnmarshalJSON ¶

func (o *GetManagedIdentitySchemaLocation) UnmarshalJSON(bytes []byte) (err error)

type GetMetricsEventAttributesResponse ¶

type GetMetricsEventAttributesResponse struct {
	// The list of data points.
	Events               []string `json:"events"`
	AdditionalProperties map[string]interface{}
}

GetMetricsEventAttributesResponse Response of the getMetricsEventAttributes endpoint

func NewGetMetricsEventAttributesResponse ¶

func NewGetMetricsEventAttributesResponse(events []string) *GetMetricsEventAttributesResponse

NewGetMetricsEventAttributesResponse instantiates a new GetMetricsEventAttributesResponse 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 NewGetMetricsEventAttributesResponseWithDefaults ¶

func NewGetMetricsEventAttributesResponseWithDefaults() *GetMetricsEventAttributesResponse

NewGetMetricsEventAttributesResponseWithDefaults instantiates a new GetMetricsEventAttributesResponse 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 (*GetMetricsEventAttributesResponse) GetEvents ¶

func (o *GetMetricsEventAttributesResponse) GetEvents() []string

GetEvents returns the Events field value

func (*GetMetricsEventAttributesResponse) GetEventsOk ¶

func (o *GetMetricsEventAttributesResponse) GetEventsOk() ([]string, bool)

GetEventsOk returns a tuple with the Events field value and a boolean to check if the value has been set.

func (GetMetricsEventAttributesResponse) MarshalJSON ¶

func (o GetMetricsEventAttributesResponse) MarshalJSON() ([]byte, error)

func (*GetMetricsEventAttributesResponse) SetEvents ¶

func (o *GetMetricsEventAttributesResponse) SetEvents(v []string)

SetEvents sets field value

func (GetMetricsEventAttributesResponse) ToMap ¶

func (o GetMetricsEventAttributesResponse) ToMap() (map[string]interface{}, error)

func (*GetMetricsEventAttributesResponse) UnmarshalJSON ¶

func (o *GetMetricsEventAttributesResponse) UnmarshalJSON(bytes []byte) (err error)

type GetMetricsEventTypesResponse ¶

type GetMetricsEventTypesResponse struct {
	// The list of data points.
	Events               []string `json:"events"`
	AdditionalProperties map[string]interface{}
}

GetMetricsEventTypesResponse Response of the getMetricsEventTypes endpoint

func NewGetMetricsEventTypesResponse ¶

func NewGetMetricsEventTypesResponse(events []string) *GetMetricsEventTypesResponse

NewGetMetricsEventTypesResponse instantiates a new GetMetricsEventTypesResponse 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 NewGetMetricsEventTypesResponseWithDefaults ¶

func NewGetMetricsEventTypesResponseWithDefaults() *GetMetricsEventTypesResponse

NewGetMetricsEventTypesResponseWithDefaults instantiates a new GetMetricsEventTypesResponse 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 (*GetMetricsEventTypesResponse) GetEvents ¶

func (o *GetMetricsEventTypesResponse) GetEvents() []string

GetEvents returns the Events field value

func (*GetMetricsEventTypesResponse) GetEventsOk ¶

func (o *GetMetricsEventTypesResponse) GetEventsOk() ([]string, bool)

GetEventsOk returns a tuple with the Events field value and a boolean to check if the value has been set.

func (GetMetricsEventTypesResponse) MarshalJSON ¶

func (o GetMetricsEventTypesResponse) MarshalJSON() ([]byte, error)

func (*GetMetricsEventTypesResponse) SetEvents ¶

func (o *GetMetricsEventTypesResponse) SetEvents(v []string)

SetEvents sets field value

func (GetMetricsEventTypesResponse) ToMap ¶

func (o GetMetricsEventTypesResponse) ToMap() (map[string]interface{}, error)

func (*GetMetricsEventTypesResponse) UnmarshalJSON ¶

func (o *GetMetricsEventTypesResponse) UnmarshalJSON(bytes []byte) (err error)

type GetOrganizationResponse ¶

type GetOrganizationResponse struct {
	Organization         Organization `json:"organization"`
	AdditionalProperties map[string]interface{}
}

GetOrganizationResponse struct for GetOrganizationResponse

func NewGetOrganizationResponse ¶

func NewGetOrganizationResponse(organization Organization) *GetOrganizationResponse

NewGetOrganizationResponse instantiates a new GetOrganizationResponse 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 NewGetOrganizationResponseWithDefaults ¶

func NewGetOrganizationResponseWithDefaults() *GetOrganizationResponse

NewGetOrganizationResponseWithDefaults instantiates a new GetOrganizationResponse 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 (*GetOrganizationResponse) GetOrganization ¶

func (o *GetOrganizationResponse) GetOrganization() Organization

GetOrganization returns the Organization field value

func (*GetOrganizationResponse) GetOrganizationOk ¶

func (o *GetOrganizationResponse) GetOrganizationOk() (*Organization, bool)

GetOrganizationOk returns a tuple with the Organization field value and a boolean to check if the value has been set.

func (GetOrganizationResponse) MarshalJSON ¶

func (o GetOrganizationResponse) MarshalJSON() ([]byte, error)

func (*GetOrganizationResponse) SetOrganization ¶

func (o *GetOrganizationResponse) SetOrganization(v Organization)

SetOrganization sets field value

func (GetOrganizationResponse) ToMap ¶

func (o GetOrganizationResponse) ToMap() (map[string]interface{}, error)

func (*GetOrganizationResponse) UnmarshalJSON ¶

func (o *GetOrganizationResponse) UnmarshalJSON(bytes []byte) (err error)

type GetProjectEventsBody ¶

type GetProjectEventsBody struct {
	// The event name to query for
	EventName *string `json:"event_name,omitempty"`
	// Event attribute filters
	Filters []AttributeFilter `json:"filters,omitempty"`
	// The start RFC3339 date of the time window
	From time.Time `json:"from"`
	// Maximum number of events to return
	PageSize *int64 `json:"page_size,omitempty"`
	// Pagination token to fetch next page, empty if first page
	PageToken *string `json:"page_token,omitempty"`
	// The end RFC3339 date of the time window
	To                   time.Time `json:"to"`
	AdditionalProperties map[string]interface{}
}

GetProjectEventsBody Body of the getProjectEvents endpoint

func NewGetProjectEventsBody ¶

func NewGetProjectEventsBody(from time.Time, to time.Time) *GetProjectEventsBody

NewGetProjectEventsBody instantiates a new GetProjectEventsBody 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 NewGetProjectEventsBodyWithDefaults ¶

func NewGetProjectEventsBodyWithDefaults() *GetProjectEventsBody

NewGetProjectEventsBodyWithDefaults instantiates a new GetProjectEventsBody 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 (*GetProjectEventsBody) GetEventName ¶

func (o *GetProjectEventsBody) GetEventName() string

GetEventName returns the EventName field value if set, zero value otherwise.

func (*GetProjectEventsBody) GetEventNameOk ¶

func (o *GetProjectEventsBody) GetEventNameOk() (*string, bool)

GetEventNameOk returns a tuple with the EventName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetProjectEventsBody) GetFilters ¶

func (o *GetProjectEventsBody) GetFilters() []AttributeFilter

GetFilters returns the Filters field value if set, zero value otherwise.

func (*GetProjectEventsBody) GetFiltersOk ¶

func (o *GetProjectEventsBody) GetFiltersOk() ([]AttributeFilter, bool)

GetFiltersOk returns a tuple with the Filters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetProjectEventsBody) GetFrom ¶

func (o *GetProjectEventsBody) GetFrom() time.Time

GetFrom returns the From field value

func (*GetProjectEventsBody) GetFromOk ¶

func (o *GetProjectEventsBody) GetFromOk() (*time.Time, bool)

GetFromOk returns a tuple with the From field value and a boolean to check if the value has been set.

func (*GetProjectEventsBody) GetPageSize ¶

func (o *GetProjectEventsBody) GetPageSize() int64

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*GetProjectEventsBody) GetPageSizeOk ¶

func (o *GetProjectEventsBody) GetPageSizeOk() (*int64, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetProjectEventsBody) GetPageToken ¶

func (o *GetProjectEventsBody) GetPageToken() string

GetPageToken returns the PageToken field value if set, zero value otherwise.

func (*GetProjectEventsBody) GetPageTokenOk ¶

func (o *GetProjectEventsBody) GetPageTokenOk() (*string, bool)

GetPageTokenOk returns a tuple with the PageToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetProjectEventsBody) GetTo ¶

func (o *GetProjectEventsBody) GetTo() time.Time

GetTo returns the To field value

func (*GetProjectEventsBody) GetToOk ¶

func (o *GetProjectEventsBody) GetToOk() (*time.Time, bool)

GetToOk returns a tuple with the To field value and a boolean to check if the value has been set.

func (*GetProjectEventsBody) HasEventName ¶

func (o *GetProjectEventsBody) HasEventName() bool

HasEventName returns a boolean if a field has been set.

func (*GetProjectEventsBody) HasFilters ¶

func (o *GetProjectEventsBody) HasFilters() bool

HasFilters returns a boolean if a field has been set.

func (*GetProjectEventsBody) HasPageSize ¶

func (o *GetProjectEventsBody) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*GetProjectEventsBody) HasPageToken ¶

func (o *GetProjectEventsBody) HasPageToken() bool

HasPageToken returns a boolean if a field has been set.

func (GetProjectEventsBody) MarshalJSON ¶

func (o GetProjectEventsBody) MarshalJSON() ([]byte, error)

func (*GetProjectEventsBody) SetEventName ¶

func (o *GetProjectEventsBody) SetEventName(v string)

SetEventName gets a reference to the given string and assigns it to the EventName field.

func (*GetProjectEventsBody) SetFilters ¶

func (o *GetProjectEventsBody) SetFilters(v []AttributeFilter)

SetFilters gets a reference to the given []AttributeFilter and assigns it to the Filters field.

func (*GetProjectEventsBody) SetFrom ¶

func (o *GetProjectEventsBody) SetFrom(v time.Time)

SetFrom sets field value

func (*GetProjectEventsBody) SetPageSize ¶

func (o *GetProjectEventsBody) SetPageSize(v int64)

SetPageSize gets a reference to the given int64 and assigns it to the PageSize field.

func (*GetProjectEventsBody) SetPageToken ¶

func (o *GetProjectEventsBody) SetPageToken(v string)

SetPageToken gets a reference to the given string and assigns it to the PageToken field.

func (*GetProjectEventsBody) SetTo ¶

func (o *GetProjectEventsBody) SetTo(v time.Time)

SetTo sets field value

func (GetProjectEventsBody) ToMap ¶

func (o GetProjectEventsBody) ToMap() (map[string]interface{}, error)

func (*GetProjectEventsBody) UnmarshalJSON ¶

func (o *GetProjectEventsBody) UnmarshalJSON(bytes []byte) (err error)

type GetProjectEventsResponse ¶

type GetProjectEventsResponse struct {
	// The list of data points.
	Events []ProjectEventsDatapoint `json:"events"`
	// Pagination token to be included in next page request
	PageToken            *string `json:"page_token,omitempty"`
	AdditionalProperties map[string]interface{}
}

GetProjectEventsResponse Response of the getProjectEvents endpoint

func NewGetProjectEventsResponse ¶

func NewGetProjectEventsResponse(events []ProjectEventsDatapoint) *GetProjectEventsResponse

NewGetProjectEventsResponse instantiates a new GetProjectEventsResponse 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 NewGetProjectEventsResponseWithDefaults ¶

func NewGetProjectEventsResponseWithDefaults() *GetProjectEventsResponse

NewGetProjectEventsResponseWithDefaults instantiates a new GetProjectEventsResponse 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 (*GetProjectEventsResponse) GetEvents ¶

GetEvents returns the Events field value

func (*GetProjectEventsResponse) GetEventsOk ¶

GetEventsOk returns a tuple with the Events field value and a boolean to check if the value has been set.

func (*GetProjectEventsResponse) GetPageToken ¶

func (o *GetProjectEventsResponse) GetPageToken() string

GetPageToken returns the PageToken field value if set, zero value otherwise.

func (*GetProjectEventsResponse) GetPageTokenOk ¶

func (o *GetProjectEventsResponse) GetPageTokenOk() (*string, bool)

GetPageTokenOk returns a tuple with the PageToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetProjectEventsResponse) HasPageToken ¶

func (o *GetProjectEventsResponse) HasPageToken() bool

HasPageToken returns a boolean if a field has been set.

func (GetProjectEventsResponse) MarshalJSON ¶

func (o GetProjectEventsResponse) MarshalJSON() ([]byte, error)

func (*GetProjectEventsResponse) SetEvents ¶

SetEvents sets field value

func (*GetProjectEventsResponse) SetPageToken ¶

func (o *GetProjectEventsResponse) SetPageToken(v string)

SetPageToken gets a reference to the given string and assigns it to the PageToken field.

func (GetProjectEventsResponse) ToMap ¶

func (o GetProjectEventsResponse) ToMap() (map[string]interface{}, error)

func (*GetProjectEventsResponse) UnmarshalJSON ¶

func (o *GetProjectEventsResponse) UnmarshalJSON(bytes []byte) (err error)

type GetProjectMetricsResponse ¶

type GetProjectMetricsResponse struct {
	// The list of data points.
	Data                 []MetricsDatapoint `json:"data"`
	AdditionalProperties map[string]interface{}
}

GetProjectMetricsResponse Response of the getMetrics endpoint

func NewGetProjectMetricsResponse ¶

func NewGetProjectMetricsResponse(data []MetricsDatapoint) *GetProjectMetricsResponse

NewGetProjectMetricsResponse instantiates a new GetProjectMetricsResponse 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 NewGetProjectMetricsResponseWithDefaults ¶

func NewGetProjectMetricsResponseWithDefaults() *GetProjectMetricsResponse

NewGetProjectMetricsResponseWithDefaults instantiates a new GetProjectMetricsResponse 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 (*GetProjectMetricsResponse) GetData ¶

GetData returns the Data field value

func (*GetProjectMetricsResponse) GetDataOk ¶

func (o *GetProjectMetricsResponse) GetDataOk() ([]MetricsDatapoint, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (GetProjectMetricsResponse) MarshalJSON ¶

func (o GetProjectMetricsResponse) MarshalJSON() ([]byte, error)

func (*GetProjectMetricsResponse) SetData ¶

SetData sets field value

func (GetProjectMetricsResponse) ToMap ¶

func (o GetProjectMetricsResponse) ToMap() (map[string]interface{}, error)

func (*GetProjectMetricsResponse) UnmarshalJSON ¶

func (o *GetProjectMetricsResponse) UnmarshalJSON(bytes []byte) (err error)

type GetSessionActivityResponse ¶

type GetSessionActivityResponse struct {
	// The list of data points.
	Data                 []SessionActivityDatapoint `json:"data"`
	AdditionalProperties map[string]interface{}
}

GetSessionActivityResponse Response of the getSessionActivity endpoint

func NewGetSessionActivityResponse ¶

func NewGetSessionActivityResponse(data []SessionActivityDatapoint) *GetSessionActivityResponse

NewGetSessionActivityResponse instantiates a new GetSessionActivityResponse 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 NewGetSessionActivityResponseWithDefaults ¶

func NewGetSessionActivityResponseWithDefaults() *GetSessionActivityResponse

NewGetSessionActivityResponseWithDefaults instantiates a new GetSessionActivityResponse 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 (*GetSessionActivityResponse) GetData ¶

GetData returns the Data field value

func (*GetSessionActivityResponse) GetDataOk ¶

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (GetSessionActivityResponse) MarshalJSON ¶

func (o GetSessionActivityResponse) MarshalJSON() ([]byte, error)

func (*GetSessionActivityResponse) SetData ¶

SetData sets field value

func (GetSessionActivityResponse) ToMap ¶

func (o GetSessionActivityResponse) ToMap() (map[string]interface{}, error)

func (*GetSessionActivityResponse) UnmarshalJSON ¶

func (o *GetSessionActivityResponse) UnmarshalJSON(bytes []byte) (err error)

type GetVersion200Response ¶

type GetVersion200Response struct {
	// The version of Ory Kratos.
	Version              string `json:"version"`
	AdditionalProperties map[string]interface{}
}

GetVersion200Response struct for GetVersion200Response

func NewGetVersion200Response ¶

func NewGetVersion200Response(version string) *GetVersion200Response

NewGetVersion200Response instantiates a new GetVersion200Response 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 NewGetVersion200ResponseWithDefaults ¶

func NewGetVersion200ResponseWithDefaults() *GetVersion200Response

NewGetVersion200ResponseWithDefaults instantiates a new GetVersion200Response 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 (*GetVersion200Response) GetVersion ¶

func (o *GetVersion200Response) GetVersion() string

GetVersion returns the Version field value

func (*GetVersion200Response) GetVersionOk ¶

func (o *GetVersion200Response) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set.

func (GetVersion200Response) MarshalJSON ¶

func (o GetVersion200Response) MarshalJSON() ([]byte, error)

func (*GetVersion200Response) SetVersion ¶

func (o *GetVersion200Response) SetVersion(v string)

SetVersion sets field value

func (GetVersion200Response) ToMap ¶

func (o GetVersion200Response) ToMap() (map[string]interface{}, error)

func (*GetVersion200Response) UnmarshalJSON ¶

func (o *GetVersion200Response) UnmarshalJSON(bytes []byte) (err error)

type HealthNotReadyStatus ¶

type HealthNotReadyStatus struct {
	// Errors contains a list of errors that caused the not ready status.
	Errors               *map[string]string `json:"errors,omitempty"`
	AdditionalProperties map[string]interface{}
}

HealthNotReadyStatus struct for HealthNotReadyStatus

func NewHealthNotReadyStatus ¶

func NewHealthNotReadyStatus() *HealthNotReadyStatus

NewHealthNotReadyStatus instantiates a new HealthNotReadyStatus 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 NewHealthNotReadyStatusWithDefaults ¶

func NewHealthNotReadyStatusWithDefaults() *HealthNotReadyStatus

NewHealthNotReadyStatusWithDefaults instantiates a new HealthNotReadyStatus 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 (*HealthNotReadyStatus) GetErrors ¶

func (o *HealthNotReadyStatus) GetErrors() map[string]string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*HealthNotReadyStatus) GetErrorsOk ¶

func (o *HealthNotReadyStatus) GetErrorsOk() (*map[string]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HealthNotReadyStatus) HasErrors ¶

func (o *HealthNotReadyStatus) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (HealthNotReadyStatus) MarshalJSON ¶

func (o HealthNotReadyStatus) MarshalJSON() ([]byte, error)

func (*HealthNotReadyStatus) SetErrors ¶

func (o *HealthNotReadyStatus) SetErrors(v map[string]string)

SetErrors gets a reference to the given map[string]string and assigns it to the Errors field.

func (HealthNotReadyStatus) ToMap ¶

func (o HealthNotReadyStatus) ToMap() (map[string]interface{}, error)

func (*HealthNotReadyStatus) UnmarshalJSON ¶

func (o *HealthNotReadyStatus) UnmarshalJSON(bytes []byte) (err error)

type HealthStatus ¶

type HealthStatus struct {
	// Status always contains \"ok\".
	Status               *string `json:"status,omitempty"`
	AdditionalProperties map[string]interface{}
}

HealthStatus struct for HealthStatus

func NewHealthStatus ¶

func NewHealthStatus() *HealthStatus

NewHealthStatus instantiates a new HealthStatus 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 NewHealthStatusWithDefaults ¶

func NewHealthStatusWithDefaults() *HealthStatus

NewHealthStatusWithDefaults instantiates a new HealthStatus 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 (*HealthStatus) GetStatus ¶

func (o *HealthStatus) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*HealthStatus) GetStatusOk ¶

func (o *HealthStatus) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HealthStatus) HasStatus ¶

func (o *HealthStatus) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (HealthStatus) MarshalJSON ¶

func (o HealthStatus) MarshalJSON() ([]byte, error)

func (*HealthStatus) SetStatus ¶

func (o *HealthStatus) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (HealthStatus) ToMap ¶

func (o HealthStatus) ToMap() (map[string]interface{}, error)

func (*HealthStatus) UnmarshalJSON ¶

func (o *HealthStatus) UnmarshalJSON(bytes []byte) (err error)

type Identity ¶

type Identity struct {
	// CreatedAt is a helper struct field for gobuffalo.pop.
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// Credentials represents all credentials that can be used for authenticating this identity.
	Credentials *map[string]IdentityCredentials `json:"credentials,omitempty"`
	// ID is the identity's unique identifier.  The Identity ID can not be changed and can not be chosen. This ensures future compatibility and optimization for distributed stores such as CockroachDB.
	Id string `json:"id"`
	// NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-
	MetadataAdmin map[string]interface{} `json:"metadata_admin,omitempty"`
	// NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-
	MetadataPublic map[string]interface{} `json:"metadata_public,omitempty"`
	OrganizationId NullableString         `json:"organization_id,omitempty"`
	// RecoveryAddresses contains all the addresses that can be used to recover an identity.
	RecoveryAddresses []RecoveryIdentityAddress `json:"recovery_addresses,omitempty"`
	// SchemaID is the ID of the JSON Schema to be used for validating the identity's traits.
	SchemaId string `json:"schema_id"`
	// SchemaURL is the URL of the endpoint where the identity's traits schema can be fetched from.  format: url
	SchemaUrl      string         `json:"schema_url"`
	State          *IdentityState `json:"state,omitempty"`
	StateChangedAt *time.Time     `json:"state_changed_at,omitempty"`
	// Traits represent an identity's traits. The identity is able to create, modify, and delete traits in a self-service manner. The input will always be validated against the JSON Schema defined in `schema_url`.
	Traits interface{} `json:"traits"`
	// UpdatedAt is a helper struct field for gobuffalo.pop.
	UpdatedAt *time.Time `json:"updated_at,omitempty"`
	// VerifiableAddresses contains all the addresses that can be verified by the user.
	VerifiableAddresses  []VerifiableIdentityAddress `json:"verifiable_addresses,omitempty"`
	AdditionalProperties map[string]interface{}
}

Identity An [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) represents a (human) user in Ory.

func NewIdentity ¶

func NewIdentity(id string, schemaId string, schemaUrl string, traits interface{}) *Identity

NewIdentity instantiates a new Identity 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 NewIdentityWithDefaults ¶

func NewIdentityWithDefaults() *Identity

NewIdentityWithDefaults instantiates a new Identity 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 (*Identity) GetCreatedAt ¶

func (o *Identity) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Identity) GetCreatedAtOk ¶

func (o *Identity) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Identity) GetCredentials ¶

func (o *Identity) GetCredentials() map[string]IdentityCredentials

GetCredentials returns the Credentials field value if set, zero value otherwise.

func (*Identity) GetCredentialsOk ¶

func (o *Identity) GetCredentialsOk() (*map[string]IdentityCredentials, bool)

GetCredentialsOk returns a tuple with the Credentials field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Identity) GetId ¶

func (o *Identity) GetId() string

GetId returns the Id field value

func (*Identity) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Identity) GetMetadataAdmin ¶

func (o *Identity) GetMetadataAdmin() map[string]interface{}

GetMetadataAdmin returns the MetadataAdmin field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetMetadataAdminOk ¶

func (o *Identity) GetMetadataAdminOk() (map[string]interface{}, bool)

GetMetadataAdminOk returns a tuple with the MetadataAdmin field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetMetadataPublic ¶

func (o *Identity) GetMetadataPublic() map[string]interface{}

GetMetadataPublic returns the MetadataPublic field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetMetadataPublicOk ¶

func (o *Identity) GetMetadataPublicOk() (map[string]interface{}, bool)

GetMetadataPublicOk returns a tuple with the MetadataPublic field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetOrganizationId ¶

func (o *Identity) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Identity) GetOrganizationIdOk ¶

func (o *Identity) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetRecoveryAddresses ¶

func (o *Identity) GetRecoveryAddresses() []RecoveryIdentityAddress

GetRecoveryAddresses returns the RecoveryAddresses field value if set, zero value otherwise.

func (*Identity) GetRecoveryAddressesOk ¶

func (o *Identity) GetRecoveryAddressesOk() ([]RecoveryIdentityAddress, bool)

GetRecoveryAddressesOk returns a tuple with the RecoveryAddresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Identity) GetSchemaId ¶

func (o *Identity) GetSchemaId() string

GetSchemaId returns the SchemaId field value

func (*Identity) GetSchemaIdOk ¶

func (o *Identity) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value and a boolean to check if the value has been set.

func (*Identity) GetSchemaUrl ¶

func (o *Identity) GetSchemaUrl() string

GetSchemaUrl returns the SchemaUrl field value

func (*Identity) GetSchemaUrlOk ¶

func (o *Identity) GetSchemaUrlOk() (*string, bool)

GetSchemaUrlOk returns a tuple with the SchemaUrl field value and a boolean to check if the value has been set.

func (*Identity) GetState ¶

func (o *Identity) GetState() IdentityState

GetState returns the State field value if set, zero value otherwise.

func (*Identity) GetStateChangedAt ¶

func (o *Identity) GetStateChangedAt() time.Time

GetStateChangedAt returns the StateChangedAt field value if set, zero value otherwise.

func (*Identity) GetStateChangedAtOk ¶

func (o *Identity) GetStateChangedAtOk() (*time.Time, bool)

GetStateChangedAtOk returns a tuple with the StateChangedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Identity) GetStateOk ¶

func (o *Identity) GetStateOk() (*IdentityState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Identity) GetTraits ¶

func (o *Identity) GetTraits() interface{}

GetTraits returns the Traits field value If the value is explicit nil, the zero value for interface{} will be returned

func (*Identity) GetTraitsOk ¶

func (o *Identity) GetTraitsOk() (*interface{}, bool)

GetTraitsOk returns a tuple with the Traits field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Identity) GetUpdatedAt ¶

func (o *Identity) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Identity) GetUpdatedAtOk ¶

func (o *Identity) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Identity) GetVerifiableAddresses ¶

func (o *Identity) GetVerifiableAddresses() []VerifiableIdentityAddress

GetVerifiableAddresses returns the VerifiableAddresses field value if set, zero value otherwise.

func (*Identity) GetVerifiableAddressesOk ¶

func (o *Identity) GetVerifiableAddressesOk() ([]VerifiableIdentityAddress, bool)

GetVerifiableAddressesOk returns a tuple with the VerifiableAddresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Identity) HasCreatedAt ¶

func (o *Identity) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Identity) HasCredentials ¶

func (o *Identity) HasCredentials() bool

HasCredentials returns a boolean if a field has been set.

func (*Identity) HasMetadataAdmin ¶

func (o *Identity) HasMetadataAdmin() bool

HasMetadataAdmin returns a boolean if a field has been set.

func (*Identity) HasMetadataPublic ¶

func (o *Identity) HasMetadataPublic() bool

HasMetadataPublic returns a boolean if a field has been set.

func (*Identity) HasOrganizationId ¶

func (o *Identity) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*Identity) HasRecoveryAddresses ¶

func (o *Identity) HasRecoveryAddresses() bool

HasRecoveryAddresses returns a boolean if a field has been set.

func (*Identity) HasState ¶

func (o *Identity) HasState() bool

HasState returns a boolean if a field has been set.

func (*Identity) HasStateChangedAt ¶

func (o *Identity) HasStateChangedAt() bool

HasStateChangedAt returns a boolean if a field has been set.

func (*Identity) HasUpdatedAt ¶

func (o *Identity) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Identity) HasVerifiableAddresses ¶

func (o *Identity) HasVerifiableAddresses() bool

HasVerifiableAddresses returns a boolean if a field has been set.

func (Identity) MarshalJSON ¶

func (o Identity) MarshalJSON() ([]byte, error)

func (*Identity) SetCreatedAt ¶

func (o *Identity) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Identity) SetCredentials ¶

func (o *Identity) SetCredentials(v map[string]IdentityCredentials)

SetCredentials gets a reference to the given map[string]IdentityCredentials and assigns it to the Credentials field.

func (*Identity) SetId ¶

func (o *Identity) SetId(v string)

SetId sets field value

func (*Identity) SetMetadataAdmin ¶

func (o *Identity) SetMetadataAdmin(v map[string]interface{})

SetMetadataAdmin gets a reference to the given map[string]interface{} and assigns it to the MetadataAdmin field.

func (*Identity) SetMetadataPublic ¶

func (o *Identity) SetMetadataPublic(v map[string]interface{})

SetMetadataPublic gets a reference to the given map[string]interface{} and assigns it to the MetadataPublic field.

func (*Identity) SetOrganizationId ¶

func (o *Identity) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given NullableString and assigns it to the OrganizationId field.

func (*Identity) SetOrganizationIdNil ¶

func (o *Identity) SetOrganizationIdNil()

SetOrganizationIdNil sets the value for OrganizationId to be an explicit nil

func (*Identity) SetRecoveryAddresses ¶

func (o *Identity) SetRecoveryAddresses(v []RecoveryIdentityAddress)

SetRecoveryAddresses gets a reference to the given []RecoveryIdentityAddress and assigns it to the RecoveryAddresses field.

func (*Identity) SetSchemaId ¶

func (o *Identity) SetSchemaId(v string)

SetSchemaId sets field value

func (*Identity) SetSchemaUrl ¶

func (o *Identity) SetSchemaUrl(v string)

SetSchemaUrl sets field value

func (*Identity) SetState ¶

func (o *Identity) SetState(v IdentityState)

SetState gets a reference to the given IdentityState and assigns it to the State field.

func (*Identity) SetStateChangedAt ¶

func (o *Identity) SetStateChangedAt(v time.Time)

SetStateChangedAt gets a reference to the given time.Time and assigns it to the StateChangedAt field.

func (*Identity) SetTraits ¶

func (o *Identity) SetTraits(v interface{})

SetTraits sets field value

func (*Identity) SetUpdatedAt ¶

func (o *Identity) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*Identity) SetVerifiableAddresses ¶

func (o *Identity) SetVerifiableAddresses(v []VerifiableIdentityAddress)

SetVerifiableAddresses gets a reference to the given []VerifiableIdentityAddress and assigns it to the VerifiableAddresses field.

func (Identity) ToMap ¶

func (o Identity) ToMap() (map[string]interface{}, error)

func (*Identity) UnmarshalJSON ¶

func (o *Identity) UnmarshalJSON(bytes []byte) (err error)

func (*Identity) UnsetOrganizationId ¶

func (o *Identity) UnsetOrganizationId()

UnsetOrganizationId ensures that no value is present for OrganizationId, not even an explicit nil

type IdentityAPI ¶

type IdentityAPI interface {

	/*
		BatchPatchIdentities Create and deletes multiple identities

		Creates or delete multiple
	[identities](https://www.ory.sh/docs/kratos/concepts/identity-user-model).
	This endpoint can also be used to [import
	credentials](https://www.ory.sh/docs/kratos/manage-identities/import-user-accounts-identities)
	for instance passwords, social sign in configurations or multifactor methods.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return IdentityAPIBatchPatchIdentitiesRequest
	*/
	BatchPatchIdentities(ctx context.Context) IdentityAPIBatchPatchIdentitiesRequest

	// BatchPatchIdentitiesExecute executes the request
	//  @return BatchPatchIdentitiesResponse
	BatchPatchIdentitiesExecute(r IdentityAPIBatchPatchIdentitiesRequest) (*BatchPatchIdentitiesResponse, *http.Response, error)

	/*
		CreateIdentity Create an Identity

		Create an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model).  This endpoint can also be used to
	[import credentials](https://www.ory.sh/docs/kratos/manage-identities/import-user-accounts-identities)
	for instance passwords, social sign in configurations or multifactor methods.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return IdentityAPICreateIdentityRequest
	*/
	CreateIdentity(ctx context.Context) IdentityAPICreateIdentityRequest

	// CreateIdentityExecute executes the request
	//  @return Identity
	CreateIdentityExecute(r IdentityAPICreateIdentityRequest) (*Identity, *http.Response, error)

	/*
		CreateRecoveryCodeForIdentity Create a Recovery Code

		This endpoint creates a recovery code which should be given to the user in order for them to recover
	(or activate) their account.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return IdentityAPICreateRecoveryCodeForIdentityRequest
	*/
	CreateRecoveryCodeForIdentity(ctx context.Context) IdentityAPICreateRecoveryCodeForIdentityRequest

	// CreateRecoveryCodeForIdentityExecute executes the request
	//  @return RecoveryCodeForIdentity
	CreateRecoveryCodeForIdentityExecute(r IdentityAPICreateRecoveryCodeForIdentityRequest) (*RecoveryCodeForIdentity, *http.Response, error)

	/*
		CreateRecoveryLinkForIdentity Create a Recovery Link

		This endpoint creates a recovery link which should be given to the user in order for them to recover
	(or activate) their account.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return IdentityAPICreateRecoveryLinkForIdentityRequest
	*/
	CreateRecoveryLinkForIdentity(ctx context.Context) IdentityAPICreateRecoveryLinkForIdentityRequest

	// CreateRecoveryLinkForIdentityExecute executes the request
	//  @return RecoveryLinkForIdentity
	CreateRecoveryLinkForIdentityExecute(r IdentityAPICreateRecoveryLinkForIdentityRequest) (*RecoveryLinkForIdentity, *http.Response, error)

	/*
		DeleteIdentity Delete an Identity

		Calling this endpoint irrecoverably and permanently deletes the [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) given its ID. This action can not be undone.
	This endpoint returns 204 when the identity was deleted or when the identity was not found, in which case it is
	assumed that is has been deleted already.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id ID is the identity's ID.
		@return IdentityAPIDeleteIdentityRequest
	*/
	DeleteIdentity(ctx context.Context, id string) IdentityAPIDeleteIdentityRequest

	// DeleteIdentityExecute executes the request
	DeleteIdentityExecute(r IdentityAPIDeleteIdentityRequest) (*http.Response, error)

	/*
		DeleteIdentityCredentials Delete a credential for a specific identity

		Delete an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) credential by its type
	You can only delete second factor (aal2) credentials.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id ID is the identity's ID.
		@param type_ Type is the credential's Type. One of totp, webauthn, lookup
		@return IdentityAPIDeleteIdentityCredentialsRequest
	*/
	DeleteIdentityCredentials(ctx context.Context, id string, type_ string) IdentityAPIDeleteIdentityCredentialsRequest

	// DeleteIdentityCredentialsExecute executes the request
	DeleteIdentityCredentialsExecute(r IdentityAPIDeleteIdentityCredentialsRequest) (*http.Response, error)

	/*
		DeleteIdentitySessions Delete & Invalidate an Identity's Sessions

		Calling this endpoint irrecoverably and permanently deletes and invalidates all sessions that belong to the given Identity.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id ID is the identity's ID.
		@return IdentityAPIDeleteIdentitySessionsRequest
	*/
	DeleteIdentitySessions(ctx context.Context, id string) IdentityAPIDeleteIdentitySessionsRequest

	// DeleteIdentitySessionsExecute executes the request
	DeleteIdentitySessionsExecute(r IdentityAPIDeleteIdentitySessionsRequest) (*http.Response, error)

	/*
		DisableSession Deactivate a Session

		Calling this endpoint deactivates the specified session. Session data is not deleted.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id ID is the session's ID.
		@return IdentityAPIDisableSessionRequest
	*/
	DisableSession(ctx context.Context, id string) IdentityAPIDisableSessionRequest

	// DisableSessionExecute executes the request
	DisableSessionExecute(r IdentityAPIDisableSessionRequest) (*http.Response, error)

	/*
		ExtendSession Extend a Session

		Calling this endpoint extends the given session ID. If `session.earliest_possible_extend` is set it
	will only extend the session after the specified time has passed.

	Retrieve the session ID from the `/sessions/whoami` endpoint / `toSession` SDK method.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id ID is the session's ID.
		@return IdentityAPIExtendSessionRequest
	*/
	ExtendSession(ctx context.Context, id string) IdentityAPIExtendSessionRequest

	// ExtendSessionExecute executes the request
	//  @return Session
	ExtendSessionExecute(r IdentityAPIExtendSessionRequest) (*Session, *http.Response, error)

	/*
		GetIdentity Get an Identity

		Return an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) by its ID. You can optionally
	include credentials (e.g. social sign in connections) in the response by using the `include_credential` query parameter.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id ID must be set to the ID of identity you want to get
		@return IdentityAPIGetIdentityRequest
	*/
	GetIdentity(ctx context.Context, id string) IdentityAPIGetIdentityRequest

	// GetIdentityExecute executes the request
	//  @return Identity
	GetIdentityExecute(r IdentityAPIGetIdentityRequest) (*Identity, *http.Response, error)

	/*
		GetIdentitySchema Get Identity JSON Schema

		Return a specific identity schema.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id ID must be set to the ID of schema you want to get
		@return IdentityAPIGetIdentitySchemaRequest
	*/
	GetIdentitySchema(ctx context.Context, id string) IdentityAPIGetIdentitySchemaRequest

	// GetIdentitySchemaExecute executes the request
	//  @return map[string]interface{}
	GetIdentitySchemaExecute(r IdentityAPIGetIdentitySchemaRequest) (map[string]interface{}, *http.Response, error)

	/*
		GetSession Get Session

		This endpoint is useful for:

	Getting a session object with all specified expandables that exist in an administrative context.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id ID is the session's ID.
		@return IdentityAPIGetSessionRequest
	*/
	GetSession(ctx context.Context, id string) IdentityAPIGetSessionRequest

	// GetSessionExecute executes the request
	//  @return Session
	GetSessionExecute(r IdentityAPIGetSessionRequest) (*Session, *http.Response, error)

	/*
		ListIdentities List Identities

		Lists all [identities](https://www.ory.sh/docs/kratos/concepts/identity-user-model) in the system.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return IdentityAPIListIdentitiesRequest
	*/
	ListIdentities(ctx context.Context) IdentityAPIListIdentitiesRequest

	// ListIdentitiesExecute executes the request
	//  @return []Identity
	ListIdentitiesExecute(r IdentityAPIListIdentitiesRequest) ([]Identity, *http.Response, error)

	/*
		ListIdentitySchemas Get all Identity Schemas

		Returns a list of all identity schemas currently in use.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return IdentityAPIListIdentitySchemasRequest
	*/
	ListIdentitySchemas(ctx context.Context) IdentityAPIListIdentitySchemasRequest

	// ListIdentitySchemasExecute executes the request
	//  @return []IdentitySchemaContainer
	ListIdentitySchemasExecute(r IdentityAPIListIdentitySchemasRequest) ([]IdentitySchemaContainer, *http.Response, error)

	/*
		ListIdentitySessions List an Identity's Sessions

		This endpoint returns all sessions that belong to the given Identity.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id ID is the identity's ID.
		@return IdentityAPIListIdentitySessionsRequest
	*/
	ListIdentitySessions(ctx context.Context, id string) IdentityAPIListIdentitySessionsRequest

	// ListIdentitySessionsExecute executes the request
	//  @return []Session
	ListIdentitySessionsExecute(r IdentityAPIListIdentitySessionsRequest) ([]Session, *http.Response, error)

	/*
		ListSessions List All Sessions

		Listing all sessions that exist.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return IdentityAPIListSessionsRequest
	*/
	ListSessions(ctx context.Context) IdentityAPIListSessionsRequest

	// ListSessionsExecute executes the request
	//  @return []Session
	ListSessionsExecute(r IdentityAPIListSessionsRequest) ([]Session, *http.Response, error)

	/*
		PatchIdentity Patch an Identity

		Partially updates an [identity's](https://www.ory.sh/docs/kratos/concepts/identity-user-model) field using [JSON Patch](https://jsonpatch.com/).
	The fields `id`, `stateChangedAt` and `credentials` can not be updated using this method.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id ID must be set to the ID of identity you want to update
		@return IdentityAPIPatchIdentityRequest
	*/
	PatchIdentity(ctx context.Context, id string) IdentityAPIPatchIdentityRequest

	// PatchIdentityExecute executes the request
	//  @return Identity
	PatchIdentityExecute(r IdentityAPIPatchIdentityRequest) (*Identity, *http.Response, error)

	/*
		UpdateIdentity Update an Identity

		This endpoint updates an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model). The full identity
	payload (except credentials) is expected. It is possible to update the identity's credentials as well.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id ID must be set to the ID of identity you want to update
		@return IdentityAPIUpdateIdentityRequest
	*/
	UpdateIdentity(ctx context.Context, id string) IdentityAPIUpdateIdentityRequest

	// UpdateIdentityExecute executes the request
	//  @return Identity
	UpdateIdentityExecute(r IdentityAPIUpdateIdentityRequest) (*Identity, *http.Response, error)
}

type IdentityAPIBatchPatchIdentitiesRequest ¶

type IdentityAPIBatchPatchIdentitiesRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIBatchPatchIdentitiesRequest) Execute ¶

func (IdentityAPIBatchPatchIdentitiesRequest) PatchIdentitiesBody ¶

type IdentityAPICreateIdentityRequest ¶

type IdentityAPICreateIdentityRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPICreateIdentityRequest) CreateIdentityBody ¶

func (IdentityAPICreateIdentityRequest) Execute ¶

type IdentityAPICreateRecoveryCodeForIdentityRequest ¶

type IdentityAPICreateRecoveryCodeForIdentityRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPICreateRecoveryCodeForIdentityRequest) CreateRecoveryCodeForIdentityBody ¶

func (IdentityAPICreateRecoveryCodeForIdentityRequest) Execute ¶

type IdentityAPICreateRecoveryLinkForIdentityRequest ¶

type IdentityAPICreateRecoveryLinkForIdentityRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPICreateRecoveryLinkForIdentityRequest) CreateRecoveryLinkForIdentityBody ¶

func (IdentityAPICreateRecoveryLinkForIdentityRequest) Execute ¶

type IdentityAPIDeleteIdentityCredentialsRequest ¶

type IdentityAPIDeleteIdentityCredentialsRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIDeleteIdentityCredentialsRequest) Execute ¶

type IdentityAPIDeleteIdentityRequest ¶

type IdentityAPIDeleteIdentityRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIDeleteIdentityRequest) Execute ¶

type IdentityAPIDeleteIdentitySessionsRequest ¶

type IdentityAPIDeleteIdentitySessionsRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIDeleteIdentitySessionsRequest) Execute ¶

type IdentityAPIDisableSessionRequest ¶

type IdentityAPIDisableSessionRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIDisableSessionRequest) Execute ¶

type IdentityAPIExtendSessionRequest ¶

type IdentityAPIExtendSessionRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIExtendSessionRequest) Execute ¶

type IdentityAPIGetIdentityRequest ¶

type IdentityAPIGetIdentityRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIGetIdentityRequest) Execute ¶

func (IdentityAPIGetIdentityRequest) IncludeCredential ¶

func (r IdentityAPIGetIdentityRequest) IncludeCredential(includeCredential []string) IdentityAPIGetIdentityRequest

Include Credentials in Response Include any credential, for example &#x60;password&#x60; or &#x60;oidc&#x60;, in the response. When set to &#x60;oidc&#x60;, This will return the initial OAuth 2.0 Access Token, OAuth 2.0 Refresh Token and the OpenID Connect ID Token if available.

type IdentityAPIGetIdentitySchemaRequest ¶

type IdentityAPIGetIdentitySchemaRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIGetIdentitySchemaRequest) Execute ¶

func (r IdentityAPIGetIdentitySchemaRequest) Execute() (map[string]interface{}, *http.Response, error)

type IdentityAPIGetSessionRequest ¶

type IdentityAPIGetSessionRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIGetSessionRequest) Execute ¶

func (IdentityAPIGetSessionRequest) Expand ¶

ExpandOptions is a query parameter encoded list of all properties that must be expanded in the Session. Example - ?expand&#x3D;Identity&amp;expand&#x3D;Devices If no value is provided, the expandable properties are skipped.

type IdentityAPIListIdentitiesRequest ¶

type IdentityAPIListIdentitiesRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIListIdentitiesRequest) Consistency ¶

Read Consistency Level (preview) The read consistency level determines the consistency guarantee for reads: strong (slow): The read is guaranteed to return the most recent data committed at the start of the read. eventual (very fast): The result will return data that is about 4.8 seconds old. The default consistency guarantee can be changed in the Ory Network Console or using the Ory CLI with &#x60;ory patch project --replace &#39;/previews/default_read_consistency_level&#x3D;\&quot;strong\&quot;&#39;&#x60;. Setting the default consistency level to &#x60;eventual&#x60; may cause regressions in the future as we add consistency controls to more APIs. Currently, the following APIs will be affected by this setting: &#x60;GET /admin/identities&#x60; This feature is in preview and only available in Ory Network. ConsistencyLevelUnset ConsistencyLevelUnset is the unset / default consistency level. strong ConsistencyLevelStrong ConsistencyLevelStrong is the strong consistency level. eventual ConsistencyLevelEventual ConsistencyLevelEventual is the eventual consistency level using follower read timestamps.

func (IdentityAPIListIdentitiesRequest) CredentialsIdentifier ¶

func (r IdentityAPIListIdentitiesRequest) CredentialsIdentifier(credentialsIdentifier string) IdentityAPIListIdentitiesRequest

CredentialsIdentifier is the identifier (username, email) of the credentials to look up using exact match. Only one of CredentialsIdentifier and CredentialsIdentifierSimilar can be used.

func (IdentityAPIListIdentitiesRequest) Execute ¶

func (IdentityAPIListIdentitiesRequest) IdsFilter ¶

IdsFilter is list of ids used to filter identities. If this list is empty, then no filter will be applied.

func (IdentityAPIListIdentitiesRequest) Page ¶

Deprecated Pagination Page DEPRECATED: Please use &#x60;page_token&#x60; instead. This parameter will be removed in the future. This value is currently an integer, but it is not sequential. The value is not the page number, but a reference. The next page can be any number and some numbers might return an empty list. For example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist. The first page can be retrieved by omitting this parameter. Following page pointers will be returned in the &#x60;Link&#x60; header.

func (IdentityAPIListIdentitiesRequest) PageSize ¶

Page Size This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func (IdentityAPIListIdentitiesRequest) PageToken ¶

Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func (IdentityAPIListIdentitiesRequest) PerPage ¶

Deprecated Items per Page DEPRECATED: Please use &#x60;page_token&#x60; instead. This parameter will be removed in the future. This is the number of items per page.

func (IdentityAPIListIdentitiesRequest) PreviewCredentialsIdentifierSimilar ¶

func (r IdentityAPIListIdentitiesRequest) PreviewCredentialsIdentifierSimilar(previewCredentialsIdentifierSimilar string) IdentityAPIListIdentitiesRequest

This is an EXPERIMENTAL parameter that WILL CHANGE. Do NOT rely on consistent, deterministic behavior. THIS PARAMETER WILL BE REMOVED IN AN UPCOMING RELEASE WITHOUT ANY MIGRATION PATH. CredentialsIdentifierSimilar is the (partial) identifier (username, email) of the credentials to look up using similarity search. Only one of CredentialsIdentifier and CredentialsIdentifierSimilar can be used.

type IdentityAPIListIdentitySchemasRequest ¶

type IdentityAPIListIdentitySchemasRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIListIdentitySchemasRequest) Execute ¶

func (IdentityAPIListIdentitySchemasRequest) Page ¶

Deprecated Pagination Page DEPRECATED: Please use &#x60;page_token&#x60; instead. This parameter will be removed in the future. This value is currently an integer, but it is not sequential. The value is not the page number, but a reference. The next page can be any number and some numbers might return an empty list. For example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist. The first page can be retrieved by omitting this parameter. Following page pointers will be returned in the &#x60;Link&#x60; header.

func (IdentityAPIListIdentitySchemasRequest) PageSize ¶

Page Size This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func (IdentityAPIListIdentitySchemasRequest) PageToken ¶

Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func (IdentityAPIListIdentitySchemasRequest) PerPage ¶

Deprecated Items per Page DEPRECATED: Please use &#x60;page_token&#x60; instead. This parameter will be removed in the future. This is the number of items per page.

type IdentityAPIListIdentitySessionsRequest ¶

type IdentityAPIListIdentitySessionsRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIListIdentitySessionsRequest) Active ¶

Active is a boolean flag that filters out sessions based on the state. If no value is provided, all sessions are returned.

func (IdentityAPIListIdentitySessionsRequest) Execute ¶

func (IdentityAPIListIdentitySessionsRequest) Page ¶

Deprecated Pagination Page DEPRECATED: Please use &#x60;page_token&#x60; instead. This parameter will be removed in the future. This value is currently an integer, but it is not sequential. The value is not the page number, but a reference. The next page can be any number and some numbers might return an empty list. For example, page 2 might not follow after page 1. And even if page 3 and 5 exist, but page 4 might not exist. The first page can be retrieved by omitting this parameter. Following page pointers will be returned in the &#x60;Link&#x60; header.

func (IdentityAPIListIdentitySessionsRequest) PageSize ¶

Page Size This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func (IdentityAPIListIdentitySessionsRequest) PageToken ¶

Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func (IdentityAPIListIdentitySessionsRequest) PerPage ¶

Deprecated Items per Page DEPRECATED: Please use &#x60;page_token&#x60; instead. This parameter will be removed in the future. This is the number of items per page.

type IdentityAPIListSessionsRequest ¶

type IdentityAPIListSessionsRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIListSessionsRequest) Active ¶

Active is a boolean flag that filters out sessions based on the state. If no value is provided, all sessions are returned.

func (IdentityAPIListSessionsRequest) Execute ¶

func (IdentityAPIListSessionsRequest) Expand ¶

ExpandOptions is a query parameter encoded list of all properties that must be expanded in the Session. If no value is provided, the expandable properties are skipped.

func (IdentityAPIListSessionsRequest) PageSize ¶

Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func (IdentityAPIListSessionsRequest) PageToken ¶

Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

type IdentityAPIPatchIdentityRequest ¶

type IdentityAPIPatchIdentityRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIPatchIdentityRequest) Execute ¶

func (IdentityAPIPatchIdentityRequest) JsonPatch ¶

type IdentityAPIService ¶

type IdentityAPIService service

IdentityAPIService IdentityAPI service

func (*IdentityAPIService) BatchPatchIdentities ¶

BatchPatchIdentities Create and deletes multiple identities

Creates or delete multiple [identities](https://www.ory.sh/docs/kratos/concepts/identity-user-model). This endpoint can also be used to [import credentials](https://www.ory.sh/docs/kratos/manage-identities/import-user-accounts-identities) for instance passwords, social sign in configurations or multifactor methods.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return IdentityAPIBatchPatchIdentitiesRequest

func (*IdentityAPIService) BatchPatchIdentitiesExecute ¶

Execute executes the request

@return BatchPatchIdentitiesResponse

func (*IdentityAPIService) CreateIdentity ¶

CreateIdentity Create an Identity

Create an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model). This endpoint can also be used to [import credentials](https://www.ory.sh/docs/kratos/manage-identities/import-user-accounts-identities) for instance passwords, social sign in configurations or multifactor methods.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return IdentityAPICreateIdentityRequest

func (*IdentityAPIService) CreateIdentityExecute ¶

Execute executes the request

@return Identity

func (*IdentityAPIService) CreateRecoveryCodeForIdentity ¶

CreateRecoveryCodeForIdentity Create a Recovery Code

This endpoint creates a recovery code which should be given to the user in order for them to recover (or activate) their account.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return IdentityAPICreateRecoveryCodeForIdentityRequest

func (*IdentityAPIService) CreateRecoveryCodeForIdentityExecute ¶

Execute executes the request

@return RecoveryCodeForIdentity

func (*IdentityAPIService) CreateRecoveryLinkForIdentity ¶

CreateRecoveryLinkForIdentity Create a Recovery Link

This endpoint creates a recovery link which should be given to the user in order for them to recover (or activate) their account.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return IdentityAPICreateRecoveryLinkForIdentityRequest

func (*IdentityAPIService) CreateRecoveryLinkForIdentityExecute ¶

Execute executes the request

@return RecoveryLinkForIdentity

func (*IdentityAPIService) DeleteIdentity ¶

DeleteIdentity Delete an Identity

Calling this endpoint irrecoverably and permanently deletes the [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) given its ID. This action can not be undone. This endpoint returns 204 when the identity was deleted or when the identity was not found, in which case it is assumed that is has been deleted already.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID is the identity's ID.
@return IdentityAPIDeleteIdentityRequest

func (*IdentityAPIService) DeleteIdentityCredentials ¶

func (a *IdentityAPIService) DeleteIdentityCredentials(ctx context.Context, id string, type_ string) IdentityAPIDeleteIdentityCredentialsRequest

DeleteIdentityCredentials Delete a credential for a specific identity

Delete an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) credential by its type You can only delete second factor (aal2) credentials.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID is the identity's ID.
@param type_ Type is the credential's Type. One of totp, webauthn, lookup
@return IdentityAPIDeleteIdentityCredentialsRequest

func (*IdentityAPIService) DeleteIdentityCredentialsExecute ¶

func (a *IdentityAPIService) DeleteIdentityCredentialsExecute(r IdentityAPIDeleteIdentityCredentialsRequest) (*http.Response, error)

Execute executes the request

func (*IdentityAPIService) DeleteIdentityExecute ¶

func (a *IdentityAPIService) DeleteIdentityExecute(r IdentityAPIDeleteIdentityRequest) (*http.Response, error)

Execute executes the request

func (*IdentityAPIService) DeleteIdentitySessions ¶

DeleteIdentitySessions Delete & Invalidate an Identity's Sessions

Calling this endpoint irrecoverably and permanently deletes and invalidates all sessions that belong to the given Identity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID is the identity's ID.
@return IdentityAPIDeleteIdentitySessionsRequest

func (*IdentityAPIService) DeleteIdentitySessionsExecute ¶

func (a *IdentityAPIService) DeleteIdentitySessionsExecute(r IdentityAPIDeleteIdentitySessionsRequest) (*http.Response, error)

Execute executes the request

func (*IdentityAPIService) DisableSession ¶

DisableSession Deactivate a Session

Calling this endpoint deactivates the specified session. Session data is not deleted.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID is the session's ID.
@return IdentityAPIDisableSessionRequest

func (*IdentityAPIService) DisableSessionExecute ¶

func (a *IdentityAPIService) DisableSessionExecute(r IdentityAPIDisableSessionRequest) (*http.Response, error)

Execute executes the request

func (*IdentityAPIService) ExtendSession ¶

ExtendSession Extend a Session

Calling this endpoint extends the given session ID. If `session.earliest_possible_extend` is set it will only extend the session after the specified time has passed.

Retrieve the session ID from the `/sessions/whoami` endpoint / `toSession` SDK method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID is the session's ID.
@return IdentityAPIExtendSessionRequest

func (*IdentityAPIService) ExtendSessionExecute ¶

Execute executes the request

@return Session

func (*IdentityAPIService) GetIdentity ¶

GetIdentity Get an Identity

Return an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model) by its ID. You can optionally include credentials (e.g. social sign in connections) in the response by using the `include_credential` query parameter.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID must be set to the ID of identity you want to get
@return IdentityAPIGetIdentityRequest

func (*IdentityAPIService) GetIdentityExecute ¶

Execute executes the request

@return Identity

func (*IdentityAPIService) GetIdentitySchema ¶

GetIdentitySchema Get Identity JSON Schema

Return a specific identity schema.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID must be set to the ID of schema you want to get
@return IdentityAPIGetIdentitySchemaRequest

func (*IdentityAPIService) GetIdentitySchemaExecute ¶

func (a *IdentityAPIService) GetIdentitySchemaExecute(r IdentityAPIGetIdentitySchemaRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*IdentityAPIService) GetSession ¶

GetSession Get Session

This endpoint is useful for:

Getting a session object with all specified expandables that exist in an administrative context.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID is the session's ID.
@return IdentityAPIGetSessionRequest

func (*IdentityAPIService) GetSessionExecute ¶

Execute executes the request

@return Session

func (*IdentityAPIService) ListIdentities ¶

ListIdentities List Identities

Lists all [identities](https://www.ory.sh/docs/kratos/concepts/identity-user-model) in the system.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return IdentityAPIListIdentitiesRequest

func (*IdentityAPIService) ListIdentitiesExecute ¶

Execute executes the request

@return []Identity

func (*IdentityAPIService) ListIdentitySchemas ¶

ListIdentitySchemas Get all Identity Schemas

Returns a list of all identity schemas currently in use.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return IdentityAPIListIdentitySchemasRequest

func (*IdentityAPIService) ListIdentitySchemasExecute ¶

Execute executes the request

@return []IdentitySchemaContainer

func (*IdentityAPIService) ListIdentitySessions ¶

ListIdentitySessions List an Identity's Sessions

This endpoint returns all sessions that belong to the given Identity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID is the identity's ID.
@return IdentityAPIListIdentitySessionsRequest

func (*IdentityAPIService) ListIdentitySessionsExecute ¶

func (a *IdentityAPIService) ListIdentitySessionsExecute(r IdentityAPIListIdentitySessionsRequest) ([]Session, *http.Response, error)

Execute executes the request

@return []Session

func (*IdentityAPIService) ListSessions ¶

ListSessions List All Sessions

Listing all sessions that exist.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return IdentityAPIListSessionsRequest

func (*IdentityAPIService) ListSessionsExecute ¶

Execute executes the request

@return []Session

func (*IdentityAPIService) PatchIdentity ¶

PatchIdentity Patch an Identity

Partially updates an [identity's](https://www.ory.sh/docs/kratos/concepts/identity-user-model) field using [JSON Patch](https://jsonpatch.com/). The fields `id`, `stateChangedAt` and `credentials` can not be updated using this method.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID must be set to the ID of identity you want to update
@return IdentityAPIPatchIdentityRequest

func (*IdentityAPIService) PatchIdentityExecute ¶

Execute executes the request

@return Identity

func (*IdentityAPIService) UpdateIdentity ¶

UpdateIdentity Update an Identity

This endpoint updates an [identity](https://www.ory.sh/docs/kratos/concepts/identity-user-model). The full identity payload (except credentials) is expected. It is possible to update the identity's credentials as well.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id ID must be set to the ID of identity you want to update
@return IdentityAPIUpdateIdentityRequest

func (*IdentityAPIService) UpdateIdentityExecute ¶

Execute executes the request

@return Identity

type IdentityAPIUpdateIdentityRequest ¶

type IdentityAPIUpdateIdentityRequest struct {
	ApiService IdentityAPI
	// contains filtered or unexported fields
}

func (IdentityAPIUpdateIdentityRequest) Execute ¶

func (IdentityAPIUpdateIdentityRequest) UpdateIdentityBody ¶

type IdentityCredentials ¶

type IdentityCredentials struct {
	Config map[string]interface{} `json:"config,omitempty"`
	// CreatedAt is a helper struct field for gobuffalo.pop.
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// Identifiers represents a list of unique identifiers this credential type matches.
	Identifiers []string                 `json:"identifiers,omitempty"`
	Type        *IdentityCredentialsType `json:"type,omitempty"`
	// UpdatedAt is a helper struct field for gobuffalo.pop.
	UpdatedAt *time.Time `json:"updated_at,omitempty"`
	// Version refers to the version of the credential. Useful when changing the config schema.
	Version              *int64 `json:"version,omitempty"`
	AdditionalProperties map[string]interface{}
}

IdentityCredentials Credentials represents a specific credential type

func NewIdentityCredentials ¶

func NewIdentityCredentials() *IdentityCredentials

NewIdentityCredentials instantiates a new IdentityCredentials 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 NewIdentityCredentialsWithDefaults ¶

func NewIdentityCredentialsWithDefaults() *IdentityCredentials

NewIdentityCredentialsWithDefaults instantiates a new IdentityCredentials 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 (*IdentityCredentials) GetConfig ¶

func (o *IdentityCredentials) GetConfig() map[string]interface{}

GetConfig returns the Config field value if set, zero value otherwise.

func (*IdentityCredentials) GetConfigOk ¶

func (o *IdentityCredentials) GetConfigOk() (map[string]interface{}, bool)

GetConfigOk returns a tuple with the Config field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentials) GetCreatedAt ¶

func (o *IdentityCredentials) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*IdentityCredentials) GetCreatedAtOk ¶

func (o *IdentityCredentials) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentials) GetIdentifiers ¶

func (o *IdentityCredentials) GetIdentifiers() []string

GetIdentifiers returns the Identifiers field value if set, zero value otherwise.

func (*IdentityCredentials) GetIdentifiersOk ¶

func (o *IdentityCredentials) GetIdentifiersOk() ([]string, bool)

GetIdentifiersOk returns a tuple with the Identifiers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentials) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*IdentityCredentials) GetTypeOk ¶

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentials) GetUpdatedAt ¶

func (o *IdentityCredentials) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*IdentityCredentials) GetUpdatedAtOk ¶

func (o *IdentityCredentials) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentials) GetVersion ¶

func (o *IdentityCredentials) GetVersion() int64

GetVersion returns the Version field value if set, zero value otherwise.

func (*IdentityCredentials) GetVersionOk ¶

func (o *IdentityCredentials) GetVersionOk() (*int64, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentials) HasConfig ¶

func (o *IdentityCredentials) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (*IdentityCredentials) HasCreatedAt ¶

func (o *IdentityCredentials) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*IdentityCredentials) HasIdentifiers ¶

func (o *IdentityCredentials) HasIdentifiers() bool

HasIdentifiers returns a boolean if a field has been set.

func (*IdentityCredentials) HasType ¶

func (o *IdentityCredentials) HasType() bool

HasType returns a boolean if a field has been set.

func (*IdentityCredentials) HasUpdatedAt ¶

func (o *IdentityCredentials) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*IdentityCredentials) HasVersion ¶

func (o *IdentityCredentials) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (IdentityCredentials) MarshalJSON ¶

func (o IdentityCredentials) MarshalJSON() ([]byte, error)

func (*IdentityCredentials) SetConfig ¶

func (o *IdentityCredentials) SetConfig(v map[string]interface{})

SetConfig gets a reference to the given map[string]interface{} and assigns it to the Config field.

func (*IdentityCredentials) SetCreatedAt ¶

func (o *IdentityCredentials) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*IdentityCredentials) SetIdentifiers ¶

func (o *IdentityCredentials) SetIdentifiers(v []string)

SetIdentifiers gets a reference to the given []string and assigns it to the Identifiers field.

func (*IdentityCredentials) SetType ¶

SetType gets a reference to the given IdentityCredentialsType and assigns it to the Type field.

func (*IdentityCredentials) SetUpdatedAt ¶

func (o *IdentityCredentials) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*IdentityCredentials) SetVersion ¶

func (o *IdentityCredentials) SetVersion(v int64)

SetVersion gets a reference to the given int64 and assigns it to the Version field.

func (IdentityCredentials) ToMap ¶

func (o IdentityCredentials) ToMap() (map[string]interface{}, error)

func (*IdentityCredentials) UnmarshalJSON ¶

func (o *IdentityCredentials) UnmarshalJSON(bytes []byte) (err error)

type IdentityCredentialsCode ¶

type IdentityCredentialsCode struct {
	AddressType          *string      `json:"address_type,omitempty"`
	UsedAt               NullableTime `json:"used_at,omitempty"`
	AdditionalProperties map[string]interface{}
}

IdentityCredentialsCode CredentialsCode represents a one time login/registration code

func NewIdentityCredentialsCode ¶

func NewIdentityCredentialsCode() *IdentityCredentialsCode

NewIdentityCredentialsCode instantiates a new IdentityCredentialsCode 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 NewIdentityCredentialsCodeWithDefaults ¶

func NewIdentityCredentialsCodeWithDefaults() *IdentityCredentialsCode

NewIdentityCredentialsCodeWithDefaults instantiates a new IdentityCredentialsCode 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 (*IdentityCredentialsCode) GetAddressType ¶

func (o *IdentityCredentialsCode) GetAddressType() string

GetAddressType returns the AddressType field value if set, zero value otherwise.

func (*IdentityCredentialsCode) GetAddressTypeOk ¶

func (o *IdentityCredentialsCode) GetAddressTypeOk() (*string, bool)

GetAddressTypeOk returns a tuple with the AddressType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentialsCode) GetUsedAt ¶

func (o *IdentityCredentialsCode) GetUsedAt() time.Time

GetUsedAt returns the UsedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IdentityCredentialsCode) GetUsedAtOk ¶

func (o *IdentityCredentialsCode) GetUsedAtOk() (*time.Time, bool)

GetUsedAtOk returns a tuple with the UsedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IdentityCredentialsCode) HasAddressType ¶

func (o *IdentityCredentialsCode) HasAddressType() bool

HasAddressType returns a boolean if a field has been set.

func (*IdentityCredentialsCode) HasUsedAt ¶

func (o *IdentityCredentialsCode) HasUsedAt() bool

HasUsedAt returns a boolean if a field has been set.

func (IdentityCredentialsCode) MarshalJSON ¶

func (o IdentityCredentialsCode) MarshalJSON() ([]byte, error)

func (*IdentityCredentialsCode) SetAddressType ¶

func (o *IdentityCredentialsCode) SetAddressType(v string)

SetAddressType gets a reference to the given string and assigns it to the AddressType field.

func (*IdentityCredentialsCode) SetUsedAt ¶

func (o *IdentityCredentialsCode) SetUsedAt(v time.Time)

SetUsedAt gets a reference to the given NullableTime and assigns it to the UsedAt field.

func (*IdentityCredentialsCode) SetUsedAtNil ¶

func (o *IdentityCredentialsCode) SetUsedAtNil()

SetUsedAtNil sets the value for UsedAt to be an explicit nil

func (IdentityCredentialsCode) ToMap ¶

func (o IdentityCredentialsCode) ToMap() (map[string]interface{}, error)

func (*IdentityCredentialsCode) UnmarshalJSON ¶

func (o *IdentityCredentialsCode) UnmarshalJSON(bytes []byte) (err error)

func (*IdentityCredentialsCode) UnsetUsedAt ¶

func (o *IdentityCredentialsCode) UnsetUsedAt()

UnsetUsedAt ensures that no value is present for UsedAt, not even an explicit nil

type IdentityCredentialsOidc ¶

type IdentityCredentialsOidc struct {
	Providers            []IdentityCredentialsOidcProvider `json:"providers,omitempty"`
	AdditionalProperties map[string]interface{}
}

IdentityCredentialsOidc struct for IdentityCredentialsOidc

func NewIdentityCredentialsOidc ¶

func NewIdentityCredentialsOidc() *IdentityCredentialsOidc

NewIdentityCredentialsOidc instantiates a new IdentityCredentialsOidc 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 NewIdentityCredentialsOidcWithDefaults ¶

func NewIdentityCredentialsOidcWithDefaults() *IdentityCredentialsOidc

NewIdentityCredentialsOidcWithDefaults instantiates a new IdentityCredentialsOidc 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 (*IdentityCredentialsOidc) GetProviders ¶

GetProviders returns the Providers field value if set, zero value otherwise.

func (*IdentityCredentialsOidc) GetProvidersOk ¶

GetProvidersOk returns a tuple with the Providers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentialsOidc) HasProviders ¶

func (o *IdentityCredentialsOidc) HasProviders() bool

HasProviders returns a boolean if a field has been set.

func (IdentityCredentialsOidc) MarshalJSON ¶

func (o IdentityCredentialsOidc) MarshalJSON() ([]byte, error)

func (*IdentityCredentialsOidc) SetProviders ¶

SetProviders gets a reference to the given []IdentityCredentialsOidcProvider and assigns it to the Providers field.

func (IdentityCredentialsOidc) ToMap ¶

func (o IdentityCredentialsOidc) ToMap() (map[string]interface{}, error)

func (*IdentityCredentialsOidc) UnmarshalJSON ¶

func (o *IdentityCredentialsOidc) UnmarshalJSON(bytes []byte) (err error)

type IdentityCredentialsOidcProvider ¶

type IdentityCredentialsOidcProvider struct {
	InitialAccessToken   *string `json:"initial_access_token,omitempty"`
	InitialIdToken       *string `json:"initial_id_token,omitempty"`
	InitialRefreshToken  *string `json:"initial_refresh_token,omitempty"`
	Organization         *string `json:"organization,omitempty"`
	Provider             *string `json:"provider,omitempty"`
	Subject              *string `json:"subject,omitempty"`
	AdditionalProperties map[string]interface{}
}

IdentityCredentialsOidcProvider struct for IdentityCredentialsOidcProvider

func NewIdentityCredentialsOidcProvider ¶

func NewIdentityCredentialsOidcProvider() *IdentityCredentialsOidcProvider

NewIdentityCredentialsOidcProvider instantiates a new IdentityCredentialsOidcProvider 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 NewIdentityCredentialsOidcProviderWithDefaults ¶

func NewIdentityCredentialsOidcProviderWithDefaults() *IdentityCredentialsOidcProvider

NewIdentityCredentialsOidcProviderWithDefaults instantiates a new IdentityCredentialsOidcProvider 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 (*IdentityCredentialsOidcProvider) GetInitialAccessToken ¶

func (o *IdentityCredentialsOidcProvider) GetInitialAccessToken() string

GetInitialAccessToken returns the InitialAccessToken field value if set, zero value otherwise.

func (*IdentityCredentialsOidcProvider) GetInitialAccessTokenOk ¶

func (o *IdentityCredentialsOidcProvider) GetInitialAccessTokenOk() (*string, bool)

GetInitialAccessTokenOk returns a tuple with the InitialAccessToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentialsOidcProvider) GetInitialIdToken ¶

func (o *IdentityCredentialsOidcProvider) GetInitialIdToken() string

GetInitialIdToken returns the InitialIdToken field value if set, zero value otherwise.

func (*IdentityCredentialsOidcProvider) GetInitialIdTokenOk ¶

func (o *IdentityCredentialsOidcProvider) GetInitialIdTokenOk() (*string, bool)

GetInitialIdTokenOk returns a tuple with the InitialIdToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentialsOidcProvider) GetInitialRefreshToken ¶

func (o *IdentityCredentialsOidcProvider) GetInitialRefreshToken() string

GetInitialRefreshToken returns the InitialRefreshToken field value if set, zero value otherwise.

func (*IdentityCredentialsOidcProvider) GetInitialRefreshTokenOk ¶

func (o *IdentityCredentialsOidcProvider) GetInitialRefreshTokenOk() (*string, bool)

GetInitialRefreshTokenOk returns a tuple with the InitialRefreshToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentialsOidcProvider) GetOrganization ¶

func (o *IdentityCredentialsOidcProvider) GetOrganization() string

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*IdentityCredentialsOidcProvider) GetOrganizationOk ¶

func (o *IdentityCredentialsOidcProvider) GetOrganizationOk() (*string, bool)

GetOrganizationOk returns a tuple with the Organization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentialsOidcProvider) GetProvider ¶

func (o *IdentityCredentialsOidcProvider) GetProvider() string

GetProvider returns the Provider field value if set, zero value otherwise.

func (*IdentityCredentialsOidcProvider) GetProviderOk ¶

func (o *IdentityCredentialsOidcProvider) GetProviderOk() (*string, bool)

GetProviderOk returns a tuple with the Provider field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentialsOidcProvider) GetSubject ¶

func (o *IdentityCredentialsOidcProvider) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*IdentityCredentialsOidcProvider) GetSubjectOk ¶

func (o *IdentityCredentialsOidcProvider) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentialsOidcProvider) HasInitialAccessToken ¶

func (o *IdentityCredentialsOidcProvider) HasInitialAccessToken() bool

HasInitialAccessToken returns a boolean if a field has been set.

func (*IdentityCredentialsOidcProvider) HasInitialIdToken ¶

func (o *IdentityCredentialsOidcProvider) HasInitialIdToken() bool

HasInitialIdToken returns a boolean if a field has been set.

func (*IdentityCredentialsOidcProvider) HasInitialRefreshToken ¶

func (o *IdentityCredentialsOidcProvider) HasInitialRefreshToken() bool

HasInitialRefreshToken returns a boolean if a field has been set.

func (*IdentityCredentialsOidcProvider) HasOrganization ¶

func (o *IdentityCredentialsOidcProvider) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (*IdentityCredentialsOidcProvider) HasProvider ¶

func (o *IdentityCredentialsOidcProvider) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*IdentityCredentialsOidcProvider) HasSubject ¶

func (o *IdentityCredentialsOidcProvider) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (IdentityCredentialsOidcProvider) MarshalJSON ¶

func (o IdentityCredentialsOidcProvider) MarshalJSON() ([]byte, error)

func (*IdentityCredentialsOidcProvider) SetInitialAccessToken ¶

func (o *IdentityCredentialsOidcProvider) SetInitialAccessToken(v string)

SetInitialAccessToken gets a reference to the given string and assigns it to the InitialAccessToken field.

func (*IdentityCredentialsOidcProvider) SetInitialIdToken ¶

func (o *IdentityCredentialsOidcProvider) SetInitialIdToken(v string)

SetInitialIdToken gets a reference to the given string and assigns it to the InitialIdToken field.

func (*IdentityCredentialsOidcProvider) SetInitialRefreshToken ¶

func (o *IdentityCredentialsOidcProvider) SetInitialRefreshToken(v string)

SetInitialRefreshToken gets a reference to the given string and assigns it to the InitialRefreshToken field.

func (*IdentityCredentialsOidcProvider) SetOrganization ¶

func (o *IdentityCredentialsOidcProvider) SetOrganization(v string)

SetOrganization gets a reference to the given string and assigns it to the Organization field.

func (*IdentityCredentialsOidcProvider) SetProvider ¶

func (o *IdentityCredentialsOidcProvider) SetProvider(v string)

SetProvider gets a reference to the given string and assigns it to the Provider field.

func (*IdentityCredentialsOidcProvider) SetSubject ¶

func (o *IdentityCredentialsOidcProvider) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (IdentityCredentialsOidcProvider) ToMap ¶

func (o IdentityCredentialsOidcProvider) ToMap() (map[string]interface{}, error)

func (*IdentityCredentialsOidcProvider) UnmarshalJSON ¶

func (o *IdentityCredentialsOidcProvider) UnmarshalJSON(bytes []byte) (err error)

type IdentityCredentialsPassword ¶

type IdentityCredentialsPassword struct {
	// HashedPassword is a hash-representation of the password.
	HashedPassword       *string `json:"hashed_password,omitempty"`
	AdditionalProperties map[string]interface{}
}

IdentityCredentialsPassword struct for IdentityCredentialsPassword

func NewIdentityCredentialsPassword ¶

func NewIdentityCredentialsPassword() *IdentityCredentialsPassword

NewIdentityCredentialsPassword instantiates a new IdentityCredentialsPassword 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 NewIdentityCredentialsPasswordWithDefaults ¶

func NewIdentityCredentialsPasswordWithDefaults() *IdentityCredentialsPassword

NewIdentityCredentialsPasswordWithDefaults instantiates a new IdentityCredentialsPassword 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 (*IdentityCredentialsPassword) GetHashedPassword ¶

func (o *IdentityCredentialsPassword) GetHashedPassword() string

GetHashedPassword returns the HashedPassword field value if set, zero value otherwise.

func (*IdentityCredentialsPassword) GetHashedPasswordOk ¶

func (o *IdentityCredentialsPassword) GetHashedPasswordOk() (*string, bool)

GetHashedPasswordOk returns a tuple with the HashedPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityCredentialsPassword) HasHashedPassword ¶

func (o *IdentityCredentialsPassword) HasHashedPassword() bool

HasHashedPassword returns a boolean if a field has been set.

func (IdentityCredentialsPassword) MarshalJSON ¶

func (o IdentityCredentialsPassword) MarshalJSON() ([]byte, error)

func (*IdentityCredentialsPassword) SetHashedPassword ¶

func (o *IdentityCredentialsPassword) SetHashedPassword(v string)

SetHashedPassword gets a reference to the given string and assigns it to the HashedPassword field.

func (IdentityCredentialsPassword) ToMap ¶

func (o IdentityCredentialsPassword) ToMap() (map[string]interface{}, error)

func (*IdentityCredentialsPassword) UnmarshalJSON ¶

func (o *IdentityCredentialsPassword) UnmarshalJSON(bytes []byte) (err error)

type IdentityCredentialsType ¶

type IdentityCredentialsType string

IdentityCredentialsType and so on.

const (
	IDENTITYCREDENTIALSTYPE_PASSWORD      IdentityCredentialsType = "password"
	IDENTITYCREDENTIALSTYPE_TOTP          IdentityCredentialsType = "totp"
	IDENTITYCREDENTIALSTYPE_OIDC          IdentityCredentialsType = "oidc"
	IDENTITYCREDENTIALSTYPE_WEBAUTHN      IdentityCredentialsType = "webauthn"
	IDENTITYCREDENTIALSTYPE_LOOKUP_SECRET IdentityCredentialsType = "lookup_secret"
	IDENTITYCREDENTIALSTYPE_CODE          IdentityCredentialsType = "code"
)

List of identityCredentialsType

func NewIdentityCredentialsTypeFromValue ¶

func NewIdentityCredentialsTypeFromValue(v string) (*IdentityCredentialsType, error)

NewIdentityCredentialsTypeFromValue returns a pointer to a valid IdentityCredentialsType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (IdentityCredentialsType) IsValid ¶

func (v IdentityCredentialsType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (IdentityCredentialsType) Ptr ¶

Ptr returns reference to identityCredentialsType value

func (*IdentityCredentialsType) UnmarshalJSON ¶

func (v *IdentityCredentialsType) UnmarshalJSON(src []byte) error

type IdentityPatch ¶

type IdentityPatch struct {
	Create *CreateIdentityBody `json:"create,omitempty"`
	// The ID of this patch.  The patch ID is optional. If specified, the ID will be returned in the response, so consumers of this API can correlate the response with the patch.
	PatchId              *string `json:"patch_id,omitempty"`
	AdditionalProperties map[string]interface{}
}

IdentityPatch Payload for patching an identity

func NewIdentityPatch ¶

func NewIdentityPatch() *IdentityPatch

NewIdentityPatch instantiates a new IdentityPatch 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 NewIdentityPatchWithDefaults ¶

func NewIdentityPatchWithDefaults() *IdentityPatch

NewIdentityPatchWithDefaults instantiates a new IdentityPatch 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 (*IdentityPatch) GetCreate ¶

func (o *IdentityPatch) GetCreate() CreateIdentityBody

GetCreate returns the Create field value if set, zero value otherwise.

func (*IdentityPatch) GetCreateOk ¶

func (o *IdentityPatch) GetCreateOk() (*CreateIdentityBody, bool)

GetCreateOk returns a tuple with the Create field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityPatch) GetPatchId ¶

func (o *IdentityPatch) GetPatchId() string

GetPatchId returns the PatchId field value if set, zero value otherwise.

func (*IdentityPatch) GetPatchIdOk ¶

func (o *IdentityPatch) GetPatchIdOk() (*string, bool)

GetPatchIdOk returns a tuple with the PatchId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityPatch) HasCreate ¶

func (o *IdentityPatch) HasCreate() bool

HasCreate returns a boolean if a field has been set.

func (*IdentityPatch) HasPatchId ¶

func (o *IdentityPatch) HasPatchId() bool

HasPatchId returns a boolean if a field has been set.

func (IdentityPatch) MarshalJSON ¶

func (o IdentityPatch) MarshalJSON() ([]byte, error)

func (*IdentityPatch) SetCreate ¶

func (o *IdentityPatch) SetCreate(v CreateIdentityBody)

SetCreate gets a reference to the given CreateIdentityBody and assigns it to the Create field.

func (*IdentityPatch) SetPatchId ¶

func (o *IdentityPatch) SetPatchId(v string)

SetPatchId gets a reference to the given string and assigns it to the PatchId field.

func (IdentityPatch) ToMap ¶

func (o IdentityPatch) ToMap() (map[string]interface{}, error)

func (*IdentityPatch) UnmarshalJSON ¶

func (o *IdentityPatch) UnmarshalJSON(bytes []byte) (err error)

type IdentityPatchResponse ¶

type IdentityPatchResponse struct {
	// The action for this specific patch create ActionCreate  Create this identity.
	Action *string `json:"action,omitempty"`
	// The identity ID payload of this patch
	Identity *string `json:"identity,omitempty"`
	// The ID of this patch response, if an ID was specified in the patch.
	PatchId              *string `json:"patch_id,omitempty"`
	AdditionalProperties map[string]interface{}
}

IdentityPatchResponse Response for a single identity patch

func NewIdentityPatchResponse ¶

func NewIdentityPatchResponse() *IdentityPatchResponse

NewIdentityPatchResponse instantiates a new IdentityPatchResponse 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 NewIdentityPatchResponseWithDefaults ¶

func NewIdentityPatchResponseWithDefaults() *IdentityPatchResponse

NewIdentityPatchResponseWithDefaults instantiates a new IdentityPatchResponse 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 (*IdentityPatchResponse) GetAction ¶

func (o *IdentityPatchResponse) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*IdentityPatchResponse) GetActionOk ¶

func (o *IdentityPatchResponse) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityPatchResponse) GetIdentity ¶

func (o *IdentityPatchResponse) GetIdentity() string

GetIdentity returns the Identity field value if set, zero value otherwise.

func (*IdentityPatchResponse) GetIdentityOk ¶

func (o *IdentityPatchResponse) GetIdentityOk() (*string, bool)

GetIdentityOk returns a tuple with the Identity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityPatchResponse) GetPatchId ¶

func (o *IdentityPatchResponse) GetPatchId() string

GetPatchId returns the PatchId field value if set, zero value otherwise.

func (*IdentityPatchResponse) GetPatchIdOk ¶

func (o *IdentityPatchResponse) GetPatchIdOk() (*string, bool)

GetPatchIdOk returns a tuple with the PatchId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityPatchResponse) HasAction ¶

func (o *IdentityPatchResponse) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*IdentityPatchResponse) HasIdentity ¶

func (o *IdentityPatchResponse) HasIdentity() bool

HasIdentity returns a boolean if a field has been set.

func (*IdentityPatchResponse) HasPatchId ¶

func (o *IdentityPatchResponse) HasPatchId() bool

HasPatchId returns a boolean if a field has been set.

func (IdentityPatchResponse) MarshalJSON ¶

func (o IdentityPatchResponse) MarshalJSON() ([]byte, error)

func (*IdentityPatchResponse) SetAction ¶

func (o *IdentityPatchResponse) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*IdentityPatchResponse) SetIdentity ¶

func (o *IdentityPatchResponse) SetIdentity(v string)

SetIdentity gets a reference to the given string and assigns it to the Identity field.

func (*IdentityPatchResponse) SetPatchId ¶

func (o *IdentityPatchResponse) SetPatchId(v string)

SetPatchId gets a reference to the given string and assigns it to the PatchId field.

func (IdentityPatchResponse) ToMap ¶

func (o IdentityPatchResponse) ToMap() (map[string]interface{}, error)

func (*IdentityPatchResponse) UnmarshalJSON ¶

func (o *IdentityPatchResponse) UnmarshalJSON(bytes []byte) (err error)

type IdentitySchemaContainer ¶

type IdentitySchemaContainer struct {
	// The ID of the Identity JSON Schema
	Id *string `json:"id,omitempty"`
	// The actual Identity JSON Schema
	Schema               map[string]interface{} `json:"schema,omitempty"`
	AdditionalProperties map[string]interface{}
}

IdentitySchemaContainer An Identity JSON Schema Container

func NewIdentitySchemaContainer ¶

func NewIdentitySchemaContainer() *IdentitySchemaContainer

NewIdentitySchemaContainer instantiates a new IdentitySchemaContainer 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 NewIdentitySchemaContainerWithDefaults ¶

func NewIdentitySchemaContainerWithDefaults() *IdentitySchemaContainer

NewIdentitySchemaContainerWithDefaults instantiates a new IdentitySchemaContainer 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 (*IdentitySchemaContainer) GetId ¶

func (o *IdentitySchemaContainer) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*IdentitySchemaContainer) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentitySchemaContainer) GetSchema ¶

func (o *IdentitySchemaContainer) GetSchema() map[string]interface{}

GetSchema returns the Schema field value if set, zero value otherwise.

func (*IdentitySchemaContainer) GetSchemaOk ¶

func (o *IdentitySchemaContainer) GetSchemaOk() (map[string]interface{}, bool)

GetSchemaOk returns a tuple with the Schema field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentitySchemaContainer) HasId ¶

func (o *IdentitySchemaContainer) HasId() bool

HasId returns a boolean if a field has been set.

func (*IdentitySchemaContainer) HasSchema ¶

func (o *IdentitySchemaContainer) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (IdentitySchemaContainer) MarshalJSON ¶

func (o IdentitySchemaContainer) MarshalJSON() ([]byte, error)

func (*IdentitySchemaContainer) SetId ¶

func (o *IdentitySchemaContainer) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*IdentitySchemaContainer) SetSchema ¶

func (o *IdentitySchemaContainer) SetSchema(v map[string]interface{})

SetSchema gets a reference to the given map[string]interface{} and assigns it to the Schema field.

func (IdentitySchemaContainer) ToMap ¶

func (o IdentitySchemaContainer) ToMap() (map[string]interface{}, error)

func (*IdentitySchemaContainer) UnmarshalJSON ¶

func (o *IdentitySchemaContainer) UnmarshalJSON(bytes []byte) (err error)

type IdentitySchemaPreset ¶

type IdentitySchemaPreset struct {
	// Schema is the Identity JSON Schema
	Schema map[string]interface{} `json:"schema"`
	// URL is the preset identifier
	Url                  string `json:"url"`
	AdditionalProperties map[string]interface{}
}

IdentitySchemaPreset struct for IdentitySchemaPreset

func NewIdentitySchemaPreset ¶

func NewIdentitySchemaPreset(schema map[string]interface{}, url string) *IdentitySchemaPreset

NewIdentitySchemaPreset instantiates a new IdentitySchemaPreset 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 NewIdentitySchemaPresetWithDefaults ¶

func NewIdentitySchemaPresetWithDefaults() *IdentitySchemaPreset

NewIdentitySchemaPresetWithDefaults instantiates a new IdentitySchemaPreset 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 (*IdentitySchemaPreset) GetSchema ¶

func (o *IdentitySchemaPreset) GetSchema() map[string]interface{}

GetSchema returns the Schema field value

func (*IdentitySchemaPreset) GetSchemaOk ¶

func (o *IdentitySchemaPreset) GetSchemaOk() (map[string]interface{}, bool)

GetSchemaOk returns a tuple with the Schema field value and a boolean to check if the value has been set.

func (*IdentitySchemaPreset) GetUrl ¶

func (o *IdentitySchemaPreset) GetUrl() string

GetUrl returns the Url field value

func (*IdentitySchemaPreset) GetUrlOk ¶

func (o *IdentitySchemaPreset) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (IdentitySchemaPreset) MarshalJSON ¶

func (o IdentitySchemaPreset) MarshalJSON() ([]byte, error)

func (*IdentitySchemaPreset) SetSchema ¶

func (o *IdentitySchemaPreset) SetSchema(v map[string]interface{})

SetSchema sets field value

func (*IdentitySchemaPreset) SetUrl ¶

func (o *IdentitySchemaPreset) SetUrl(v string)

SetUrl sets field value

func (IdentitySchemaPreset) ToMap ¶

func (o IdentitySchemaPreset) ToMap() (map[string]interface{}, error)

func (*IdentitySchemaPreset) UnmarshalJSON ¶

func (o *IdentitySchemaPreset) UnmarshalJSON(bytes []byte) (err error)

type IdentityState ¶

type IdentityState string

IdentityState The state can either be `active` or `inactive`.

const (
	IDENTITYSTATE_ACTIVE   IdentityState = "active"
	IDENTITYSTATE_INACTIVE IdentityState = "inactive"
)

List of identityState

func NewIdentityStateFromValue ¶

func NewIdentityStateFromValue(v string) (*IdentityState, error)

NewIdentityStateFromValue returns a pointer to a valid IdentityState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (IdentityState) IsValid ¶

func (v IdentityState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (IdentityState) Ptr ¶

func (v IdentityState) Ptr() *IdentityState

Ptr returns reference to identityState value

func (*IdentityState) UnmarshalJSON ¶

func (v *IdentityState) UnmarshalJSON(src []byte) error

type IdentityWithCredentials ¶

type IdentityWithCredentials struct {
	Oidc                 *IdentityWithCredentialsOidc     `json:"oidc,omitempty"`
	Password             *IdentityWithCredentialsPassword `json:"password,omitempty"`
	AdditionalProperties map[string]interface{}
}

IdentityWithCredentials Create Identity and Import Credentials

func NewIdentityWithCredentials ¶

func NewIdentityWithCredentials() *IdentityWithCredentials

NewIdentityWithCredentials instantiates a new IdentityWithCredentials 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 NewIdentityWithCredentialsWithDefaults ¶

func NewIdentityWithCredentialsWithDefaults() *IdentityWithCredentials

NewIdentityWithCredentialsWithDefaults instantiates a new IdentityWithCredentials 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 (*IdentityWithCredentials) GetOidc ¶

GetOidc returns the Oidc field value if set, zero value otherwise.

func (*IdentityWithCredentials) GetOidcOk ¶

GetOidcOk returns a tuple with the Oidc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityWithCredentials) GetPassword ¶

GetPassword returns the Password field value if set, zero value otherwise.

func (*IdentityWithCredentials) GetPasswordOk ¶

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityWithCredentials) HasOidc ¶

func (o *IdentityWithCredentials) HasOidc() bool

HasOidc returns a boolean if a field has been set.

func (*IdentityWithCredentials) HasPassword ¶

func (o *IdentityWithCredentials) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (IdentityWithCredentials) MarshalJSON ¶

func (o IdentityWithCredentials) MarshalJSON() ([]byte, error)

func (*IdentityWithCredentials) SetOidc ¶

SetOidc gets a reference to the given IdentityWithCredentialsOidc and assigns it to the Oidc field.

func (*IdentityWithCredentials) SetPassword ¶

SetPassword gets a reference to the given IdentityWithCredentialsPassword and assigns it to the Password field.

func (IdentityWithCredentials) ToMap ¶

func (o IdentityWithCredentials) ToMap() (map[string]interface{}, error)

func (*IdentityWithCredentials) UnmarshalJSON ¶

func (o *IdentityWithCredentials) UnmarshalJSON(bytes []byte) (err error)

type IdentityWithCredentialsOidc ¶

type IdentityWithCredentialsOidc struct {
	Config               *IdentityWithCredentialsOidcConfig `json:"config,omitempty"`
	AdditionalProperties map[string]interface{}
}

IdentityWithCredentialsOidc Create Identity and Import Social Sign In Credentials

func NewIdentityWithCredentialsOidc ¶

func NewIdentityWithCredentialsOidc() *IdentityWithCredentialsOidc

NewIdentityWithCredentialsOidc instantiates a new IdentityWithCredentialsOidc 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 NewIdentityWithCredentialsOidcWithDefaults ¶

func NewIdentityWithCredentialsOidcWithDefaults() *IdentityWithCredentialsOidc

NewIdentityWithCredentialsOidcWithDefaults instantiates a new IdentityWithCredentialsOidc 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 (*IdentityWithCredentialsOidc) GetConfig ¶

GetConfig returns the Config field value if set, zero value otherwise.

func (*IdentityWithCredentialsOidc) GetConfigOk ¶

GetConfigOk returns a tuple with the Config field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityWithCredentialsOidc) HasConfig ¶

func (o *IdentityWithCredentialsOidc) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (IdentityWithCredentialsOidc) MarshalJSON ¶

func (o IdentityWithCredentialsOidc) MarshalJSON() ([]byte, error)

func (*IdentityWithCredentialsOidc) SetConfig ¶

SetConfig gets a reference to the given IdentityWithCredentialsOidcConfig and assigns it to the Config field.

func (IdentityWithCredentialsOidc) ToMap ¶

func (o IdentityWithCredentialsOidc) ToMap() (map[string]interface{}, error)

func (*IdentityWithCredentialsOidc) UnmarshalJSON ¶

func (o *IdentityWithCredentialsOidc) UnmarshalJSON(bytes []byte) (err error)

type IdentityWithCredentialsOidcConfig ¶

type IdentityWithCredentialsOidcConfig struct {
	Config *IdentityWithCredentialsPasswordConfig `json:"config,omitempty"`
	// A list of OpenID Connect Providers
	Providers            []IdentityWithCredentialsOidcConfigProvider `json:"providers,omitempty"`
	AdditionalProperties map[string]interface{}
}

IdentityWithCredentialsOidcConfig struct for IdentityWithCredentialsOidcConfig

func NewIdentityWithCredentialsOidcConfig ¶

func NewIdentityWithCredentialsOidcConfig() *IdentityWithCredentialsOidcConfig

NewIdentityWithCredentialsOidcConfig instantiates a new IdentityWithCredentialsOidcConfig 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 NewIdentityWithCredentialsOidcConfigWithDefaults ¶

func NewIdentityWithCredentialsOidcConfigWithDefaults() *IdentityWithCredentialsOidcConfig

NewIdentityWithCredentialsOidcConfigWithDefaults instantiates a new IdentityWithCredentialsOidcConfig 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 (*IdentityWithCredentialsOidcConfig) GetConfig ¶

GetConfig returns the Config field value if set, zero value otherwise.

func (*IdentityWithCredentialsOidcConfig) GetConfigOk ¶

GetConfigOk returns a tuple with the Config field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityWithCredentialsOidcConfig) GetProviders ¶

GetProviders returns the Providers field value if set, zero value otherwise.

func (*IdentityWithCredentialsOidcConfig) GetProvidersOk ¶

GetProvidersOk returns a tuple with the Providers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityWithCredentialsOidcConfig) HasConfig ¶

func (o *IdentityWithCredentialsOidcConfig) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (*IdentityWithCredentialsOidcConfig) HasProviders ¶

func (o *IdentityWithCredentialsOidcConfig) HasProviders() bool

HasProviders returns a boolean if a field has been set.

func (IdentityWithCredentialsOidcConfig) MarshalJSON ¶

func (o IdentityWithCredentialsOidcConfig) MarshalJSON() ([]byte, error)

func (*IdentityWithCredentialsOidcConfig) SetConfig ¶

SetConfig gets a reference to the given IdentityWithCredentialsPasswordConfig and assigns it to the Config field.

func (*IdentityWithCredentialsOidcConfig) SetProviders ¶

SetProviders gets a reference to the given []IdentityWithCredentialsOidcConfigProvider and assigns it to the Providers field.

func (IdentityWithCredentialsOidcConfig) ToMap ¶

func (o IdentityWithCredentialsOidcConfig) ToMap() (map[string]interface{}, error)

func (*IdentityWithCredentialsOidcConfig) UnmarshalJSON ¶

func (o *IdentityWithCredentialsOidcConfig) UnmarshalJSON(bytes []byte) (err error)

type IdentityWithCredentialsOidcConfigProvider ¶

type IdentityWithCredentialsOidcConfigProvider struct {
	// The OpenID Connect provider to link the subject to. Usually something like `google` or `github`.
	Provider string `json:"provider"`
	// The subject (`sub`) of the OpenID Connect connection. Usually the `sub` field of the ID Token.
	Subject              string `json:"subject"`
	AdditionalProperties map[string]interface{}
}

IdentityWithCredentialsOidcConfigProvider Create Identity and Import Social Sign In Credentials Configuration

func NewIdentityWithCredentialsOidcConfigProvider ¶

func NewIdentityWithCredentialsOidcConfigProvider(provider string, subject string) *IdentityWithCredentialsOidcConfigProvider

NewIdentityWithCredentialsOidcConfigProvider instantiates a new IdentityWithCredentialsOidcConfigProvider 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 NewIdentityWithCredentialsOidcConfigProviderWithDefaults ¶

func NewIdentityWithCredentialsOidcConfigProviderWithDefaults() *IdentityWithCredentialsOidcConfigProvider

NewIdentityWithCredentialsOidcConfigProviderWithDefaults instantiates a new IdentityWithCredentialsOidcConfigProvider 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 (*IdentityWithCredentialsOidcConfigProvider) GetProvider ¶

GetProvider returns the Provider field value

func (*IdentityWithCredentialsOidcConfigProvider) GetProviderOk ¶

func (o *IdentityWithCredentialsOidcConfigProvider) GetProviderOk() (*string, bool)

GetProviderOk returns a tuple with the Provider field value and a boolean to check if the value has been set.

func (*IdentityWithCredentialsOidcConfigProvider) GetSubject ¶

GetSubject returns the Subject field value

func (*IdentityWithCredentialsOidcConfigProvider) GetSubjectOk ¶

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (IdentityWithCredentialsOidcConfigProvider) MarshalJSON ¶

func (*IdentityWithCredentialsOidcConfigProvider) SetProvider ¶

SetProvider sets field value

func (*IdentityWithCredentialsOidcConfigProvider) SetSubject ¶

SetSubject sets field value

func (IdentityWithCredentialsOidcConfigProvider) ToMap ¶

func (o IdentityWithCredentialsOidcConfigProvider) ToMap() (map[string]interface{}, error)

func (*IdentityWithCredentialsOidcConfigProvider) UnmarshalJSON ¶

func (o *IdentityWithCredentialsOidcConfigProvider) UnmarshalJSON(bytes []byte) (err error)

type IdentityWithCredentialsPassword ¶

type IdentityWithCredentialsPassword struct {
	Config               *IdentityWithCredentialsPasswordConfig `json:"config,omitempty"`
	AdditionalProperties map[string]interface{}
}

IdentityWithCredentialsPassword Create Identity and Import Password Credentials

func NewIdentityWithCredentialsPassword ¶

func NewIdentityWithCredentialsPassword() *IdentityWithCredentialsPassword

NewIdentityWithCredentialsPassword instantiates a new IdentityWithCredentialsPassword 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 NewIdentityWithCredentialsPasswordWithDefaults ¶

func NewIdentityWithCredentialsPasswordWithDefaults() *IdentityWithCredentialsPassword

NewIdentityWithCredentialsPasswordWithDefaults instantiates a new IdentityWithCredentialsPassword 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 (*IdentityWithCredentialsPassword) GetConfig ¶

GetConfig returns the Config field value if set, zero value otherwise.

func (*IdentityWithCredentialsPassword) GetConfigOk ¶

GetConfigOk returns a tuple with the Config field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityWithCredentialsPassword) HasConfig ¶

func (o *IdentityWithCredentialsPassword) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (IdentityWithCredentialsPassword) MarshalJSON ¶

func (o IdentityWithCredentialsPassword) MarshalJSON() ([]byte, error)

func (*IdentityWithCredentialsPassword) SetConfig ¶

SetConfig gets a reference to the given IdentityWithCredentialsPasswordConfig and assigns it to the Config field.

func (IdentityWithCredentialsPassword) ToMap ¶

func (o IdentityWithCredentialsPassword) ToMap() (map[string]interface{}, error)

func (*IdentityWithCredentialsPassword) UnmarshalJSON ¶

func (o *IdentityWithCredentialsPassword) UnmarshalJSON(bytes []byte) (err error)

type IdentityWithCredentialsPasswordConfig ¶

type IdentityWithCredentialsPasswordConfig struct {
	// The hashed password in [PHC format](https://www.ory.sh/docs/kratos/manage-identities/import-user-accounts-identities#hashed-passwords)
	HashedPassword *string `json:"hashed_password,omitempty"`
	// The password in plain text if no hash is available.
	Password             *string `json:"password,omitempty"`
	AdditionalProperties map[string]interface{}
}

IdentityWithCredentialsPasswordConfig Create Identity and Import Password Credentials Configuration

func NewIdentityWithCredentialsPasswordConfig ¶

func NewIdentityWithCredentialsPasswordConfig() *IdentityWithCredentialsPasswordConfig

NewIdentityWithCredentialsPasswordConfig instantiates a new IdentityWithCredentialsPasswordConfig 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 NewIdentityWithCredentialsPasswordConfigWithDefaults ¶

func NewIdentityWithCredentialsPasswordConfigWithDefaults() *IdentityWithCredentialsPasswordConfig

NewIdentityWithCredentialsPasswordConfigWithDefaults instantiates a new IdentityWithCredentialsPasswordConfig 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 (*IdentityWithCredentialsPasswordConfig) GetHashedPassword ¶

func (o *IdentityWithCredentialsPasswordConfig) GetHashedPassword() string

GetHashedPassword returns the HashedPassword field value if set, zero value otherwise.

func (*IdentityWithCredentialsPasswordConfig) GetHashedPasswordOk ¶

func (o *IdentityWithCredentialsPasswordConfig) GetHashedPasswordOk() (*string, bool)

GetHashedPasswordOk returns a tuple with the HashedPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityWithCredentialsPasswordConfig) GetPassword ¶

GetPassword returns the Password field value if set, zero value otherwise.

func (*IdentityWithCredentialsPasswordConfig) GetPasswordOk ¶

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

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityWithCredentialsPasswordConfig) HasHashedPassword ¶

func (o *IdentityWithCredentialsPasswordConfig) HasHashedPassword() bool

HasHashedPassword returns a boolean if a field has been set.

func (*IdentityWithCredentialsPasswordConfig) HasPassword ¶

HasPassword returns a boolean if a field has been set.

func (IdentityWithCredentialsPasswordConfig) MarshalJSON ¶

func (o IdentityWithCredentialsPasswordConfig) MarshalJSON() ([]byte, error)

func (*IdentityWithCredentialsPasswordConfig) SetHashedPassword ¶

func (o *IdentityWithCredentialsPasswordConfig) SetHashedPassword(v string)

SetHashedPassword gets a reference to the given string and assigns it to the HashedPassword field.

func (*IdentityWithCredentialsPasswordConfig) SetPassword ¶

SetPassword gets a reference to the given string and assigns it to the Password field.

func (IdentityWithCredentialsPasswordConfig) ToMap ¶

func (o IdentityWithCredentialsPasswordConfig) ToMap() (map[string]interface{}, error)

func (*IdentityWithCredentialsPasswordConfig) UnmarshalJSON ¶

func (o *IdentityWithCredentialsPasswordConfig) UnmarshalJSON(bytes []byte) (err error)

type InternalGetProjectBrandingBody ¶

type InternalGetProjectBrandingBody struct {
	Hostname             *string `json:"hostname,omitempty"`
	AdditionalProperties map[string]interface{}
}

InternalGetProjectBrandingBody Get Project Branding Request Body

func NewInternalGetProjectBrandingBody ¶

func NewInternalGetProjectBrandingBody() *InternalGetProjectBrandingBody

NewInternalGetProjectBrandingBody instantiates a new InternalGetProjectBrandingBody 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 NewInternalGetProjectBrandingBodyWithDefaults ¶

func NewInternalGetProjectBrandingBodyWithDefaults() *InternalGetProjectBrandingBody

NewInternalGetProjectBrandingBodyWithDefaults instantiates a new InternalGetProjectBrandingBody 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 (*InternalGetProjectBrandingBody) GetHostname ¶

func (o *InternalGetProjectBrandingBody) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*InternalGetProjectBrandingBody) GetHostnameOk ¶

func (o *InternalGetProjectBrandingBody) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InternalGetProjectBrandingBody) HasHostname ¶

func (o *InternalGetProjectBrandingBody) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (InternalGetProjectBrandingBody) MarshalJSON ¶

func (o InternalGetProjectBrandingBody) MarshalJSON() ([]byte, error)

func (*InternalGetProjectBrandingBody) SetHostname ¶

func (o *InternalGetProjectBrandingBody) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (InternalGetProjectBrandingBody) ToMap ¶

func (o InternalGetProjectBrandingBody) ToMap() (map[string]interface{}, error)

func (*InternalGetProjectBrandingBody) UnmarshalJSON ¶

func (o *InternalGetProjectBrandingBody) UnmarshalJSON(bytes []byte) (err error)

type InternalIsAXWelcomeScreenEnabledForProjectBody ¶

type InternalIsAXWelcomeScreenEnabledForProjectBody struct {
	// Path is the path of the request.
	Path string `json:"path"`
	// ProjectSlug is the project's slug.
	ProjectSlug          string `json:"project_slug"`
	AdditionalProperties map[string]interface{}
}

InternalIsAXWelcomeScreenEnabledForProjectBody Is Account Experience Enabled For Project Request Body

func NewInternalIsAXWelcomeScreenEnabledForProjectBody ¶

func NewInternalIsAXWelcomeScreenEnabledForProjectBody(path string, projectSlug string) *InternalIsAXWelcomeScreenEnabledForProjectBody

NewInternalIsAXWelcomeScreenEnabledForProjectBody instantiates a new InternalIsAXWelcomeScreenEnabledForProjectBody 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 NewInternalIsAXWelcomeScreenEnabledForProjectBodyWithDefaults ¶

func NewInternalIsAXWelcomeScreenEnabledForProjectBodyWithDefaults() *InternalIsAXWelcomeScreenEnabledForProjectBody

NewInternalIsAXWelcomeScreenEnabledForProjectBodyWithDefaults instantiates a new InternalIsAXWelcomeScreenEnabledForProjectBody 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 (*InternalIsAXWelcomeScreenEnabledForProjectBody) GetPath ¶

GetPath returns the Path field value

func (*InternalIsAXWelcomeScreenEnabledForProjectBody) GetPathOk ¶

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set.

func (*InternalIsAXWelcomeScreenEnabledForProjectBody) GetProjectSlug ¶

GetProjectSlug returns the ProjectSlug field value

func (*InternalIsAXWelcomeScreenEnabledForProjectBody) GetProjectSlugOk ¶

GetProjectSlugOk returns a tuple with the ProjectSlug field value and a boolean to check if the value has been set.

func (InternalIsAXWelcomeScreenEnabledForProjectBody) MarshalJSON ¶

func (*InternalIsAXWelcomeScreenEnabledForProjectBody) SetPath ¶

SetPath sets field value

func (*InternalIsAXWelcomeScreenEnabledForProjectBody) SetProjectSlug ¶

SetProjectSlug sets field value

func (InternalIsAXWelcomeScreenEnabledForProjectBody) ToMap ¶

func (o InternalIsAXWelcomeScreenEnabledForProjectBody) ToMap() (map[string]interface{}, error)

func (*InternalIsAXWelcomeScreenEnabledForProjectBody) UnmarshalJSON ¶

func (o *InternalIsAXWelcomeScreenEnabledForProjectBody) UnmarshalJSON(bytes []byte) (err error)

type InternalIsOwnerForProjectBySlugBody ¶

type InternalIsOwnerForProjectBySlugBody struct {
	// Namespace is the namespace of the subject.
	Namespace string `json:"namespace"`
	// ProjectScope is the project_id resolved from the API Token.
	ProjectScope *string `json:"project_scope,omitempty"`
	// ProjectSlug is the project's slug.
	ProjectSlug string `json:"project_slug"`
	// Subject is the subject acting (user or API key).
	Subject              string `json:"subject"`
	AdditionalProperties map[string]interface{}
}

InternalIsOwnerForProjectBySlugBody Is Owner For Project By Slug Request Body

func NewInternalIsOwnerForProjectBySlugBody ¶

func NewInternalIsOwnerForProjectBySlugBody(namespace string, projectSlug string, subject string) *InternalIsOwnerForProjectBySlugBody

NewInternalIsOwnerForProjectBySlugBody instantiates a new InternalIsOwnerForProjectBySlugBody 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 NewInternalIsOwnerForProjectBySlugBodyWithDefaults ¶

func NewInternalIsOwnerForProjectBySlugBodyWithDefaults() *InternalIsOwnerForProjectBySlugBody

NewInternalIsOwnerForProjectBySlugBodyWithDefaults instantiates a new InternalIsOwnerForProjectBySlugBody 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 (*InternalIsOwnerForProjectBySlugBody) GetNamespace ¶

func (o *InternalIsOwnerForProjectBySlugBody) GetNamespace() string

GetNamespace returns the Namespace field value

func (*InternalIsOwnerForProjectBySlugBody) GetNamespaceOk ¶

func (o *InternalIsOwnerForProjectBySlugBody) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value and a boolean to check if the value has been set.

func (*InternalIsOwnerForProjectBySlugBody) GetProjectScope ¶

func (o *InternalIsOwnerForProjectBySlugBody) GetProjectScope() string

GetProjectScope returns the ProjectScope field value if set, zero value otherwise.

func (*InternalIsOwnerForProjectBySlugBody) GetProjectScopeOk ¶

func (o *InternalIsOwnerForProjectBySlugBody) GetProjectScopeOk() (*string, bool)

GetProjectScopeOk returns a tuple with the ProjectScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InternalIsOwnerForProjectBySlugBody) GetProjectSlug ¶

func (o *InternalIsOwnerForProjectBySlugBody) GetProjectSlug() string

GetProjectSlug returns the ProjectSlug field value

func (*InternalIsOwnerForProjectBySlugBody) GetProjectSlugOk ¶

func (o *InternalIsOwnerForProjectBySlugBody) GetProjectSlugOk() (*string, bool)

GetProjectSlugOk returns a tuple with the ProjectSlug field value and a boolean to check if the value has been set.

func (*InternalIsOwnerForProjectBySlugBody) GetSubject ¶

GetSubject returns the Subject field value

func (*InternalIsOwnerForProjectBySlugBody) GetSubjectOk ¶

func (o *InternalIsOwnerForProjectBySlugBody) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*InternalIsOwnerForProjectBySlugBody) HasProjectScope ¶

func (o *InternalIsOwnerForProjectBySlugBody) HasProjectScope() bool

HasProjectScope returns a boolean if a field has been set.

func (InternalIsOwnerForProjectBySlugBody) MarshalJSON ¶

func (o InternalIsOwnerForProjectBySlugBody) MarshalJSON() ([]byte, error)

func (*InternalIsOwnerForProjectBySlugBody) SetNamespace ¶

func (o *InternalIsOwnerForProjectBySlugBody) SetNamespace(v string)

SetNamespace sets field value

func (*InternalIsOwnerForProjectBySlugBody) SetProjectScope ¶

func (o *InternalIsOwnerForProjectBySlugBody) SetProjectScope(v string)

SetProjectScope gets a reference to the given string and assigns it to the ProjectScope field.

func (*InternalIsOwnerForProjectBySlugBody) SetProjectSlug ¶

func (o *InternalIsOwnerForProjectBySlugBody) SetProjectSlug(v string)

SetProjectSlug sets field value

func (*InternalIsOwnerForProjectBySlugBody) SetSubject ¶

SetSubject sets field value

func (InternalIsOwnerForProjectBySlugBody) ToMap ¶

func (o InternalIsOwnerForProjectBySlugBody) ToMap() (map[string]interface{}, error)

func (*InternalIsOwnerForProjectBySlugBody) UnmarshalJSON ¶

func (o *InternalIsOwnerForProjectBySlugBody) UnmarshalJSON(bytes []byte) (err error)

type InternalIsOwnerForProjectBySlugResponse ¶

type InternalIsOwnerForProjectBySlugResponse struct {
	// ProjectID is the project's ID.
	ProjectId            string `json:"project_id"`
	AdditionalProperties map[string]interface{}
}

InternalIsOwnerForProjectBySlugResponse struct for InternalIsOwnerForProjectBySlugResponse

func NewInternalIsOwnerForProjectBySlugResponse ¶

func NewInternalIsOwnerForProjectBySlugResponse(projectId string) *InternalIsOwnerForProjectBySlugResponse

NewInternalIsOwnerForProjectBySlugResponse instantiates a new InternalIsOwnerForProjectBySlugResponse 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 NewInternalIsOwnerForProjectBySlugResponseWithDefaults ¶

func NewInternalIsOwnerForProjectBySlugResponseWithDefaults() *InternalIsOwnerForProjectBySlugResponse

NewInternalIsOwnerForProjectBySlugResponseWithDefaults instantiates a new InternalIsOwnerForProjectBySlugResponse 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 (*InternalIsOwnerForProjectBySlugResponse) GetProjectId ¶

GetProjectId returns the ProjectId field value

func (*InternalIsOwnerForProjectBySlugResponse) GetProjectIdOk ¶

func (o *InternalIsOwnerForProjectBySlugResponse) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value and a boolean to check if the value has been set.

func (InternalIsOwnerForProjectBySlugResponse) MarshalJSON ¶

func (o InternalIsOwnerForProjectBySlugResponse) MarshalJSON() ([]byte, error)

func (*InternalIsOwnerForProjectBySlugResponse) SetProjectId ¶

SetProjectId sets field value

func (InternalIsOwnerForProjectBySlugResponse) ToMap ¶

func (o InternalIsOwnerForProjectBySlugResponse) ToMap() (map[string]interface{}, error)

func (*InternalIsOwnerForProjectBySlugResponse) UnmarshalJSON ¶

func (o *InternalIsOwnerForProjectBySlugResponse) UnmarshalJSON(bytes []byte) (err error)

type InternalProvisionMockSubscription ¶

type InternalProvisionMockSubscription struct {
	// Currency usd USD eur Euro
	Currency string `json:"currency"`
	// Identity ID
	IdentityId string `json:"identity_id"`
	// Billing Interval monthly Monthly yearly Yearly
	Interval string `json:"interval"`
	// Plan ID
	Plan                 string `json:"plan"`
	AdditionalProperties map[string]interface{}
}

InternalProvisionMockSubscription Internal Provision Mock Subscription Request Body

func NewInternalProvisionMockSubscription ¶

func NewInternalProvisionMockSubscription(currency string, identityId string, interval string, plan string) *InternalProvisionMockSubscription

NewInternalProvisionMockSubscription instantiates a new InternalProvisionMockSubscription 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 NewInternalProvisionMockSubscriptionWithDefaults ¶

func NewInternalProvisionMockSubscriptionWithDefaults() *InternalProvisionMockSubscription

NewInternalProvisionMockSubscriptionWithDefaults instantiates a new InternalProvisionMockSubscription 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 (*InternalProvisionMockSubscription) GetCurrency ¶

func (o *InternalProvisionMockSubscription) GetCurrency() string

GetCurrency returns the Currency field value

func (*InternalProvisionMockSubscription) GetCurrencyOk ¶

func (o *InternalProvisionMockSubscription) GetCurrencyOk() (*string, bool)

GetCurrencyOk returns a tuple with the Currency field value and a boolean to check if the value has been set.

func (*InternalProvisionMockSubscription) GetIdentityId ¶

func (o *InternalProvisionMockSubscription) GetIdentityId() string

GetIdentityId returns the IdentityId field value

func (*InternalProvisionMockSubscription) GetIdentityIdOk ¶

func (o *InternalProvisionMockSubscription) GetIdentityIdOk() (*string, bool)

GetIdentityIdOk returns a tuple with the IdentityId field value and a boolean to check if the value has been set.

func (*InternalProvisionMockSubscription) GetInterval ¶

func (o *InternalProvisionMockSubscription) GetInterval() string

GetInterval returns the Interval field value

func (*InternalProvisionMockSubscription) GetIntervalOk ¶

func (o *InternalProvisionMockSubscription) GetIntervalOk() (*string, bool)

GetIntervalOk returns a tuple with the Interval field value and a boolean to check if the value has been set.

func (*InternalProvisionMockSubscription) GetPlan ¶

GetPlan returns the Plan field value

func (*InternalProvisionMockSubscription) GetPlanOk ¶

func (o *InternalProvisionMockSubscription) GetPlanOk() (*string, bool)

GetPlanOk returns a tuple with the Plan field value and a boolean to check if the value has been set.

func (InternalProvisionMockSubscription) MarshalJSON ¶

func (o InternalProvisionMockSubscription) MarshalJSON() ([]byte, error)

func (*InternalProvisionMockSubscription) SetCurrency ¶

func (o *InternalProvisionMockSubscription) SetCurrency(v string)

SetCurrency sets field value

func (*InternalProvisionMockSubscription) SetIdentityId ¶

func (o *InternalProvisionMockSubscription) SetIdentityId(v string)

SetIdentityId sets field value

func (*InternalProvisionMockSubscription) SetInterval ¶

func (o *InternalProvisionMockSubscription) SetInterval(v string)

SetInterval sets field value

func (*InternalProvisionMockSubscription) SetPlan ¶

SetPlan sets field value

func (InternalProvisionMockSubscription) ToMap ¶

func (o InternalProvisionMockSubscription) ToMap() (map[string]interface{}, error)

func (*InternalProvisionMockSubscription) UnmarshalJSON ¶

func (o *InternalProvisionMockSubscription) UnmarshalJSON(bytes []byte) (err error)

type IntrospectedOAuth2Token ¶

type IntrospectedOAuth2Token struct {
	// Active is a boolean indicator of whether or not the presented token is currently active.  The specifics of a token's \"active\" state will vary depending on the implementation of the authorization server and the information it keeps about its tokens, but a \"true\" value return for the \"active\" property will generally indicate that a given token has been issued by this authorization server, has not been revoked by the resource owner, and is within its given time window of validity (e.g., after its issuance time and before its expiration time).
	Active bool `json:"active"`
	// Audience contains a list of the token's intended audiences.
	Aud []string `json:"aud,omitempty"`
	// ID is aclient identifier for the OAuth 2.0 client that requested this token.
	ClientId *string `json:"client_id,omitempty"`
	// Expires at is an integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token will expire.
	Exp *int64 `json:"exp,omitempty"`
	// Extra is arbitrary data set by the session.
	Ext map[string]interface{} `json:"ext,omitempty"`
	// Issued at is an integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token was originally issued.
	Iat *int64 `json:"iat,omitempty"`
	// IssuerURL is a string representing the issuer of this token
	Iss *string `json:"iss,omitempty"`
	// NotBefore is an integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token is not to be used before.
	Nbf *int64 `json:"nbf,omitempty"`
	// ObfuscatedSubject is set when the subject identifier algorithm was set to \"pairwise\" during authorization. It is the `sub` value of the ID Token that was issued.
	ObfuscatedSubject *string `json:"obfuscated_subject,omitempty"`
	// Scope is a JSON string containing a space-separated list of scopes associated with this token.
	Scope *string `json:"scope,omitempty"`
	// Subject of the token, as defined in JWT [RFC7519]. Usually a machine-readable identifier of the resource owner who authorized this token.
	Sub *string `json:"sub,omitempty"`
	// TokenType is the introspected token's type, typically `Bearer`.
	TokenType *string `json:"token_type,omitempty"`
	// TokenUse is the introspected token's use, for example `access_token` or `refresh_token`.
	TokenUse *string `json:"token_use,omitempty"`
	// Username is a human-readable identifier for the resource owner who authorized this token.
	Username             *string `json:"username,omitempty"`
	AdditionalProperties map[string]interface{}
}

IntrospectedOAuth2Token Introspection contains an access token's session data as specified by [IETF RFC 7662](https://tools.ietf.org/html/rfc7662)

func NewIntrospectedOAuth2Token ¶

func NewIntrospectedOAuth2Token(active bool) *IntrospectedOAuth2Token

NewIntrospectedOAuth2Token instantiates a new IntrospectedOAuth2Token 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 NewIntrospectedOAuth2TokenWithDefaults ¶

func NewIntrospectedOAuth2TokenWithDefaults() *IntrospectedOAuth2Token

NewIntrospectedOAuth2TokenWithDefaults instantiates a new IntrospectedOAuth2Token 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 (*IntrospectedOAuth2Token) GetActive ¶

func (o *IntrospectedOAuth2Token) GetActive() bool

GetActive returns the Active field value

func (*IntrospectedOAuth2Token) GetActiveOk ¶

func (o *IntrospectedOAuth2Token) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value and a boolean to check if the value has been set.

func (*IntrospectedOAuth2Token) GetAud ¶

func (o *IntrospectedOAuth2Token) GetAud() []string

GetAud returns the Aud field value if set, zero value otherwise.

func (*IntrospectedOAuth2Token) GetAudOk ¶

func (o *IntrospectedOAuth2Token) GetAudOk() ([]string, bool)

GetAudOk returns a tuple with the Aud field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IntrospectedOAuth2Token) GetClientId ¶

func (o *IntrospectedOAuth2Token) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*IntrospectedOAuth2Token) GetClientIdOk ¶

func (o *IntrospectedOAuth2Token) GetClientIdOk() (*string, bool)

GetClientIdOk returns a tuple with the ClientId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IntrospectedOAuth2Token) GetExp ¶

func (o *IntrospectedOAuth2Token) GetExp() int64

GetExp returns the Exp field value if set, zero value otherwise.

func (*IntrospectedOAuth2Token) GetExpOk ¶

func (o *IntrospectedOAuth2Token) GetExpOk() (*int64, bool)

GetExpOk returns a tuple with the Exp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IntrospectedOAuth2Token) GetExt ¶

func (o *IntrospectedOAuth2Token) GetExt() map[string]interface{}

GetExt returns the Ext field value if set, zero value otherwise.

func (*IntrospectedOAuth2Token) GetExtOk ¶

func (o *IntrospectedOAuth2Token) GetExtOk() (map[string]interface{}, bool)

GetExtOk returns a tuple with the Ext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IntrospectedOAuth2Token) GetIat ¶

func (o *IntrospectedOAuth2Token) GetIat() int64

GetIat returns the Iat field value if set, zero value otherwise.

func (*IntrospectedOAuth2Token) GetIatOk ¶

func (o *IntrospectedOAuth2Token) GetIatOk() (*int64, bool)

GetIatOk returns a tuple with the Iat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IntrospectedOAuth2Token) GetIss ¶

func (o *IntrospectedOAuth2Token) GetIss() string

GetIss returns the Iss field value if set, zero value otherwise.

func (*IntrospectedOAuth2Token) GetIssOk ¶

func (o *IntrospectedOAuth2Token) GetIssOk() (*string, bool)

GetIssOk returns a tuple with the Iss field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IntrospectedOAuth2Token) GetNbf ¶

func (o *IntrospectedOAuth2Token) GetNbf() int64

GetNbf returns the Nbf field value if set, zero value otherwise.

func (*IntrospectedOAuth2Token) GetNbfOk ¶

func (o *IntrospectedOAuth2Token) GetNbfOk() (*int64, bool)

GetNbfOk returns a tuple with the Nbf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IntrospectedOAuth2Token) GetObfuscatedSubject ¶

func (o *IntrospectedOAuth2Token) GetObfuscatedSubject() string

GetObfuscatedSubject returns the ObfuscatedSubject field value if set, zero value otherwise.

func (*IntrospectedOAuth2Token) GetObfuscatedSubjectOk ¶

func (o *IntrospectedOAuth2Token) GetObfuscatedSubjectOk() (*string, bool)

GetObfuscatedSubjectOk returns a tuple with the ObfuscatedSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IntrospectedOAuth2Token) GetScope ¶

func (o *IntrospectedOAuth2Token) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*IntrospectedOAuth2Token) GetScopeOk ¶

func (o *IntrospectedOAuth2Token) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IntrospectedOAuth2Token) GetSub ¶

func (o *IntrospectedOAuth2Token) GetSub() string

GetSub returns the Sub field value if set, zero value otherwise.

func (*IntrospectedOAuth2Token) GetSubOk ¶

func (o *IntrospectedOAuth2Token) GetSubOk() (*string, bool)

GetSubOk returns a tuple with the Sub field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IntrospectedOAuth2Token) GetTokenType ¶

func (o *IntrospectedOAuth2Token) GetTokenType() string

GetTokenType returns the TokenType field value if set, zero value otherwise.

func (*IntrospectedOAuth2Token) GetTokenTypeOk ¶

func (o *IntrospectedOAuth2Token) GetTokenTypeOk() (*string, bool)

GetTokenTypeOk returns a tuple with the TokenType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IntrospectedOAuth2Token) GetTokenUse ¶

func (o *IntrospectedOAuth2Token) GetTokenUse() string

GetTokenUse returns the TokenUse field value if set, zero value otherwise.

func (*IntrospectedOAuth2Token) GetTokenUseOk ¶

func (o *IntrospectedOAuth2Token) GetTokenUseOk() (*string, bool)

GetTokenUseOk returns a tuple with the TokenUse field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IntrospectedOAuth2Token) GetUsername ¶

func (o *IntrospectedOAuth2Token) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*IntrospectedOAuth2Token) GetUsernameOk ¶

func (o *IntrospectedOAuth2Token) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IntrospectedOAuth2Token) HasAud ¶

func (o *IntrospectedOAuth2Token) HasAud() bool

HasAud returns a boolean if a field has been set.

func (*IntrospectedOAuth2Token) HasClientId ¶

func (o *IntrospectedOAuth2Token) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*IntrospectedOAuth2Token) HasExp ¶

func (o *IntrospectedOAuth2Token) HasExp() bool

HasExp returns a boolean if a field has been set.

func (*IntrospectedOAuth2Token) HasExt ¶

func (o *IntrospectedOAuth2Token) HasExt() bool

HasExt returns a boolean if a field has been set.

func (*IntrospectedOAuth2Token) HasIat ¶

func (o *IntrospectedOAuth2Token) HasIat() bool

HasIat returns a boolean if a field has been set.

func (*IntrospectedOAuth2Token) HasIss ¶

func (o *IntrospectedOAuth2Token) HasIss() bool

HasIss returns a boolean if a field has been set.

func (*IntrospectedOAuth2Token) HasNbf ¶

func (o *IntrospectedOAuth2Token) HasNbf() bool

HasNbf returns a boolean if a field has been set.

func (*IntrospectedOAuth2Token) HasObfuscatedSubject ¶

func (o *IntrospectedOAuth2Token) HasObfuscatedSubject() bool

HasObfuscatedSubject returns a boolean if a field has been set.

func (*IntrospectedOAuth2Token) HasScope ¶

func (o *IntrospectedOAuth2Token) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*IntrospectedOAuth2Token) HasSub ¶

func (o *IntrospectedOAuth2Token) HasSub() bool

HasSub returns a boolean if a field has been set.

func (*IntrospectedOAuth2Token) HasTokenType ¶

func (o *IntrospectedOAuth2Token) HasTokenType() bool

HasTokenType returns a boolean if a field has been set.

func (*IntrospectedOAuth2Token) HasTokenUse ¶

func (o *IntrospectedOAuth2Token) HasTokenUse() bool

HasTokenUse returns a boolean if a field has been set.

func (*IntrospectedOAuth2Token) HasUsername ¶

func (o *IntrospectedOAuth2Token) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (IntrospectedOAuth2Token) MarshalJSON ¶

func (o IntrospectedOAuth2Token) MarshalJSON() ([]byte, error)

func (*IntrospectedOAuth2Token) SetActive ¶

func (o *IntrospectedOAuth2Token) SetActive(v bool)

SetActive sets field value

func (*IntrospectedOAuth2Token) SetAud ¶

func (o *IntrospectedOAuth2Token) SetAud(v []string)

SetAud gets a reference to the given []string and assigns it to the Aud field.

func (*IntrospectedOAuth2Token) SetClientId ¶

func (o *IntrospectedOAuth2Token) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*IntrospectedOAuth2Token) SetExp ¶

func (o *IntrospectedOAuth2Token) SetExp(v int64)

SetExp gets a reference to the given int64 and assigns it to the Exp field.

func (*IntrospectedOAuth2Token) SetExt ¶

func (o *IntrospectedOAuth2Token) SetExt(v map[string]interface{})

SetExt gets a reference to the given map[string]interface{} and assigns it to the Ext field.

func (*IntrospectedOAuth2Token) SetIat ¶

func (o *IntrospectedOAuth2Token) SetIat(v int64)

SetIat gets a reference to the given int64 and assigns it to the Iat field.

func (*IntrospectedOAuth2Token) SetIss ¶

func (o *IntrospectedOAuth2Token) SetIss(v string)

SetIss gets a reference to the given string and assigns it to the Iss field.

func (*IntrospectedOAuth2Token) SetNbf ¶

func (o *IntrospectedOAuth2Token) SetNbf(v int64)

SetNbf gets a reference to the given int64 and assigns it to the Nbf field.

func (*IntrospectedOAuth2Token) SetObfuscatedSubject ¶

func (o *IntrospectedOAuth2Token) SetObfuscatedSubject(v string)

SetObfuscatedSubject gets a reference to the given string and assigns it to the ObfuscatedSubject field.

func (*IntrospectedOAuth2Token) SetScope ¶

func (o *IntrospectedOAuth2Token) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*IntrospectedOAuth2Token) SetSub ¶

func (o *IntrospectedOAuth2Token) SetSub(v string)

SetSub gets a reference to the given string and assigns it to the Sub field.

func (*IntrospectedOAuth2Token) SetTokenType ¶

func (o *IntrospectedOAuth2Token) SetTokenType(v string)

SetTokenType gets a reference to the given string and assigns it to the TokenType field.

func (*IntrospectedOAuth2Token) SetTokenUse ¶

func (o *IntrospectedOAuth2Token) SetTokenUse(v string)

SetTokenUse gets a reference to the given string and assigns it to the TokenUse field.

func (*IntrospectedOAuth2Token) SetUsername ¶

func (o *IntrospectedOAuth2Token) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (IntrospectedOAuth2Token) ToMap ¶

func (o IntrospectedOAuth2Token) ToMap() (map[string]interface{}, error)

func (*IntrospectedOAuth2Token) UnmarshalJSON ¶

func (o *IntrospectedOAuth2Token) UnmarshalJSON(bytes []byte) (err error)

type IsOwnerForProjectBySlug ¶

type IsOwnerForProjectBySlug struct {
	// ProjectSlug is the project's slug.
	ProjectSlug string `json:"ProjectSlug"`
	// Subject is the subject from the API Token.
	Subject              string `json:"Subject"`
	AdditionalProperties map[string]interface{}
}

IsOwnerForProjectBySlug struct for IsOwnerForProjectBySlug

func NewIsOwnerForProjectBySlug ¶

func NewIsOwnerForProjectBySlug(projectSlug string, subject string) *IsOwnerForProjectBySlug

NewIsOwnerForProjectBySlug instantiates a new IsOwnerForProjectBySlug 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 NewIsOwnerForProjectBySlugWithDefaults ¶

func NewIsOwnerForProjectBySlugWithDefaults() *IsOwnerForProjectBySlug

NewIsOwnerForProjectBySlugWithDefaults instantiates a new IsOwnerForProjectBySlug 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 (*IsOwnerForProjectBySlug) GetProjectSlug ¶

func (o *IsOwnerForProjectBySlug) GetProjectSlug() string

GetProjectSlug returns the ProjectSlug field value

func (*IsOwnerForProjectBySlug) GetProjectSlugOk ¶

func (o *IsOwnerForProjectBySlug) GetProjectSlugOk() (*string, bool)

GetProjectSlugOk returns a tuple with the ProjectSlug field value and a boolean to check if the value has been set.

func (*IsOwnerForProjectBySlug) GetSubject ¶

func (o *IsOwnerForProjectBySlug) GetSubject() string

GetSubject returns the Subject field value

func (*IsOwnerForProjectBySlug) GetSubjectOk ¶

func (o *IsOwnerForProjectBySlug) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (IsOwnerForProjectBySlug) MarshalJSON ¶

func (o IsOwnerForProjectBySlug) MarshalJSON() ([]byte, error)

func (*IsOwnerForProjectBySlug) SetProjectSlug ¶

func (o *IsOwnerForProjectBySlug) SetProjectSlug(v string)

SetProjectSlug sets field value

func (*IsOwnerForProjectBySlug) SetSubject ¶

func (o *IsOwnerForProjectBySlug) SetSubject(v string)

SetSubject sets field value

func (IsOwnerForProjectBySlug) ToMap ¶

func (o IsOwnerForProjectBySlug) ToMap() (map[string]interface{}, error)

func (*IsOwnerForProjectBySlug) UnmarshalJSON ¶

func (o *IsOwnerForProjectBySlug) UnmarshalJSON(bytes []byte) (err error)

type IsReady200Response ¶

type IsReady200Response struct {
	// Always \"ok\".
	Status               string `json:"status"`
	AdditionalProperties map[string]interface{}
}

IsReady200Response struct for IsReady200Response

func NewIsReady200Response ¶

func NewIsReady200Response(status string) *IsReady200Response

NewIsReady200Response instantiates a new IsReady200Response 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 NewIsReady200ResponseWithDefaults ¶

func NewIsReady200ResponseWithDefaults() *IsReady200Response

NewIsReady200ResponseWithDefaults instantiates a new IsReady200Response 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 (*IsReady200Response) GetStatus ¶

func (o *IsReady200Response) GetStatus() string

GetStatus returns the Status field value

func (*IsReady200Response) GetStatusOk ¶

func (o *IsReady200Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (IsReady200Response) MarshalJSON ¶

func (o IsReady200Response) MarshalJSON() ([]byte, error)

func (*IsReady200Response) SetStatus ¶

func (o *IsReady200Response) SetStatus(v string)

SetStatus sets field value

func (IsReady200Response) ToMap ¶

func (o IsReady200Response) ToMap() (map[string]interface{}, error)

func (*IsReady200Response) UnmarshalJSON ¶

func (o *IsReady200Response) UnmarshalJSON(bytes []byte) (err error)

type IsReady503Response ¶

type IsReady503Response struct {
	// Errors contains a list of errors that caused the not ready status.
	Errors               map[string]string `json:"errors"`
	AdditionalProperties map[string]interface{}
}

IsReady503Response struct for IsReady503Response

func NewIsReady503Response ¶

func NewIsReady503Response(errors map[string]string) *IsReady503Response

NewIsReady503Response instantiates a new IsReady503Response 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 NewIsReady503ResponseWithDefaults ¶

func NewIsReady503ResponseWithDefaults() *IsReady503Response

NewIsReady503ResponseWithDefaults instantiates a new IsReady503Response 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 (*IsReady503Response) GetErrors ¶

func (o *IsReady503Response) GetErrors() map[string]string

GetErrors returns the Errors field value

func (*IsReady503Response) GetErrorsOk ¶

func (o *IsReady503Response) GetErrorsOk() (*map[string]string, bool)

GetErrorsOk returns a tuple with the Errors field value and a boolean to check if the value has been set.

func (IsReady503Response) MarshalJSON ¶

func (o IsReady503Response) MarshalJSON() ([]byte, error)

func (*IsReady503Response) SetErrors ¶

func (o *IsReady503Response) SetErrors(v map[string]string)

SetErrors sets field value

func (IsReady503Response) ToMap ¶

func (o IsReady503Response) ToMap() (map[string]interface{}, error)

func (*IsReady503Response) UnmarshalJSON ¶

func (o *IsReady503Response) UnmarshalJSON(bytes []byte) (err error)

type JsonPatch ¶

type JsonPatch struct {
	// This field is used together with operation \"move\" and uses JSON Pointer notation.  Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).
	From *string `json:"from,omitempty"`
	// The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\".
	Op string `json:"op"`
	// The path to the target path. Uses JSON pointer notation.  Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).
	Path string `json:"path"`
	// The value to be used within the operations.  Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).
	Value                interface{} `json:"value,omitempty"`
	AdditionalProperties map[string]interface{}
}

JsonPatch A JSONPatch document as defined by RFC 6902

func NewJsonPatch ¶

func NewJsonPatch(op string, path string) *JsonPatch

NewJsonPatch instantiates a new JsonPatch 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 NewJsonPatchWithDefaults ¶

func NewJsonPatchWithDefaults() *JsonPatch

NewJsonPatchWithDefaults instantiates a new JsonPatch 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 (*JsonPatch) GetFrom ¶

func (o *JsonPatch) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*JsonPatch) GetFromOk ¶

func (o *JsonPatch) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonPatch) GetOp ¶

func (o *JsonPatch) GetOp() string

GetOp returns the Op field value

func (*JsonPatch) GetOpOk ¶

func (o *JsonPatch) GetOpOk() (*string, bool)

GetOpOk returns a tuple with the Op field value and a boolean to check if the value has been set.

func (*JsonPatch) GetPath ¶

func (o *JsonPatch) GetPath() string

GetPath returns the Path field value

func (*JsonPatch) GetPathOk ¶

func (o *JsonPatch) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set.

func (*JsonPatch) GetValue ¶

func (o *JsonPatch) GetValue() interface{}

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*JsonPatch) GetValueOk ¶

func (o *JsonPatch) GetValueOk() (*interface{}, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*JsonPatch) HasFrom ¶

func (o *JsonPatch) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*JsonPatch) HasValue ¶

func (o *JsonPatch) HasValue() bool

HasValue returns a boolean if a field has been set.

func (JsonPatch) MarshalJSON ¶

func (o JsonPatch) MarshalJSON() ([]byte, error)

func (*JsonPatch) SetFrom ¶

func (o *JsonPatch) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*JsonPatch) SetOp ¶

func (o *JsonPatch) SetOp(v string)

SetOp sets field value

func (*JsonPatch) SetPath ¶

func (o *JsonPatch) SetPath(v string)

SetPath sets field value

func (*JsonPatch) SetValue ¶

func (o *JsonPatch) SetValue(v interface{})

SetValue gets a reference to the given interface{} and assigns it to the Value field.

func (JsonPatch) ToMap ¶

func (o JsonPatch) ToMap() (map[string]interface{}, error)

func (*JsonPatch) UnmarshalJSON ¶

func (o *JsonPatch) UnmarshalJSON(bytes []byte) (err error)

type JsonWebKey ¶

type JsonWebKey struct {
	// The \"alg\" (algorithm) parameter identifies the algorithm intended for use with the key.  The values used should either be registered in the IANA \"JSON Web Signature and Encryption Algorithms\" registry established by [JWA] or be a value that contains a Collision- Resistant Name.
	Alg string  `json:"alg"`
	Crv *string `json:"crv,omitempty"`
	D   *string `json:"d,omitempty"`
	Dp  *string `json:"dp,omitempty"`
	Dq  *string `json:"dq,omitempty"`
	E   *string `json:"e,omitempty"`
	K   *string `json:"k,omitempty"`
	// The \"kid\" (key ID) parameter is used to match a specific key.  This is used, for instance, to choose among a set of keys within a JWK Set during key rollover.  The structure of the \"kid\" value is unspecified.  When \"kid\" values are used within a JWK Set, different keys within the JWK Set SHOULD use distinct \"kid\" values.  (One example in which different keys might use the same \"kid\" value is if they have different \"kty\" (key type) values but are considered to be equivalent alternatives by the application using them.)  The \"kid\" value is a case-sensitive string.
	Kid string `json:"kid"`
	// The \"kty\" (key type) parameter identifies the cryptographic algorithm family used with the key, such as \"RSA\" or \"EC\". \"kty\" values should either be registered in the IANA \"JSON Web Key Types\" registry established by [JWA] or be a value that contains a Collision- Resistant Name.  The \"kty\" value is a case-sensitive string.
	Kty string  `json:"kty"`
	N   *string `json:"n,omitempty"`
	P   *string `json:"p,omitempty"`
	Q   *string `json:"q,omitempty"`
	Qi  *string `json:"qi,omitempty"`
	// Use (\"public key use\") identifies the intended use of the public key. The \"use\" parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Values are commonly \"sig\" (signature) or \"enc\" (encryption).
	Use string  `json:"use"`
	X   *string `json:"x,omitempty"`
	// The \"x5c\" (X.509 certificate chain) parameter contains a chain of one or more PKIX certificates [RFC5280].  The certificate chain is represented as a JSON array of certificate value strings.  Each string in the array is a base64-encoded (Section 4 of [RFC4648] -- not base64url-encoded) DER [ITU.X690.1994] PKIX certificate value. The PKIX certificate containing the key value MUST be the first certificate.
	X5c                  []string `json:"x5c,omitempty"`
	Y                    *string  `json:"y,omitempty"`
	AdditionalProperties map[string]interface{}
}

JsonWebKey struct for JsonWebKey

func NewJsonWebKey ¶

func NewJsonWebKey(alg string, kid string, kty string, use string) *JsonWebKey

NewJsonWebKey instantiates a new JsonWebKey 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 NewJsonWebKeyWithDefaults ¶

func NewJsonWebKeyWithDefaults() *JsonWebKey

NewJsonWebKeyWithDefaults instantiates a new JsonWebKey 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 (*JsonWebKey) GetAlg ¶

func (o *JsonWebKey) GetAlg() string

GetAlg returns the Alg field value

func (*JsonWebKey) GetAlgOk ¶

func (o *JsonWebKey) GetAlgOk() (*string, bool)

GetAlgOk returns a tuple with the Alg field value and a boolean to check if the value has been set.

func (*JsonWebKey) GetCrv ¶

func (o *JsonWebKey) GetCrv() string

GetCrv returns the Crv field value if set, zero value otherwise.

func (*JsonWebKey) GetCrvOk ¶

func (o *JsonWebKey) GetCrvOk() (*string, bool)

GetCrvOk returns a tuple with the Crv field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonWebKey) GetD ¶

func (o *JsonWebKey) GetD() string

GetD returns the D field value if set, zero value otherwise.

func (*JsonWebKey) GetDOk ¶

func (o *JsonWebKey) GetDOk() (*string, bool)

GetDOk returns a tuple with the D field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonWebKey) GetDp ¶

func (o *JsonWebKey) GetDp() string

GetDp returns the Dp field value if set, zero value otherwise.

func (*JsonWebKey) GetDpOk ¶

func (o *JsonWebKey) GetDpOk() (*string, bool)

GetDpOk returns a tuple with the Dp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonWebKey) GetDq ¶

func (o *JsonWebKey) GetDq() string

GetDq returns the Dq field value if set, zero value otherwise.

func (*JsonWebKey) GetDqOk ¶

func (o *JsonWebKey) GetDqOk() (*string, bool)

GetDqOk returns a tuple with the Dq field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonWebKey) GetE ¶

func (o *JsonWebKey) GetE() string

GetE returns the E field value if set, zero value otherwise.

func (*JsonWebKey) GetEOk ¶

func (o *JsonWebKey) GetEOk() (*string, bool)

GetEOk returns a tuple with the E field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonWebKey) GetK ¶

func (o *JsonWebKey) GetK() string

GetK returns the K field value if set, zero value otherwise.

func (*JsonWebKey) GetKOk ¶

func (o *JsonWebKey) GetKOk() (*string, bool)

GetKOk returns a tuple with the K field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonWebKey) GetKid ¶

func (o *JsonWebKey) GetKid() string

GetKid returns the Kid field value

func (*JsonWebKey) GetKidOk ¶

func (o *JsonWebKey) GetKidOk() (*string, bool)

GetKidOk returns a tuple with the Kid field value and a boolean to check if the value has been set.

func (*JsonWebKey) GetKty ¶

func (o *JsonWebKey) GetKty() string

GetKty returns the Kty field value

func (*JsonWebKey) GetKtyOk ¶

func (o *JsonWebKey) GetKtyOk() (*string, bool)

GetKtyOk returns a tuple with the Kty field value and a boolean to check if the value has been set.

func (*JsonWebKey) GetN ¶

func (o *JsonWebKey) GetN() string

GetN returns the N field value if set, zero value otherwise.

func (*JsonWebKey) GetNOk ¶

func (o *JsonWebKey) GetNOk() (*string, bool)

GetNOk returns a tuple with the N field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonWebKey) GetP ¶

func (o *JsonWebKey) GetP() string

GetP returns the P field value if set, zero value otherwise.

func (*JsonWebKey) GetPOk ¶

func (o *JsonWebKey) GetPOk() (*string, bool)

GetPOk returns a tuple with the P field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonWebKey) GetQ ¶

func (o *JsonWebKey) GetQ() string

GetQ returns the Q field value if set, zero value otherwise.

func (*JsonWebKey) GetQOk ¶

func (o *JsonWebKey) GetQOk() (*string, bool)

GetQOk returns a tuple with the Q field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonWebKey) GetQi ¶

func (o *JsonWebKey) GetQi() string

GetQi returns the Qi field value if set, zero value otherwise.

func (*JsonWebKey) GetQiOk ¶

func (o *JsonWebKey) GetQiOk() (*string, bool)

GetQiOk returns a tuple with the Qi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonWebKey) GetUse ¶

func (o *JsonWebKey) GetUse() string

GetUse returns the Use field value

func (*JsonWebKey) GetUseOk ¶

func (o *JsonWebKey) GetUseOk() (*string, bool)

GetUseOk returns a tuple with the Use field value and a boolean to check if the value has been set.

func (*JsonWebKey) GetX ¶

func (o *JsonWebKey) GetX() string

GetX returns the X field value if set, zero value otherwise.

func (*JsonWebKey) GetX5c ¶

func (o *JsonWebKey) GetX5c() []string

GetX5c returns the X5c field value if set, zero value otherwise.

func (*JsonWebKey) GetX5cOk ¶

func (o *JsonWebKey) GetX5cOk() ([]string, bool)

GetX5cOk returns a tuple with the X5c field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonWebKey) GetXOk ¶

func (o *JsonWebKey) GetXOk() (*string, bool)

GetXOk returns a tuple with the X field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonWebKey) GetY ¶

func (o *JsonWebKey) GetY() string

GetY returns the Y field value if set, zero value otherwise.

func (*JsonWebKey) GetYOk ¶

func (o *JsonWebKey) GetYOk() (*string, bool)

GetYOk returns a tuple with the Y field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonWebKey) HasCrv ¶

func (o *JsonWebKey) HasCrv() bool

HasCrv returns a boolean if a field has been set.

func (*JsonWebKey) HasD ¶

func (o *JsonWebKey) HasD() bool

HasD returns a boolean if a field has been set.

func (*JsonWebKey) HasDp ¶

func (o *JsonWebKey) HasDp() bool

HasDp returns a boolean if a field has been set.

func (*JsonWebKey) HasDq ¶

func (o *JsonWebKey) HasDq() bool

HasDq returns a boolean if a field has been set.

func (*JsonWebKey) HasE ¶

func (o *JsonWebKey) HasE() bool

HasE returns a boolean if a field has been set.

func (*JsonWebKey) HasK ¶

func (o *JsonWebKey) HasK() bool

HasK returns a boolean if a field has been set.

func (*JsonWebKey) HasN ¶

func (o *JsonWebKey) HasN() bool

HasN returns a boolean if a field has been set.

func (*JsonWebKey) HasP ¶

func (o *JsonWebKey) HasP() bool

HasP returns a boolean if a field has been set.

func (*JsonWebKey) HasQ ¶

func (o *JsonWebKey) HasQ() bool

HasQ returns a boolean if a field has been set.

func (*JsonWebKey) HasQi ¶

func (o *JsonWebKey) HasQi() bool

HasQi returns a boolean if a field has been set.

func (*JsonWebKey) HasX ¶

func (o *JsonWebKey) HasX() bool

HasX returns a boolean if a field has been set.

func (*JsonWebKey) HasX5c ¶

func (o *JsonWebKey) HasX5c() bool

HasX5c returns a boolean if a field has been set.

func (*JsonWebKey) HasY ¶

func (o *JsonWebKey) HasY() bool

HasY returns a boolean if a field has been set.

func (JsonWebKey) MarshalJSON ¶

func (o JsonWebKey) MarshalJSON() ([]byte, error)

func (*JsonWebKey) SetAlg ¶

func (o *JsonWebKey) SetAlg(v string)

SetAlg sets field value

func (*JsonWebKey) SetCrv ¶

func (o *JsonWebKey) SetCrv(v string)

SetCrv gets a reference to the given string and assigns it to the Crv field.

func (*JsonWebKey) SetD ¶

func (o *JsonWebKey) SetD(v string)

SetD gets a reference to the given string and assigns it to the D field.

func (*JsonWebKey) SetDp ¶

func (o *JsonWebKey) SetDp(v string)

SetDp gets a reference to the given string and assigns it to the Dp field.

func (*JsonWebKey) SetDq ¶

func (o *JsonWebKey) SetDq(v string)

SetDq gets a reference to the given string and assigns it to the Dq field.

func (*JsonWebKey) SetE ¶

func (o *JsonWebKey) SetE(v string)

SetE gets a reference to the given string and assigns it to the E field.

func (*JsonWebKey) SetK ¶

func (o *JsonWebKey) SetK(v string)

SetK gets a reference to the given string and assigns it to the K field.

func (*JsonWebKey) SetKid ¶

func (o *JsonWebKey) SetKid(v string)

SetKid sets field value

func (*JsonWebKey) SetKty ¶

func (o *JsonWebKey) SetKty(v string)

SetKty sets field value

func (*JsonWebKey) SetN ¶

func (o *JsonWebKey) SetN(v string)

SetN gets a reference to the given string and assigns it to the N field.

func (*JsonWebKey) SetP ¶

func (o *JsonWebKey) SetP(v string)

SetP gets a reference to the given string and assigns it to the P field.

func (*JsonWebKey) SetQ ¶

func (o *JsonWebKey) SetQ(v string)

SetQ gets a reference to the given string and assigns it to the Q field.

func (*JsonWebKey) SetQi ¶

func (o *JsonWebKey) SetQi(v string)

SetQi gets a reference to the given string and assigns it to the Qi field.

func (*JsonWebKey) SetUse ¶

func (o *JsonWebKey) SetUse(v string)

SetUse sets field value

func (*JsonWebKey) SetX ¶

func (o *JsonWebKey) SetX(v string)

SetX gets a reference to the given string and assigns it to the X field.

func (*JsonWebKey) SetX5c ¶

func (o *JsonWebKey) SetX5c(v []string)

SetX5c gets a reference to the given []string and assigns it to the X5c field.

func (*JsonWebKey) SetY ¶

func (o *JsonWebKey) SetY(v string)

SetY gets a reference to the given string and assigns it to the Y field.

func (JsonWebKey) ToMap ¶

func (o JsonWebKey) ToMap() (map[string]interface{}, error)

func (*JsonWebKey) UnmarshalJSON ¶

func (o *JsonWebKey) UnmarshalJSON(bytes []byte) (err error)

type JsonWebKeySet ¶

type JsonWebKeySet struct {
	// List of JSON Web Keys  The value of the \"keys\" parameter is an array of JSON Web Key (JWK) values. By default, the order of the JWK values within the array does not imply an order of preference among them, although applications of JWK Sets can choose to assign a meaning to the order for their purposes, if desired.
	Keys                 []JsonWebKey `json:"keys,omitempty"`
	AdditionalProperties map[string]interface{}
}

JsonWebKeySet JSON Web Key Set

func NewJsonWebKeySet ¶

func NewJsonWebKeySet() *JsonWebKeySet

NewJsonWebKeySet instantiates a new JsonWebKeySet 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 NewJsonWebKeySetWithDefaults ¶

func NewJsonWebKeySetWithDefaults() *JsonWebKeySet

NewJsonWebKeySetWithDefaults instantiates a new JsonWebKeySet 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 (*JsonWebKeySet) GetKeys ¶

func (o *JsonWebKeySet) GetKeys() []JsonWebKey

GetKeys returns the Keys field value if set, zero value otherwise.

func (*JsonWebKeySet) GetKeysOk ¶

func (o *JsonWebKeySet) GetKeysOk() ([]JsonWebKey, bool)

GetKeysOk returns a tuple with the Keys field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonWebKeySet) HasKeys ¶

func (o *JsonWebKeySet) HasKeys() bool

HasKeys returns a boolean if a field has been set.

func (JsonWebKeySet) MarshalJSON ¶

func (o JsonWebKeySet) MarshalJSON() ([]byte, error)

func (*JsonWebKeySet) SetKeys ¶

func (o *JsonWebKeySet) SetKeys(v []JsonWebKey)

SetKeys gets a reference to the given []JsonWebKey and assigns it to the Keys field.

func (JsonWebKeySet) ToMap ¶

func (o JsonWebKeySet) ToMap() (map[string]interface{}, error)

func (*JsonWebKeySet) UnmarshalJSON ¶

func (o *JsonWebKeySet) UnmarshalJSON(bytes []byte) (err error)

type JwkAPI ¶

type JwkAPI interface {

	/*
		CreateJsonWebKeySet Create JSON Web Key

		This endpoint is capable of generating JSON Web Key Sets for you. There a different strategies available, such as symmetric cryptographic keys (HS256, HS512) and asymetric cryptographic keys (RS256, ECDSA). If the specified JSON Web Key Set does not exist, it will be created.

	A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param set The JSON Web Key Set ID
		@return JwkAPICreateJsonWebKeySetRequest
	*/
	CreateJsonWebKeySet(ctx context.Context, set string) JwkAPICreateJsonWebKeySetRequest

	// CreateJsonWebKeySetExecute executes the request
	//  @return JsonWebKeySet
	CreateJsonWebKeySetExecute(r JwkAPICreateJsonWebKeySetRequest) (*JsonWebKeySet, *http.Response, error)

	/*
		DeleteJsonWebKey Delete JSON Web Key

		Use this endpoint to delete a single JSON Web Key.

	A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A
	JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses
	this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens),
	and allows storing user-defined keys as well.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param set The JSON Web Key Set
		@param kid The JSON Web Key ID (kid)
		@return JwkAPIDeleteJsonWebKeyRequest
	*/
	DeleteJsonWebKey(ctx context.Context, set string, kid string) JwkAPIDeleteJsonWebKeyRequest

	// DeleteJsonWebKeyExecute executes the request
	DeleteJsonWebKeyExecute(r JwkAPIDeleteJsonWebKeyRequest) (*http.Response, error)

	/*
		DeleteJsonWebKeySet Delete JSON Web Key Set

		Use this endpoint to delete a complete JSON Web Key Set and all the keys in that set.

	A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param set The JSON Web Key Set
		@return JwkAPIDeleteJsonWebKeySetRequest
	*/
	DeleteJsonWebKeySet(ctx context.Context, set string) JwkAPIDeleteJsonWebKeySetRequest

	// DeleteJsonWebKeySetExecute executes the request
	DeleteJsonWebKeySetExecute(r JwkAPIDeleteJsonWebKeySetRequest) (*http.Response, error)

	/*
		GetJsonWebKey Get JSON Web Key

		This endpoint returns a singular JSON Web Key contained in a set. It is identified by the set and the specific key ID (kid).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param set JSON Web Key Set ID
		@param kid JSON Web Key ID
		@return JwkAPIGetJsonWebKeyRequest
	*/
	GetJsonWebKey(ctx context.Context, set string, kid string) JwkAPIGetJsonWebKeyRequest

	// GetJsonWebKeyExecute executes the request
	//  @return JsonWebKeySet
	GetJsonWebKeyExecute(r JwkAPIGetJsonWebKeyRequest) (*JsonWebKeySet, *http.Response, error)

	/*
		GetJsonWebKeySet Retrieve a JSON Web Key Set

		This endpoint can be used to retrieve JWK Sets stored in ORY Hydra.

	A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param set JSON Web Key Set ID
		@return JwkAPIGetJsonWebKeySetRequest
	*/
	GetJsonWebKeySet(ctx context.Context, set string) JwkAPIGetJsonWebKeySetRequest

	// GetJsonWebKeySetExecute executes the request
	//  @return JsonWebKeySet
	GetJsonWebKeySetExecute(r JwkAPIGetJsonWebKeySetRequest) (*JsonWebKeySet, *http.Response, error)

	/*
		SetJsonWebKey Set JSON Web Key

		Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own.

	A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param set The JSON Web Key Set ID
		@param kid JSON Web Key ID
		@return JwkAPISetJsonWebKeyRequest
	*/
	SetJsonWebKey(ctx context.Context, set string, kid string) JwkAPISetJsonWebKeyRequest

	// SetJsonWebKeyExecute executes the request
	//  @return JsonWebKey
	SetJsonWebKeyExecute(r JwkAPISetJsonWebKeyRequest) (*JsonWebKey, *http.Response, error)

	/*
		SetJsonWebKeySet Update a JSON Web Key Set

		Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own.

	A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param set The JSON Web Key Set ID
		@return JwkAPISetJsonWebKeySetRequest
	*/
	SetJsonWebKeySet(ctx context.Context, set string) JwkAPISetJsonWebKeySetRequest

	// SetJsonWebKeySetExecute executes the request
	//  @return JsonWebKeySet
	SetJsonWebKeySetExecute(r JwkAPISetJsonWebKeySetRequest) (*JsonWebKeySet, *http.Response, error)
}

type JwkAPICreateJsonWebKeySetRequest ¶

type JwkAPICreateJsonWebKeySetRequest struct {
	ApiService JwkAPI
	// contains filtered or unexported fields
}

func (JwkAPICreateJsonWebKeySetRequest) CreateJsonWebKeySet ¶

func (JwkAPICreateJsonWebKeySetRequest) Execute ¶

type JwkAPIDeleteJsonWebKeyRequest ¶

type JwkAPIDeleteJsonWebKeyRequest struct {
	ApiService JwkAPI
	// contains filtered or unexported fields
}

func (JwkAPIDeleteJsonWebKeyRequest) Execute ¶

type JwkAPIDeleteJsonWebKeySetRequest ¶

type JwkAPIDeleteJsonWebKeySetRequest struct {
	ApiService JwkAPI
	// contains filtered or unexported fields
}

func (JwkAPIDeleteJsonWebKeySetRequest) Execute ¶

type JwkAPIGetJsonWebKeyRequest ¶

type JwkAPIGetJsonWebKeyRequest struct {
	ApiService JwkAPI
	// contains filtered or unexported fields
}

func (JwkAPIGetJsonWebKeyRequest) Execute ¶

type JwkAPIGetJsonWebKeySetRequest ¶

type JwkAPIGetJsonWebKeySetRequest struct {
	ApiService JwkAPI
	// contains filtered or unexported fields
}

func (JwkAPIGetJsonWebKeySetRequest) Execute ¶

type JwkAPIService ¶

type JwkAPIService service

JwkAPIService JwkAPI service

func (*JwkAPIService) CreateJsonWebKeySet ¶

func (a *JwkAPIService) CreateJsonWebKeySet(ctx context.Context, set string) JwkAPICreateJsonWebKeySetRequest

CreateJsonWebKeySet Create JSON Web Key

This endpoint is capable of generating JSON Web Key Sets for you. There a different strategies available, such as symmetric cryptographic keys (HS256, HS512) and asymetric cryptographic keys (RS256, ECDSA). If the specified JSON Web Key Set does not exist, it will be created.

A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param set The JSON Web Key Set ID
@return JwkAPICreateJsonWebKeySetRequest

func (*JwkAPIService) CreateJsonWebKeySetExecute ¶

func (a *JwkAPIService) CreateJsonWebKeySetExecute(r JwkAPICreateJsonWebKeySetRequest) (*JsonWebKeySet, *http.Response, error)

Execute executes the request

@return JsonWebKeySet

func (*JwkAPIService) DeleteJsonWebKey ¶

func (a *JwkAPIService) DeleteJsonWebKey(ctx context.Context, set string, kid string) JwkAPIDeleteJsonWebKeyRequest

DeleteJsonWebKey Delete JSON Web Key

Use this endpoint to delete a single JSON Web Key.

A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param set The JSON Web Key Set
@param kid The JSON Web Key ID (kid)
@return JwkAPIDeleteJsonWebKeyRequest

func (*JwkAPIService) DeleteJsonWebKeyExecute ¶

func (a *JwkAPIService) DeleteJsonWebKeyExecute(r JwkAPIDeleteJsonWebKeyRequest) (*http.Response, error)

Execute executes the request

func (*JwkAPIService) DeleteJsonWebKeySet ¶

func (a *JwkAPIService) DeleteJsonWebKeySet(ctx context.Context, set string) JwkAPIDeleteJsonWebKeySetRequest

DeleteJsonWebKeySet Delete JSON Web Key Set

Use this endpoint to delete a complete JSON Web Key Set and all the keys in that set.

A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param set The JSON Web Key Set
@return JwkAPIDeleteJsonWebKeySetRequest

func (*JwkAPIService) DeleteJsonWebKeySetExecute ¶

func (a *JwkAPIService) DeleteJsonWebKeySetExecute(r JwkAPIDeleteJsonWebKeySetRequest) (*http.Response, error)

Execute executes the request

func (*JwkAPIService) GetJsonWebKey ¶

func (a *JwkAPIService) GetJsonWebKey(ctx context.Context, set string, kid string) JwkAPIGetJsonWebKeyRequest

GetJsonWebKey Get JSON Web Key

This endpoint returns a singular JSON Web Key contained in a set. It is identified by the set and the specific key ID (kid).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param set JSON Web Key Set ID
@param kid JSON Web Key ID
@return JwkAPIGetJsonWebKeyRequest

func (*JwkAPIService) GetJsonWebKeyExecute ¶

func (a *JwkAPIService) GetJsonWebKeyExecute(r JwkAPIGetJsonWebKeyRequest) (*JsonWebKeySet, *http.Response, error)

Execute executes the request

@return JsonWebKeySet

func (*JwkAPIService) GetJsonWebKeySet ¶

func (a *JwkAPIService) GetJsonWebKeySet(ctx context.Context, set string) JwkAPIGetJsonWebKeySetRequest

GetJsonWebKeySet Retrieve a JSON Web Key Set

This endpoint can be used to retrieve JWK Sets stored in ORY Hydra.

A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param set JSON Web Key Set ID
@return JwkAPIGetJsonWebKeySetRequest

func (*JwkAPIService) GetJsonWebKeySetExecute ¶

func (a *JwkAPIService) GetJsonWebKeySetExecute(r JwkAPIGetJsonWebKeySetRequest) (*JsonWebKeySet, *http.Response, error)

Execute executes the request

@return JsonWebKeySet

func (*JwkAPIService) SetJsonWebKey ¶

func (a *JwkAPIService) SetJsonWebKey(ctx context.Context, set string, kid string) JwkAPISetJsonWebKeyRequest

SetJsonWebKey Set JSON Web Key

Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own.

A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param set The JSON Web Key Set ID
@param kid JSON Web Key ID
@return JwkAPISetJsonWebKeyRequest

func (*JwkAPIService) SetJsonWebKeyExecute ¶

func (a *JwkAPIService) SetJsonWebKeyExecute(r JwkAPISetJsonWebKeyRequest) (*JsonWebKey, *http.Response, error)

Execute executes the request

@return JsonWebKey

func (*JwkAPIService) SetJsonWebKeySet ¶

func (a *JwkAPIService) SetJsonWebKeySet(ctx context.Context, set string) JwkAPISetJsonWebKeySetRequest

SetJsonWebKeySet Update a JSON Web Key Set

Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own.

A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param set The JSON Web Key Set ID
@return JwkAPISetJsonWebKeySetRequest

func (*JwkAPIService) SetJsonWebKeySetExecute ¶

func (a *JwkAPIService) SetJsonWebKeySetExecute(r JwkAPISetJsonWebKeySetRequest) (*JsonWebKeySet, *http.Response, error)

Execute executes the request

@return JsonWebKeySet

type JwkAPISetJsonWebKeyRequest ¶

type JwkAPISetJsonWebKeyRequest struct {
	ApiService JwkAPI
	// contains filtered or unexported fields
}

func (JwkAPISetJsonWebKeyRequest) Execute ¶

func (JwkAPISetJsonWebKeyRequest) JsonWebKey ¶

type JwkAPISetJsonWebKeySetRequest ¶

type JwkAPISetJsonWebKeySetRequest struct {
	ApiService JwkAPI
	// contains filtered or unexported fields
}

func (JwkAPISetJsonWebKeySetRequest) Execute ¶

func (JwkAPISetJsonWebKeySetRequest) JsonWebKeySet ¶

type KetoNamespace ¶

type KetoNamespace struct {
	Id                   *int64  `json:"id,omitempty"`
	Name                 *string `json:"name,omitempty"`
	AdditionalProperties map[string]interface{}
}

KetoNamespace struct for KetoNamespace

func NewKetoNamespace ¶

func NewKetoNamespace() *KetoNamespace

NewKetoNamespace instantiates a new KetoNamespace 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 NewKetoNamespaceWithDefaults ¶

func NewKetoNamespaceWithDefaults() *KetoNamespace

NewKetoNamespaceWithDefaults instantiates a new KetoNamespace 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 (*KetoNamespace) GetId ¶

func (o *KetoNamespace) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*KetoNamespace) GetIdOk ¶

func (o *KetoNamespace) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KetoNamespace) GetName ¶

func (o *KetoNamespace) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*KetoNamespace) GetNameOk ¶

func (o *KetoNamespace) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KetoNamespace) HasId ¶

func (o *KetoNamespace) HasId() bool

HasId returns a boolean if a field has been set.

func (*KetoNamespace) HasName ¶

func (o *KetoNamespace) HasName() bool

HasName returns a boolean if a field has been set.

func (KetoNamespace) MarshalJSON ¶

func (o KetoNamespace) MarshalJSON() ([]byte, error)

func (*KetoNamespace) SetId ¶

func (o *KetoNamespace) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*KetoNamespace) SetName ¶

func (o *KetoNamespace) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (KetoNamespace) ToMap ¶

func (o KetoNamespace) ToMap() (map[string]interface{}, error)

func (*KetoNamespace) UnmarshalJSON ¶

func (o *KetoNamespace) UnmarshalJSON(bytes []byte) (err error)

type ListEventStreams ¶

type ListEventStreams struct {
	EventStreams         []EventStream `json:"event_streams,omitempty"`
	AdditionalProperties map[string]interface{}
}

ListEventStreams Event Stream List

func NewListEventStreams ¶

func NewListEventStreams() *ListEventStreams

NewListEventStreams instantiates a new ListEventStreams 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 NewListEventStreamsWithDefaults ¶

func NewListEventStreamsWithDefaults() *ListEventStreams

NewListEventStreamsWithDefaults instantiates a new ListEventStreams 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 (*ListEventStreams) GetEventStreams ¶

func (o *ListEventStreams) GetEventStreams() []EventStream

GetEventStreams returns the EventStreams field value if set, zero value otherwise.

func (*ListEventStreams) GetEventStreamsOk ¶

func (o *ListEventStreams) GetEventStreamsOk() ([]EventStream, bool)

GetEventStreamsOk returns a tuple with the EventStreams field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListEventStreams) HasEventStreams ¶

func (o *ListEventStreams) HasEventStreams() bool

HasEventStreams returns a boolean if a field has been set.

func (ListEventStreams) MarshalJSON ¶

func (o ListEventStreams) MarshalJSON() ([]byte, error)

func (*ListEventStreams) SetEventStreams ¶

func (o *ListEventStreams) SetEventStreams(v []EventStream)

SetEventStreams gets a reference to the given []EventStream and assigns it to the EventStreams field.

func (ListEventStreams) ToMap ¶

func (o ListEventStreams) ToMap() (map[string]interface{}, error)

func (*ListEventStreams) UnmarshalJSON ¶

func (o *ListEventStreams) UnmarshalJSON(bytes []byte) (err error)

type ListMyWorkspacesResponse ¶

type ListMyWorkspacesResponse struct {
	HasNextPage          bool        `json:"has_next_page"`
	NextPageToken        string      `json:"next_page_token"`
	Workspaces           []Workspace `json:"workspaces"`
	AdditionalProperties map[string]interface{}
}

ListMyWorkspacesResponse struct for ListMyWorkspacesResponse

func NewListMyWorkspacesResponse ¶

func NewListMyWorkspacesResponse(hasNextPage bool, nextPageToken string, workspaces []Workspace) *ListMyWorkspacesResponse

NewListMyWorkspacesResponse instantiates a new ListMyWorkspacesResponse 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 NewListMyWorkspacesResponseWithDefaults ¶

func NewListMyWorkspacesResponseWithDefaults() *ListMyWorkspacesResponse

NewListMyWorkspacesResponseWithDefaults instantiates a new ListMyWorkspacesResponse 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 (*ListMyWorkspacesResponse) GetHasNextPage ¶

func (o *ListMyWorkspacesResponse) GetHasNextPage() bool

GetHasNextPage returns the HasNextPage field value

func (*ListMyWorkspacesResponse) GetHasNextPageOk ¶

func (o *ListMyWorkspacesResponse) GetHasNextPageOk() (*bool, bool)

GetHasNextPageOk returns a tuple with the HasNextPage field value and a boolean to check if the value has been set.

func (*ListMyWorkspacesResponse) GetNextPageToken ¶

func (o *ListMyWorkspacesResponse) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value

func (*ListMyWorkspacesResponse) GetNextPageTokenOk ¶

func (o *ListMyWorkspacesResponse) GetNextPageTokenOk() (*string, bool)

GetNextPageTokenOk returns a tuple with the NextPageToken field value and a boolean to check if the value has been set.

func (*ListMyWorkspacesResponse) GetWorkspaces ¶

func (o *ListMyWorkspacesResponse) GetWorkspaces() []Workspace

GetWorkspaces returns the Workspaces field value

func (*ListMyWorkspacesResponse) GetWorkspacesOk ¶

func (o *ListMyWorkspacesResponse) GetWorkspacesOk() ([]Workspace, bool)

GetWorkspacesOk returns a tuple with the Workspaces field value and a boolean to check if the value has been set.

func (ListMyWorkspacesResponse) MarshalJSON ¶

func (o ListMyWorkspacesResponse) MarshalJSON() ([]byte, error)

func (*ListMyWorkspacesResponse) SetHasNextPage ¶

func (o *ListMyWorkspacesResponse) SetHasNextPage(v bool)

SetHasNextPage sets field value

func (*ListMyWorkspacesResponse) SetNextPageToken ¶

func (o *ListMyWorkspacesResponse) SetNextPageToken(v string)

SetNextPageToken sets field value

func (*ListMyWorkspacesResponse) SetWorkspaces ¶

func (o *ListMyWorkspacesResponse) SetWorkspaces(v []Workspace)

SetWorkspaces sets field value

func (ListMyWorkspacesResponse) ToMap ¶

func (o ListMyWorkspacesResponse) ToMap() (map[string]interface{}, error)

func (*ListMyWorkspacesResponse) UnmarshalJSON ¶

func (o *ListMyWorkspacesResponse) UnmarshalJSON(bytes []byte) (err error)

type ListOrganizationsResponse ¶

type ListOrganizationsResponse struct {
	Organizations        []Organization `json:"organizations"`
	AdditionalProperties map[string]interface{}
}

ListOrganizationsResponse B2B SSO Organization List

func NewListOrganizationsResponse ¶

func NewListOrganizationsResponse(organizations []Organization) *ListOrganizationsResponse

NewListOrganizationsResponse instantiates a new ListOrganizationsResponse 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 NewListOrganizationsResponseWithDefaults ¶

func NewListOrganizationsResponseWithDefaults() *ListOrganizationsResponse

NewListOrganizationsResponseWithDefaults instantiates a new ListOrganizationsResponse 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 (*ListOrganizationsResponse) GetOrganizations ¶

func (o *ListOrganizationsResponse) GetOrganizations() []Organization

GetOrganizations returns the Organizations field value

func (*ListOrganizationsResponse) GetOrganizationsOk ¶

func (o *ListOrganizationsResponse) GetOrganizationsOk() ([]Organization, bool)

GetOrganizationsOk returns a tuple with the Organizations field value and a boolean to check if the value has been set.

func (ListOrganizationsResponse) MarshalJSON ¶

func (o ListOrganizationsResponse) MarshalJSON() ([]byte, error)

func (*ListOrganizationsResponse) SetOrganizations ¶

func (o *ListOrganizationsResponse) SetOrganizations(v []Organization)

SetOrganizations sets field value

func (ListOrganizationsResponse) ToMap ¶

func (o ListOrganizationsResponse) ToMap() (map[string]interface{}, error)

func (*ListOrganizationsResponse) UnmarshalJSON ¶

func (o *ListOrganizationsResponse) UnmarshalJSON(bytes []byte) (err error)

type LoginFlow ¶

type LoginFlow struct {
	Active *IdentityCredentialsType `json:"active,omitempty"`
	// CreatedAt is a helper struct field for gobuffalo.pop.
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated.
	ExpiresAt time.Time `json:"expires_at"`
	// ID represents the flow's unique ID. When performing the login flow, this represents the id in the login UI's query parameter: http://<selfservice.flows.login.ui_url>/?flow=<flow_id>
	Id string `json:"id"`
	// IssuedAt is the time (UTC) when the flow started.
	IssuedAt time.Time `json:"issued_at"`
	// Ory OAuth 2.0 Login Challenge.  This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.
	Oauth2LoginChallenge *string             `json:"oauth2_login_challenge,omitempty"`
	Oauth2LoginRequest   *OAuth2LoginRequest `json:"oauth2_login_request,omitempty"`
	OrganizationId       NullableString      `json:"organization_id,omitempty"`
	// Refresh stores whether this login flow should enforce re-authentication.
	Refresh *bool `json:"refresh,omitempty"`
	// 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.
	RequestUrl   string                       `json:"request_url"`
	RequestedAal *AuthenticatorAssuranceLevel `json:"requested_aal,omitempty"`
	// ReturnTo contains the requested return_to URL.
	ReturnTo *string `json:"return_to,omitempty"`
	// SessionTokenExchangeCode holds the secret code that the client can use to retrieve a session token after the login flow has been completed. This is only set if the client has requested a session token exchange code, and if the flow is of type \"api\", and only on creating the login flow.
	SessionTokenExchangeCode *string `json:"session_token_exchange_code,omitempty"`
	// The flow type can either be `api` or `browser`.
	Type string      `json:"type"`
	Ui   UiContainer `json:"ui"`
	// UpdatedAt is a helper struct field for gobuffalo.pop.
	UpdatedAt            *time.Time `json:"updated_at,omitempty"`
	AdditionalProperties map[string]interface{}
}

LoginFlow This object represents a login flow. A login flow is initiated at the \"Initiate Login API / Browser Flow\" endpoint by a client. Once a login flow is completed successfully, a session cookie or session token will be issued.

func NewLoginFlow ¶

func NewLoginFlow(expiresAt time.Time, id string, issuedAt time.Time, requestUrl string, type_ string, ui UiContainer) *LoginFlow

NewLoginFlow instantiates a new LoginFlow 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 NewLoginFlowWithDefaults ¶

func NewLoginFlowWithDefaults() *LoginFlow

NewLoginFlowWithDefaults instantiates a new LoginFlow 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 (*LoginFlow) GetActive ¶

func (o *LoginFlow) GetActive() IdentityCredentialsType

GetActive returns the Active field value if set, zero value otherwise.

func (*LoginFlow) GetActiveOk ¶

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

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LoginFlow) GetCreatedAt ¶

func (o *LoginFlow) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*LoginFlow) GetCreatedAtOk ¶

func (o *LoginFlow) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LoginFlow) GetExpiresAt ¶

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

GetExpiresAt returns the ExpiresAt field value

func (*LoginFlow) GetExpiresAtOk ¶

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

GetExpiresAtOk returns a tuple with the ExpiresAt field value and a boolean to check if the value has been set.

func (*LoginFlow) GetId ¶

func (o *LoginFlow) GetId() string

GetId returns the Id field value

func (*LoginFlow) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*LoginFlow) GetIssuedAt ¶

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

GetIssuedAt returns the IssuedAt field value

func (*LoginFlow) GetIssuedAtOk ¶

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

GetIssuedAtOk returns a tuple with the IssuedAt field value and a boolean to check if the value has been set.

func (*LoginFlow) GetOauth2LoginChallenge ¶

func (o *LoginFlow) GetOauth2LoginChallenge() string

GetOauth2LoginChallenge returns the Oauth2LoginChallenge field value if set, zero value otherwise.

func (*LoginFlow) GetOauth2LoginChallengeOk ¶

func (o *LoginFlow) GetOauth2LoginChallengeOk() (*string, bool)

GetOauth2LoginChallengeOk returns a tuple with the Oauth2LoginChallenge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LoginFlow) GetOauth2LoginRequest ¶

func (o *LoginFlow) GetOauth2LoginRequest() OAuth2LoginRequest

GetOauth2LoginRequest returns the Oauth2LoginRequest field value if set, zero value otherwise.

func (*LoginFlow) GetOauth2LoginRequestOk ¶

func (o *LoginFlow) GetOauth2LoginRequestOk() (*OAuth2LoginRequest, bool)

GetOauth2LoginRequestOk returns a tuple with the Oauth2LoginRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LoginFlow) GetOrganizationId ¶

func (o *LoginFlow) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LoginFlow) GetOrganizationIdOk ¶

func (o *LoginFlow) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LoginFlow) GetRefresh ¶

func (o *LoginFlow) GetRefresh() bool

GetRefresh returns the Refresh field value if set, zero value otherwise.

func (*LoginFlow) GetRefreshOk ¶

func (o *LoginFlow) GetRefreshOk() (*bool, bool)

GetRefreshOk returns a tuple with the Refresh field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LoginFlow) GetRequestUrl ¶

func (o *LoginFlow) GetRequestUrl() string

GetRequestUrl returns the RequestUrl field value

func (*LoginFlow) GetRequestUrlOk ¶

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

GetRequestUrlOk returns a tuple with the RequestUrl field value and a boolean to check if the value has been set.

func (*LoginFlow) GetRequestedAal ¶

func (o *LoginFlow) GetRequestedAal() AuthenticatorAssuranceLevel

GetRequestedAal returns the RequestedAal field value if set, zero value otherwise.

func (*LoginFlow) GetRequestedAalOk ¶

func (o *LoginFlow) GetRequestedAalOk() (*AuthenticatorAssuranceLevel, bool)

GetRequestedAalOk returns a tuple with the RequestedAal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LoginFlow) GetReturnTo ¶

func (o *LoginFlow) GetReturnTo() string

GetReturnTo returns the ReturnTo field value if set, zero value otherwise.

func (*LoginFlow) GetReturnToOk ¶

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

GetReturnToOk returns a tuple with the ReturnTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LoginFlow) GetSessionTokenExchangeCode ¶

func (o *LoginFlow) GetSessionTokenExchangeCode() string

GetSessionTokenExchangeCode returns the SessionTokenExchangeCode field value if set, zero value otherwise.

func (*LoginFlow) GetSessionTokenExchangeCodeOk ¶

func (o *LoginFlow) GetSessionTokenExchangeCodeOk() (*string, bool)

GetSessionTokenExchangeCodeOk returns a tuple with the SessionTokenExchangeCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LoginFlow) GetType ¶

func (o *LoginFlow) GetType() string

GetType returns the Type field value

func (*LoginFlow) GetTypeOk ¶

func (o *LoginFlow) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*LoginFlow) GetUi ¶

func (o *LoginFlow) GetUi() UiContainer

GetUi returns the Ui field value

func (*LoginFlow) GetUiOk ¶

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

GetUiOk returns a tuple with the Ui field value and a boolean to check if the value has been set.

func (*LoginFlow) GetUpdatedAt ¶

func (o *LoginFlow) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*LoginFlow) GetUpdatedAtOk ¶

func (o *LoginFlow) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LoginFlow) HasActive ¶

func (o *LoginFlow) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*LoginFlow) HasCreatedAt ¶

func (o *LoginFlow) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*LoginFlow) HasOauth2LoginChallenge ¶

func (o *LoginFlow) HasOauth2LoginChallenge() bool

HasOauth2LoginChallenge returns a boolean if a field has been set.

func (*LoginFlow) HasOauth2LoginRequest ¶

func (o *LoginFlow) HasOauth2LoginRequest() bool

HasOauth2LoginRequest returns a boolean if a field has been set.

func (*LoginFlow) HasOrganizationId ¶

func (o *LoginFlow) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*LoginFlow) HasRefresh ¶

func (o *LoginFlow) HasRefresh() bool

HasRefresh returns a boolean if a field has been set.

func (*LoginFlow) HasRequestedAal ¶

func (o *LoginFlow) HasRequestedAal() bool

HasRequestedAal returns a boolean if a field has been set.

func (*LoginFlow) HasReturnTo ¶

func (o *LoginFlow) HasReturnTo() bool

HasReturnTo returns a boolean if a field has been set.

func (*LoginFlow) HasSessionTokenExchangeCode ¶

func (o *LoginFlow) HasSessionTokenExchangeCode() bool

HasSessionTokenExchangeCode returns a boolean if a field has been set.

func (*LoginFlow) HasUpdatedAt ¶

func (o *LoginFlow) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (LoginFlow) MarshalJSON ¶

func (o LoginFlow) MarshalJSON() ([]byte, error)

func (*LoginFlow) SetActive ¶

func (o *LoginFlow) SetActive(v IdentityCredentialsType)

SetActive gets a reference to the given IdentityCredentialsType and assigns it to the Active field.

func (*LoginFlow) SetCreatedAt ¶

func (o *LoginFlow) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*LoginFlow) SetExpiresAt ¶

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

SetExpiresAt sets field value

func (*LoginFlow) SetId ¶

func (o *LoginFlow) SetId(v string)

SetId sets field value

func (*LoginFlow) SetIssuedAt ¶

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

SetIssuedAt sets field value

func (*LoginFlow) SetOauth2LoginChallenge ¶

func (o *LoginFlow) SetOauth2LoginChallenge(v string)

SetOauth2LoginChallenge gets a reference to the given string and assigns it to the Oauth2LoginChallenge field.

func (*LoginFlow) SetOauth2LoginRequest ¶

func (o *LoginFlow) SetOauth2LoginRequest(v OAuth2LoginRequest)

SetOauth2LoginRequest gets a reference to the given OAuth2LoginRequest and assigns it to the Oauth2LoginRequest field.

func (*LoginFlow) SetOrganizationId ¶

func (o *LoginFlow) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given NullableString and assigns it to the OrganizationId field.

func (*LoginFlow) SetOrganizationIdNil ¶

func (o *LoginFlow) SetOrganizationIdNil()

SetOrganizationIdNil sets the value for OrganizationId to be an explicit nil

func (*LoginFlow) SetRefresh ¶

func (o *LoginFlow) SetRefresh(v bool)

SetRefresh gets a reference to the given bool and assigns it to the Refresh field.

func (*LoginFlow) SetRequestUrl ¶

func (o *LoginFlow) SetRequestUrl(v string)

SetRequestUrl sets field value

func (*LoginFlow) SetRequestedAal ¶

func (o *LoginFlow) SetRequestedAal(v AuthenticatorAssuranceLevel)

SetRequestedAal gets a reference to the given AuthenticatorAssuranceLevel and assigns it to the RequestedAal field.

func (*LoginFlow) SetReturnTo ¶

func (o *LoginFlow) SetReturnTo(v string)

SetReturnTo gets a reference to the given string and assigns it to the ReturnTo field.

func (*LoginFlow) SetSessionTokenExchangeCode ¶

func (o *LoginFlow) SetSessionTokenExchangeCode(v string)

SetSessionTokenExchangeCode gets a reference to the given string and assigns it to the SessionTokenExchangeCode field.

func (*LoginFlow) SetType ¶

func (o *LoginFlow) SetType(v string)

SetType sets field value

func (*LoginFlow) SetUi ¶

func (o *LoginFlow) SetUi(v UiContainer)

SetUi sets field value

func (*LoginFlow) SetUpdatedAt ¶

func (o *LoginFlow) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (LoginFlow) ToMap ¶

func (o LoginFlow) ToMap() (map[string]interface{}, error)

func (*LoginFlow) UnmarshalJSON ¶

func (o *LoginFlow) UnmarshalJSON(bytes []byte) (err error)

func (*LoginFlow) UnsetOrganizationId ¶

func (o *LoginFlow) UnsetOrganizationId()

UnsetOrganizationId ensures that no value is present for OrganizationId, not even an explicit nil

type LogoutFlow ¶

type LogoutFlow struct {
	// LogoutToken can be used to perform logout using AJAX.
	LogoutToken string `json:"logout_token"`
	// LogoutURL can be opened in a browser to sign the user out.  format: uri
	LogoutUrl            string `json:"logout_url"`
	AdditionalProperties map[string]interface{}
}

LogoutFlow Logout Flow

func NewLogoutFlow ¶

func NewLogoutFlow(logoutToken string, logoutUrl string) *LogoutFlow

NewLogoutFlow instantiates a new LogoutFlow 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 NewLogoutFlowWithDefaults ¶

func NewLogoutFlowWithDefaults() *LogoutFlow

NewLogoutFlowWithDefaults instantiates a new LogoutFlow 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 (*LogoutFlow) GetLogoutToken ¶

func (o *LogoutFlow) GetLogoutToken() string

GetLogoutToken returns the LogoutToken field value

func (*LogoutFlow) GetLogoutTokenOk ¶

func (o *LogoutFlow) GetLogoutTokenOk() (*string, bool)

GetLogoutTokenOk returns a tuple with the LogoutToken field value and a boolean to check if the value has been set.

func (*LogoutFlow) GetLogoutUrl ¶

func (o *LogoutFlow) GetLogoutUrl() string

GetLogoutUrl returns the LogoutUrl field value

func (*LogoutFlow) GetLogoutUrlOk ¶

func (o *LogoutFlow) GetLogoutUrlOk() (*string, bool)

GetLogoutUrlOk returns a tuple with the LogoutUrl field value and a boolean to check if the value has been set.

func (LogoutFlow) MarshalJSON ¶

func (o LogoutFlow) MarshalJSON() ([]byte, error)

func (*LogoutFlow) SetLogoutToken ¶

func (o *LogoutFlow) SetLogoutToken(v string)

SetLogoutToken sets field value

func (*LogoutFlow) SetLogoutUrl ¶

func (o *LogoutFlow) SetLogoutUrl(v string)

SetLogoutUrl sets field value

func (LogoutFlow) ToMap ¶

func (o LogoutFlow) ToMap() (map[string]interface{}, error)

func (*LogoutFlow) UnmarshalJSON ¶

func (o *LogoutFlow) UnmarshalJSON(bytes []byte) (err error)

type ManagedIdentitySchema ¶

type ManagedIdentitySchema struct {
	// The gcs file name  This is a randomly generated name which is used to uniquely identify the file on the blob storage
	BlobName string `json:"blob_name"`
	// The publicly accessible url of the schema
	BlobUrl string `json:"blob_url"`
	// The Content Hash  Contains a hash of the schema's content.
	ContentHash *string `json:"content_hash,omitempty"`
	// The Schema's Creation Date
	CreatedAt time.Time `json:"created_at"`
	// The schema's ID.
	Id string `json:"id"`
	// The schema name  This is set by the user and is for them to easily recognise their schema
	Name string `json:"name"`
	// Last Time Schema was Updated
	UpdatedAt            time.Time `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

ManagedIdentitySchema Together the name and identity uuid are a unique index constraint. This prevents a user from having schemas with the same name. This also allows schemas to have the same name across the system.

func NewManagedIdentitySchema ¶

func NewManagedIdentitySchema(blobName string, blobUrl string, createdAt time.Time, id string, name string, updatedAt time.Time) *ManagedIdentitySchema

NewManagedIdentitySchema instantiates a new ManagedIdentitySchema 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 NewManagedIdentitySchemaWithDefaults ¶

func NewManagedIdentitySchemaWithDefaults() *ManagedIdentitySchema

NewManagedIdentitySchemaWithDefaults instantiates a new ManagedIdentitySchema 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 (*ManagedIdentitySchema) GetBlobName ¶

func (o *ManagedIdentitySchema) GetBlobName() string

GetBlobName returns the BlobName field value

func (*ManagedIdentitySchema) GetBlobNameOk ¶

func (o *ManagedIdentitySchema) GetBlobNameOk() (*string, bool)

GetBlobNameOk returns a tuple with the BlobName field value and a boolean to check if the value has been set.

func (*ManagedIdentitySchema) GetBlobUrl ¶

func (o *ManagedIdentitySchema) GetBlobUrl() string

GetBlobUrl returns the BlobUrl field value

func (*ManagedIdentitySchema) GetBlobUrlOk ¶

func (o *ManagedIdentitySchema) GetBlobUrlOk() (*string, bool)

GetBlobUrlOk returns a tuple with the BlobUrl field value and a boolean to check if the value has been set.

func (*ManagedIdentitySchema) GetContentHash ¶

func (o *ManagedIdentitySchema) GetContentHash() string

GetContentHash returns the ContentHash field value if set, zero value otherwise.

func (*ManagedIdentitySchema) GetContentHashOk ¶

func (o *ManagedIdentitySchema) GetContentHashOk() (*string, bool)

GetContentHashOk returns a tuple with the ContentHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ManagedIdentitySchema) GetCreatedAt ¶

func (o *ManagedIdentitySchema) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*ManagedIdentitySchema) GetCreatedAtOk ¶

func (o *ManagedIdentitySchema) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*ManagedIdentitySchema) GetId ¶

func (o *ManagedIdentitySchema) GetId() string

GetId returns the Id field value

func (*ManagedIdentitySchema) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ManagedIdentitySchema) GetName ¶

func (o *ManagedIdentitySchema) GetName() string

GetName returns the Name field value

func (*ManagedIdentitySchema) GetNameOk ¶

func (o *ManagedIdentitySchema) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ManagedIdentitySchema) GetUpdatedAt ¶

func (o *ManagedIdentitySchema) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*ManagedIdentitySchema) GetUpdatedAtOk ¶

func (o *ManagedIdentitySchema) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (*ManagedIdentitySchema) HasContentHash ¶

func (o *ManagedIdentitySchema) HasContentHash() bool

HasContentHash returns a boolean if a field has been set.

func (ManagedIdentitySchema) MarshalJSON ¶

func (o ManagedIdentitySchema) MarshalJSON() ([]byte, error)

func (*ManagedIdentitySchema) SetBlobName ¶

func (o *ManagedIdentitySchema) SetBlobName(v string)

SetBlobName sets field value

func (*ManagedIdentitySchema) SetBlobUrl ¶

func (o *ManagedIdentitySchema) SetBlobUrl(v string)

SetBlobUrl sets field value

func (*ManagedIdentitySchema) SetContentHash ¶

func (o *ManagedIdentitySchema) SetContentHash(v string)

SetContentHash gets a reference to the given string and assigns it to the ContentHash field.

func (*ManagedIdentitySchema) SetCreatedAt ¶

func (o *ManagedIdentitySchema) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*ManagedIdentitySchema) SetId ¶

func (o *ManagedIdentitySchema) SetId(v string)

SetId sets field value

func (*ManagedIdentitySchema) SetName ¶

func (o *ManagedIdentitySchema) SetName(v string)

SetName sets field value

func (*ManagedIdentitySchema) SetUpdatedAt ¶

func (o *ManagedIdentitySchema) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (ManagedIdentitySchema) ToMap ¶

func (o ManagedIdentitySchema) ToMap() (map[string]interface{}, error)

func (*ManagedIdentitySchema) UnmarshalJSON ¶

func (o *ManagedIdentitySchema) UnmarshalJSON(bytes []byte) (err error)

type ManagedIdentitySchemaValidationResult ¶

type ManagedIdentitySchemaValidationResult struct {
	Message              *string `json:"message,omitempty"`
	Valid                *bool   `json:"valid,omitempty"`
	AdditionalProperties map[string]interface{}
}

ManagedIdentitySchemaValidationResult Ory Identity Schema Validation Result

func NewManagedIdentitySchemaValidationResult ¶

func NewManagedIdentitySchemaValidationResult() *ManagedIdentitySchemaValidationResult

NewManagedIdentitySchemaValidationResult instantiates a new ManagedIdentitySchemaValidationResult 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 NewManagedIdentitySchemaValidationResultWithDefaults ¶

func NewManagedIdentitySchemaValidationResultWithDefaults() *ManagedIdentitySchemaValidationResult

NewManagedIdentitySchemaValidationResultWithDefaults instantiates a new ManagedIdentitySchemaValidationResult 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 (*ManagedIdentitySchemaValidationResult) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*ManagedIdentitySchemaValidationResult) GetMessageOk ¶

func (o *ManagedIdentitySchemaValidationResult) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ManagedIdentitySchemaValidationResult) GetValid ¶

GetValid returns the Valid field value if set, zero value otherwise.

func (*ManagedIdentitySchemaValidationResult) GetValidOk ¶

func (o *ManagedIdentitySchemaValidationResult) GetValidOk() (*bool, bool)

GetValidOk returns a tuple with the Valid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ManagedIdentitySchemaValidationResult) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*ManagedIdentitySchemaValidationResult) HasValid ¶

HasValid returns a boolean if a field has been set.

func (ManagedIdentitySchemaValidationResult) MarshalJSON ¶

func (o ManagedIdentitySchemaValidationResult) MarshalJSON() ([]byte, error)

func (*ManagedIdentitySchemaValidationResult) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ManagedIdentitySchemaValidationResult) SetValid ¶

SetValid gets a reference to the given bool and assigns it to the Valid field.

func (ManagedIdentitySchemaValidationResult) ToMap ¶

func (o ManagedIdentitySchemaValidationResult) ToMap() (map[string]interface{}, error)

func (*ManagedIdentitySchemaValidationResult) UnmarshalJSON ¶

func (o *ManagedIdentitySchemaValidationResult) UnmarshalJSON(bytes []byte) (err error)

type MappedNullable ¶

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MemberInvite ¶

type MemberInvite struct {
	// The Project's Revision Creation Date
	CreatedAt time.Time `json:"created_at"`
	// The invite's ID.
	Id string `json:"id"`
	// The invitee's email
	InviteeEmail string         `json:"invitee_email"`
	InviteeId    NullableString `json:"invitee_id,omitempty"`
	// The invite owner's email Usually the project's owner email
	OwnerEmail string `json:"owner_email"`
	// The invite owner's ID Usually the project's owner
	OwnerId   string         `json:"owner_id"`
	ProjectId NullableString `json:"project_id,omitempty"`
	// The invite's status Keeps track of the invites status such as pending, accepted, declined, expired pending PENDING accepted ACCEPTED declined DECLINED expired EXPIRED cancelled CANCELLED removed REMOVED
	Status string `json:"status"`
	// Last Time Project's Revision was Updated
	UpdatedAt            time.Time      `json:"updated_at"`
	WorkspaceId          NullableString `json:"workspace_id,omitempty"`
	AdditionalProperties map[string]interface{}
}

MemberInvite struct for MemberInvite

func NewMemberInvite ¶

func NewMemberInvite(createdAt time.Time, id string, inviteeEmail string, ownerEmail string, ownerId string, status string, updatedAt time.Time) *MemberInvite

NewMemberInvite instantiates a new MemberInvite 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 NewMemberInviteWithDefaults ¶

func NewMemberInviteWithDefaults() *MemberInvite

NewMemberInviteWithDefaults instantiates a new MemberInvite 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 (*MemberInvite) GetCreatedAt ¶

func (o *MemberInvite) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*MemberInvite) GetCreatedAtOk ¶

func (o *MemberInvite) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*MemberInvite) GetId ¶

func (o *MemberInvite) GetId() string

GetId returns the Id field value

func (*MemberInvite) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*MemberInvite) GetInviteeEmail ¶

func (o *MemberInvite) GetInviteeEmail() string

GetInviteeEmail returns the InviteeEmail field value

func (*MemberInvite) GetInviteeEmailOk ¶

func (o *MemberInvite) GetInviteeEmailOk() (*string, bool)

GetInviteeEmailOk returns a tuple with the InviteeEmail field value and a boolean to check if the value has been set.

func (*MemberInvite) GetInviteeId ¶

func (o *MemberInvite) GetInviteeId() string

GetInviteeId returns the InviteeId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MemberInvite) GetInviteeIdOk ¶

func (o *MemberInvite) GetInviteeIdOk() (*string, bool)

GetInviteeIdOk returns a tuple with the InviteeId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MemberInvite) GetOwnerEmail ¶

func (o *MemberInvite) GetOwnerEmail() string

GetOwnerEmail returns the OwnerEmail field value

func (*MemberInvite) GetOwnerEmailOk ¶

func (o *MemberInvite) GetOwnerEmailOk() (*string, bool)

GetOwnerEmailOk returns a tuple with the OwnerEmail field value and a boolean to check if the value has been set.

func (*MemberInvite) GetOwnerId ¶

func (o *MemberInvite) GetOwnerId() string

GetOwnerId returns the OwnerId field value

func (*MemberInvite) GetOwnerIdOk ¶

func (o *MemberInvite) GetOwnerIdOk() (*string, bool)

GetOwnerIdOk returns a tuple with the OwnerId field value and a boolean to check if the value has been set.

func (*MemberInvite) GetProjectId ¶

func (o *MemberInvite) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MemberInvite) GetProjectIdOk ¶

func (o *MemberInvite) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MemberInvite) GetStatus ¶

func (o *MemberInvite) GetStatus() string

GetStatus returns the Status field value

func (*MemberInvite) GetStatusOk ¶

func (o *MemberInvite) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*MemberInvite) GetUpdatedAt ¶

func (o *MemberInvite) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*MemberInvite) GetUpdatedAtOk ¶

func (o *MemberInvite) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (*MemberInvite) GetWorkspaceId ¶

func (o *MemberInvite) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MemberInvite) GetWorkspaceIdOk ¶

func (o *MemberInvite) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MemberInvite) HasInviteeId ¶

func (o *MemberInvite) HasInviteeId() bool

HasInviteeId returns a boolean if a field has been set.

func (*MemberInvite) HasProjectId ¶

func (o *MemberInvite) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*MemberInvite) HasWorkspaceId ¶

func (o *MemberInvite) HasWorkspaceId() bool

HasWorkspaceId returns a boolean if a field has been set.

func (MemberInvite) MarshalJSON ¶

func (o MemberInvite) MarshalJSON() ([]byte, error)

func (*MemberInvite) SetCreatedAt ¶

func (o *MemberInvite) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*MemberInvite) SetId ¶

func (o *MemberInvite) SetId(v string)

SetId sets field value

func (*MemberInvite) SetInviteeEmail ¶

func (o *MemberInvite) SetInviteeEmail(v string)

SetInviteeEmail sets field value

func (*MemberInvite) SetInviteeId ¶

func (o *MemberInvite) SetInviteeId(v string)

SetInviteeId gets a reference to the given NullableString and assigns it to the InviteeId field.

func (*MemberInvite) SetInviteeIdNil ¶

func (o *MemberInvite) SetInviteeIdNil()

SetInviteeIdNil sets the value for InviteeId to be an explicit nil

func (*MemberInvite) SetOwnerEmail ¶

func (o *MemberInvite) SetOwnerEmail(v string)

SetOwnerEmail sets field value

func (*MemberInvite) SetOwnerId ¶

func (o *MemberInvite) SetOwnerId(v string)

SetOwnerId sets field value

func (*MemberInvite) SetProjectId ¶

func (o *MemberInvite) SetProjectId(v string)

SetProjectId gets a reference to the given NullableString and assigns it to the ProjectId field.

func (*MemberInvite) SetProjectIdNil ¶

func (o *MemberInvite) SetProjectIdNil()

SetProjectIdNil sets the value for ProjectId to be an explicit nil

func (*MemberInvite) SetStatus ¶

func (o *MemberInvite) SetStatus(v string)

SetStatus sets field value

func (*MemberInvite) SetUpdatedAt ¶

func (o *MemberInvite) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (*MemberInvite) SetWorkspaceId ¶

func (o *MemberInvite) SetWorkspaceId(v string)

SetWorkspaceId gets a reference to the given NullableString and assigns it to the WorkspaceId field.

func (*MemberInvite) SetWorkspaceIdNil ¶

func (o *MemberInvite) SetWorkspaceIdNil()

SetWorkspaceIdNil sets the value for WorkspaceId to be an explicit nil

func (MemberInvite) ToMap ¶

func (o MemberInvite) ToMap() (map[string]interface{}, error)

func (*MemberInvite) UnmarshalJSON ¶

func (o *MemberInvite) UnmarshalJSON(bytes []byte) (err error)

func (*MemberInvite) UnsetInviteeId ¶

func (o *MemberInvite) UnsetInviteeId()

UnsetInviteeId ensures that no value is present for InviteeId, not even an explicit nil

func (*MemberInvite) UnsetProjectId ¶

func (o *MemberInvite) UnsetProjectId()

UnsetProjectId ensures that no value is present for ProjectId, not even an explicit nil

func (*MemberInvite) UnsetWorkspaceId ¶

func (o *MemberInvite) UnsetWorkspaceId()

UnsetWorkspaceId ensures that no value is present for WorkspaceId, not even an explicit nil

type Message ¶

type Message struct {
	Body    string  `json:"body"`
	Channel *string `json:"channel,omitempty"`
	// CreatedAt is a helper struct field for gobuffalo.pop.
	CreatedAt time.Time `json:"created_at"`
	// Dispatches store information about the attempts of delivering a message May contain an error if any happened, or just the `success` state.
	Dispatches []MessageDispatch    `json:"dispatches,omitempty"`
	Id         string               `json:"id"`
	Recipient  string               `json:"recipient"`
	SendCount  int64                `json:"send_count"`
	Status     CourierMessageStatus `json:"status"`
	Subject    string               `json:"subject"`
	//  recovery_invalid TypeRecoveryInvalid recovery_valid TypeRecoveryValid recovery_code_invalid TypeRecoveryCodeInvalid recovery_code_valid TypeRecoveryCodeValid verification_invalid TypeVerificationInvalid verification_valid TypeVerificationValid verification_code_invalid TypeVerificationCodeInvalid verification_code_valid TypeVerificationCodeValid stub TypeTestStub login_code_valid TypeLoginCodeValid registration_code_valid TypeRegistrationCodeValid
	TemplateType string             `json:"template_type"`
	Type         CourierMessageType `json:"type"`
	// UpdatedAt is a helper struct field for gobuffalo.pop.
	UpdatedAt            time.Time `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

Message struct for Message

func NewMessage ¶

func NewMessage(body string, createdAt time.Time, id string, recipient string, sendCount int64, status CourierMessageStatus, subject string, templateType string, type_ CourierMessageType, updatedAt time.Time) *Message

NewMessage instantiates a new Message 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 NewMessageWithDefaults ¶

func NewMessageWithDefaults() *Message

NewMessageWithDefaults instantiates a new Message 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 (*Message) GetBody ¶

func (o *Message) GetBody() string

GetBody returns the Body field value

func (*Message) GetBodyOk ¶

func (o *Message) GetBodyOk() (*string, bool)

GetBodyOk returns a tuple with the Body field value and a boolean to check if the value has been set.

func (*Message) GetChannel ¶

func (o *Message) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*Message) GetChannelOk ¶

func (o *Message) GetChannelOk() (*string, bool)

GetChannelOk returns a tuple with the Channel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Message) GetCreatedAt ¶

func (o *Message) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*Message) GetCreatedAtOk ¶

func (o *Message) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*Message) GetDispatches ¶

func (o *Message) GetDispatches() []MessageDispatch

GetDispatches returns the Dispatches field value if set, zero value otherwise.

func (*Message) GetDispatchesOk ¶

func (o *Message) GetDispatchesOk() ([]MessageDispatch, bool)

GetDispatchesOk returns a tuple with the Dispatches field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Message) GetId ¶

func (o *Message) GetId() string

GetId returns the Id field value

func (*Message) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Message) GetRecipient ¶

func (o *Message) GetRecipient() string

GetRecipient returns the Recipient field value

func (*Message) GetRecipientOk ¶

func (o *Message) GetRecipientOk() (*string, bool)

GetRecipientOk returns a tuple with the Recipient field value and a boolean to check if the value has been set.

func (*Message) GetSendCount ¶

func (o *Message) GetSendCount() int64

GetSendCount returns the SendCount field value

func (*Message) GetSendCountOk ¶

func (o *Message) GetSendCountOk() (*int64, bool)

GetSendCountOk returns a tuple with the SendCount field value and a boolean to check if the value has been set.

func (*Message) GetStatus ¶

func (o *Message) GetStatus() CourierMessageStatus

GetStatus returns the Status field value

func (*Message) GetStatusOk ¶

func (o *Message) GetStatusOk() (*CourierMessageStatus, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*Message) GetSubject ¶

func (o *Message) GetSubject() string

GetSubject returns the Subject field value

func (*Message) GetSubjectOk ¶

func (o *Message) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*Message) GetTemplateType ¶

func (o *Message) GetTemplateType() string

GetTemplateType returns the TemplateType field value

func (*Message) GetTemplateTypeOk ¶

func (o *Message) GetTemplateTypeOk() (*string, bool)

GetTemplateTypeOk returns a tuple with the TemplateType field value and a boolean to check if the value has been set.

func (*Message) GetType ¶

func (o *Message) GetType() CourierMessageType

GetType returns the Type field value

func (*Message) GetTypeOk ¶

func (o *Message) GetTypeOk() (*CourierMessageType, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*Message) GetUpdatedAt ¶

func (o *Message) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*Message) GetUpdatedAtOk ¶

func (o *Message) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (*Message) HasChannel ¶

func (o *Message) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*Message) HasDispatches ¶

func (o *Message) HasDispatches() bool

HasDispatches returns a boolean if a field has been set.

func (Message) MarshalJSON ¶

func (o Message) MarshalJSON() ([]byte, error)

func (*Message) SetBody ¶

func (o *Message) SetBody(v string)

SetBody sets field value

func (*Message) SetChannel ¶

func (o *Message) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*Message) SetCreatedAt ¶

func (o *Message) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*Message) SetDispatches ¶

func (o *Message) SetDispatches(v []MessageDispatch)

SetDispatches gets a reference to the given []MessageDispatch and assigns it to the Dispatches field.

func (*Message) SetId ¶

func (o *Message) SetId(v string)

SetId sets field value

func (*Message) SetRecipient ¶

func (o *Message) SetRecipient(v string)

SetRecipient sets field value

func (*Message) SetSendCount ¶

func (o *Message) SetSendCount(v int64)

SetSendCount sets field value

func (*Message) SetStatus ¶

func (o *Message) SetStatus(v CourierMessageStatus)

SetStatus sets field value

func (*Message) SetSubject ¶

func (o *Message) SetSubject(v string)

SetSubject sets field value

func (*Message) SetTemplateType ¶

func (o *Message) SetTemplateType(v string)

SetTemplateType sets field value

func (*Message) SetType ¶

func (o *Message) SetType(v CourierMessageType)

SetType sets field value

func (*Message) SetUpdatedAt ¶

func (o *Message) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (Message) ToMap ¶

func (o Message) ToMap() (map[string]interface{}, error)

func (*Message) UnmarshalJSON ¶

func (o *Message) UnmarshalJSON(bytes []byte) (err error)

type MessageDispatch ¶

type MessageDispatch struct {
	// CreatedAt is a helper struct field for gobuffalo.pop.
	CreatedAt time.Time              `json:"created_at"`
	Error     map[string]interface{} `json:"error,omitempty"`
	// The ID of this message dispatch
	Id string `json:"id"`
	// The ID of the message being dispatched
	MessageId string `json:"message_id"`
	// The status of this dispatch Either \"failed\" or \"success\" failed CourierMessageDispatchStatusFailed success CourierMessageDispatchStatusSuccess
	Status string `json:"status"`
	// UpdatedAt is a helper struct field for gobuffalo.pop.
	UpdatedAt            time.Time `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

MessageDispatch MessageDispatch represents an attempt of sending a courier message It contains the status of the attempt (failed or successful) and the error if any occured

func NewMessageDispatch ¶

func NewMessageDispatch(createdAt time.Time, id string, messageId string, status string, updatedAt time.Time) *MessageDispatch

NewMessageDispatch instantiates a new MessageDispatch 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 NewMessageDispatchWithDefaults ¶

func NewMessageDispatchWithDefaults() *MessageDispatch

NewMessageDispatchWithDefaults instantiates a new MessageDispatch 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 (*MessageDispatch) GetCreatedAt ¶

func (o *MessageDispatch) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*MessageDispatch) GetCreatedAtOk ¶

func (o *MessageDispatch) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*MessageDispatch) GetError ¶

func (o *MessageDispatch) GetError() map[string]interface{}

GetError returns the Error field value if set, zero value otherwise.

func (*MessageDispatch) GetErrorOk ¶

func (o *MessageDispatch) GetErrorOk() (map[string]interface{}, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MessageDispatch) GetId ¶

func (o *MessageDispatch) GetId() string

GetId returns the Id field value

func (*MessageDispatch) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*MessageDispatch) GetMessageId ¶

func (o *MessageDispatch) GetMessageId() string

GetMessageId returns the MessageId field value

func (*MessageDispatch) GetMessageIdOk ¶

func (o *MessageDispatch) GetMessageIdOk() (*string, bool)

GetMessageIdOk returns a tuple with the MessageId field value and a boolean to check if the value has been set.

func (*MessageDispatch) GetStatus ¶

func (o *MessageDispatch) GetStatus() string

GetStatus returns the Status field value

func (*MessageDispatch) GetStatusOk ¶

func (o *MessageDispatch) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*MessageDispatch) GetUpdatedAt ¶

func (o *MessageDispatch) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*MessageDispatch) GetUpdatedAtOk ¶

func (o *MessageDispatch) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (*MessageDispatch) HasError ¶

func (o *MessageDispatch) HasError() bool

HasError returns a boolean if a field has been set.

func (MessageDispatch) MarshalJSON ¶

func (o MessageDispatch) MarshalJSON() ([]byte, error)

func (*MessageDispatch) SetCreatedAt ¶

func (o *MessageDispatch) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*MessageDispatch) SetError ¶

func (o *MessageDispatch) SetError(v map[string]interface{})

SetError gets a reference to the given map[string]interface{} and assigns it to the Error field.

func (*MessageDispatch) SetId ¶

func (o *MessageDispatch) SetId(v string)

SetId sets field value

func (*MessageDispatch) SetMessageId ¶

func (o *MessageDispatch) SetMessageId(v string)

SetMessageId sets field value

func (*MessageDispatch) SetStatus ¶

func (o *MessageDispatch) SetStatus(v string)

SetStatus sets field value

func (*MessageDispatch) SetUpdatedAt ¶

func (o *MessageDispatch) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (MessageDispatch) ToMap ¶

func (o MessageDispatch) ToMap() (map[string]interface{}, error)

func (*MessageDispatch) UnmarshalJSON ¶

func (o *MessageDispatch) UnmarshalJSON(bytes []byte) (err error)

type MetadataAPI ¶

type MetadataAPI interface {

	/*
		GetVersion Return Running Software Version.

		This endpoint returns the version of Ory Kratos.

	If the service supports TLS Edge Termination, this endpoint does not require the
	`X-Forwarded-Proto` header to be set.

	Be aware that if you are running multiple nodes of this service, the version will never
	refer to the cluster state, only to a single instance.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return MetadataAPIGetVersionRequest
	*/
	GetVersion(ctx context.Context) MetadataAPIGetVersionRequest

	// GetVersionExecute executes the request
	//  @return GetVersion200Response
	GetVersionExecute(r MetadataAPIGetVersionRequest) (*GetVersion200Response, *http.Response, error)

	/*
		IsAlive Check HTTP Server Status

		This endpoint returns a HTTP 200 status code when Ory Kratos is accepting incoming
	HTTP requests. This status does currently not include checks whether the database connection is working.

	If the service supports TLS Edge Termination, this endpoint does not require the
	`X-Forwarded-Proto` header to be set.

	Be aware that if you are running multiple nodes of this service, the health status will never
	refer to the cluster state, only to a single instance.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return MetadataAPIIsAliveRequest
	*/
	IsAlive(ctx context.Context) MetadataAPIIsAliveRequest

	// IsAliveExecute executes the request
	//  @return HealthStatus
	IsAliveExecute(r MetadataAPIIsAliveRequest) (*HealthStatus, *http.Response, error)

	/*
		IsReady Check HTTP Server and Database Status

		This endpoint returns a HTTP 200 status code when Ory Kratos is up running and the environment dependencies (e.g.
	the database) are responsive as well.

	If the service supports TLS Edge Termination, this endpoint does not require the
	`X-Forwarded-Proto` header to be set.

	Be aware that if you are running multiple nodes of Ory Kratos, the health status will never
	refer to the cluster state, only to a single instance.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return MetadataAPIIsReadyRequest
	*/
	IsReady(ctx context.Context) MetadataAPIIsReadyRequest

	// IsReadyExecute executes the request
	//  @return IsReady200Response
	IsReadyExecute(r MetadataAPIIsReadyRequest) (*IsReady200Response, *http.Response, error)
}

type MetadataAPIGetVersionRequest ¶

type MetadataAPIGetVersionRequest struct {
	ApiService MetadataAPI
	// contains filtered or unexported fields
}

func (MetadataAPIGetVersionRequest) Execute ¶

type MetadataAPIIsAliveRequest ¶

type MetadataAPIIsAliveRequest struct {
	ApiService MetadataAPI
	// contains filtered or unexported fields
}

func (MetadataAPIIsAliveRequest) Execute ¶

type MetadataAPIIsReadyRequest ¶

type MetadataAPIIsReadyRequest struct {
	ApiService MetadataAPI
	// contains filtered or unexported fields
}

func (MetadataAPIIsReadyRequest) Execute ¶

type MetadataAPIService ¶

type MetadataAPIService service

MetadataAPIService MetadataAPI service

func (*MetadataAPIService) GetVersion ¶

GetVersion Return Running Software Version.

This endpoint returns the version of Ory Kratos.

If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set.

Be aware that if you are running multiple nodes of this service, the version will never refer to the cluster state, only to a single instance.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MetadataAPIGetVersionRequest

func (*MetadataAPIService) GetVersionExecute ¶

Execute executes the request

@return GetVersion200Response

func (*MetadataAPIService) IsAlive ¶

IsAlive Check HTTP Server Status

This endpoint returns a HTTP 200 status code when Ory Kratos is accepting incoming HTTP requests. This status does currently not include checks whether the database connection is working.

If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set.

Be aware that if you are running multiple nodes of this service, the health status will never refer to the cluster state, only to a single instance.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MetadataAPIIsAliveRequest

func (*MetadataAPIService) IsAliveExecute ¶

Execute executes the request

@return HealthStatus

func (*MetadataAPIService) IsReady ¶

IsReady Check HTTP Server and Database Status

This endpoint returns a HTTP 200 status code when Ory Kratos is up running and the environment dependencies (e.g. the database) are responsive as well.

If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set.

Be aware that if you are running multiple nodes of Ory Kratos, the health status will never refer to the cluster state, only to a single instance.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MetadataAPIIsReadyRequest

func (*MetadataAPIService) IsReadyExecute ¶

Execute executes the request

@return IsReady200Response

type MetricsDatapoint ¶

type MetricsDatapoint struct {
	// The count of events that occured in this time
	Count int64 `json:"count"`
	// The time of the bucket
	Time                 time.Time `json:"time"`
	AdditionalProperties map[string]interface{}
}

MetricsDatapoint Represents a single datapoint/bucket of a time series

func NewMetricsDatapoint ¶

func NewMetricsDatapoint(count int64, time time.Time) *MetricsDatapoint

NewMetricsDatapoint instantiates a new MetricsDatapoint 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 NewMetricsDatapointWithDefaults ¶

func NewMetricsDatapointWithDefaults() *MetricsDatapoint

NewMetricsDatapointWithDefaults instantiates a new MetricsDatapoint 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 (*MetricsDatapoint) GetCount ¶

func (o *MetricsDatapoint) GetCount() int64

GetCount returns the Count field value

func (*MetricsDatapoint) GetCountOk ¶

func (o *MetricsDatapoint) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value and a boolean to check if the value has been set.

func (*MetricsDatapoint) GetTime ¶

func (o *MetricsDatapoint) GetTime() time.Time

GetTime returns the Time field value

func (*MetricsDatapoint) GetTimeOk ¶

func (o *MetricsDatapoint) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value and a boolean to check if the value has been set.

func (MetricsDatapoint) MarshalJSON ¶

func (o MetricsDatapoint) MarshalJSON() ([]byte, error)

func (*MetricsDatapoint) SetCount ¶

func (o *MetricsDatapoint) SetCount(v int64)

SetCount sets field value

func (*MetricsDatapoint) SetTime ¶

func (o *MetricsDatapoint) SetTime(v time.Time)

SetTime sets field value

func (MetricsDatapoint) ToMap ¶

func (o MetricsDatapoint) ToMap() (map[string]interface{}, error)

func (*MetricsDatapoint) UnmarshalJSON ¶

func (o *MetricsDatapoint) UnmarshalJSON(bytes []byte) (err error)

type Namespace ¶

type Namespace struct {
	// Name of the namespace.
	Name                 *string `json:"name,omitempty"`
	AdditionalProperties map[string]interface{}
}

Namespace struct for Namespace

func NewNamespace ¶

func NewNamespace() *Namespace

NewNamespace instantiates a new Namespace 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 NewNamespaceWithDefaults ¶

func NewNamespaceWithDefaults() *Namespace

NewNamespaceWithDefaults instantiates a new Namespace 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 (*Namespace) GetName ¶

func (o *Namespace) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Namespace) GetNameOk ¶

func (o *Namespace) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Namespace) HasName ¶

func (o *Namespace) HasName() bool

HasName returns a boolean if a field has been set.

func (Namespace) MarshalJSON ¶

func (o Namespace) MarshalJSON() ([]byte, error)

func (*Namespace) SetName ¶

func (o *Namespace) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (Namespace) ToMap ¶

func (o Namespace) ToMap() (map[string]interface{}, error)

func (*Namespace) UnmarshalJSON ¶

func (o *Namespace) UnmarshalJSON(bytes []byte) (err error)

type NeedsPrivilegedSessionError ¶

type NeedsPrivilegedSessionError struct {
	Error *GenericError `json:"error,omitempty"`
	// Points to where to redirect the user to next.
	RedirectBrowserTo    string `json:"redirect_browser_to"`
	AdditionalProperties map[string]interface{}
}

NeedsPrivilegedSessionError struct for NeedsPrivilegedSessionError

func NewNeedsPrivilegedSessionError ¶

func NewNeedsPrivilegedSessionError(redirectBrowserTo string) *NeedsPrivilegedSessionError

NewNeedsPrivilegedSessionError instantiates a new NeedsPrivilegedSessionError 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 NewNeedsPrivilegedSessionErrorWithDefaults ¶

func NewNeedsPrivilegedSessionErrorWithDefaults() *NeedsPrivilegedSessionError

NewNeedsPrivilegedSessionErrorWithDefaults instantiates a new NeedsPrivilegedSessionError 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 (*NeedsPrivilegedSessionError) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*NeedsPrivilegedSessionError) GetErrorOk ¶

func (o *NeedsPrivilegedSessionError) GetErrorOk() (*GenericError, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NeedsPrivilegedSessionError) GetRedirectBrowserTo ¶

func (o *NeedsPrivilegedSessionError) GetRedirectBrowserTo() string

GetRedirectBrowserTo returns the RedirectBrowserTo field value

func (*NeedsPrivilegedSessionError) GetRedirectBrowserToOk ¶

func (o *NeedsPrivilegedSessionError) GetRedirectBrowserToOk() (*string, bool)

GetRedirectBrowserToOk returns a tuple with the RedirectBrowserTo field value and a boolean to check if the value has been set.

func (*NeedsPrivilegedSessionError) HasError ¶

func (o *NeedsPrivilegedSessionError) HasError() bool

HasError returns a boolean if a field has been set.

func (NeedsPrivilegedSessionError) MarshalJSON ¶

func (o NeedsPrivilegedSessionError) MarshalJSON() ([]byte, error)

func (*NeedsPrivilegedSessionError) SetError ¶

SetError gets a reference to the given GenericError and assigns it to the Error field.

func (*NeedsPrivilegedSessionError) SetRedirectBrowserTo ¶

func (o *NeedsPrivilegedSessionError) SetRedirectBrowserTo(v string)

SetRedirectBrowserTo sets field value

func (NeedsPrivilegedSessionError) ToMap ¶

func (o NeedsPrivilegedSessionError) ToMap() (map[string]interface{}, error)

func (*NeedsPrivilegedSessionError) UnmarshalJSON ¶

func (o *NeedsPrivilegedSessionError) UnmarshalJSON(bytes []byte) (err error)

type NormalizedProject ¶

type NormalizedProject struct {
	// The Project's Creation Date
	CreatedAt       time.Time                 `json:"created_at"`
	CurrentRevision NormalizedProjectRevision `json:"current_revision"`
	// The environment of the project. prod Production dev Development
	Environment string   `json:"environment"`
	Hosts       []string `json:"hosts"`
	// The project's ID.
	Id string `json:"id"`
	// The project's slug
	Slug string `json:"slug"`
	// The state of the project. running Running halted Halted deleted Deleted
	State            string         `json:"state"`
	SubscriptionId   NullableString `json:"subscription_id,omitempty"`
	SubscriptionPlan NullableString `json:"subscription_plan,omitempty"`
	// Last Time Project was Updated
	UpdatedAt            time.Time      `json:"updated_at"`
	WorkspaceId          NullableString `json:"workspace_id"`
	AdditionalProperties map[string]interface{}
}

NormalizedProject struct for NormalizedProject

func NewNormalizedProject ¶

func NewNormalizedProject(createdAt time.Time, currentRevision NormalizedProjectRevision, environment string, hosts []string, id string, slug string, state string, updatedAt time.Time, workspaceId NullableString) *NormalizedProject

NewNormalizedProject instantiates a new NormalizedProject 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 NewNormalizedProjectWithDefaults ¶

func NewNormalizedProjectWithDefaults() *NormalizedProject

NewNormalizedProjectWithDefaults instantiates a new NormalizedProject 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 (*NormalizedProject) GetCreatedAt ¶

func (o *NormalizedProject) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*NormalizedProject) GetCreatedAtOk ¶

func (o *NormalizedProject) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*NormalizedProject) GetCurrentRevision ¶

func (o *NormalizedProject) GetCurrentRevision() NormalizedProjectRevision

GetCurrentRevision returns the CurrentRevision field value

func (*NormalizedProject) GetCurrentRevisionOk ¶

func (o *NormalizedProject) GetCurrentRevisionOk() (*NormalizedProjectRevision, bool)

GetCurrentRevisionOk returns a tuple with the CurrentRevision field value and a boolean to check if the value has been set.

func (*NormalizedProject) GetEnvironment ¶

func (o *NormalizedProject) GetEnvironment() string

GetEnvironment returns the Environment field value

func (*NormalizedProject) GetEnvironmentOk ¶

func (o *NormalizedProject) GetEnvironmentOk() (*string, bool)

GetEnvironmentOk returns a tuple with the Environment field value and a boolean to check if the value has been set.

func (*NormalizedProject) GetHosts ¶

func (o *NormalizedProject) GetHosts() []string

GetHosts returns the Hosts field value

func (*NormalizedProject) GetHostsOk ¶

func (o *NormalizedProject) GetHostsOk() ([]string, bool)

GetHostsOk returns a tuple with the Hosts field value and a boolean to check if the value has been set.

func (*NormalizedProject) GetId ¶

func (o *NormalizedProject) GetId() string

GetId returns the Id field value

func (*NormalizedProject) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*NormalizedProject) GetSlug ¶

func (o *NormalizedProject) GetSlug() string

GetSlug returns the Slug field value

func (*NormalizedProject) GetSlugOk ¶

func (o *NormalizedProject) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value and a boolean to check if the value has been set.

func (*NormalizedProject) GetState ¶

func (o *NormalizedProject) GetState() string

GetState returns the State field value

func (*NormalizedProject) GetStateOk ¶

func (o *NormalizedProject) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*NormalizedProject) GetSubscriptionId ¶

func (o *NormalizedProject) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NormalizedProject) GetSubscriptionIdOk ¶

func (o *NormalizedProject) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*NormalizedProject) GetSubscriptionPlan ¶

func (o *NormalizedProject) GetSubscriptionPlan() string

GetSubscriptionPlan returns the SubscriptionPlan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NormalizedProject) GetSubscriptionPlanOk ¶

func (o *NormalizedProject) GetSubscriptionPlanOk() (*string, bool)

GetSubscriptionPlanOk returns a tuple with the SubscriptionPlan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*NormalizedProject) GetUpdatedAt ¶

func (o *NormalizedProject) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*NormalizedProject) GetUpdatedAtOk ¶

func (o *NormalizedProject) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (*NormalizedProject) GetWorkspaceId ¶

func (o *NormalizedProject) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value If the value is explicit nil, the zero value for string will be returned

func (*NormalizedProject) GetWorkspaceIdOk ¶

func (o *NormalizedProject) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*NormalizedProject) HasSubscriptionId ¶

func (o *NormalizedProject) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*NormalizedProject) HasSubscriptionPlan ¶

func (o *NormalizedProject) HasSubscriptionPlan() bool

HasSubscriptionPlan returns a boolean if a field has been set.

func (NormalizedProject) MarshalJSON ¶

func (o NormalizedProject) MarshalJSON() ([]byte, error)

func (*NormalizedProject) SetCreatedAt ¶

func (o *NormalizedProject) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*NormalizedProject) SetCurrentRevision ¶

func (o *NormalizedProject) SetCurrentRevision(v NormalizedProjectRevision)

SetCurrentRevision sets field value

func (*NormalizedProject) SetEnvironment ¶

func (o *NormalizedProject) SetEnvironment(v string)

SetEnvironment sets field value

func (*NormalizedProject) SetHosts ¶

func (o *NormalizedProject) SetHosts(v []string)

SetHosts sets field value

func (*NormalizedProject) SetId ¶

func (o *NormalizedProject) SetId(v string)

SetId sets field value

func (*NormalizedProject) SetSlug ¶

func (o *NormalizedProject) SetSlug(v string)

SetSlug sets field value

func (*NormalizedProject) SetState ¶

func (o *NormalizedProject) SetState(v string)

SetState sets field value

func (*NormalizedProject) SetSubscriptionId ¶

func (o *NormalizedProject) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given NullableString and assigns it to the SubscriptionId field.

func (*NormalizedProject) SetSubscriptionIdNil ¶

func (o *NormalizedProject) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (*NormalizedProject) SetSubscriptionPlan ¶

func (o *NormalizedProject) SetSubscriptionPlan(v string)

SetSubscriptionPlan gets a reference to the given NullableString and assigns it to the SubscriptionPlan field.

func (*NormalizedProject) SetSubscriptionPlanNil ¶

func (o *NormalizedProject) SetSubscriptionPlanNil()

SetSubscriptionPlanNil sets the value for SubscriptionPlan to be an explicit nil

func (*NormalizedProject) SetUpdatedAt ¶

func (o *NormalizedProject) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (*NormalizedProject) SetWorkspaceId ¶

func (o *NormalizedProject) SetWorkspaceId(v string)

SetWorkspaceId sets field value

func (NormalizedProject) ToMap ¶

func (o NormalizedProject) ToMap() (map[string]interface{}, error)

func (*NormalizedProject) UnmarshalJSON ¶

func (o *NormalizedProject) UnmarshalJSON(bytes []byte) (err error)

func (*NormalizedProject) UnsetSubscriptionId ¶

func (o *NormalizedProject) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

func (*NormalizedProject) UnsetSubscriptionPlan ¶

func (o *NormalizedProject) UnsetSubscriptionPlan()

UnsetSubscriptionPlan ensures that no value is present for SubscriptionPlan, not even an explicit nil

type NormalizedProjectRevision ¶

type NormalizedProjectRevision struct {
	// The Project's Revision Creation Date
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// Whether to disable the account experience welcome screen, which is hosted under `/ui/welcome`.
	DisableAccountExperienceWelcomeScreen *bool    `json:"disable_account_experience_welcome_screen,omitempty"`
	HydraOauth2AllowedTopLevelClaims      []string `json:"hydra_oauth2_allowed_top_level_claims,omitempty"`
	// Automatically grant authorized OAuth2 Scope in OAuth2 Client Credentials Flow.  Each OAuth2 Client is allowed to request a predefined OAuth2 Scope (for example `read write`). If this option is enabled, the full scope is automatically granted when performing the OAuth2 Client Credentials flow.  If disabled, the OAuth2 Client has to request the scope in the OAuth2 request by providing the `scope` query parameter.  Setting this option to true is common if you need compatibility with MITREid.  This governs the \"oauth2.client_credentials.default_grant_allowed_scope\" setting.
	HydraOauth2ClientCredentialsDefaultGrantAllowedScope *bool `json:"hydra_oauth2_client_credentials_default_grant_allowed_scope,omitempty"`
	// Set to true if you want to exclude claim `nbf (not before)` part of access token.  This governs the \"oauth2.exclude_not_before_claim\" setting.
	HydraOauth2ExcludeNotBeforeClaim *bool `json:"hydra_oauth2_exclude_not_before_claim,omitempty"`
	// Configures if the issued at (`iat`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523).  If set to `false`, the `iat` claim is required. Set this value to `true` only after careful consideration.  This governs the \"oauth2.grant.jwt.iat_optional\" setting.
	HydraOauth2GrantJwtIatOptional *bool `json:"hydra_oauth2_grant_jwt_iat_optional,omitempty"`
	// Configures if the JSON Web Token ID (`jti`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523).  If set to `false`, the `jti` claim is required. Set this value to `true` only after careful consideration.  This governs the \"oauth2.grant.jwt.jti_optional\" setting.
	HydraOauth2GrantJwtJtiOptional *bool `json:"hydra_oauth2_grant_jwt_jti_optional,omitempty"`
	// Configures what the maximum age of a JWT assertion used in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523) can be.  This feature uses the `exp` claim and `iat` claim to calculate assertion age. Assertions exceeding the max age will be denied.  Useful as a safety measure and recommended to keep below 720h.  This governs the \"oauth2.grant.jwt.max_ttl\" setting.
	HydraOauth2GrantJwtMaxTtl *string `json:"hydra_oauth2_grant_jwt_max_ttl,omitempty"`
	// Configures whether PKCE should be enforced for all OAuth2 Clients.  This governs the \"oauth2.pkce.enforced\" setting.
	HydraOauth2PkceEnforced *bool `json:"hydra_oauth2_pkce_enforced,omitempty"`
	// Configures whether PKCE should be enforced for OAuth2 Clients without a client secret (public clients).  This governs the \"oauth2.pkce.enforced_for_public_clients\" setting.
	HydraOauth2PkceEnforcedForPublicClients *bool `json:"hydra_oauth2_pkce_enforced_for_public_clients,omitempty"`
	// Sets the Refresh Token Hook Endpoint. If set this endpoint will be called during the OAuth2 Token Refresh grant update the OAuth2 Access Token claims.  This governs the \"oauth2.refresh_token_hook\" setting.
	HydraOauth2RefreshTokenHook *string `json:"hydra_oauth2_refresh_token_hook,omitempty"`
	// Sets the token hook endpoint for all grant types. If set it will be called while providing token to customize claims.  This governs the \"oauth2.token_hook.url\" setting.
	HydraOauth2TokenHook                           *string  `json:"hydra_oauth2_token_hook,omitempty"`
	HydraOidcDynamicClientRegistrationDefaultScope []string `json:"hydra_oidc_dynamic_client_registration_default_scope,omitempty"`
	// Configures OpenID Connect Dynamic Client Registration.  This governs the \"oidc.dynamic_client_registration.enabled\" setting.
	HydraOidcDynamicClientRegistrationEnabled *bool `json:"hydra_oidc_dynamic_client_registration_enabled,omitempty"`
	// Configures OpenID Connect Discovery and overwrites the pairwise algorithm  This governs the \"oidc.subject_identifiers.pairwise_salt\" setting.
	HydraOidcSubjectIdentifiersPairwiseSalt   *string  `json:"hydra_oidc_subject_identifiers_pairwise_salt,omitempty"`
	HydraOidcSubjectIdentifiersSupportedTypes []string `json:"hydra_oidc_subject_identifiers_supported_types,omitempty"`
	HydraSecretsCookie                        []string `json:"hydra_secrets_cookie,omitempty"`
	HydraSecretsSystem                        []string `json:"hydra_secrets_system,omitempty"`
	// Configures the Ory Hydra Cookie Same Site Legacy Workaround  This governs the \"serve.cookies.same_site_legacy_workaround\" setting.
	HydraServeCookiesSameSiteLegacyWorkaround *bool `json:"hydra_serve_cookies_same_site_legacy_workaround,omitempty"`
	// Configures the Ory Hydra Cookie Same Site Mode  This governs the \"serve.cookies.same_site_mode\" setting.
	HydraServeCookiesSameSiteMode *string `json:"hydra_serve_cookies_same_site_mode,omitempty"`
	// Defines access token type. jwt is a bad idea, see https://www.ory.sh/docs/hydra/advanced#json-web-tokens  This governs the \"strategies.access_token\" setting. opaque Oauth2AccessTokenStrategyOpaque jwt Oauth2AccessTokenStrategyJwt
	HydraStrategiesAccessToken *string `json:"hydra_strategies_access_token,omitempty"`
	// Defines how scopes are matched. For more details have a look at https://github.com/ory/fosite#scopes  This governs the \"strategies.scope\" setting. exact Oauth2ScopeStrategyExact wildcard Oauth2ScopeStrategyWildcard
	HydraStrategiesScope *string `json:"hydra_strategies_scope,omitempty"`
	// This governs the \"ttl.access_token\" setting.
	HydraTtlAccessToken *string `json:"hydra_ttl_access_token,omitempty"`
	// Configures how long refresh tokens are valid.  Set to -1 for refresh tokens to never expire. This is not recommended!  This governs the \"ttl.auth_code\" setting.
	HydraTtlAuthCode *string `json:"hydra_ttl_auth_code,omitempty"`
	// This governs the \"ttl.id_token\" setting.
	HydraTtlIdToken *string `json:"hydra_ttl_id_token,omitempty"`
	// Configures how long a user login and consent flow may take.  This governs the \"ttl.login_consent_request\" setting.
	HydraTtlLoginConsentRequest *string `json:"hydra_ttl_login_consent_request,omitempty"`
	// Configures how long refresh tokens are valid.  Set to -1 for refresh tokens to never expire. This is not recommended!  This governs the \"ttl.refresh_token\" setting.
	HydraTtlRefreshToken *string `json:"hydra_ttl_refresh_token,omitempty"`
	// Sets the OAuth2 Consent Endpoint URL of the OAuth2 User Login & Consent flow.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.consent\" setting.
	HydraUrlsConsent *string `json:"hydra_urls_consent,omitempty"`
	// Sets the OAuth2 Error URL of the OAuth2 User Login & Consent flow.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.error\" setting.
	HydraUrlsError *string `json:"hydra_urls_error,omitempty"`
	// Sets the OAuth2 Login Endpoint URL of the OAuth2 User Login & Consent flow.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.login\" setting.
	HydraUrlsLogin *string `json:"hydra_urls_login,omitempty"`
	// Sets the logout endpoint.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.logout\" setting.
	HydraUrlsLogout *string `json:"hydra_urls_logout,omitempty"`
	// When an OAuth2-related user agent requests to log out, they will be redirected to this url afterwards per default.  Defaults to the Ory Account Experience in development and your application in production mode when a custom domain is connected.  This governs the \"urls.post_logout_redirect\" setting.
	HydraUrlsPostLogoutRedirect *string `json:"hydra_urls_post_logout_redirect,omitempty"`
	// Sets the OAuth2 Registration Endpoint URL of the OAuth2 User Login & Consent flow.  Defaults to the Ory Account Experience if left empty.  This governs the \"urls.registration\" setting.
	HydraUrlsRegistration *string `json:"hydra_urls_registration,omitempty"`
	// This value will be used as the issuer in access and ID tokens. It must be specified and using HTTPS protocol, unless the development mode is enabled.  On the Ory Network it will be very rare that you want to modify this value. If left empty, it will default to the correct value for the Ory Network.  This governs the \"urls.self.issuer\" setting.
	HydraUrlsSelfIssuer             *string  `json:"hydra_urls_self_issuer,omitempty"`
	HydraWebfingerJwksBroadcastKeys []string `json:"hydra_webfinger_jwks_broadcast_keys,omitempty"`
	// Configures OpenID Connect Discovery and overwrites the OAuth2 Authorization URL.  This governs the \"webfinger.oidc.discovery.auth_url\" setting.
	HydraWebfingerOidcDiscoveryAuthUrl *string `json:"hydra_webfinger_oidc_discovery_auth_url,omitempty"`
	// Configures OpenID Connect Discovery and overwrites the OpenID Connect Dynamic Client Registration Endpoint.  This governs the \"webfinger.oidc.discovery.client_registration_url\" setting.
	HydraWebfingerOidcDiscoveryClientRegistrationUrl *string `json:"hydra_webfinger_oidc_discovery_client_registration_url,omitempty"`
	// Configures OpenID Connect Discovery and overwrites the JWKS URL.  This governs the \"webfinger.oidc.discovery.jwks_url\" setting.
	HydraWebfingerOidcDiscoveryJwksUrl         *string  `json:"hydra_webfinger_oidc_discovery_jwks_url,omitempty"`
	HydraWebfingerOidcDiscoverySupportedClaims []string `json:"hydra_webfinger_oidc_discovery_supported_claims,omitempty"`
	HydraWebfingerOidcDiscoverySupportedScope  []string `json:"hydra_webfinger_oidc_discovery_supported_scope,omitempty"`
	// Configures OpenID Connect Discovery and overwrites the OAuth2 Token URL.  This governs the \"webfinger.oidc.discovery.token_url\" setting.
	HydraWebfingerOidcDiscoveryTokenUrl *string `json:"hydra_webfinger_oidc_discovery_token_url,omitempty"`
	// Configures OpenID Connect Discovery and overwrites userinfo endpoint to be advertised at the OpenID Connect Discovery endpoint /.well-known/openid-configuration. Defaults to Ory Hydra's userinfo endpoint at /userinfo. Set this value if you want to handle this endpoint yourself.  This governs the \"webfinger.oidc.discovery.userinfo_url\" setting.
	HydraWebfingerOidcDiscoveryUserinfoUrl *string `json:"hydra_webfinger_oidc_discovery_userinfo_url,omitempty"`
	// The revision ID.
	Id *string `json:"id,omitempty"`
	// The Revisions' Keto Namespace Configuration  The string is a URL pointing to an OPL file with the configuration.
	KetoNamespaceConfiguration *string         `json:"keto_namespace_configuration,omitempty"`
	KetoNamespaces             []KetoNamespace `json:"keto_namespaces,omitempty"`
	// Configures the Ory Kratos Cookie SameSite Attribute  This governs the \"cookies.same_site\" setting.
	KratosCookiesSameSite *string                                   `json:"kratos_cookies_same_site,omitempty"`
	KratosCourierChannels []NormalizedProjectRevisionCourierChannel `json:"kratos_courier_channels,omitempty"`
	// The delivery strategy to use when sending emails  `smtp`: Use SMTP server `http`: Use the built in HTTP client to send the email to some remote service
	KratosCourierDeliveryStrategy *string `json:"kratos_courier_delivery_strategy,omitempty"`
	// The location of the API key to use in the HTTP email sending service's authentication  `header`: Send the key value pair as a header `cookie`: Send the key value pair as a cookie This governs the \"courier.http.auth.config.in\" setting
	KratosCourierHttpRequestConfigAuthApiKeyIn *string `json:"kratos_courier_http_request_config_auth_api_key_in,omitempty"`
	// The name of the API key to use in the HTTP email sending service's authentication  This governs the \"courier.http.auth.config.name\" setting
	KratosCourierHttpRequestConfigAuthApiKeyName *string `json:"kratos_courier_http_request_config_auth_api_key_name,omitempty"`
	// The value of the API key to use in the HTTP email sending service's authentication  This governs the \"courier.http.auth.config.value\" setting
	KratosCourierHttpRequestConfigAuthApiKeyValue *string `json:"kratos_courier_http_request_config_auth_api_key_value,omitempty"`
	// The password to use for basic auth in the HTTP email sending service's authentication  This governs the \"courier.http.auth.config.password\" setting
	KratosCourierHttpRequestConfigAuthBasicAuthPassword *string `json:"kratos_courier_http_request_config_auth_basic_auth_password,omitempty"`
	// The user to use for basic auth in the HTTP email sending service's authentication  This governs the \"courier.http.auth.config.user\" setting
	KratosCourierHttpRequestConfigAuthBasicAuthUser *string `json:"kratos_courier_http_request_config_auth_basic_auth_user,omitempty"`
	// The authentication type to use while contacting the remote HTTP email sending service  `basic_auth`: Use Basic Authentication `api_key`: Use API Key Authentication in a header or cookie
	KratosCourierHttpRequestConfigAuthType *string `json:"kratos_courier_http_request_config_auth_type,omitempty"`
	// The Jsonnet template to generate the body to send to the remote HTTP email sending service  Should be valid Jsonnet and base64 encoded  This governs the \"courier.http.body\" setting
	KratosCourierHttpRequestConfigBody *string `json:"kratos_courier_http_request_config_body,omitempty"`
	// NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-
	KratosCourierHttpRequestConfigHeaders map[string]interface{} `json:"kratos_courier_http_request_config_headers,omitempty"`
	// The http METHOD to use when calling the remote HTTP email sending service
	KratosCourierHttpRequestConfigMethod *string `json:"kratos_courier_http_request_config_method,omitempty"`
	// The URL of the remote HTTP email sending service  This governs the \"courier.http.url\" setting
	KratosCourierHttpRequestConfigUrl *string `json:"kratos_courier_http_request_config_url,omitempty"`
	// Configures the Ory Kratos SMTP Connection URI  This governs the \"courier.smtp.connection_uri\" setting.
	KratosCourierSmtpConnectionUri *string `json:"kratos_courier_smtp_connection_uri,omitempty"`
	// Configures the Ory Kratos SMTP From Address  This governs the \"courier.smtp.from_address\" setting.
	KratosCourierSmtpFromAddress *string `json:"kratos_courier_smtp_from_address,omitempty"`
	// Configures the Ory Kratos SMTP From Name  This governs the \"courier.smtp.from_name\" setting.
	KratosCourierSmtpFromName *string `json:"kratos_courier_smtp_from_name,omitempty"`
	// NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-
	KratosCourierSmtpHeaders map[string]interface{} `json:"kratos_courier_smtp_headers,omitempty"`
	// Configures the local_name to use in SMTP connections  This governs the \"courier.smtp.local_name\" setting.
	KratosCourierSmtpLocalName *string `json:"kratos_courier_smtp_local_name,omitempty"`
	// Configures the Ory Kratos Valid Login via Code Email Body HTML Template  This governs the \"courier.smtp.templates.login_code.valid.email.body.html\" setting.
	KratosCourierTemplatesLoginCodeValidEmailBodyHtml *string `json:"kratos_courier_templates_login_code_valid_email_body_html,omitempty"`
	// Configures the Ory Kratos Valid Login via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.login_code.valid.email.body.plaintext\" setting.
	KratosCourierTemplatesLoginCodeValidEmailBodyPlaintext *string `json:"kratos_courier_templates_login_code_valid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Valid Login via Code Email Subject Template  This governs the \"courier.smtp.templates.login_code.valid.email.subject\" setting.
	KratosCourierTemplatesLoginCodeValidEmailSubject *string `json:"kratos_courier_templates_login_code_valid_email_subject,omitempty"`
	// Configures the Ory Kratos Invalid Recovery via Code Email Body HTML Template  This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.
	KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml *string `json:"kratos_courier_templates_recovery_code_invalid_email_body_html,omitempty"`
	// Configures the Ory Kratos Invalid Recovery via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.plaintext\" setting.
	KratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext *string `json:"kratos_courier_templates_recovery_code_invalid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Invalid Recovery via Code Email Subject Template  This governs the \"courier.smtp.templates.recovery_code.invalid.email.body.html\" setting.
	KratosCourierTemplatesRecoveryCodeInvalidEmailSubject *string `json:"kratos_courier_templates_recovery_code_invalid_email_subject,omitempty"`
	// Configures the Ory Kratos Valid Recovery via Code Email Body HTML Template  This governs the \"courier.smtp.templates.recovery_code.valid.email.body.html\" setting.
	KratosCourierTemplatesRecoveryCodeValidEmailBodyHtml *string `json:"kratos_courier_templates_recovery_code_valid_email_body_html,omitempty"`
	// Configures the Ory Kratos Valid Recovery via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.recovery_code.valid.email.body.plaintext\" setting.
	KratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext *string `json:"kratos_courier_templates_recovery_code_valid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Valid Recovery via Code Email Subject Template  This governs the \"courier.smtp.templates.recovery_code.valid.email.subject\" setting.
	KratosCourierTemplatesRecoveryCodeValidEmailSubject *string `json:"kratos_courier_templates_recovery_code_valid_email_subject,omitempty"`
	// Configures the Ory Kratos Invalid Recovery Email Body HTML Template  This governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.
	KratosCourierTemplatesRecoveryInvalidEmailBodyHtml *string `json:"kratos_courier_templates_recovery_invalid_email_body_html,omitempty"`
	// Configures the Ory Kratos Invalid Recovery Email Body Plaintext Template  This governs the \"courier.smtp.templates.recovery.invalid.email.body.plaintext\" setting.
	KratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext *string `json:"kratos_courier_templates_recovery_invalid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Invalid Recovery Email Subject Template  This governs the \"courier.smtp.templates.recovery.invalid.email.body.html\" setting.
	KratosCourierTemplatesRecoveryInvalidEmailSubject *string `json:"kratos_courier_templates_recovery_invalid_email_subject,omitempty"`
	// Configures the Ory Kratos Valid Recovery Email Body HTML Template  This governs the \"courier.smtp.templates.recovery.valid.email.body.html\" setting.
	KratosCourierTemplatesRecoveryValidEmailBodyHtml *string `json:"kratos_courier_templates_recovery_valid_email_body_html,omitempty"`
	// Configures the Ory Kratos Valid Recovery Email Body Plaintext Template  This governs the \"courier.smtp.templates.recovery.valid.email.body.plaintext\" setting.
	KratosCourierTemplatesRecoveryValidEmailBodyPlaintext *string `json:"kratos_courier_templates_recovery_valid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Valid Recovery Email Subject Template  This governs the \"courier.smtp.templates.recovery.valid.email.subject\" setting.
	KratosCourierTemplatesRecoveryValidEmailSubject *string `json:"kratos_courier_templates_recovery_valid_email_subject,omitempty"`
	// Configures the Ory Kratos Valid Registration via Code Email Body HTML Template  This governs the \"courier.smtp.templates.registration_code.valid.email.body.html\" setting.
	KratosCourierTemplatesRegistrationCodeValidEmailBodyHtml *string `json:"kratos_courier_templates_registration_code_valid_email_body_html,omitempty"`
	// Configures the Ory Kratos Valid Registration via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.registration_code.valid.email.body.plaintext\" setting.
	KratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext *string `json:"kratos_courier_templates_registration_code_valid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Valid Registration via Code Email Subject Template  This governs the \"courier.smtp.templates.registration_code.valid.email.subject\" setting.
	KratosCourierTemplatesRegistrationCodeValidEmailSubject *string `json:"kratos_courier_templates_registration_code_valid_email_subject,omitempty"`
	// Configures the Ory Kratos Invalid Verification via Code Email Body HTML Template  This governs the \"courier.smtp.templates.verification_code.invalid.email.body.html\" setting.
	KratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml *string `json:"kratos_courier_templates_verification_code_invalid_email_body_html,omitempty"`
	// Configures the Ory Kratos Invalid Verification via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.verification_code.invalid.email.body.plaintext\" setting.
	KratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext *string `json:"kratos_courier_templates_verification_code_invalid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Invalid Verification via Code Email Subject Template  This governs the \"courier.smtp.templates.verification_code.invalid.email.subject\" setting.
	KratosCourierTemplatesVerificationCodeInvalidEmailSubject *string `json:"kratos_courier_templates_verification_code_invalid_email_subject,omitempty"`
	// Configures the Ory Kratos Valid Verification via Code Email Body HTML Template  This governs the \"courier.smtp.templates.verification_code.valid.email.body.html\" setting.
	KratosCourierTemplatesVerificationCodeValidEmailBodyHtml *string `json:"kratos_courier_templates_verification_code_valid_email_body_html,omitempty"`
	// Configures the Ory Kratos Valid Verification via Code Email Body Plaintext Template  This governs the \"courier.smtp.templates.verification_code.valid.email.body.plaintext\" setting.
	KratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext *string `json:"kratos_courier_templates_verification_code_valid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Valid Verification via Code Email Subject Template  This governs the \"courier.smtp.templates.verification_code.valid.email.subject\" setting.
	KratosCourierTemplatesVerificationCodeValidEmailSubject *string `json:"kratos_courier_templates_verification_code_valid_email_subject,omitempty"`
	// Configures the Ory Kratos Valid Verification via Code SMS Body Plaintext  This governs the \"courier.smtp.templates.verification_code.valid.sms.body.plaintext\" setting.
	KratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext *string `json:"kratos_courier_templates_verification_code_valid_sms_body_plaintext,omitempty"`
	// Configures the Ory Kratos Invalid Verification Email Body HTML Template  This governs the \"courier.smtp.templates.verification.invalid.email.body.html\" setting.
	KratosCourierTemplatesVerificationInvalidEmailBodyHtml *string `json:"kratos_courier_templates_verification_invalid_email_body_html,omitempty"`
	// Configures the Ory Kratos Invalid Verification Email Body Plaintext Template  This governs the \"courier.smtp.templates.verification.invalid.email.body.plaintext\" setting.
	KratosCourierTemplatesVerificationInvalidEmailBodyPlaintext *string `json:"kratos_courier_templates_verification_invalid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Invalid Verification Email Subject Template  This governs the \"courier.smtp.templates.verification.invalid.email.subject\" setting.
	KratosCourierTemplatesVerificationInvalidEmailSubject *string `json:"kratos_courier_templates_verification_invalid_email_subject,omitempty"`
	// Configures the Ory Kratos Valid Verification Email Body HTML Template  This governs the \"courier.smtp.templates.verification.valid.email.body.html\" setting.
	KratosCourierTemplatesVerificationValidEmailBodyHtml *string `json:"kratos_courier_templates_verification_valid_email_body_html,omitempty"`
	// Configures the Ory Kratos Valid Verification Email Body Plaintext Template  This governs the \"courier.smtp.templates.verification.valid.email.body.plaintext\" setting.
	KratosCourierTemplatesVerificationValidEmailBodyPlaintext *string `json:"kratos_courier_templates_verification_valid_email_body_plaintext,omitempty"`
	// Configures the Ory Kratos Valid Verification Email Subject Template  This governs the \"courier.smtp.templates.verification.valid.email.subject\" setting.
	KratosCourierTemplatesVerificationValidEmailSubject *string `json:"kratos_courier_templates_verification_valid_email_subject,omitempty"`
	// Configures the Ory Kratos Session caching feature flag  This governs the \"feature_flags.cacheable_sessions\" setting.
	KratosFeatureFlagsCacheableSessions *bool `json:"kratos_feature_flags_cacheable_sessions,omitempty"`
	// Configures the Ory Kratos Session use_continue_with_transitions flag  This governs the \"feature_flags.use_continue_with_transitions\" setting.
	KratosFeatureFlagsUseContinueWithTransitions *bool                                     `json:"kratos_feature_flags_use_continue_with_transitions,omitempty"`
	KratosIdentitySchemas                        []NormalizedProjectRevisionIdentitySchema `json:"kratos_identity_schemas,omitempty"`
	// NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-
	KratosOauth2ProviderHeaders map[string]interface{} `json:"kratos_oauth2_provider_headers,omitempty"`
	// Kratos OAuth2 Provider Override Return To  Enabling this allows Kratos to set the return_to parameter automatically to the OAuth2 request URL on the login flow, allowing complex flows such as recovery to continue to the initial OAuth2 flow.
	KratosOauth2ProviderOverrideReturnTo *bool `json:"kratos_oauth2_provider_override_return_to,omitempty"`
	// The Revisions' OAuth2 Provider Integration URL  This governs the \"oauth2_provider.url\" setting.
	KratosOauth2ProviderUrl *string `json:"kratos_oauth2_provider_url,omitempty"`
	// Configures the default read consistency level for identity APIs  This governs the `preview.default_read_consistency_level` setting.  The read consistency level determines the consistency guarantee for reads:  strong (slow): The read is guaranteed to return the most recent data committed at the start of the read. eventual (very fast): The result will return data that is about 4.8 seconds old.  Setting the default consistency level to `eventual` may cause regressions in the future as we add consistency controls to more APIs. Currently, the following APIs will be affected by this setting:  `GET /admin/identities`  Defaults to \"strong\" for new and existing projects. This feature is in preview. Use with caution.
	KratosPreviewDefaultReadConsistencyLevel *string  `json:"kratos_preview_default_read_consistency_level,omitempty"`
	KratosSecretsCipher                      []string `json:"kratos_secrets_cipher,omitempty"`
	KratosSecretsCookie                      []string `json:"kratos_secrets_cookie,omitempty"`
	KratosSecretsDefault                     []string `json:"kratos_secrets_default,omitempty"`
	KratosSelfserviceAllowedReturnUrls       []string `json:"kratos_selfservice_allowed_return_urls,omitempty"`
	// Configures the Ory Kratos Default Return URL  This governs the \"selfservice.allowed_return_urls\" setting.
	KratosSelfserviceDefaultBrowserReturnUrl *string `json:"kratos_selfservice_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Error UI URL  This governs the \"selfservice.flows.error.ui_url\" setting.
	KratosSelfserviceFlowsErrorUiUrl *string `json:"kratos_selfservice_flows_error_ui_url,omitempty"`
	// Configures the Ory Kratos Login After Password Default Return URL  This governs the \"selfservice.flows.code.after.password.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_login_after_code_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Login Default Return URL  This governs the \"selfservice.flows.login.after.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_login_after_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Login After Password Default Return URL  This governs the \"selfservice.flows.lookup_secret.after.password.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_login_after_lookup_secret_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Login After OIDC Default Return URL  This governs the \"selfservice.flows.login.after.oidc.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_login_after_oidc_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Login After Password Default Return URL  This governs the \"selfservice.flows.login.after.password.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_login_after_password_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Login After Password Default Return URL  This governs the \"selfservice.flows.totp.after.password.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_login_after_totp_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Login After WebAuthn Default Return URL  This governs the \"selfservice.flows.login.after.webauthn.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_login_after_webauthn_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Login Lifespan  This governs the \"selfservice.flows.login.lifespan\" setting.
	KratosSelfserviceFlowsLoginLifespan *string `json:"kratos_selfservice_flows_login_lifespan,omitempty"`
	// Configures the Ory Kratos Login UI URL  This governs the \"selfservice.flows.login.ui_url\" setting.
	KratosSelfserviceFlowsLoginUiUrl *string `json:"kratos_selfservice_flows_login_ui_url,omitempty"`
	// Configures the Ory Kratos Logout Default Return URL  This governs the \"selfservice.flows.logout.after.default_browser_return_url\" setting.
	KratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_logout_after_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Recovery Default Return URL  This governs the \"selfservice.flows.recovery.after.default_browser_return_url\" setting.
	KratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_recovery_after_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Recovery Enabled Setting  This governs the \"selfservice.flows.recovery.enabled\" setting.
	KratosSelfserviceFlowsRecoveryEnabled *bool `json:"kratos_selfservice_flows_recovery_enabled,omitempty"`
	// Configures the Ory Kratos Recovery Lifespan  This governs the \"selfservice.flows.recovery.lifespan\" setting.
	KratosSelfserviceFlowsRecoveryLifespan *string `json:"kratos_selfservice_flows_recovery_lifespan,omitempty"`
	// Configures whether to notify unknown recipients of a Ory Kratos recovery flow  This governs the \"selfservice.flows.recovery.notify_unknown_recipients\" setting.
	KratosSelfserviceFlowsRecoveryNotifyUnknownRecipients *bool `json:"kratos_selfservice_flows_recovery_notify_unknown_recipients,omitempty"`
	// Configures the Ory Kratos Recovery UI URL  This governs the \"selfservice.flows.recovery.ui_url\" setting.
	KratosSelfserviceFlowsRecoveryUiUrl *string `json:"kratos_selfservice_flows_recovery_ui_url,omitempty"`
	// Configures the Ory Kratos Recovery strategy to use (\"link\" or \"code\")  This governs the \"selfservice.flows.recovery.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode
	KratosSelfserviceFlowsRecoveryUse *string `json:"kratos_selfservice_flows_recovery_use,omitempty"`
	// Configures the Ory Kratos Registration After Code Default Return URL  This governs the \"selfservice.flows.registration.after.code.default_browser_return_url\" setting.
	KratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_registration_after_code_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Registration Default Return URL  This governs the \"selfservice.flows.registration.after.default_browser_return_url\" setting.
	KratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_registration_after_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Registration After OIDC Default Return URL  This governs the \"selfservice.flows.registration.after.oidc.default_browser_return_url\" setting.
	KratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_registration_after_oidc_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Registration After Password Default Return URL  This governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.
	KratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_registration_after_password_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Registration After Password Default Return URL  This governs the \"selfservice.flows.registration.after.password.default_browser_return_url\" setting.
	KratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_registration_after_webauthn_default_browser_return_url,omitempty"`
	// Configures the Whether Ory Kratos Registration is Enabled  This governs the \"selfservice.flows.registration.enabled\" setting.0
	KratosSelfserviceFlowsRegistrationEnabled *bool `json:"kratos_selfservice_flows_registration_enabled,omitempty"`
	// Configures the Ory Kratos Registration Lifespan  This governs the \"selfservice.flows.registration.lifespan\" setting.
	KratosSelfserviceFlowsRegistrationLifespan *string `json:"kratos_selfservice_flows_registration_lifespan,omitempty"`
	// Configures the Ory Kratos Registration Login Hints  Shows helpful information when a user tries to sign up with a duplicate account.  This governs the \"selfservice.flows.registration.login_hints\" setting.
	KratosSelfserviceFlowsRegistrationLoginHints *bool `json:"kratos_selfservice_flows_registration_login_hints,omitempty"`
	// Configures the Ory Kratos Registration UI URL  This governs the \"selfservice.flows.registration.ui_url\" setting.
	KratosSelfserviceFlowsRegistrationUiUrl *string `json:"kratos_selfservice_flows_registration_ui_url,omitempty"`
	// Configures the Ory Kratos Settings Default Return URL  This governs the \"selfservice.flows.settings.after.default_browser_return_url\" setting.
	KratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_settings_after_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Settings Default Return URL After Updating Lookup Secrets  This governs the \"selfservice.flows.settings.after.lookup_secret.default_browser_return_url\" setting.
	KratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_settings_after_lookup_secret_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Settings Default Return URL After Updating Social Sign In  This governs the \"selfservice.flows.settings.after.oidc.default_browser_return_url\" setting.
	KratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_settings_after_oidc_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Settings Default Return URL After Updating Passwords  This governs the \"selfservice.flows.settings.after.password.default_browser_return_url\" setting.
	KratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_settings_after_password_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Settings Default Return URL After Updating Profiles  This governs the \"selfservice.flows.settings.after.profile.default_browser_return_url\" setting.
	KratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_settings_after_profile_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Settings Default Return URL After Updating TOTP  This governs the \"selfservice.flows.settings.after.totp.default_browser_return_url\" setting.
	KratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_settings_after_totp_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Settings Default Return URL After Updating WebAuthn  This governs the \"selfservice.flows.settings.webauthn.profile.default_browser_return_url\" setting.
	KratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_settings_after_webauthn_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Settings Lifespan  This governs the \"selfservice.flows.settings.lifespan\" setting.
	KratosSelfserviceFlowsSettingsLifespan *string `json:"kratos_selfservice_flows_settings_lifespan,omitempty"`
	// Configures the Ory Kratos Settings Privileged Session Max Age  This governs the \"selfservice.flows.settings.privileged_session_max_age\" setting.
	KratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge *string `json:"kratos_selfservice_flows_settings_privileged_session_max_age,omitempty"`
	// Configures the Ory Kratos Settings Required AAL  This governs the \"selfservice.flows.settings.required_aal\" setting.
	KratosSelfserviceFlowsSettingsRequiredAal *string `json:"kratos_selfservice_flows_settings_required_aal,omitempty"`
	// Configures the Ory Kratos Settings UI URL  This governs the \"selfservice.flows.settings.ui_url\" setting.
	KratosSelfserviceFlowsSettingsUiUrl *string `json:"kratos_selfservice_flows_settings_ui_url,omitempty"`
	// Configures the Ory Kratos Verification Default Return URL  This governs the \"selfservice.flows.verification.after.default_browser_return_url\" setting.
	KratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl *string `json:"kratos_selfservice_flows_verification_after_default_browser_return_url,omitempty"`
	// Configures the Ory Kratos Verification Enabled Setting  This governs the \"selfservice.flows.verification.enabled\" setting.
	KratosSelfserviceFlowsVerificationEnabled *bool `json:"kratos_selfservice_flows_verification_enabled,omitempty"`
	// Configures the Ory Kratos Verification Lifespan  This governs the \"selfservice.flows.verification.lifespan\" setting.
	KratosSelfserviceFlowsVerificationLifespan *string `json:"kratos_selfservice_flows_verification_lifespan,omitempty"`
	// Configures whether to notify unknown recipients of a Ory Kratos verification flow  This governs the \"selfservice.flows.verification.notify_unknown_recipients\" setting.
	KratosSelfserviceFlowsVerificationNotifyUnknownRecipients *bool `json:"kratos_selfservice_flows_verification_notify_unknown_recipients,omitempty"`
	// Configures the Ory Kratos Verification UI URL  This governs the \"selfservice.flows.verification.ui_url\" setting.
	KratosSelfserviceFlowsVerificationUiUrl *string `json:"kratos_selfservice_flows_verification_ui_url,omitempty"`
	// Configures the Ory Kratos Strategy to use for Verification  This governs the \"selfservice.flows.verification.use\" setting. link SelfServiceMessageVerificationStrategyLink code SelfServiceMessageVerificationStrategyCode
	KratosSelfserviceFlowsVerificationUse *string `json:"kratos_selfservice_flows_verification_use,omitempty"`
	// Configures the Ory Kratos Code Method's lifespan  This governs the \"selfservice.methods.code.config.lifespan\" setting.
	KratosSelfserviceMethodsCodeConfigLifespan *string `json:"kratos_selfservice_methods_code_config_lifespan,omitempty"`
	// Configures whether Ory Kratos Code Method is enabled  This governs the \"selfservice.methods.code.enabled\" setting.
	KratosSelfserviceMethodsCodeEnabled *bool `json:"kratos_selfservice_methods_code_enabled,omitempty"`
	// Configues whether Ory Kratos Passwordless should use the Code Method  This governs the \"selfservice.methods.code.passwordless_enabled\" setting.
	KratosSelfserviceMethodsCodePasswordlessEnabled *bool `json:"kratos_selfservice_methods_code_passwordless_enabled,omitempty"`
	// Configures the Base URL which Recovery, Verification, and Login Links Point to  It is recommended to leave this value empty. It will be appropriately configured to the best matching domain (e.g. when using custom domains) automatically.  This governs the \"selfservice.methods.link.config.base_url\" setting.
	KratosSelfserviceMethodsLinkConfigBaseUrl *string `json:"kratos_selfservice_methods_link_config_base_url,omitempty"`
	// Configures the Ory Kratos Link Method's lifespan  This governs the \"selfservice.methods.link.config.lifespan\" setting.
	KratosSelfserviceMethodsLinkConfigLifespan *string `json:"kratos_selfservice_methods_link_config_lifespan,omitempty"`
	// Configures whether Ory Kratos Link Method is enabled  This governs the \"selfservice.methods.link.enabled\" setting.
	KratosSelfserviceMethodsLinkEnabled *bool `json:"kratos_selfservice_methods_link_enabled,omitempty"`
	// Configures whether Ory Kratos TOTP Lookup Secret is enabled  This governs the \"selfservice.methods.lookup_secret.enabled\" setting.
	KratosSelfserviceMethodsLookupSecretEnabled *bool `json:"kratos_selfservice_methods_lookup_secret_enabled,omitempty"`
	// Configures the Ory Kratos Third Party / OpenID Connect base redirect URI  This governs the \"selfservice.methods.oidc.config.base_redirect_uri\" setting.
	KratosSelfserviceMethodsOidcConfigBaseRedirectUri *string                                       `json:"kratos_selfservice_methods_oidc_config_base_redirect_uri,omitempty"`
	KratosSelfserviceMethodsOidcConfigProviders       []NormalizedProjectRevisionThirdPartyProvider `json:"kratos_selfservice_methods_oidc_config_providers,omitempty"`
	// Configures whether Ory Kratos Third Party / OpenID Connect Login is enabled  This governs the \"selfservice.methods.oidc.enabled\" setting.
	KratosSelfserviceMethodsOidcEnabled *bool `json:"kratos_selfservice_methods_oidc_enabled,omitempty"`
	// Configures whether Ory Kratos Password HIBP Checks is enabled  This governs the \"selfservice.methods.password.config.haveibeenpwned_enabled\" setting.
	KratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled *bool `json:"kratos_selfservice_methods_password_config_haveibeenpwned_enabled,omitempty"`
	// Configures whether Ory Kratos Password should disable the similarity policy.  This governs the \"selfservice.methods.password.config.identifier_similarity_check_enabled\" setting.
	KratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled *bool `json:"kratos_selfservice_methods_password_config_identifier_similarity_check_enabled,omitempty"`
	// Configures whether Ory Kratos Password Should ignore HIBPWND Network Errors  This governs the \"selfservice.methods.password.config.ignore_network_errors\" setting.
	KratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors *bool `json:"kratos_selfservice_methods_password_config_ignore_network_errors,omitempty"`
	// Configures Ory Kratos Password Max Breaches Detection  This governs the \"selfservice.methods.password.config.max_breaches\" setting.
	KratosSelfserviceMethodsPasswordConfigMaxBreaches *int64 `json:"kratos_selfservice_methods_password_config_max_breaches,omitempty"`
	// Configures the minimum length of passwords.  This governs the \"selfservice.methods.password.config.min_password_length\" setting.
	KratosSelfserviceMethodsPasswordConfigMinPasswordLength *int64 `json:"kratos_selfservice_methods_password_config_min_password_length,omitempty"`
	// Configures whether Ory Kratos Password Method is enabled  This governs the \"selfservice.methods.password.enabled\" setting.
	KratosSelfserviceMethodsPasswordEnabled *bool `json:"kratos_selfservice_methods_password_enabled,omitempty"`
	// Configures whether Ory Kratos Profile Method is enabled  This governs the \"selfservice.methods.profile.enabled\" setting.
	KratosSelfserviceMethodsProfileEnabled *bool `json:"kratos_selfservice_methods_profile_enabled,omitempty"`
	// Configures Ory Kratos TOTP Issuer  This governs the \"selfservice.methods.totp.config.issuer\" setting.
	KratosSelfserviceMethodsTotpConfigIssuer *string `json:"kratos_selfservice_methods_totp_config_issuer,omitempty"`
	// Configures whether Ory Kratos TOTP Method is enabled  This governs the \"selfservice.methods.totp.enabled\" setting.
	KratosSelfserviceMethodsTotpEnabled *bool `json:"kratos_selfservice_methods_totp_enabled,omitempty"`
	// Configures whether Ory Kratos Webauthn is used for passwordless flows  This governs the \"selfservice.methods.webauthn.config.passwordless\" setting.
	KratosSelfserviceMethodsWebauthnConfigPasswordless *bool `json:"kratos_selfservice_methods_webauthn_config_passwordless,omitempty"`
	// Configures the Ory Kratos Webauthn RP Display Name  This governs the \"selfservice.methods.webauthn.config.rp.display_name\" setting.
	KratosSelfserviceMethodsWebauthnConfigRpDisplayName *string `json:"kratos_selfservice_methods_webauthn_config_rp_display_name,omitempty"`
	// Configures the Ory Kratos Webauthn RP Icon  This governs the \"selfservice.methods.webauthn.config.rp.icon\" setting. Deprecated: This value will be ignored due to security considerations.
	KratosSelfserviceMethodsWebauthnConfigRpIcon *string `json:"kratos_selfservice_methods_webauthn_config_rp_icon,omitempty"`
	// Configures the Ory Kratos Webauthn RP ID  This governs the \"selfservice.methods.webauthn.config.rp.id\" setting.
	KratosSelfserviceMethodsWebauthnConfigRpId      *string  `json:"kratos_selfservice_methods_webauthn_config_rp_id,omitempty"`
	KratosSelfserviceMethodsWebauthnConfigRpOrigins []string `json:"kratos_selfservice_methods_webauthn_config_rp_origins,omitempty"`
	// Configures whether Ory Kratos Webauthn is enabled  This governs the \"selfservice.methods.webauthn.enabled\" setting.
	KratosSelfserviceMethodsWebauthnEnabled *bool `json:"kratos_selfservice_methods_webauthn_enabled,omitempty"`
	// Configures the Ory Kratos Session Cookie Persistent Attribute  This governs the \"session.cookie.persistent\" setting.
	KratosSessionCookiePersistent *bool `json:"kratos_session_cookie_persistent,omitempty"`
	// Configures the Ory Kratos Session Cookie SameSite Attribute  This governs the \"session.cookie.same_site\" setting.
	KratosSessionCookieSameSite *string `json:"kratos_session_cookie_same_site,omitempty"`
	// Configures the Ory Kratos Session Lifespan  This governs the \"session.lifespan\" setting.
	KratosSessionLifespan *string `json:"kratos_session_lifespan,omitempty"`
	// Configures the Ory Kratos Session Whoami AAL requirement  This governs the \"session.whoami.required_aal\" setting.
	KratosSessionWhoamiRequiredAal        *string                                      `json:"kratos_session_whoami_required_aal,omitempty"`
	KratosSessionWhoamiTokenizerTemplates []NormalizedProjectRevisionTokenizerTemplate `json:"kratos_session_whoami_tokenizer_templates,omitempty"`
	// The project's name.
	Name string `json:"name"`
	// The Revision's Project ID
	ProjectId                    *string                         `json:"project_id,omitempty"`
	ProjectRevisionHooks         []NormalizedProjectRevisionHook `json:"project_revision_hooks,omitempty"`
	ServeAdminCorsAllowedOrigins []string                        `json:"serve_admin_cors_allowed_origins,omitempty"`
	// Enable CORS headers on all admin APIs  This governs the \"serve.admin.cors.enabled\" setting.
	ServeAdminCorsEnabled         *bool    `json:"serve_admin_cors_enabled,omitempty"`
	ServePublicCorsAllowedOrigins []string `json:"serve_public_cors_allowed_origins,omitempty"`
	// Enable CORS headers on all public APIs  This governs the \"serve.public.cors.enabled\" setting.
	ServePublicCorsEnabled *bool `json:"serve_public_cors_enabled,omitempty"`
	// Whether the project should employ strict security measures. Setting this to true is recommended for going into production.
	StrictSecurity *bool `json:"strict_security,omitempty"`
	// Last Time Project's Revision was Updated
	UpdatedAt            *time.Time `json:"updated_at,omitempty"`
	AdditionalProperties map[string]interface{}
}

NormalizedProjectRevision struct for NormalizedProjectRevision

func NewNormalizedProjectRevision ¶

func NewNormalizedProjectRevision(name string) *NormalizedProjectRevision

NewNormalizedProjectRevision instantiates a new NormalizedProjectRevision 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 NewNormalizedProjectRevisionWithDefaults ¶

func NewNormalizedProjectRevisionWithDefaults() *NormalizedProjectRevision

NewNormalizedProjectRevisionWithDefaults instantiates a new NormalizedProjectRevision 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 (*NormalizedProjectRevision) GetCreatedAt ¶

func (o *NormalizedProjectRevision) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetCreatedAtOk ¶

func (o *NormalizedProjectRevision) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetDisableAccountExperienceWelcomeScreen ¶

func (o *NormalizedProjectRevision) GetDisableAccountExperienceWelcomeScreen() bool

GetDisableAccountExperienceWelcomeScreen returns the DisableAccountExperienceWelcomeScreen field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetDisableAccountExperienceWelcomeScreenOk ¶

func (o *NormalizedProjectRevision) GetDisableAccountExperienceWelcomeScreenOk() (*bool, bool)

GetDisableAccountExperienceWelcomeScreenOk returns a tuple with the DisableAccountExperienceWelcomeScreen field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraOauth2AllowedTopLevelClaims ¶

func (o *NormalizedProjectRevision) GetHydraOauth2AllowedTopLevelClaims() []string

GetHydraOauth2AllowedTopLevelClaims returns the HydraOauth2AllowedTopLevelClaims field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraOauth2AllowedTopLevelClaimsOk ¶

func (o *NormalizedProjectRevision) GetHydraOauth2AllowedTopLevelClaimsOk() ([]string, bool)

GetHydraOauth2AllowedTopLevelClaimsOk returns a tuple with the HydraOauth2AllowedTopLevelClaims field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraOauth2ClientCredentialsDefaultGrantAllowedScope ¶

func (o *NormalizedProjectRevision) GetHydraOauth2ClientCredentialsDefaultGrantAllowedScope() bool

GetHydraOauth2ClientCredentialsDefaultGrantAllowedScope returns the HydraOauth2ClientCredentialsDefaultGrantAllowedScope field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraOauth2ClientCredentialsDefaultGrantAllowedScopeOk ¶

func (o *NormalizedProjectRevision) GetHydraOauth2ClientCredentialsDefaultGrantAllowedScopeOk() (*bool, bool)

GetHydraOauth2ClientCredentialsDefaultGrantAllowedScopeOk returns a tuple with the HydraOauth2ClientCredentialsDefaultGrantAllowedScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraOauth2ExcludeNotBeforeClaim ¶

func (o *NormalizedProjectRevision) GetHydraOauth2ExcludeNotBeforeClaim() bool

GetHydraOauth2ExcludeNotBeforeClaim returns the HydraOauth2ExcludeNotBeforeClaim field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraOauth2ExcludeNotBeforeClaimOk ¶

func (o *NormalizedProjectRevision) GetHydraOauth2ExcludeNotBeforeClaimOk() (*bool, bool)

GetHydraOauth2ExcludeNotBeforeClaimOk returns a tuple with the HydraOauth2ExcludeNotBeforeClaim field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraOauth2GrantJwtIatOptional ¶

func (o *NormalizedProjectRevision) GetHydraOauth2GrantJwtIatOptional() bool

GetHydraOauth2GrantJwtIatOptional returns the HydraOauth2GrantJwtIatOptional field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraOauth2GrantJwtIatOptionalOk ¶

func (o *NormalizedProjectRevision) GetHydraOauth2GrantJwtIatOptionalOk() (*bool, bool)

GetHydraOauth2GrantJwtIatOptionalOk returns a tuple with the HydraOauth2GrantJwtIatOptional field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraOauth2GrantJwtJtiOptional ¶

func (o *NormalizedProjectRevision) GetHydraOauth2GrantJwtJtiOptional() bool

GetHydraOauth2GrantJwtJtiOptional returns the HydraOauth2GrantJwtJtiOptional field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraOauth2GrantJwtJtiOptionalOk ¶

func (o *NormalizedProjectRevision) GetHydraOauth2GrantJwtJtiOptionalOk() (*bool, bool)

GetHydraOauth2GrantJwtJtiOptionalOk returns a tuple with the HydraOauth2GrantJwtJtiOptional field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraOauth2GrantJwtMaxTtl ¶

func (o *NormalizedProjectRevision) GetHydraOauth2GrantJwtMaxTtl() string

GetHydraOauth2GrantJwtMaxTtl returns the HydraOauth2GrantJwtMaxTtl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraOauth2GrantJwtMaxTtlOk ¶

func (o *NormalizedProjectRevision) GetHydraOauth2GrantJwtMaxTtlOk() (*string, bool)

GetHydraOauth2GrantJwtMaxTtlOk returns a tuple with the HydraOauth2GrantJwtMaxTtl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraOauth2PkceEnforced ¶

func (o *NormalizedProjectRevision) GetHydraOauth2PkceEnforced() bool

GetHydraOauth2PkceEnforced returns the HydraOauth2PkceEnforced field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraOauth2PkceEnforcedForPublicClients ¶

func (o *NormalizedProjectRevision) GetHydraOauth2PkceEnforcedForPublicClients() bool

GetHydraOauth2PkceEnforcedForPublicClients returns the HydraOauth2PkceEnforcedForPublicClients field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraOauth2PkceEnforcedForPublicClientsOk ¶

func (o *NormalizedProjectRevision) GetHydraOauth2PkceEnforcedForPublicClientsOk() (*bool, bool)

GetHydraOauth2PkceEnforcedForPublicClientsOk returns a tuple with the HydraOauth2PkceEnforcedForPublicClients field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraOauth2PkceEnforcedOk ¶

func (o *NormalizedProjectRevision) GetHydraOauth2PkceEnforcedOk() (*bool, bool)

GetHydraOauth2PkceEnforcedOk returns a tuple with the HydraOauth2PkceEnforced field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraOauth2RefreshTokenHook ¶

func (o *NormalizedProjectRevision) GetHydraOauth2RefreshTokenHook() string

GetHydraOauth2RefreshTokenHook returns the HydraOauth2RefreshTokenHook field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraOauth2RefreshTokenHookOk ¶

func (o *NormalizedProjectRevision) GetHydraOauth2RefreshTokenHookOk() (*string, bool)

GetHydraOauth2RefreshTokenHookOk returns a tuple with the HydraOauth2RefreshTokenHook field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraOauth2TokenHook ¶

func (o *NormalizedProjectRevision) GetHydraOauth2TokenHook() string

GetHydraOauth2TokenHook returns the HydraOauth2TokenHook field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraOauth2TokenHookOk ¶

func (o *NormalizedProjectRevision) GetHydraOauth2TokenHookOk() (*string, bool)

GetHydraOauth2TokenHookOk returns a tuple with the HydraOauth2TokenHook field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraOidcDynamicClientRegistrationDefaultScope ¶

func (o *NormalizedProjectRevision) GetHydraOidcDynamicClientRegistrationDefaultScope() []string

GetHydraOidcDynamicClientRegistrationDefaultScope returns the HydraOidcDynamicClientRegistrationDefaultScope field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraOidcDynamicClientRegistrationDefaultScopeOk ¶

func (o *NormalizedProjectRevision) GetHydraOidcDynamicClientRegistrationDefaultScopeOk() ([]string, bool)

GetHydraOidcDynamicClientRegistrationDefaultScopeOk returns a tuple with the HydraOidcDynamicClientRegistrationDefaultScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraOidcDynamicClientRegistrationEnabled ¶

func (o *NormalizedProjectRevision) GetHydraOidcDynamicClientRegistrationEnabled() bool

GetHydraOidcDynamicClientRegistrationEnabled returns the HydraOidcDynamicClientRegistrationEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraOidcDynamicClientRegistrationEnabledOk ¶

func (o *NormalizedProjectRevision) GetHydraOidcDynamicClientRegistrationEnabledOk() (*bool, bool)

GetHydraOidcDynamicClientRegistrationEnabledOk returns a tuple with the HydraOidcDynamicClientRegistrationEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraOidcSubjectIdentifiersPairwiseSalt ¶

func (o *NormalizedProjectRevision) GetHydraOidcSubjectIdentifiersPairwiseSalt() string

GetHydraOidcSubjectIdentifiersPairwiseSalt returns the HydraOidcSubjectIdentifiersPairwiseSalt field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraOidcSubjectIdentifiersPairwiseSaltOk ¶

func (o *NormalizedProjectRevision) GetHydraOidcSubjectIdentifiersPairwiseSaltOk() (*string, bool)

GetHydraOidcSubjectIdentifiersPairwiseSaltOk returns a tuple with the HydraOidcSubjectIdentifiersPairwiseSalt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraOidcSubjectIdentifiersSupportedTypes ¶

func (o *NormalizedProjectRevision) GetHydraOidcSubjectIdentifiersSupportedTypes() []string

GetHydraOidcSubjectIdentifiersSupportedTypes returns the HydraOidcSubjectIdentifiersSupportedTypes field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraOidcSubjectIdentifiersSupportedTypesOk ¶

func (o *NormalizedProjectRevision) GetHydraOidcSubjectIdentifiersSupportedTypesOk() ([]string, bool)

GetHydraOidcSubjectIdentifiersSupportedTypesOk returns a tuple with the HydraOidcSubjectIdentifiersSupportedTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraSecretsCookie ¶

func (o *NormalizedProjectRevision) GetHydraSecretsCookie() []string

GetHydraSecretsCookie returns the HydraSecretsCookie field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraSecretsCookieOk ¶

func (o *NormalizedProjectRevision) GetHydraSecretsCookieOk() ([]string, bool)

GetHydraSecretsCookieOk returns a tuple with the HydraSecretsCookie field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraSecretsSystem ¶

func (o *NormalizedProjectRevision) GetHydraSecretsSystem() []string

GetHydraSecretsSystem returns the HydraSecretsSystem field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraSecretsSystemOk ¶

func (o *NormalizedProjectRevision) GetHydraSecretsSystemOk() ([]string, bool)

GetHydraSecretsSystemOk returns a tuple with the HydraSecretsSystem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraServeCookiesSameSiteLegacyWorkaround ¶

func (o *NormalizedProjectRevision) GetHydraServeCookiesSameSiteLegacyWorkaround() bool

GetHydraServeCookiesSameSiteLegacyWorkaround returns the HydraServeCookiesSameSiteLegacyWorkaround field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraServeCookiesSameSiteLegacyWorkaroundOk ¶

func (o *NormalizedProjectRevision) GetHydraServeCookiesSameSiteLegacyWorkaroundOk() (*bool, bool)

GetHydraServeCookiesSameSiteLegacyWorkaroundOk returns a tuple with the HydraServeCookiesSameSiteLegacyWorkaround field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraServeCookiesSameSiteMode ¶

func (o *NormalizedProjectRevision) GetHydraServeCookiesSameSiteMode() string

GetHydraServeCookiesSameSiteMode returns the HydraServeCookiesSameSiteMode field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraServeCookiesSameSiteModeOk ¶

func (o *NormalizedProjectRevision) GetHydraServeCookiesSameSiteModeOk() (*string, bool)

GetHydraServeCookiesSameSiteModeOk returns a tuple with the HydraServeCookiesSameSiteMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraStrategiesAccessToken ¶

func (o *NormalizedProjectRevision) GetHydraStrategiesAccessToken() string

GetHydraStrategiesAccessToken returns the HydraStrategiesAccessToken field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraStrategiesAccessTokenOk ¶

func (o *NormalizedProjectRevision) GetHydraStrategiesAccessTokenOk() (*string, bool)

GetHydraStrategiesAccessTokenOk returns a tuple with the HydraStrategiesAccessToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraStrategiesScope ¶

func (o *NormalizedProjectRevision) GetHydraStrategiesScope() string

GetHydraStrategiesScope returns the HydraStrategiesScope field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraStrategiesScopeOk ¶

func (o *NormalizedProjectRevision) GetHydraStrategiesScopeOk() (*string, bool)

GetHydraStrategiesScopeOk returns a tuple with the HydraStrategiesScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraTtlAccessToken ¶

func (o *NormalizedProjectRevision) GetHydraTtlAccessToken() string

GetHydraTtlAccessToken returns the HydraTtlAccessToken field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraTtlAccessTokenOk ¶

func (o *NormalizedProjectRevision) GetHydraTtlAccessTokenOk() (*string, bool)

GetHydraTtlAccessTokenOk returns a tuple with the HydraTtlAccessToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraTtlAuthCode ¶

func (o *NormalizedProjectRevision) GetHydraTtlAuthCode() string

GetHydraTtlAuthCode returns the HydraTtlAuthCode field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraTtlAuthCodeOk ¶

func (o *NormalizedProjectRevision) GetHydraTtlAuthCodeOk() (*string, bool)

GetHydraTtlAuthCodeOk returns a tuple with the HydraTtlAuthCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraTtlIdToken ¶

func (o *NormalizedProjectRevision) GetHydraTtlIdToken() string

GetHydraTtlIdToken returns the HydraTtlIdToken field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraTtlIdTokenOk ¶

func (o *NormalizedProjectRevision) GetHydraTtlIdTokenOk() (*string, bool)

GetHydraTtlIdTokenOk returns a tuple with the HydraTtlIdToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraTtlLoginConsentRequest ¶

func (o *NormalizedProjectRevision) GetHydraTtlLoginConsentRequest() string

GetHydraTtlLoginConsentRequest returns the HydraTtlLoginConsentRequest field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraTtlLoginConsentRequestOk ¶

func (o *NormalizedProjectRevision) GetHydraTtlLoginConsentRequestOk() (*string, bool)

GetHydraTtlLoginConsentRequestOk returns a tuple with the HydraTtlLoginConsentRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraTtlRefreshToken ¶

func (o *NormalizedProjectRevision) GetHydraTtlRefreshToken() string

GetHydraTtlRefreshToken returns the HydraTtlRefreshToken field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraTtlRefreshTokenOk ¶

func (o *NormalizedProjectRevision) GetHydraTtlRefreshTokenOk() (*string, bool)

GetHydraTtlRefreshTokenOk returns a tuple with the HydraTtlRefreshToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraUrlsConsent ¶

func (o *NormalizedProjectRevision) GetHydraUrlsConsent() string

GetHydraUrlsConsent returns the HydraUrlsConsent field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraUrlsConsentOk ¶

func (o *NormalizedProjectRevision) GetHydraUrlsConsentOk() (*string, bool)

GetHydraUrlsConsentOk returns a tuple with the HydraUrlsConsent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraUrlsError ¶

func (o *NormalizedProjectRevision) GetHydraUrlsError() string

GetHydraUrlsError returns the HydraUrlsError field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraUrlsErrorOk ¶

func (o *NormalizedProjectRevision) GetHydraUrlsErrorOk() (*string, bool)

GetHydraUrlsErrorOk returns a tuple with the HydraUrlsError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraUrlsLogin ¶

func (o *NormalizedProjectRevision) GetHydraUrlsLogin() string

GetHydraUrlsLogin returns the HydraUrlsLogin field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraUrlsLoginOk ¶

func (o *NormalizedProjectRevision) GetHydraUrlsLoginOk() (*string, bool)

GetHydraUrlsLoginOk returns a tuple with the HydraUrlsLogin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraUrlsLogout ¶

func (o *NormalizedProjectRevision) GetHydraUrlsLogout() string

GetHydraUrlsLogout returns the HydraUrlsLogout field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraUrlsLogoutOk ¶

func (o *NormalizedProjectRevision) GetHydraUrlsLogoutOk() (*string, bool)

GetHydraUrlsLogoutOk returns a tuple with the HydraUrlsLogout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraUrlsPostLogoutRedirect ¶

func (o *NormalizedProjectRevision) GetHydraUrlsPostLogoutRedirect() string

GetHydraUrlsPostLogoutRedirect returns the HydraUrlsPostLogoutRedirect field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraUrlsPostLogoutRedirectOk ¶

func (o *NormalizedProjectRevision) GetHydraUrlsPostLogoutRedirectOk() (*string, bool)

GetHydraUrlsPostLogoutRedirectOk returns a tuple with the HydraUrlsPostLogoutRedirect field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraUrlsRegistration ¶

func (o *NormalizedProjectRevision) GetHydraUrlsRegistration() string

GetHydraUrlsRegistration returns the HydraUrlsRegistration field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraUrlsRegistrationOk ¶

func (o *NormalizedProjectRevision) GetHydraUrlsRegistrationOk() (*string, bool)

GetHydraUrlsRegistrationOk returns a tuple with the HydraUrlsRegistration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraUrlsSelfIssuer ¶

func (o *NormalizedProjectRevision) GetHydraUrlsSelfIssuer() string

GetHydraUrlsSelfIssuer returns the HydraUrlsSelfIssuer field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraUrlsSelfIssuerOk ¶

func (o *NormalizedProjectRevision) GetHydraUrlsSelfIssuerOk() (*string, bool)

GetHydraUrlsSelfIssuerOk returns a tuple with the HydraUrlsSelfIssuer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraWebfingerJwksBroadcastKeys ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerJwksBroadcastKeys() []string

GetHydraWebfingerJwksBroadcastKeys returns the HydraWebfingerJwksBroadcastKeys field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraWebfingerJwksBroadcastKeysOk ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerJwksBroadcastKeysOk() ([]string, bool)

GetHydraWebfingerJwksBroadcastKeysOk returns a tuple with the HydraWebfingerJwksBroadcastKeys field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryAuthUrl ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryAuthUrl() string

GetHydraWebfingerOidcDiscoveryAuthUrl returns the HydraWebfingerOidcDiscoveryAuthUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryAuthUrlOk ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryAuthUrlOk() (*string, bool)

GetHydraWebfingerOidcDiscoveryAuthUrlOk returns a tuple with the HydraWebfingerOidcDiscoveryAuthUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryClientRegistrationUrl ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryClientRegistrationUrl() string

GetHydraWebfingerOidcDiscoveryClientRegistrationUrl returns the HydraWebfingerOidcDiscoveryClientRegistrationUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryClientRegistrationUrlOk ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryClientRegistrationUrlOk() (*string, bool)

GetHydraWebfingerOidcDiscoveryClientRegistrationUrlOk returns a tuple with the HydraWebfingerOidcDiscoveryClientRegistrationUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryJwksUrl ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryJwksUrl() string

GetHydraWebfingerOidcDiscoveryJwksUrl returns the HydraWebfingerOidcDiscoveryJwksUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryJwksUrlOk ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryJwksUrlOk() (*string, bool)

GetHydraWebfingerOidcDiscoveryJwksUrlOk returns a tuple with the HydraWebfingerOidcDiscoveryJwksUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraWebfingerOidcDiscoverySupportedClaims ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerOidcDiscoverySupportedClaims() []string

GetHydraWebfingerOidcDiscoverySupportedClaims returns the HydraWebfingerOidcDiscoverySupportedClaims field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraWebfingerOidcDiscoverySupportedClaimsOk ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerOidcDiscoverySupportedClaimsOk() ([]string, bool)

GetHydraWebfingerOidcDiscoverySupportedClaimsOk returns a tuple with the HydraWebfingerOidcDiscoverySupportedClaims field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraWebfingerOidcDiscoverySupportedScope ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerOidcDiscoverySupportedScope() []string

GetHydraWebfingerOidcDiscoverySupportedScope returns the HydraWebfingerOidcDiscoverySupportedScope field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraWebfingerOidcDiscoverySupportedScopeOk ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerOidcDiscoverySupportedScopeOk() ([]string, bool)

GetHydraWebfingerOidcDiscoverySupportedScopeOk returns a tuple with the HydraWebfingerOidcDiscoverySupportedScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryTokenUrl ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryTokenUrl() string

GetHydraWebfingerOidcDiscoveryTokenUrl returns the HydraWebfingerOidcDiscoveryTokenUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryTokenUrlOk ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryTokenUrlOk() (*string, bool)

GetHydraWebfingerOidcDiscoveryTokenUrlOk returns a tuple with the HydraWebfingerOidcDiscoveryTokenUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryUserinfoUrl ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryUserinfoUrl() string

GetHydraWebfingerOidcDiscoveryUserinfoUrl returns the HydraWebfingerOidcDiscoveryUserinfoUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryUserinfoUrlOk ¶

func (o *NormalizedProjectRevision) GetHydraWebfingerOidcDiscoveryUserinfoUrlOk() (*string, bool)

GetHydraWebfingerOidcDiscoveryUserinfoUrlOk returns a tuple with the HydraWebfingerOidcDiscoveryUserinfoUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetId ¶

func (o *NormalizedProjectRevision) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKetoNamespaceConfiguration ¶

func (o *NormalizedProjectRevision) GetKetoNamespaceConfiguration() string

GetKetoNamespaceConfiguration returns the KetoNamespaceConfiguration field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKetoNamespaceConfigurationOk ¶

func (o *NormalizedProjectRevision) GetKetoNamespaceConfigurationOk() (*string, bool)

GetKetoNamespaceConfigurationOk returns a tuple with the KetoNamespaceConfiguration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKetoNamespaces ¶

func (o *NormalizedProjectRevision) GetKetoNamespaces() []KetoNamespace

GetKetoNamespaces returns the KetoNamespaces field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKetoNamespacesOk ¶

func (o *NormalizedProjectRevision) GetKetoNamespacesOk() ([]KetoNamespace, bool)

GetKetoNamespacesOk returns a tuple with the KetoNamespaces field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCookiesSameSite ¶

func (o *NormalizedProjectRevision) GetKratosCookiesSameSite() string

GetKratosCookiesSameSite returns the KratosCookiesSameSite field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCookiesSameSiteOk ¶

func (o *NormalizedProjectRevision) GetKratosCookiesSameSiteOk() (*string, bool)

GetKratosCookiesSameSiteOk returns a tuple with the KratosCookiesSameSite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierChannels ¶

GetKratosCourierChannels returns the KratosCourierChannels field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierChannelsOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierChannelsOk() ([]NormalizedProjectRevisionCourierChannel, bool)

GetKratosCourierChannelsOk returns a tuple with the KratosCourierChannels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierDeliveryStrategy ¶

func (o *NormalizedProjectRevision) GetKratosCourierDeliveryStrategy() string

GetKratosCourierDeliveryStrategy returns the KratosCourierDeliveryStrategy field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierDeliveryStrategyOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierDeliveryStrategyOk() (*string, bool)

GetKratosCourierDeliveryStrategyOk returns a tuple with the KratosCourierDeliveryStrategy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthApiKeyIn ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthApiKeyIn() string

GetKratosCourierHttpRequestConfigAuthApiKeyIn returns the KratosCourierHttpRequestConfigAuthApiKeyIn field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthApiKeyInOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthApiKeyInOk() (*string, bool)

GetKratosCourierHttpRequestConfigAuthApiKeyInOk returns a tuple with the KratosCourierHttpRequestConfigAuthApiKeyIn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthApiKeyName ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthApiKeyName() string

GetKratosCourierHttpRequestConfigAuthApiKeyName returns the KratosCourierHttpRequestConfigAuthApiKeyName field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthApiKeyNameOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthApiKeyNameOk() (*string, bool)

GetKratosCourierHttpRequestConfigAuthApiKeyNameOk returns a tuple with the KratosCourierHttpRequestConfigAuthApiKeyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthApiKeyValue ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthApiKeyValue() string

GetKratosCourierHttpRequestConfigAuthApiKeyValue returns the KratosCourierHttpRequestConfigAuthApiKeyValue field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthApiKeyValueOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthApiKeyValueOk() (*string, bool)

GetKratosCourierHttpRequestConfigAuthApiKeyValueOk returns a tuple with the KratosCourierHttpRequestConfigAuthApiKeyValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthBasicAuthPassword ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthBasicAuthPassword() string

GetKratosCourierHttpRequestConfigAuthBasicAuthPassword returns the KratosCourierHttpRequestConfigAuthBasicAuthPassword field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthBasicAuthPasswordOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthBasicAuthPasswordOk() (*string, bool)

GetKratosCourierHttpRequestConfigAuthBasicAuthPasswordOk returns a tuple with the KratosCourierHttpRequestConfigAuthBasicAuthPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthBasicAuthUser ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthBasicAuthUser() string

GetKratosCourierHttpRequestConfigAuthBasicAuthUser returns the KratosCourierHttpRequestConfigAuthBasicAuthUser field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthBasicAuthUserOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthBasicAuthUserOk() (*string, bool)

GetKratosCourierHttpRequestConfigAuthBasicAuthUserOk returns a tuple with the KratosCourierHttpRequestConfigAuthBasicAuthUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthType ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthType() string

GetKratosCourierHttpRequestConfigAuthType returns the KratosCourierHttpRequestConfigAuthType field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthTypeOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigAuthTypeOk() (*string, bool)

GetKratosCourierHttpRequestConfigAuthTypeOk returns a tuple with the KratosCourierHttpRequestConfigAuthType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigBody ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigBody() string

GetKratosCourierHttpRequestConfigBody returns the KratosCourierHttpRequestConfigBody field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigBodyOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigBodyOk() (*string, bool)

GetKratosCourierHttpRequestConfigBodyOk returns a tuple with the KratosCourierHttpRequestConfigBody field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigHeaders ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigHeaders() map[string]interface{}

GetKratosCourierHttpRequestConfigHeaders returns the KratosCourierHttpRequestConfigHeaders field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigHeadersOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigHeadersOk() (map[string]interface{}, bool)

GetKratosCourierHttpRequestConfigHeadersOk returns a tuple with the KratosCourierHttpRequestConfigHeaders field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigMethod ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigMethod() string

GetKratosCourierHttpRequestConfigMethod returns the KratosCourierHttpRequestConfigMethod field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigMethodOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigMethodOk() (*string, bool)

GetKratosCourierHttpRequestConfigMethodOk returns a tuple with the KratosCourierHttpRequestConfigMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigUrl ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigUrl() string

GetKratosCourierHttpRequestConfigUrl returns the KratosCourierHttpRequestConfigUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierHttpRequestConfigUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierHttpRequestConfigUrlOk() (*string, bool)

GetKratosCourierHttpRequestConfigUrlOk returns a tuple with the KratosCourierHttpRequestConfigUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierSmtpConnectionUri ¶

func (o *NormalizedProjectRevision) GetKratosCourierSmtpConnectionUri() string

GetKratosCourierSmtpConnectionUri returns the KratosCourierSmtpConnectionUri field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierSmtpConnectionUriOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierSmtpConnectionUriOk() (*string, bool)

GetKratosCourierSmtpConnectionUriOk returns a tuple with the KratosCourierSmtpConnectionUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierSmtpFromAddress ¶

func (o *NormalizedProjectRevision) GetKratosCourierSmtpFromAddress() string

GetKratosCourierSmtpFromAddress returns the KratosCourierSmtpFromAddress field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierSmtpFromAddressOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierSmtpFromAddressOk() (*string, bool)

GetKratosCourierSmtpFromAddressOk returns a tuple with the KratosCourierSmtpFromAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierSmtpFromName ¶

func (o *NormalizedProjectRevision) GetKratosCourierSmtpFromName() string

GetKratosCourierSmtpFromName returns the KratosCourierSmtpFromName field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierSmtpFromNameOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierSmtpFromNameOk() (*string, bool)

GetKratosCourierSmtpFromNameOk returns a tuple with the KratosCourierSmtpFromName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierSmtpHeaders ¶

func (o *NormalizedProjectRevision) GetKratosCourierSmtpHeaders() map[string]interface{}

GetKratosCourierSmtpHeaders returns the KratosCourierSmtpHeaders field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NormalizedProjectRevision) GetKratosCourierSmtpHeadersOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierSmtpHeadersOk() (map[string]interface{}, bool)

GetKratosCourierSmtpHeadersOk returns a tuple with the KratosCourierSmtpHeaders field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*NormalizedProjectRevision) GetKratosCourierSmtpLocalName ¶

func (o *NormalizedProjectRevision) GetKratosCourierSmtpLocalName() string

GetKratosCourierSmtpLocalName returns the KratosCourierSmtpLocalName field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierSmtpLocalNameOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierSmtpLocalNameOk() (*string, bool)

GetKratosCourierSmtpLocalNameOk returns a tuple with the KratosCourierSmtpLocalName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesLoginCodeValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesLoginCodeValidEmailBodyHtml() string

GetKratosCourierTemplatesLoginCodeValidEmailBodyHtml returns the KratosCourierTemplatesLoginCodeValidEmailBodyHtml field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesLoginCodeValidEmailBodyHtmlOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesLoginCodeValidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesLoginCodeValidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesLoginCodeValidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext() string

GetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext returns the KratosCourierTemplatesLoginCodeValidEmailBodyPlaintext field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintextOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesLoginCodeValidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesLoginCodeValidEmailSubject ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesLoginCodeValidEmailSubject() string

GetKratosCourierTemplatesLoginCodeValidEmailSubject returns the KratosCourierTemplatesLoginCodeValidEmailSubject field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesLoginCodeValidEmailSubjectOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesLoginCodeValidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesLoginCodeValidEmailSubjectOk returns a tuple with the KratosCourierTemplatesLoginCodeValidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml() string

GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml returns the KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtmlOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext() string

GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext returns the KratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintextOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeInvalidEmailSubject ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeInvalidEmailSubject() string

GetKratosCourierTemplatesRecoveryCodeInvalidEmailSubject returns the KratosCourierTemplatesRecoveryCodeInvalidEmailSubject field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeInvalidEmailSubjectOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeInvalidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesRecoveryCodeInvalidEmailSubjectOk returns a tuple with the KratosCourierTemplatesRecoveryCodeInvalidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml() string

GetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml returns the KratosCourierTemplatesRecoveryCodeValidEmailBodyHtml field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtmlOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesRecoveryCodeValidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext() string

GetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext returns the KratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintextOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeValidEmailSubject ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeValidEmailSubject() string

GetKratosCourierTemplatesRecoveryCodeValidEmailSubject returns the KratosCourierTemplatesRecoveryCodeValidEmailSubject field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeValidEmailSubjectOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryCodeValidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesRecoveryCodeValidEmailSubjectOk returns a tuple with the KratosCourierTemplatesRecoveryCodeValidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryInvalidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryInvalidEmailBodyHtml() string

GetKratosCourierTemplatesRecoveryInvalidEmailBodyHtml returns the KratosCourierTemplatesRecoveryInvalidEmailBodyHtml field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryInvalidEmailBodyHtmlOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryInvalidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesRecoveryInvalidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesRecoveryInvalidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext() string

GetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext returns the KratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintextOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryInvalidEmailSubject ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryInvalidEmailSubject() string

GetKratosCourierTemplatesRecoveryInvalidEmailSubject returns the KratosCourierTemplatesRecoveryInvalidEmailSubject field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryInvalidEmailSubjectOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryInvalidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesRecoveryInvalidEmailSubjectOk returns a tuple with the KratosCourierTemplatesRecoveryInvalidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryValidEmailBodyHtml() string

GetKratosCourierTemplatesRecoveryValidEmailBodyHtml returns the KratosCourierTemplatesRecoveryValidEmailBodyHtml field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryValidEmailBodyHtmlOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryValidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesRecoveryValidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesRecoveryValidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryValidEmailBodyPlaintext() string

GetKratosCourierTemplatesRecoveryValidEmailBodyPlaintext returns the KratosCourierTemplatesRecoveryValidEmailBodyPlaintext field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryValidEmailBodyPlaintextOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryValidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesRecoveryValidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesRecoveryValidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryValidEmailSubject ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryValidEmailSubject() string

GetKratosCourierTemplatesRecoveryValidEmailSubject returns the KratosCourierTemplatesRecoveryValidEmailSubject field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryValidEmailSubjectOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRecoveryValidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesRecoveryValidEmailSubjectOk returns a tuple with the KratosCourierTemplatesRecoveryValidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml() string

GetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml returns the KratosCourierTemplatesRegistrationCodeValidEmailBodyHtml field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtmlOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesRegistrationCodeValidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext() string

GetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext returns the KratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintextOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRegistrationCodeValidEmailSubject ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRegistrationCodeValidEmailSubject() string

GetKratosCourierTemplatesRegistrationCodeValidEmailSubject returns the KratosCourierTemplatesRegistrationCodeValidEmailSubject field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesRegistrationCodeValidEmailSubjectOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesRegistrationCodeValidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesRegistrationCodeValidEmailSubjectOk returns a tuple with the KratosCourierTemplatesRegistrationCodeValidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml() string

GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml returns the KratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtmlOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext() string

GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext returns the KratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintextOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeInvalidEmailSubject ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeInvalidEmailSubject() string

GetKratosCourierTemplatesVerificationCodeInvalidEmailSubject returns the KratosCourierTemplatesVerificationCodeInvalidEmailSubject field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeInvalidEmailSubjectOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeInvalidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesVerificationCodeInvalidEmailSubjectOk returns a tuple with the KratosCourierTemplatesVerificationCodeInvalidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidEmailBodyHtml() string

GetKratosCourierTemplatesVerificationCodeValidEmailBodyHtml returns the KratosCourierTemplatesVerificationCodeValidEmailBodyHtml field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidEmailBodyHtmlOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesVerificationCodeValidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesVerificationCodeValidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext() string

GetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext returns the KratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintextOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidEmailSubject ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidEmailSubject() string

GetKratosCourierTemplatesVerificationCodeValidEmailSubject returns the KratosCourierTemplatesVerificationCodeValidEmailSubject field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidEmailSubjectOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesVerificationCodeValidEmailSubjectOk returns a tuple with the KratosCourierTemplatesVerificationCodeValidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext() string

GetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext returns the KratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintextOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintextOk returns a tuple with the KratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationInvalidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationInvalidEmailBodyHtml() string

GetKratosCourierTemplatesVerificationInvalidEmailBodyHtml returns the KratosCourierTemplatesVerificationInvalidEmailBodyHtml field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationInvalidEmailBodyHtmlOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationInvalidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesVerificationInvalidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesVerificationInvalidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext() string

GetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext returns the KratosCourierTemplatesVerificationInvalidEmailBodyPlaintext field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintextOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesVerificationInvalidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationInvalidEmailSubject ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationInvalidEmailSubject() string

GetKratosCourierTemplatesVerificationInvalidEmailSubject returns the KratosCourierTemplatesVerificationInvalidEmailSubject field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationInvalidEmailSubjectOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationInvalidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesVerificationInvalidEmailSubjectOk returns a tuple with the KratosCourierTemplatesVerificationInvalidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationValidEmailBodyHtml() string

GetKratosCourierTemplatesVerificationValidEmailBodyHtml returns the KratosCourierTemplatesVerificationValidEmailBodyHtml field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationValidEmailBodyHtmlOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationValidEmailBodyHtmlOk() (*string, bool)

GetKratosCourierTemplatesVerificationValidEmailBodyHtmlOk returns a tuple with the KratosCourierTemplatesVerificationValidEmailBodyHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationValidEmailBodyPlaintext() string

GetKratosCourierTemplatesVerificationValidEmailBodyPlaintext returns the KratosCourierTemplatesVerificationValidEmailBodyPlaintext field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationValidEmailBodyPlaintextOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationValidEmailBodyPlaintextOk() (*string, bool)

GetKratosCourierTemplatesVerificationValidEmailBodyPlaintextOk returns a tuple with the KratosCourierTemplatesVerificationValidEmailBodyPlaintext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationValidEmailSubject ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationValidEmailSubject() string

GetKratosCourierTemplatesVerificationValidEmailSubject returns the KratosCourierTemplatesVerificationValidEmailSubject field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosCourierTemplatesVerificationValidEmailSubjectOk ¶

func (o *NormalizedProjectRevision) GetKratosCourierTemplatesVerificationValidEmailSubjectOk() (*string, bool)

GetKratosCourierTemplatesVerificationValidEmailSubjectOk returns a tuple with the KratosCourierTemplatesVerificationValidEmailSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosFeatureFlagsCacheableSessions ¶

func (o *NormalizedProjectRevision) GetKratosFeatureFlagsCacheableSessions() bool

GetKratosFeatureFlagsCacheableSessions returns the KratosFeatureFlagsCacheableSessions field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosFeatureFlagsCacheableSessionsOk ¶

func (o *NormalizedProjectRevision) GetKratosFeatureFlagsCacheableSessionsOk() (*bool, bool)

GetKratosFeatureFlagsCacheableSessionsOk returns a tuple with the KratosFeatureFlagsCacheableSessions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosFeatureFlagsUseContinueWithTransitions ¶

func (o *NormalizedProjectRevision) GetKratosFeatureFlagsUseContinueWithTransitions() bool

GetKratosFeatureFlagsUseContinueWithTransitions returns the KratosFeatureFlagsUseContinueWithTransitions field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosFeatureFlagsUseContinueWithTransitionsOk ¶

func (o *NormalizedProjectRevision) GetKratosFeatureFlagsUseContinueWithTransitionsOk() (*bool, bool)

GetKratosFeatureFlagsUseContinueWithTransitionsOk returns a tuple with the KratosFeatureFlagsUseContinueWithTransitions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosIdentitySchemas ¶

GetKratosIdentitySchemas returns the KratosIdentitySchemas field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosIdentitySchemasOk ¶

func (o *NormalizedProjectRevision) GetKratosIdentitySchemasOk() ([]NormalizedProjectRevisionIdentitySchema, bool)

GetKratosIdentitySchemasOk returns a tuple with the KratosIdentitySchemas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosOauth2ProviderHeaders ¶

func (o *NormalizedProjectRevision) GetKratosOauth2ProviderHeaders() map[string]interface{}

GetKratosOauth2ProviderHeaders returns the KratosOauth2ProviderHeaders field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NormalizedProjectRevision) GetKratosOauth2ProviderHeadersOk ¶

func (o *NormalizedProjectRevision) GetKratosOauth2ProviderHeadersOk() (map[string]interface{}, bool)

GetKratosOauth2ProviderHeadersOk returns a tuple with the KratosOauth2ProviderHeaders field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*NormalizedProjectRevision) GetKratosOauth2ProviderOverrideReturnTo ¶

func (o *NormalizedProjectRevision) GetKratosOauth2ProviderOverrideReturnTo() bool

GetKratosOauth2ProviderOverrideReturnTo returns the KratosOauth2ProviderOverrideReturnTo field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosOauth2ProviderOverrideReturnToOk ¶

func (o *NormalizedProjectRevision) GetKratosOauth2ProviderOverrideReturnToOk() (*bool, bool)

GetKratosOauth2ProviderOverrideReturnToOk returns a tuple with the KratosOauth2ProviderOverrideReturnTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosOauth2ProviderUrl ¶

func (o *NormalizedProjectRevision) GetKratosOauth2ProviderUrl() string

GetKratosOauth2ProviderUrl returns the KratosOauth2ProviderUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosOauth2ProviderUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosOauth2ProviderUrlOk() (*string, bool)

GetKratosOauth2ProviderUrlOk returns a tuple with the KratosOauth2ProviderUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosPreviewDefaultReadConsistencyLevel ¶

func (o *NormalizedProjectRevision) GetKratosPreviewDefaultReadConsistencyLevel() string

GetKratosPreviewDefaultReadConsistencyLevel returns the KratosPreviewDefaultReadConsistencyLevel field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosPreviewDefaultReadConsistencyLevelOk ¶

func (o *NormalizedProjectRevision) GetKratosPreviewDefaultReadConsistencyLevelOk() (*string, bool)

GetKratosPreviewDefaultReadConsistencyLevelOk returns a tuple with the KratosPreviewDefaultReadConsistencyLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSecretsCipher ¶

func (o *NormalizedProjectRevision) GetKratosSecretsCipher() []string

GetKratosSecretsCipher returns the KratosSecretsCipher field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSecretsCipherOk ¶

func (o *NormalizedProjectRevision) GetKratosSecretsCipherOk() ([]string, bool)

GetKratosSecretsCipherOk returns a tuple with the KratosSecretsCipher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSecretsCookie ¶

func (o *NormalizedProjectRevision) GetKratosSecretsCookie() []string

GetKratosSecretsCookie returns the KratosSecretsCookie field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSecretsCookieOk ¶

func (o *NormalizedProjectRevision) GetKratosSecretsCookieOk() ([]string, bool)

GetKratosSecretsCookieOk returns a tuple with the KratosSecretsCookie field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSecretsDefault ¶

func (o *NormalizedProjectRevision) GetKratosSecretsDefault() []string

GetKratosSecretsDefault returns the KratosSecretsDefault field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSecretsDefaultOk ¶

func (o *NormalizedProjectRevision) GetKratosSecretsDefaultOk() ([]string, bool)

GetKratosSecretsDefaultOk returns a tuple with the KratosSecretsDefault field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceAllowedReturnUrls ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceAllowedReturnUrls() []string

GetKratosSelfserviceAllowedReturnUrls returns the KratosSelfserviceAllowedReturnUrls field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceAllowedReturnUrlsOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceAllowedReturnUrlsOk() ([]string, bool)

GetKratosSelfserviceAllowedReturnUrlsOk returns a tuple with the KratosSelfserviceAllowedReturnUrls field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceDefaultBrowserReturnUrl() string

GetKratosSelfserviceDefaultBrowserReturnUrl returns the KratosSelfserviceDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsErrorUiUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsErrorUiUrl() string

GetKratosSelfserviceFlowsErrorUiUrl returns the KratosSelfserviceFlowsErrorUiUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsErrorUiUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsErrorUiUrlOk() (*string, bool)

GetKratosSelfserviceFlowsErrorUiUrlOk returns a tuple with the KratosSelfserviceFlowsErrorUiUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginLifespan ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginLifespan() string

GetKratosSelfserviceFlowsLoginLifespan returns the KratosSelfserviceFlowsLoginLifespan field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginLifespanOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginLifespanOk() (*string, bool)

GetKratosSelfserviceFlowsLoginLifespanOk returns a tuple with the KratosSelfserviceFlowsLoginLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginUiUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginUiUrl() string

GetKratosSelfserviceFlowsLoginUiUrl returns the KratosSelfserviceFlowsLoginUiUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginUiUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLoginUiUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLoginUiUrlOk returns a tuple with the KratosSelfserviceFlowsLoginUiUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryEnabled ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryEnabled() bool

GetKratosSelfserviceFlowsRecoveryEnabled returns the KratosSelfserviceFlowsRecoveryEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryEnabledOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryEnabledOk() (*bool, bool)

GetKratosSelfserviceFlowsRecoveryEnabledOk returns a tuple with the KratosSelfserviceFlowsRecoveryEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryLifespan ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryLifespan() string

GetKratosSelfserviceFlowsRecoveryLifespan returns the KratosSelfserviceFlowsRecoveryLifespan field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryLifespanOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryLifespanOk() (*string, bool)

GetKratosSelfserviceFlowsRecoveryLifespanOk returns a tuple with the KratosSelfserviceFlowsRecoveryLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients() bool

GetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients returns the KratosSelfserviceFlowsRecoveryNotifyUnknownRecipients field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipientsOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipientsOk() (*bool, bool)

GetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipientsOk returns a tuple with the KratosSelfserviceFlowsRecoveryNotifyUnknownRecipients field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryUiUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryUiUrl() string

GetKratosSelfserviceFlowsRecoveryUiUrl returns the KratosSelfserviceFlowsRecoveryUiUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryUiUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryUiUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRecoveryUiUrlOk returns a tuple with the KratosSelfserviceFlowsRecoveryUiUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryUse ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryUse() string

GetKratosSelfserviceFlowsRecoveryUse returns the KratosSelfserviceFlowsRecoveryUse field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryUseOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRecoveryUseOk() (*string, bool)

GetKratosSelfserviceFlowsRecoveryUseOk returns a tuple with the KratosSelfserviceFlowsRecoveryUse field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationEnabled ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationEnabled() bool

GetKratosSelfserviceFlowsRegistrationEnabled returns the KratosSelfserviceFlowsRegistrationEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationEnabledOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationEnabledOk() (*bool, bool)

GetKratosSelfserviceFlowsRegistrationEnabledOk returns a tuple with the KratosSelfserviceFlowsRegistrationEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationLifespan ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationLifespan() string

GetKratosSelfserviceFlowsRegistrationLifespan returns the KratosSelfserviceFlowsRegistrationLifespan field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationLifespanOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationLifespanOk() (*string, bool)

GetKratosSelfserviceFlowsRegistrationLifespanOk returns a tuple with the KratosSelfserviceFlowsRegistrationLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationLoginHints ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationLoginHints() bool

GetKratosSelfserviceFlowsRegistrationLoginHints returns the KratosSelfserviceFlowsRegistrationLoginHints field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationLoginHintsOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationLoginHintsOk() (*bool, bool)

GetKratosSelfserviceFlowsRegistrationLoginHintsOk returns a tuple with the KratosSelfserviceFlowsRegistrationLoginHints field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationUiUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationUiUrl() string

GetKratosSelfserviceFlowsRegistrationUiUrl returns the KratosSelfserviceFlowsRegistrationUiUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationUiUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsRegistrationUiUrlOk() (*string, bool)

GetKratosSelfserviceFlowsRegistrationUiUrlOk returns a tuple with the KratosSelfserviceFlowsRegistrationUiUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsLifespan ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsLifespan() string

GetKratosSelfserviceFlowsSettingsLifespan returns the KratosSelfserviceFlowsSettingsLifespan field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsLifespanOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsLifespanOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsLifespanOk returns a tuple with the KratosSelfserviceFlowsSettingsLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge() string

GetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge returns the KratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAgeOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAgeOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAgeOk returns a tuple with the KratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsRequiredAal ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsRequiredAal() string

GetKratosSelfserviceFlowsSettingsRequiredAal returns the KratosSelfserviceFlowsSettingsRequiredAal field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsRequiredAalOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsRequiredAalOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsRequiredAalOk returns a tuple with the KratosSelfserviceFlowsSettingsRequiredAal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsUiUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsUiUrl() string

GetKratosSelfserviceFlowsSettingsUiUrl returns the KratosSelfserviceFlowsSettingsUiUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsUiUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsSettingsUiUrlOk() (*string, bool)

GetKratosSelfserviceFlowsSettingsUiUrlOk returns a tuple with the KratosSelfserviceFlowsSettingsUiUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl() string

GetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl returns the KratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrlOk() (*string, bool)

GetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrlOk returns a tuple with the KratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationEnabled ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationEnabled() bool

GetKratosSelfserviceFlowsVerificationEnabled returns the KratosSelfserviceFlowsVerificationEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationEnabledOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationEnabledOk() (*bool, bool)

GetKratosSelfserviceFlowsVerificationEnabledOk returns a tuple with the KratosSelfserviceFlowsVerificationEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationLifespan ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationLifespan() string

GetKratosSelfserviceFlowsVerificationLifespan returns the KratosSelfserviceFlowsVerificationLifespan field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationLifespanOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationLifespanOk() (*string, bool)

GetKratosSelfserviceFlowsVerificationLifespanOk returns a tuple with the KratosSelfserviceFlowsVerificationLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationNotifyUnknownRecipients ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationNotifyUnknownRecipients() bool

GetKratosSelfserviceFlowsVerificationNotifyUnknownRecipients returns the KratosSelfserviceFlowsVerificationNotifyUnknownRecipients field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationNotifyUnknownRecipientsOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationNotifyUnknownRecipientsOk() (*bool, bool)

GetKratosSelfserviceFlowsVerificationNotifyUnknownRecipientsOk returns a tuple with the KratosSelfserviceFlowsVerificationNotifyUnknownRecipients field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationUiUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationUiUrl() string

GetKratosSelfserviceFlowsVerificationUiUrl returns the KratosSelfserviceFlowsVerificationUiUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationUiUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationUiUrlOk() (*string, bool)

GetKratosSelfserviceFlowsVerificationUiUrlOk returns a tuple with the KratosSelfserviceFlowsVerificationUiUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationUse ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationUse() string

GetKratosSelfserviceFlowsVerificationUse returns the KratosSelfserviceFlowsVerificationUse field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationUseOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceFlowsVerificationUseOk() (*string, bool)

GetKratosSelfserviceFlowsVerificationUseOk returns a tuple with the KratosSelfserviceFlowsVerificationUse field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsCodeConfigLifespan ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsCodeConfigLifespan() string

GetKratosSelfserviceMethodsCodeConfigLifespan returns the KratosSelfserviceMethodsCodeConfigLifespan field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsCodeConfigLifespanOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsCodeConfigLifespanOk() (*string, bool)

GetKratosSelfserviceMethodsCodeConfigLifespanOk returns a tuple with the KratosSelfserviceMethodsCodeConfigLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsCodeEnabled ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsCodeEnabled() bool

GetKratosSelfserviceMethodsCodeEnabled returns the KratosSelfserviceMethodsCodeEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsCodeEnabledOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsCodeEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsCodeEnabledOk returns a tuple with the KratosSelfserviceMethodsCodeEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsCodePasswordlessEnabled ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsCodePasswordlessEnabled() bool

GetKratosSelfserviceMethodsCodePasswordlessEnabled returns the KratosSelfserviceMethodsCodePasswordlessEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsCodePasswordlessEnabledOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsCodePasswordlessEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsCodePasswordlessEnabledOk returns a tuple with the KratosSelfserviceMethodsCodePasswordlessEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsLinkConfigBaseUrl ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsLinkConfigBaseUrl() string

GetKratosSelfserviceMethodsLinkConfigBaseUrl returns the KratosSelfserviceMethodsLinkConfigBaseUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsLinkConfigBaseUrlOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsLinkConfigBaseUrlOk() (*string, bool)

GetKratosSelfserviceMethodsLinkConfigBaseUrlOk returns a tuple with the KratosSelfserviceMethodsLinkConfigBaseUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsLinkConfigLifespan ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsLinkConfigLifespan() string

GetKratosSelfserviceMethodsLinkConfigLifespan returns the KratosSelfserviceMethodsLinkConfigLifespan field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsLinkConfigLifespanOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsLinkConfigLifespanOk() (*string, bool)

GetKratosSelfserviceMethodsLinkConfigLifespanOk returns a tuple with the KratosSelfserviceMethodsLinkConfigLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsLinkEnabled ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsLinkEnabled() bool

GetKratosSelfserviceMethodsLinkEnabled returns the KratosSelfserviceMethodsLinkEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsLinkEnabledOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsLinkEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsLinkEnabledOk returns a tuple with the KratosSelfserviceMethodsLinkEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsLookupSecretEnabled ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsLookupSecretEnabled() bool

GetKratosSelfserviceMethodsLookupSecretEnabled returns the KratosSelfserviceMethodsLookupSecretEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsLookupSecretEnabledOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsLookupSecretEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsLookupSecretEnabledOk returns a tuple with the KratosSelfserviceMethodsLookupSecretEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsOidcConfigBaseRedirectUri ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsOidcConfigBaseRedirectUri() string

GetKratosSelfserviceMethodsOidcConfigBaseRedirectUri returns the KratosSelfserviceMethodsOidcConfigBaseRedirectUri field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsOidcConfigBaseRedirectUriOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsOidcConfigBaseRedirectUriOk() (*string, bool)

GetKratosSelfserviceMethodsOidcConfigBaseRedirectUriOk returns a tuple with the KratosSelfserviceMethodsOidcConfigBaseRedirectUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsOidcConfigProviders ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsOidcConfigProviders() []NormalizedProjectRevisionThirdPartyProvider

GetKratosSelfserviceMethodsOidcConfigProviders returns the KratosSelfserviceMethodsOidcConfigProviders field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsOidcConfigProvidersOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsOidcConfigProvidersOk() ([]NormalizedProjectRevisionThirdPartyProvider, bool)

GetKratosSelfserviceMethodsOidcConfigProvidersOk returns a tuple with the KratosSelfserviceMethodsOidcConfigProviders field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsOidcEnabled ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsOidcEnabled() bool

GetKratosSelfserviceMethodsOidcEnabled returns the KratosSelfserviceMethodsOidcEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsOidcEnabledOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsOidcEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsOidcEnabledOk returns a tuple with the KratosSelfserviceMethodsOidcEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled() bool

GetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled returns the KratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabledOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabledOk returns a tuple with the KratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled() bool

GetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled returns the KratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabledOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabledOk returns a tuple with the KratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors() bool

GetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors returns the KratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrorsOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrorsOk() (*bool, bool)

GetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrorsOk returns a tuple with the KratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigMaxBreaches ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigMaxBreaches() int64

GetKratosSelfserviceMethodsPasswordConfigMaxBreaches returns the KratosSelfserviceMethodsPasswordConfigMaxBreaches field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigMaxBreachesOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigMaxBreachesOk() (*int64, bool)

GetKratosSelfserviceMethodsPasswordConfigMaxBreachesOk returns a tuple with the KratosSelfserviceMethodsPasswordConfigMaxBreaches field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigMinPasswordLength ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigMinPasswordLength() int64

GetKratosSelfserviceMethodsPasswordConfigMinPasswordLength returns the KratosSelfserviceMethodsPasswordConfigMinPasswordLength field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigMinPasswordLengthOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordConfigMinPasswordLengthOk() (*int64, bool)

GetKratosSelfserviceMethodsPasswordConfigMinPasswordLengthOk returns a tuple with the KratosSelfserviceMethodsPasswordConfigMinPasswordLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordEnabled ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordEnabled() bool

GetKratosSelfserviceMethodsPasswordEnabled returns the KratosSelfserviceMethodsPasswordEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordEnabledOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsPasswordEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsPasswordEnabledOk returns a tuple with the KratosSelfserviceMethodsPasswordEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsProfileEnabled ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsProfileEnabled() bool

GetKratosSelfserviceMethodsProfileEnabled returns the KratosSelfserviceMethodsProfileEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsProfileEnabledOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsProfileEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsProfileEnabledOk returns a tuple with the KratosSelfserviceMethodsProfileEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsTotpConfigIssuer ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsTotpConfigIssuer() string

GetKratosSelfserviceMethodsTotpConfigIssuer returns the KratosSelfserviceMethodsTotpConfigIssuer field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsTotpConfigIssuerOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsTotpConfigIssuerOk() (*string, bool)

GetKratosSelfserviceMethodsTotpConfigIssuerOk returns a tuple with the KratosSelfserviceMethodsTotpConfigIssuer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsTotpEnabled ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsTotpEnabled() bool

GetKratosSelfserviceMethodsTotpEnabled returns the KratosSelfserviceMethodsTotpEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsTotpEnabledOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsTotpEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsTotpEnabledOk returns a tuple with the KratosSelfserviceMethodsTotpEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigPasswordless ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigPasswordless() bool

GetKratosSelfserviceMethodsWebauthnConfigPasswordless returns the KratosSelfserviceMethodsWebauthnConfigPasswordless field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigPasswordlessOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigPasswordlessOk() (*bool, bool)

GetKratosSelfserviceMethodsWebauthnConfigPasswordlessOk returns a tuple with the KratosSelfserviceMethodsWebauthnConfigPasswordless field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpDisplayName ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpDisplayName() string

GetKratosSelfserviceMethodsWebauthnConfigRpDisplayName returns the KratosSelfserviceMethodsWebauthnConfigRpDisplayName field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpDisplayNameOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpDisplayNameOk() (*string, bool)

GetKratosSelfserviceMethodsWebauthnConfigRpDisplayNameOk returns a tuple with the KratosSelfserviceMethodsWebauthnConfigRpDisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpIcon ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpIcon() string

GetKratosSelfserviceMethodsWebauthnConfigRpIcon returns the KratosSelfserviceMethodsWebauthnConfigRpIcon field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpIconOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpIconOk() (*string, bool)

GetKratosSelfserviceMethodsWebauthnConfigRpIconOk returns a tuple with the KratosSelfserviceMethodsWebauthnConfigRpIcon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpId ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpId() string

GetKratosSelfserviceMethodsWebauthnConfigRpId returns the KratosSelfserviceMethodsWebauthnConfigRpId field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpIdOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpIdOk() (*string, bool)

GetKratosSelfserviceMethodsWebauthnConfigRpIdOk returns a tuple with the KratosSelfserviceMethodsWebauthnConfigRpId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpOrigins ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpOrigins() []string

GetKratosSelfserviceMethodsWebauthnConfigRpOrigins returns the KratosSelfserviceMethodsWebauthnConfigRpOrigins field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpOriginsOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnConfigRpOriginsOk() ([]string, bool)

GetKratosSelfserviceMethodsWebauthnConfigRpOriginsOk returns a tuple with the KratosSelfserviceMethodsWebauthnConfigRpOrigins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnEnabled ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnEnabled() bool

GetKratosSelfserviceMethodsWebauthnEnabled returns the KratosSelfserviceMethodsWebauthnEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnEnabledOk ¶

func (o *NormalizedProjectRevision) GetKratosSelfserviceMethodsWebauthnEnabledOk() (*bool, bool)

GetKratosSelfserviceMethodsWebauthnEnabledOk returns a tuple with the KratosSelfserviceMethodsWebauthnEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSessionCookiePersistent ¶

func (o *NormalizedProjectRevision) GetKratosSessionCookiePersistent() bool

GetKratosSessionCookiePersistent returns the KratosSessionCookiePersistent field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSessionCookiePersistentOk ¶

func (o *NormalizedProjectRevision) GetKratosSessionCookiePersistentOk() (*bool, bool)

GetKratosSessionCookiePersistentOk returns a tuple with the KratosSessionCookiePersistent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSessionCookieSameSite ¶

func (o *NormalizedProjectRevision) GetKratosSessionCookieSameSite() string

GetKratosSessionCookieSameSite returns the KratosSessionCookieSameSite field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSessionCookieSameSiteOk ¶

func (o *NormalizedProjectRevision) GetKratosSessionCookieSameSiteOk() (*string, bool)

GetKratosSessionCookieSameSiteOk returns a tuple with the KratosSessionCookieSameSite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSessionLifespan ¶

func (o *NormalizedProjectRevision) GetKratosSessionLifespan() string

GetKratosSessionLifespan returns the KratosSessionLifespan field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSessionLifespanOk ¶

func (o *NormalizedProjectRevision) GetKratosSessionLifespanOk() (*string, bool)

GetKratosSessionLifespanOk returns a tuple with the KratosSessionLifespan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSessionWhoamiRequiredAal ¶

func (o *NormalizedProjectRevision) GetKratosSessionWhoamiRequiredAal() string

GetKratosSessionWhoamiRequiredAal returns the KratosSessionWhoamiRequiredAal field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSessionWhoamiRequiredAalOk ¶

func (o *NormalizedProjectRevision) GetKratosSessionWhoamiRequiredAalOk() (*string, bool)

GetKratosSessionWhoamiRequiredAalOk returns a tuple with the KratosSessionWhoamiRequiredAal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetKratosSessionWhoamiTokenizerTemplates ¶

func (o *NormalizedProjectRevision) GetKratosSessionWhoamiTokenizerTemplates() []NormalizedProjectRevisionTokenizerTemplate

GetKratosSessionWhoamiTokenizerTemplates returns the KratosSessionWhoamiTokenizerTemplates field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetKratosSessionWhoamiTokenizerTemplatesOk ¶

func (o *NormalizedProjectRevision) GetKratosSessionWhoamiTokenizerTemplatesOk() ([]NormalizedProjectRevisionTokenizerTemplate, bool)

GetKratosSessionWhoamiTokenizerTemplatesOk returns a tuple with the KratosSessionWhoamiTokenizerTemplates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetName ¶

func (o *NormalizedProjectRevision) GetName() string

GetName returns the Name field value

func (*NormalizedProjectRevision) GetNameOk ¶

func (o *NormalizedProjectRevision) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetProjectId ¶

func (o *NormalizedProjectRevision) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetProjectIdOk ¶

func (o *NormalizedProjectRevision) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetProjectRevisionHooks ¶

func (o *NormalizedProjectRevision) GetProjectRevisionHooks() []NormalizedProjectRevisionHook

GetProjectRevisionHooks returns the ProjectRevisionHooks field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetProjectRevisionHooksOk ¶

func (o *NormalizedProjectRevision) GetProjectRevisionHooksOk() ([]NormalizedProjectRevisionHook, bool)

GetProjectRevisionHooksOk returns a tuple with the ProjectRevisionHooks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetServeAdminCorsAllowedOrigins ¶

func (o *NormalizedProjectRevision) GetServeAdminCorsAllowedOrigins() []string

GetServeAdminCorsAllowedOrigins returns the ServeAdminCorsAllowedOrigins field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetServeAdminCorsAllowedOriginsOk ¶

func (o *NormalizedProjectRevision) GetServeAdminCorsAllowedOriginsOk() ([]string, bool)

GetServeAdminCorsAllowedOriginsOk returns a tuple with the ServeAdminCorsAllowedOrigins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetServeAdminCorsEnabled ¶

func (o *NormalizedProjectRevision) GetServeAdminCorsEnabled() bool

GetServeAdminCorsEnabled returns the ServeAdminCorsEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetServeAdminCorsEnabledOk ¶

func (o *NormalizedProjectRevision) GetServeAdminCorsEnabledOk() (*bool, bool)

GetServeAdminCorsEnabledOk returns a tuple with the ServeAdminCorsEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetServePublicCorsAllowedOrigins ¶

func (o *NormalizedProjectRevision) GetServePublicCorsAllowedOrigins() []string

GetServePublicCorsAllowedOrigins returns the ServePublicCorsAllowedOrigins field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetServePublicCorsAllowedOriginsOk ¶

func (o *NormalizedProjectRevision) GetServePublicCorsAllowedOriginsOk() ([]string, bool)

GetServePublicCorsAllowedOriginsOk returns a tuple with the ServePublicCorsAllowedOrigins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetServePublicCorsEnabled ¶

func (o *NormalizedProjectRevision) GetServePublicCorsEnabled() bool

GetServePublicCorsEnabled returns the ServePublicCorsEnabled field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetServePublicCorsEnabledOk ¶

func (o *NormalizedProjectRevision) GetServePublicCorsEnabledOk() (*bool, bool)

GetServePublicCorsEnabledOk returns a tuple with the ServePublicCorsEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetStrictSecurity ¶

func (o *NormalizedProjectRevision) GetStrictSecurity() bool

GetStrictSecurity returns the StrictSecurity field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetStrictSecurityOk ¶

func (o *NormalizedProjectRevision) GetStrictSecurityOk() (*bool, bool)

GetStrictSecurityOk returns a tuple with the StrictSecurity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) GetUpdatedAt ¶

func (o *NormalizedProjectRevision) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*NormalizedProjectRevision) GetUpdatedAtOk ¶

func (o *NormalizedProjectRevision) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevision) HasCreatedAt ¶

func (o *NormalizedProjectRevision) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasDisableAccountExperienceWelcomeScreen ¶

func (o *NormalizedProjectRevision) HasDisableAccountExperienceWelcomeScreen() bool

HasDisableAccountExperienceWelcomeScreen returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraOauth2AllowedTopLevelClaims ¶

func (o *NormalizedProjectRevision) HasHydraOauth2AllowedTopLevelClaims() bool

HasHydraOauth2AllowedTopLevelClaims returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraOauth2ClientCredentialsDefaultGrantAllowedScope ¶

func (o *NormalizedProjectRevision) HasHydraOauth2ClientCredentialsDefaultGrantAllowedScope() bool

HasHydraOauth2ClientCredentialsDefaultGrantAllowedScope returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraOauth2ExcludeNotBeforeClaim ¶

func (o *NormalizedProjectRevision) HasHydraOauth2ExcludeNotBeforeClaim() bool

HasHydraOauth2ExcludeNotBeforeClaim returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraOauth2GrantJwtIatOptional ¶

func (o *NormalizedProjectRevision) HasHydraOauth2GrantJwtIatOptional() bool

HasHydraOauth2GrantJwtIatOptional returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraOauth2GrantJwtJtiOptional ¶

func (o *NormalizedProjectRevision) HasHydraOauth2GrantJwtJtiOptional() bool

HasHydraOauth2GrantJwtJtiOptional returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraOauth2GrantJwtMaxTtl ¶

func (o *NormalizedProjectRevision) HasHydraOauth2GrantJwtMaxTtl() bool

HasHydraOauth2GrantJwtMaxTtl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraOauth2PkceEnforced ¶

func (o *NormalizedProjectRevision) HasHydraOauth2PkceEnforced() bool

HasHydraOauth2PkceEnforced returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraOauth2PkceEnforcedForPublicClients ¶

func (o *NormalizedProjectRevision) HasHydraOauth2PkceEnforcedForPublicClients() bool

HasHydraOauth2PkceEnforcedForPublicClients returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraOauth2RefreshTokenHook ¶

func (o *NormalizedProjectRevision) HasHydraOauth2RefreshTokenHook() bool

HasHydraOauth2RefreshTokenHook returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraOauth2TokenHook ¶

func (o *NormalizedProjectRevision) HasHydraOauth2TokenHook() bool

HasHydraOauth2TokenHook returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraOidcDynamicClientRegistrationDefaultScope ¶

func (o *NormalizedProjectRevision) HasHydraOidcDynamicClientRegistrationDefaultScope() bool

HasHydraOidcDynamicClientRegistrationDefaultScope returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraOidcDynamicClientRegistrationEnabled ¶

func (o *NormalizedProjectRevision) HasHydraOidcDynamicClientRegistrationEnabled() bool

HasHydraOidcDynamicClientRegistrationEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraOidcSubjectIdentifiersPairwiseSalt ¶

func (o *NormalizedProjectRevision) HasHydraOidcSubjectIdentifiersPairwiseSalt() bool

HasHydraOidcSubjectIdentifiersPairwiseSalt returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraOidcSubjectIdentifiersSupportedTypes ¶

func (o *NormalizedProjectRevision) HasHydraOidcSubjectIdentifiersSupportedTypes() bool

HasHydraOidcSubjectIdentifiersSupportedTypes returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraSecretsCookie ¶

func (o *NormalizedProjectRevision) HasHydraSecretsCookie() bool

HasHydraSecretsCookie returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraSecretsSystem ¶

func (o *NormalizedProjectRevision) HasHydraSecretsSystem() bool

HasHydraSecretsSystem returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraServeCookiesSameSiteLegacyWorkaround ¶

func (o *NormalizedProjectRevision) HasHydraServeCookiesSameSiteLegacyWorkaround() bool

HasHydraServeCookiesSameSiteLegacyWorkaround returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraServeCookiesSameSiteMode ¶

func (o *NormalizedProjectRevision) HasHydraServeCookiesSameSiteMode() bool

HasHydraServeCookiesSameSiteMode returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraStrategiesAccessToken ¶

func (o *NormalizedProjectRevision) HasHydraStrategiesAccessToken() bool

HasHydraStrategiesAccessToken returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraStrategiesScope ¶

func (o *NormalizedProjectRevision) HasHydraStrategiesScope() bool

HasHydraStrategiesScope returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraTtlAccessToken ¶

func (o *NormalizedProjectRevision) HasHydraTtlAccessToken() bool

HasHydraTtlAccessToken returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraTtlAuthCode ¶

func (o *NormalizedProjectRevision) HasHydraTtlAuthCode() bool

HasHydraTtlAuthCode returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraTtlIdToken ¶

func (o *NormalizedProjectRevision) HasHydraTtlIdToken() bool

HasHydraTtlIdToken returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraTtlLoginConsentRequest ¶

func (o *NormalizedProjectRevision) HasHydraTtlLoginConsentRequest() bool

HasHydraTtlLoginConsentRequest returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraTtlRefreshToken ¶

func (o *NormalizedProjectRevision) HasHydraTtlRefreshToken() bool

HasHydraTtlRefreshToken returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraUrlsConsent ¶

func (o *NormalizedProjectRevision) HasHydraUrlsConsent() bool

HasHydraUrlsConsent returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraUrlsError ¶

func (o *NormalizedProjectRevision) HasHydraUrlsError() bool

HasHydraUrlsError returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraUrlsLogin ¶

func (o *NormalizedProjectRevision) HasHydraUrlsLogin() bool

HasHydraUrlsLogin returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraUrlsLogout ¶

func (o *NormalizedProjectRevision) HasHydraUrlsLogout() bool

HasHydraUrlsLogout returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraUrlsPostLogoutRedirect ¶

func (o *NormalizedProjectRevision) HasHydraUrlsPostLogoutRedirect() bool

HasHydraUrlsPostLogoutRedirect returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraUrlsRegistration ¶

func (o *NormalizedProjectRevision) HasHydraUrlsRegistration() bool

HasHydraUrlsRegistration returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraUrlsSelfIssuer ¶

func (o *NormalizedProjectRevision) HasHydraUrlsSelfIssuer() bool

HasHydraUrlsSelfIssuer returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraWebfingerJwksBroadcastKeys ¶

func (o *NormalizedProjectRevision) HasHydraWebfingerJwksBroadcastKeys() bool

HasHydraWebfingerJwksBroadcastKeys returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraWebfingerOidcDiscoveryAuthUrl ¶

func (o *NormalizedProjectRevision) HasHydraWebfingerOidcDiscoveryAuthUrl() bool

HasHydraWebfingerOidcDiscoveryAuthUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraWebfingerOidcDiscoveryClientRegistrationUrl ¶

func (o *NormalizedProjectRevision) HasHydraWebfingerOidcDiscoveryClientRegistrationUrl() bool

HasHydraWebfingerOidcDiscoveryClientRegistrationUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraWebfingerOidcDiscoveryJwksUrl ¶

func (o *NormalizedProjectRevision) HasHydraWebfingerOidcDiscoveryJwksUrl() bool

HasHydraWebfingerOidcDiscoveryJwksUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraWebfingerOidcDiscoverySupportedClaims ¶

func (o *NormalizedProjectRevision) HasHydraWebfingerOidcDiscoverySupportedClaims() bool

HasHydraWebfingerOidcDiscoverySupportedClaims returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraWebfingerOidcDiscoverySupportedScope ¶

func (o *NormalizedProjectRevision) HasHydraWebfingerOidcDiscoverySupportedScope() bool

HasHydraWebfingerOidcDiscoverySupportedScope returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraWebfingerOidcDiscoveryTokenUrl ¶

func (o *NormalizedProjectRevision) HasHydraWebfingerOidcDiscoveryTokenUrl() bool

HasHydraWebfingerOidcDiscoveryTokenUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasHydraWebfingerOidcDiscoveryUserinfoUrl ¶

func (o *NormalizedProjectRevision) HasHydraWebfingerOidcDiscoveryUserinfoUrl() bool

HasHydraWebfingerOidcDiscoveryUserinfoUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasId ¶

func (o *NormalizedProjectRevision) HasId() bool

HasId returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKetoNamespaceConfiguration ¶

func (o *NormalizedProjectRevision) HasKetoNamespaceConfiguration() bool

HasKetoNamespaceConfiguration returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKetoNamespaces ¶

func (o *NormalizedProjectRevision) HasKetoNamespaces() bool

HasKetoNamespaces returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCookiesSameSite ¶

func (o *NormalizedProjectRevision) HasKratosCookiesSameSite() bool

HasKratosCookiesSameSite returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierChannels ¶

func (o *NormalizedProjectRevision) HasKratosCourierChannels() bool

HasKratosCourierChannels returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierDeliveryStrategy ¶

func (o *NormalizedProjectRevision) HasKratosCourierDeliveryStrategy() bool

HasKratosCourierDeliveryStrategy returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierHttpRequestConfigAuthApiKeyIn ¶

func (o *NormalizedProjectRevision) HasKratosCourierHttpRequestConfigAuthApiKeyIn() bool

HasKratosCourierHttpRequestConfigAuthApiKeyIn returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierHttpRequestConfigAuthApiKeyName ¶

func (o *NormalizedProjectRevision) HasKratosCourierHttpRequestConfigAuthApiKeyName() bool

HasKratosCourierHttpRequestConfigAuthApiKeyName returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierHttpRequestConfigAuthApiKeyValue ¶

func (o *NormalizedProjectRevision) HasKratosCourierHttpRequestConfigAuthApiKeyValue() bool

HasKratosCourierHttpRequestConfigAuthApiKeyValue returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierHttpRequestConfigAuthBasicAuthPassword ¶

func (o *NormalizedProjectRevision) HasKratosCourierHttpRequestConfigAuthBasicAuthPassword() bool

HasKratosCourierHttpRequestConfigAuthBasicAuthPassword returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierHttpRequestConfigAuthBasicAuthUser ¶

func (o *NormalizedProjectRevision) HasKratosCourierHttpRequestConfigAuthBasicAuthUser() bool

HasKratosCourierHttpRequestConfigAuthBasicAuthUser returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierHttpRequestConfigAuthType ¶

func (o *NormalizedProjectRevision) HasKratosCourierHttpRequestConfigAuthType() bool

HasKratosCourierHttpRequestConfigAuthType returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierHttpRequestConfigBody ¶

func (o *NormalizedProjectRevision) HasKratosCourierHttpRequestConfigBody() bool

HasKratosCourierHttpRequestConfigBody returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierHttpRequestConfigHeaders ¶

func (o *NormalizedProjectRevision) HasKratosCourierHttpRequestConfigHeaders() bool

HasKratosCourierHttpRequestConfigHeaders returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierHttpRequestConfigMethod ¶

func (o *NormalizedProjectRevision) HasKratosCourierHttpRequestConfigMethod() bool

HasKratosCourierHttpRequestConfigMethod returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierHttpRequestConfigUrl ¶

func (o *NormalizedProjectRevision) HasKratosCourierHttpRequestConfigUrl() bool

HasKratosCourierHttpRequestConfigUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierSmtpConnectionUri ¶

func (o *NormalizedProjectRevision) HasKratosCourierSmtpConnectionUri() bool

HasKratosCourierSmtpConnectionUri returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierSmtpFromAddress ¶

func (o *NormalizedProjectRevision) HasKratosCourierSmtpFromAddress() bool

HasKratosCourierSmtpFromAddress returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierSmtpFromName ¶

func (o *NormalizedProjectRevision) HasKratosCourierSmtpFromName() bool

HasKratosCourierSmtpFromName returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierSmtpHeaders ¶

func (o *NormalizedProjectRevision) HasKratosCourierSmtpHeaders() bool

HasKratosCourierSmtpHeaders returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierSmtpLocalName ¶

func (o *NormalizedProjectRevision) HasKratosCourierSmtpLocalName() bool

HasKratosCourierSmtpLocalName returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesLoginCodeValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesLoginCodeValidEmailBodyHtml() bool

HasKratosCourierTemplatesLoginCodeValidEmailBodyHtml returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext() bool

HasKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesLoginCodeValidEmailSubject ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesLoginCodeValidEmailSubject() bool

HasKratosCourierTemplatesLoginCodeValidEmailSubject returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml() bool

HasKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext() bool

HasKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryCodeInvalidEmailSubject ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryCodeInvalidEmailSubject() bool

HasKratosCourierTemplatesRecoveryCodeInvalidEmailSubject returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml() bool

HasKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext() bool

HasKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryCodeValidEmailSubject ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryCodeValidEmailSubject() bool

HasKratosCourierTemplatesRecoveryCodeValidEmailSubject returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryInvalidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryInvalidEmailBodyHtml() bool

HasKratosCourierTemplatesRecoveryInvalidEmailBodyHtml returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext() bool

HasKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryInvalidEmailSubject ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryInvalidEmailSubject() bool

HasKratosCourierTemplatesRecoveryInvalidEmailSubject returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryValidEmailBodyHtml() bool

HasKratosCourierTemplatesRecoveryValidEmailBodyHtml returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryValidEmailBodyPlaintext() bool

HasKratosCourierTemplatesRecoveryValidEmailBodyPlaintext returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryValidEmailSubject ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRecoveryValidEmailSubject() bool

HasKratosCourierTemplatesRecoveryValidEmailSubject returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml() bool

HasKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext() bool

HasKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesRegistrationCodeValidEmailSubject ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesRegistrationCodeValidEmailSubject() bool

HasKratosCourierTemplatesRegistrationCodeValidEmailSubject returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml() bool

HasKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext() bool

HasKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesVerificationCodeInvalidEmailSubject ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesVerificationCodeInvalidEmailSubject() bool

HasKratosCourierTemplatesVerificationCodeInvalidEmailSubject returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesVerificationCodeValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesVerificationCodeValidEmailBodyHtml() bool

HasKratosCourierTemplatesVerificationCodeValidEmailBodyHtml returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext() bool

HasKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesVerificationCodeValidEmailSubject ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesVerificationCodeValidEmailSubject() bool

HasKratosCourierTemplatesVerificationCodeValidEmailSubject returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext() bool

HasKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesVerificationInvalidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesVerificationInvalidEmailBodyHtml() bool

HasKratosCourierTemplatesVerificationInvalidEmailBodyHtml returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext() bool

HasKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesVerificationInvalidEmailSubject ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesVerificationInvalidEmailSubject() bool

HasKratosCourierTemplatesVerificationInvalidEmailSubject returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesVerificationValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesVerificationValidEmailBodyHtml() bool

HasKratosCourierTemplatesVerificationValidEmailBodyHtml returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesVerificationValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesVerificationValidEmailBodyPlaintext() bool

HasKratosCourierTemplatesVerificationValidEmailBodyPlaintext returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosCourierTemplatesVerificationValidEmailSubject ¶

func (o *NormalizedProjectRevision) HasKratosCourierTemplatesVerificationValidEmailSubject() bool

HasKratosCourierTemplatesVerificationValidEmailSubject returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosFeatureFlagsCacheableSessions ¶

func (o *NormalizedProjectRevision) HasKratosFeatureFlagsCacheableSessions() bool

HasKratosFeatureFlagsCacheableSessions returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosFeatureFlagsUseContinueWithTransitions ¶

func (o *NormalizedProjectRevision) HasKratosFeatureFlagsUseContinueWithTransitions() bool

HasKratosFeatureFlagsUseContinueWithTransitions returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosIdentitySchemas ¶

func (o *NormalizedProjectRevision) HasKratosIdentitySchemas() bool

HasKratosIdentitySchemas returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosOauth2ProviderHeaders ¶

func (o *NormalizedProjectRevision) HasKratosOauth2ProviderHeaders() bool

HasKratosOauth2ProviderHeaders returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosOauth2ProviderOverrideReturnTo ¶

func (o *NormalizedProjectRevision) HasKratosOauth2ProviderOverrideReturnTo() bool

HasKratosOauth2ProviderOverrideReturnTo returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosOauth2ProviderUrl ¶

func (o *NormalizedProjectRevision) HasKratosOauth2ProviderUrl() bool

HasKratosOauth2ProviderUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosPreviewDefaultReadConsistencyLevel ¶

func (o *NormalizedProjectRevision) HasKratosPreviewDefaultReadConsistencyLevel() bool

HasKratosPreviewDefaultReadConsistencyLevel returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSecretsCipher ¶

func (o *NormalizedProjectRevision) HasKratosSecretsCipher() bool

HasKratosSecretsCipher returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSecretsCookie ¶

func (o *NormalizedProjectRevision) HasKratosSecretsCookie() bool

HasKratosSecretsCookie returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSecretsDefault ¶

func (o *NormalizedProjectRevision) HasKratosSecretsDefault() bool

HasKratosSecretsDefault returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceAllowedReturnUrls ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceAllowedReturnUrls() bool

HasKratosSelfserviceAllowedReturnUrls returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceDefaultBrowserReturnUrl() bool

HasKratosSelfserviceDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsErrorUiUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsErrorUiUrl() bool

HasKratosSelfserviceFlowsErrorUiUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginLifespan ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginLifespan() bool

HasKratosSelfserviceFlowsLoginLifespan returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginUiUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsLoginUiUrl() bool

HasKratosSelfserviceFlowsLoginUiUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRecoveryEnabled ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRecoveryEnabled() bool

HasKratosSelfserviceFlowsRecoveryEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRecoveryLifespan ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRecoveryLifespan() bool

HasKratosSelfserviceFlowsRecoveryLifespan returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients() bool

HasKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRecoveryUiUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRecoveryUiUrl() bool

HasKratosSelfserviceFlowsRecoveryUiUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRecoveryUse ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRecoveryUse() bool

HasKratosSelfserviceFlowsRecoveryUse returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationEnabled ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationEnabled() bool

HasKratosSelfserviceFlowsRegistrationEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationLifespan ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationLifespan() bool

HasKratosSelfserviceFlowsRegistrationLifespan returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationLoginHints ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationLoginHints() bool

HasKratosSelfserviceFlowsRegistrationLoginHints returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationUiUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsRegistrationUiUrl() bool

HasKratosSelfserviceFlowsRegistrationUiUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsLifespan ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsLifespan() bool

HasKratosSelfserviceFlowsSettingsLifespan returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge() bool

HasKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsRequiredAal ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsRequiredAal() bool

HasKratosSelfserviceFlowsSettingsRequiredAal returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsUiUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsSettingsUiUrl() bool

HasKratosSelfserviceFlowsSettingsUiUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl() bool

HasKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsVerificationEnabled ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsVerificationEnabled() bool

HasKratosSelfserviceFlowsVerificationEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsVerificationLifespan ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsVerificationLifespan() bool

HasKratosSelfserviceFlowsVerificationLifespan returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsVerificationNotifyUnknownRecipients ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsVerificationNotifyUnknownRecipients() bool

HasKratosSelfserviceFlowsVerificationNotifyUnknownRecipients returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsVerificationUiUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsVerificationUiUrl() bool

HasKratosSelfserviceFlowsVerificationUiUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceFlowsVerificationUse ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceFlowsVerificationUse() bool

HasKratosSelfserviceFlowsVerificationUse returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsCodeConfigLifespan ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsCodeConfigLifespan() bool

HasKratosSelfserviceMethodsCodeConfigLifespan returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsCodeEnabled ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsCodeEnabled() bool

HasKratosSelfserviceMethodsCodeEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsCodePasswordlessEnabled ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsCodePasswordlessEnabled() bool

HasKratosSelfserviceMethodsCodePasswordlessEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsLinkConfigBaseUrl ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsLinkConfigBaseUrl() bool

HasKratosSelfserviceMethodsLinkConfigBaseUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsLinkConfigLifespan ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsLinkConfigLifespan() bool

HasKratosSelfserviceMethodsLinkConfigLifespan returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsLinkEnabled ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsLinkEnabled() bool

HasKratosSelfserviceMethodsLinkEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsLookupSecretEnabled ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsLookupSecretEnabled() bool

HasKratosSelfserviceMethodsLookupSecretEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsOidcConfigBaseRedirectUri ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsOidcConfigBaseRedirectUri() bool

HasKratosSelfserviceMethodsOidcConfigBaseRedirectUri returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsOidcConfigProviders ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsOidcConfigProviders() bool

HasKratosSelfserviceMethodsOidcConfigProviders returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsOidcEnabled ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsOidcEnabled() bool

HasKratosSelfserviceMethodsOidcEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled() bool

HasKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled() bool

HasKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors() bool

HasKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsPasswordConfigMaxBreaches ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsPasswordConfigMaxBreaches() bool

HasKratosSelfserviceMethodsPasswordConfigMaxBreaches returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsPasswordConfigMinPasswordLength ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsPasswordConfigMinPasswordLength() bool

HasKratosSelfserviceMethodsPasswordConfigMinPasswordLength returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsPasswordEnabled ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsPasswordEnabled() bool

HasKratosSelfserviceMethodsPasswordEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsProfileEnabled ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsProfileEnabled() bool

HasKratosSelfserviceMethodsProfileEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsTotpConfigIssuer ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsTotpConfigIssuer() bool

HasKratosSelfserviceMethodsTotpConfigIssuer returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsTotpEnabled ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsTotpEnabled() bool

HasKratosSelfserviceMethodsTotpEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsWebauthnConfigPasswordless ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsWebauthnConfigPasswordless() bool

HasKratosSelfserviceMethodsWebauthnConfigPasswordless returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsWebauthnConfigRpDisplayName ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsWebauthnConfigRpDisplayName() bool

HasKratosSelfserviceMethodsWebauthnConfigRpDisplayName returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsWebauthnConfigRpIcon ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsWebauthnConfigRpIcon() bool

HasKratosSelfserviceMethodsWebauthnConfigRpIcon returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsWebauthnConfigRpId ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsWebauthnConfigRpId() bool

HasKratosSelfserviceMethodsWebauthnConfigRpId returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsWebauthnConfigRpOrigins ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsWebauthnConfigRpOrigins() bool

HasKratosSelfserviceMethodsWebauthnConfigRpOrigins returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSelfserviceMethodsWebauthnEnabled ¶

func (o *NormalizedProjectRevision) HasKratosSelfserviceMethodsWebauthnEnabled() bool

HasKratosSelfserviceMethodsWebauthnEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSessionCookiePersistent ¶

func (o *NormalizedProjectRevision) HasKratosSessionCookiePersistent() bool

HasKratosSessionCookiePersistent returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSessionCookieSameSite ¶

func (o *NormalizedProjectRevision) HasKratosSessionCookieSameSite() bool

HasKratosSessionCookieSameSite returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSessionLifespan ¶

func (o *NormalizedProjectRevision) HasKratosSessionLifespan() bool

HasKratosSessionLifespan returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSessionWhoamiRequiredAal ¶

func (o *NormalizedProjectRevision) HasKratosSessionWhoamiRequiredAal() bool

HasKratosSessionWhoamiRequiredAal returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasKratosSessionWhoamiTokenizerTemplates ¶

func (o *NormalizedProjectRevision) HasKratosSessionWhoamiTokenizerTemplates() bool

HasKratosSessionWhoamiTokenizerTemplates returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasProjectId ¶

func (o *NormalizedProjectRevision) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasProjectRevisionHooks ¶

func (o *NormalizedProjectRevision) HasProjectRevisionHooks() bool

HasProjectRevisionHooks returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasServeAdminCorsAllowedOrigins ¶

func (o *NormalizedProjectRevision) HasServeAdminCorsAllowedOrigins() bool

HasServeAdminCorsAllowedOrigins returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasServeAdminCorsEnabled ¶

func (o *NormalizedProjectRevision) HasServeAdminCorsEnabled() bool

HasServeAdminCorsEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasServePublicCorsAllowedOrigins ¶

func (o *NormalizedProjectRevision) HasServePublicCorsAllowedOrigins() bool

HasServePublicCorsAllowedOrigins returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasServePublicCorsEnabled ¶

func (o *NormalizedProjectRevision) HasServePublicCorsEnabled() bool

HasServePublicCorsEnabled returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasStrictSecurity ¶

func (o *NormalizedProjectRevision) HasStrictSecurity() bool

HasStrictSecurity returns a boolean if a field has been set.

func (*NormalizedProjectRevision) HasUpdatedAt ¶

func (o *NormalizedProjectRevision) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (NormalizedProjectRevision) MarshalJSON ¶

func (o NormalizedProjectRevision) MarshalJSON() ([]byte, error)

func (*NormalizedProjectRevision) SetCreatedAt ¶

func (o *NormalizedProjectRevision) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*NormalizedProjectRevision) SetDisableAccountExperienceWelcomeScreen ¶

func (o *NormalizedProjectRevision) SetDisableAccountExperienceWelcomeScreen(v bool)

SetDisableAccountExperienceWelcomeScreen gets a reference to the given bool and assigns it to the DisableAccountExperienceWelcomeScreen field.

func (*NormalizedProjectRevision) SetHydraOauth2AllowedTopLevelClaims ¶

func (o *NormalizedProjectRevision) SetHydraOauth2AllowedTopLevelClaims(v []string)

SetHydraOauth2AllowedTopLevelClaims gets a reference to the given []string and assigns it to the HydraOauth2AllowedTopLevelClaims field.

func (*NormalizedProjectRevision) SetHydraOauth2ClientCredentialsDefaultGrantAllowedScope ¶

func (o *NormalizedProjectRevision) SetHydraOauth2ClientCredentialsDefaultGrantAllowedScope(v bool)

SetHydraOauth2ClientCredentialsDefaultGrantAllowedScope gets a reference to the given bool and assigns it to the HydraOauth2ClientCredentialsDefaultGrantAllowedScope field.

func (*NormalizedProjectRevision) SetHydraOauth2ExcludeNotBeforeClaim ¶

func (o *NormalizedProjectRevision) SetHydraOauth2ExcludeNotBeforeClaim(v bool)

SetHydraOauth2ExcludeNotBeforeClaim gets a reference to the given bool and assigns it to the HydraOauth2ExcludeNotBeforeClaim field.

func (*NormalizedProjectRevision) SetHydraOauth2GrantJwtIatOptional ¶

func (o *NormalizedProjectRevision) SetHydraOauth2GrantJwtIatOptional(v bool)

SetHydraOauth2GrantJwtIatOptional gets a reference to the given bool and assigns it to the HydraOauth2GrantJwtIatOptional field.

func (*NormalizedProjectRevision) SetHydraOauth2GrantJwtJtiOptional ¶

func (o *NormalizedProjectRevision) SetHydraOauth2GrantJwtJtiOptional(v bool)

SetHydraOauth2GrantJwtJtiOptional gets a reference to the given bool and assigns it to the HydraOauth2GrantJwtJtiOptional field.

func (*NormalizedProjectRevision) SetHydraOauth2GrantJwtMaxTtl ¶

func (o *NormalizedProjectRevision) SetHydraOauth2GrantJwtMaxTtl(v string)

SetHydraOauth2GrantJwtMaxTtl gets a reference to the given string and assigns it to the HydraOauth2GrantJwtMaxTtl field.

func (*NormalizedProjectRevision) SetHydraOauth2PkceEnforced ¶

func (o *NormalizedProjectRevision) SetHydraOauth2PkceEnforced(v bool)

SetHydraOauth2PkceEnforced gets a reference to the given bool and assigns it to the HydraOauth2PkceEnforced field.

func (*NormalizedProjectRevision) SetHydraOauth2PkceEnforcedForPublicClients ¶

func (o *NormalizedProjectRevision) SetHydraOauth2PkceEnforcedForPublicClients(v bool)

SetHydraOauth2PkceEnforcedForPublicClients gets a reference to the given bool and assigns it to the HydraOauth2PkceEnforcedForPublicClients field.

func (*NormalizedProjectRevision) SetHydraOauth2RefreshTokenHook ¶

func (o *NormalizedProjectRevision) SetHydraOauth2RefreshTokenHook(v string)

SetHydraOauth2RefreshTokenHook gets a reference to the given string and assigns it to the HydraOauth2RefreshTokenHook field.

func (*NormalizedProjectRevision) SetHydraOauth2TokenHook ¶

func (o *NormalizedProjectRevision) SetHydraOauth2TokenHook(v string)

SetHydraOauth2TokenHook gets a reference to the given string and assigns it to the HydraOauth2TokenHook field.

func (*NormalizedProjectRevision) SetHydraOidcDynamicClientRegistrationDefaultScope ¶

func (o *NormalizedProjectRevision) SetHydraOidcDynamicClientRegistrationDefaultScope(v []string)

SetHydraOidcDynamicClientRegistrationDefaultScope gets a reference to the given []string and assigns it to the HydraOidcDynamicClientRegistrationDefaultScope field.

func (*NormalizedProjectRevision) SetHydraOidcDynamicClientRegistrationEnabled ¶

func (o *NormalizedProjectRevision) SetHydraOidcDynamicClientRegistrationEnabled(v bool)

SetHydraOidcDynamicClientRegistrationEnabled gets a reference to the given bool and assigns it to the HydraOidcDynamicClientRegistrationEnabled field.

func (*NormalizedProjectRevision) SetHydraOidcSubjectIdentifiersPairwiseSalt ¶

func (o *NormalizedProjectRevision) SetHydraOidcSubjectIdentifiersPairwiseSalt(v string)

SetHydraOidcSubjectIdentifiersPairwiseSalt gets a reference to the given string and assigns it to the HydraOidcSubjectIdentifiersPairwiseSalt field.

func (*NormalizedProjectRevision) SetHydraOidcSubjectIdentifiersSupportedTypes ¶

func (o *NormalizedProjectRevision) SetHydraOidcSubjectIdentifiersSupportedTypes(v []string)

SetHydraOidcSubjectIdentifiersSupportedTypes gets a reference to the given []string and assigns it to the HydraOidcSubjectIdentifiersSupportedTypes field.

func (*NormalizedProjectRevision) SetHydraSecretsCookie ¶

func (o *NormalizedProjectRevision) SetHydraSecretsCookie(v []string)

SetHydraSecretsCookie gets a reference to the given []string and assigns it to the HydraSecretsCookie field.

func (*NormalizedProjectRevision) SetHydraSecretsSystem ¶

func (o *NormalizedProjectRevision) SetHydraSecretsSystem(v []string)

SetHydraSecretsSystem gets a reference to the given []string and assigns it to the HydraSecretsSystem field.

func (*NormalizedProjectRevision) SetHydraServeCookiesSameSiteLegacyWorkaround ¶

func (o *NormalizedProjectRevision) SetHydraServeCookiesSameSiteLegacyWorkaround(v bool)

SetHydraServeCookiesSameSiteLegacyWorkaround gets a reference to the given bool and assigns it to the HydraServeCookiesSameSiteLegacyWorkaround field.

func (*NormalizedProjectRevision) SetHydraServeCookiesSameSiteMode ¶

func (o *NormalizedProjectRevision) SetHydraServeCookiesSameSiteMode(v string)

SetHydraServeCookiesSameSiteMode gets a reference to the given string and assigns it to the HydraServeCookiesSameSiteMode field.

func (*NormalizedProjectRevision) SetHydraStrategiesAccessToken ¶

func (o *NormalizedProjectRevision) SetHydraStrategiesAccessToken(v string)

SetHydraStrategiesAccessToken gets a reference to the given string and assigns it to the HydraStrategiesAccessToken field.

func (*NormalizedProjectRevision) SetHydraStrategiesScope ¶

func (o *NormalizedProjectRevision) SetHydraStrategiesScope(v string)

SetHydraStrategiesScope gets a reference to the given string and assigns it to the HydraStrategiesScope field.

func (*NormalizedProjectRevision) SetHydraTtlAccessToken ¶

func (o *NormalizedProjectRevision) SetHydraTtlAccessToken(v string)

SetHydraTtlAccessToken gets a reference to the given string and assigns it to the HydraTtlAccessToken field.

func (*NormalizedProjectRevision) SetHydraTtlAuthCode ¶

func (o *NormalizedProjectRevision) SetHydraTtlAuthCode(v string)

SetHydraTtlAuthCode gets a reference to the given string and assigns it to the HydraTtlAuthCode field.

func (*NormalizedProjectRevision) SetHydraTtlIdToken ¶

func (o *NormalizedProjectRevision) SetHydraTtlIdToken(v string)

SetHydraTtlIdToken gets a reference to the given string and assigns it to the HydraTtlIdToken field.

func (*NormalizedProjectRevision) SetHydraTtlLoginConsentRequest ¶

func (o *NormalizedProjectRevision) SetHydraTtlLoginConsentRequest(v string)

SetHydraTtlLoginConsentRequest gets a reference to the given string and assigns it to the HydraTtlLoginConsentRequest field.

func (*NormalizedProjectRevision) SetHydraTtlRefreshToken ¶

func (o *NormalizedProjectRevision) SetHydraTtlRefreshToken(v string)

SetHydraTtlRefreshToken gets a reference to the given string and assigns it to the HydraTtlRefreshToken field.

func (*NormalizedProjectRevision) SetHydraUrlsConsent ¶

func (o *NormalizedProjectRevision) SetHydraUrlsConsent(v string)

SetHydraUrlsConsent gets a reference to the given string and assigns it to the HydraUrlsConsent field.

func (*NormalizedProjectRevision) SetHydraUrlsError ¶

func (o *NormalizedProjectRevision) SetHydraUrlsError(v string)

SetHydraUrlsError gets a reference to the given string and assigns it to the HydraUrlsError field.

func (*NormalizedProjectRevision) SetHydraUrlsLogin ¶

func (o *NormalizedProjectRevision) SetHydraUrlsLogin(v string)

SetHydraUrlsLogin gets a reference to the given string and assigns it to the HydraUrlsLogin field.

func (*NormalizedProjectRevision) SetHydraUrlsLogout ¶

func (o *NormalizedProjectRevision) SetHydraUrlsLogout(v string)

SetHydraUrlsLogout gets a reference to the given string and assigns it to the HydraUrlsLogout field.

func (*NormalizedProjectRevision) SetHydraUrlsPostLogoutRedirect ¶

func (o *NormalizedProjectRevision) SetHydraUrlsPostLogoutRedirect(v string)

SetHydraUrlsPostLogoutRedirect gets a reference to the given string and assigns it to the HydraUrlsPostLogoutRedirect field.

func (*NormalizedProjectRevision) SetHydraUrlsRegistration ¶

func (o *NormalizedProjectRevision) SetHydraUrlsRegistration(v string)

SetHydraUrlsRegistration gets a reference to the given string and assigns it to the HydraUrlsRegistration field.

func (*NormalizedProjectRevision) SetHydraUrlsSelfIssuer ¶

func (o *NormalizedProjectRevision) SetHydraUrlsSelfIssuer(v string)

SetHydraUrlsSelfIssuer gets a reference to the given string and assigns it to the HydraUrlsSelfIssuer field.

func (*NormalizedProjectRevision) SetHydraWebfingerJwksBroadcastKeys ¶

func (o *NormalizedProjectRevision) SetHydraWebfingerJwksBroadcastKeys(v []string)

SetHydraWebfingerJwksBroadcastKeys gets a reference to the given []string and assigns it to the HydraWebfingerJwksBroadcastKeys field.

func (*NormalizedProjectRevision) SetHydraWebfingerOidcDiscoveryAuthUrl ¶

func (o *NormalizedProjectRevision) SetHydraWebfingerOidcDiscoveryAuthUrl(v string)

SetHydraWebfingerOidcDiscoveryAuthUrl gets a reference to the given string and assigns it to the HydraWebfingerOidcDiscoveryAuthUrl field.

func (*NormalizedProjectRevision) SetHydraWebfingerOidcDiscoveryClientRegistrationUrl ¶

func (o *NormalizedProjectRevision) SetHydraWebfingerOidcDiscoveryClientRegistrationUrl(v string)

SetHydraWebfingerOidcDiscoveryClientRegistrationUrl gets a reference to the given string and assigns it to the HydraWebfingerOidcDiscoveryClientRegistrationUrl field.

func (*NormalizedProjectRevision) SetHydraWebfingerOidcDiscoveryJwksUrl ¶

func (o *NormalizedProjectRevision) SetHydraWebfingerOidcDiscoveryJwksUrl(v string)

SetHydraWebfingerOidcDiscoveryJwksUrl gets a reference to the given string and assigns it to the HydraWebfingerOidcDiscoveryJwksUrl field.

func (*NormalizedProjectRevision) SetHydraWebfingerOidcDiscoverySupportedClaims ¶

func (o *NormalizedProjectRevision) SetHydraWebfingerOidcDiscoverySupportedClaims(v []string)

SetHydraWebfingerOidcDiscoverySupportedClaims gets a reference to the given []string and assigns it to the HydraWebfingerOidcDiscoverySupportedClaims field.

func (*NormalizedProjectRevision) SetHydraWebfingerOidcDiscoverySupportedScope ¶

func (o *NormalizedProjectRevision) SetHydraWebfingerOidcDiscoverySupportedScope(v []string)

SetHydraWebfingerOidcDiscoverySupportedScope gets a reference to the given []string and assigns it to the HydraWebfingerOidcDiscoverySupportedScope field.

func (*NormalizedProjectRevision) SetHydraWebfingerOidcDiscoveryTokenUrl ¶

func (o *NormalizedProjectRevision) SetHydraWebfingerOidcDiscoveryTokenUrl(v string)

SetHydraWebfingerOidcDiscoveryTokenUrl gets a reference to the given string and assigns it to the HydraWebfingerOidcDiscoveryTokenUrl field.

func (*NormalizedProjectRevision) SetHydraWebfingerOidcDiscoveryUserinfoUrl ¶

func (o *NormalizedProjectRevision) SetHydraWebfingerOidcDiscoveryUserinfoUrl(v string)

SetHydraWebfingerOidcDiscoveryUserinfoUrl gets a reference to the given string and assigns it to the HydraWebfingerOidcDiscoveryUserinfoUrl field.

func (*NormalizedProjectRevision) SetId ¶

func (o *NormalizedProjectRevision) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*NormalizedProjectRevision) SetKetoNamespaceConfiguration ¶

func (o *NormalizedProjectRevision) SetKetoNamespaceConfiguration(v string)

SetKetoNamespaceConfiguration gets a reference to the given string and assigns it to the KetoNamespaceConfiguration field.

func (*NormalizedProjectRevision) SetKetoNamespaces ¶

func (o *NormalizedProjectRevision) SetKetoNamespaces(v []KetoNamespace)

SetKetoNamespaces gets a reference to the given []KetoNamespace and assigns it to the KetoNamespaces field.

func (*NormalizedProjectRevision) SetKratosCookiesSameSite ¶

func (o *NormalizedProjectRevision) SetKratosCookiesSameSite(v string)

SetKratosCookiesSameSite gets a reference to the given string and assigns it to the KratosCookiesSameSite field.

func (*NormalizedProjectRevision) SetKratosCourierChannels ¶

func (o *NormalizedProjectRevision) SetKratosCourierChannels(v []NormalizedProjectRevisionCourierChannel)

SetKratosCourierChannels gets a reference to the given []NormalizedProjectRevisionCourierChannel and assigns it to the KratosCourierChannels field.

func (*NormalizedProjectRevision) SetKratosCourierDeliveryStrategy ¶

func (o *NormalizedProjectRevision) SetKratosCourierDeliveryStrategy(v string)

SetKratosCourierDeliveryStrategy gets a reference to the given string and assigns it to the KratosCourierDeliveryStrategy field.

func (*NormalizedProjectRevision) SetKratosCourierHttpRequestConfigAuthApiKeyIn ¶

func (o *NormalizedProjectRevision) SetKratosCourierHttpRequestConfigAuthApiKeyIn(v string)

SetKratosCourierHttpRequestConfigAuthApiKeyIn gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigAuthApiKeyIn field.

func (*NormalizedProjectRevision) SetKratosCourierHttpRequestConfigAuthApiKeyName ¶

func (o *NormalizedProjectRevision) SetKratosCourierHttpRequestConfigAuthApiKeyName(v string)

SetKratosCourierHttpRequestConfigAuthApiKeyName gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigAuthApiKeyName field.

func (*NormalizedProjectRevision) SetKratosCourierHttpRequestConfigAuthApiKeyValue ¶

func (o *NormalizedProjectRevision) SetKratosCourierHttpRequestConfigAuthApiKeyValue(v string)

SetKratosCourierHttpRequestConfigAuthApiKeyValue gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigAuthApiKeyValue field.

func (*NormalizedProjectRevision) SetKratosCourierHttpRequestConfigAuthBasicAuthPassword ¶

func (o *NormalizedProjectRevision) SetKratosCourierHttpRequestConfigAuthBasicAuthPassword(v string)

SetKratosCourierHttpRequestConfigAuthBasicAuthPassword gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigAuthBasicAuthPassword field.

func (*NormalizedProjectRevision) SetKratosCourierHttpRequestConfigAuthBasicAuthUser ¶

func (o *NormalizedProjectRevision) SetKratosCourierHttpRequestConfigAuthBasicAuthUser(v string)

SetKratosCourierHttpRequestConfigAuthBasicAuthUser gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigAuthBasicAuthUser field.

func (*NormalizedProjectRevision) SetKratosCourierHttpRequestConfigAuthType ¶

func (o *NormalizedProjectRevision) SetKratosCourierHttpRequestConfigAuthType(v string)

SetKratosCourierHttpRequestConfigAuthType gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigAuthType field.

func (*NormalizedProjectRevision) SetKratosCourierHttpRequestConfigBody ¶

func (o *NormalizedProjectRevision) SetKratosCourierHttpRequestConfigBody(v string)

SetKratosCourierHttpRequestConfigBody gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigBody field.

func (*NormalizedProjectRevision) SetKratosCourierHttpRequestConfigHeaders ¶

func (o *NormalizedProjectRevision) SetKratosCourierHttpRequestConfigHeaders(v map[string]interface{})

SetKratosCourierHttpRequestConfigHeaders gets a reference to the given map[string]interface{} and assigns it to the KratosCourierHttpRequestConfigHeaders field.

func (*NormalizedProjectRevision) SetKratosCourierHttpRequestConfigMethod ¶

func (o *NormalizedProjectRevision) SetKratosCourierHttpRequestConfigMethod(v string)

SetKratosCourierHttpRequestConfigMethod gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigMethod field.

func (*NormalizedProjectRevision) SetKratosCourierHttpRequestConfigUrl ¶

func (o *NormalizedProjectRevision) SetKratosCourierHttpRequestConfigUrl(v string)

SetKratosCourierHttpRequestConfigUrl gets a reference to the given string and assigns it to the KratosCourierHttpRequestConfigUrl field.

func (*NormalizedProjectRevision) SetKratosCourierSmtpConnectionUri ¶

func (o *NormalizedProjectRevision) SetKratosCourierSmtpConnectionUri(v string)

SetKratosCourierSmtpConnectionUri gets a reference to the given string and assigns it to the KratosCourierSmtpConnectionUri field.

func (*NormalizedProjectRevision) SetKratosCourierSmtpFromAddress ¶

func (o *NormalizedProjectRevision) SetKratosCourierSmtpFromAddress(v string)

SetKratosCourierSmtpFromAddress gets a reference to the given string and assigns it to the KratosCourierSmtpFromAddress field.

func (*NormalizedProjectRevision) SetKratosCourierSmtpFromName ¶

func (o *NormalizedProjectRevision) SetKratosCourierSmtpFromName(v string)

SetKratosCourierSmtpFromName gets a reference to the given string and assigns it to the KratosCourierSmtpFromName field.

func (*NormalizedProjectRevision) SetKratosCourierSmtpHeaders ¶

func (o *NormalizedProjectRevision) SetKratosCourierSmtpHeaders(v map[string]interface{})

SetKratosCourierSmtpHeaders gets a reference to the given map[string]interface{} and assigns it to the KratosCourierSmtpHeaders field.

func (*NormalizedProjectRevision) SetKratosCourierSmtpLocalName ¶

func (o *NormalizedProjectRevision) SetKratosCourierSmtpLocalName(v string)

SetKratosCourierSmtpLocalName gets a reference to the given string and assigns it to the KratosCourierSmtpLocalName field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesLoginCodeValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesLoginCodeValidEmailBodyHtml(v string)

SetKratosCourierTemplatesLoginCodeValidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesLoginCodeValidEmailBodyHtml field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesLoginCodeValidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesLoginCodeValidEmailBodyPlaintext field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesLoginCodeValidEmailSubject ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesLoginCodeValidEmailSubject(v string)

SetKratosCourierTemplatesLoginCodeValidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesLoginCodeValidEmailSubject field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml(v string)

SetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryCodeInvalidEmailBodyHtml field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryCodeInvalidEmailBodyPlaintext field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryCodeInvalidEmailSubject ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryCodeInvalidEmailSubject(v string)

SetKratosCourierTemplatesRecoveryCodeInvalidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryCodeInvalidEmailSubject field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml(v string)

SetKratosCourierTemplatesRecoveryCodeValidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryCodeValidEmailBodyHtml field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryCodeValidEmailBodyPlaintext field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryCodeValidEmailSubject ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryCodeValidEmailSubject(v string)

SetKratosCourierTemplatesRecoveryCodeValidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryCodeValidEmailSubject field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryInvalidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryInvalidEmailBodyHtml(v string)

SetKratosCourierTemplatesRecoveryInvalidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryInvalidEmailBodyHtml field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryInvalidEmailBodyPlaintext field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryInvalidEmailSubject ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryInvalidEmailSubject(v string)

SetKratosCourierTemplatesRecoveryInvalidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryInvalidEmailSubject field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryValidEmailBodyHtml(v string)

SetKratosCourierTemplatesRecoveryValidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryValidEmailBodyHtml field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryValidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesRecoveryValidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryValidEmailBodyPlaintext field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryValidEmailSubject ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRecoveryValidEmailSubject(v string)

SetKratosCourierTemplatesRecoveryValidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesRecoveryValidEmailSubject field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml(v string)

SetKratosCourierTemplatesRegistrationCodeValidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesRegistrationCodeValidEmailBodyHtml field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesRegistrationCodeValidEmailBodyPlaintext field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesRegistrationCodeValidEmailSubject ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesRegistrationCodeValidEmailSubject(v string)

SetKratosCourierTemplatesRegistrationCodeValidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesRegistrationCodeValidEmailSubject field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml(v string)

SetKratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationCodeInvalidEmailBodyHtml field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationCodeInvalidEmailBodyPlaintext field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesVerificationCodeInvalidEmailSubject ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesVerificationCodeInvalidEmailSubject(v string)

SetKratosCourierTemplatesVerificationCodeInvalidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationCodeInvalidEmailSubject field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesVerificationCodeValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesVerificationCodeValidEmailBodyHtml(v string)

SetKratosCourierTemplatesVerificationCodeValidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationCodeValidEmailBodyHtml field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationCodeValidEmailBodyPlaintext field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesVerificationCodeValidEmailSubject ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesVerificationCodeValidEmailSubject(v string)

SetKratosCourierTemplatesVerificationCodeValidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationCodeValidEmailSubject field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext(v string)

SetKratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationCodeValidSmsBodyPlaintext field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesVerificationInvalidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesVerificationInvalidEmailBodyHtml(v string)

SetKratosCourierTemplatesVerificationInvalidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationInvalidEmailBodyHtml field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesVerificationInvalidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationInvalidEmailBodyPlaintext field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesVerificationInvalidEmailSubject ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesVerificationInvalidEmailSubject(v string)

SetKratosCourierTemplatesVerificationInvalidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationInvalidEmailSubject field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesVerificationValidEmailBodyHtml ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesVerificationValidEmailBodyHtml(v string)

SetKratosCourierTemplatesVerificationValidEmailBodyHtml gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationValidEmailBodyHtml field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesVerificationValidEmailBodyPlaintext ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesVerificationValidEmailBodyPlaintext(v string)

SetKratosCourierTemplatesVerificationValidEmailBodyPlaintext gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationValidEmailBodyPlaintext field.

func (*NormalizedProjectRevision) SetKratosCourierTemplatesVerificationValidEmailSubject ¶

func (o *NormalizedProjectRevision) SetKratosCourierTemplatesVerificationValidEmailSubject(v string)

SetKratosCourierTemplatesVerificationValidEmailSubject gets a reference to the given string and assigns it to the KratosCourierTemplatesVerificationValidEmailSubject field.

func (*NormalizedProjectRevision) SetKratosFeatureFlagsCacheableSessions ¶

func (o *NormalizedProjectRevision) SetKratosFeatureFlagsCacheableSessions(v bool)

SetKratosFeatureFlagsCacheableSessions gets a reference to the given bool and assigns it to the KratosFeatureFlagsCacheableSessions field.

func (*NormalizedProjectRevision) SetKratosFeatureFlagsUseContinueWithTransitions ¶

func (o *NormalizedProjectRevision) SetKratosFeatureFlagsUseContinueWithTransitions(v bool)

SetKratosFeatureFlagsUseContinueWithTransitions gets a reference to the given bool and assigns it to the KratosFeatureFlagsUseContinueWithTransitions field.

func (*NormalizedProjectRevision) SetKratosIdentitySchemas ¶

func (o *NormalizedProjectRevision) SetKratosIdentitySchemas(v []NormalizedProjectRevisionIdentitySchema)

SetKratosIdentitySchemas gets a reference to the given []NormalizedProjectRevisionIdentitySchema and assigns it to the KratosIdentitySchemas field.

func (*NormalizedProjectRevision) SetKratosOauth2ProviderHeaders ¶

func (o *NormalizedProjectRevision) SetKratosOauth2ProviderHeaders(v map[string]interface{})

SetKratosOauth2ProviderHeaders gets a reference to the given map[string]interface{} and assigns it to the KratosOauth2ProviderHeaders field.

func (*NormalizedProjectRevision) SetKratosOauth2ProviderOverrideReturnTo ¶

func (o *NormalizedProjectRevision) SetKratosOauth2ProviderOverrideReturnTo(v bool)

SetKratosOauth2ProviderOverrideReturnTo gets a reference to the given bool and assigns it to the KratosOauth2ProviderOverrideReturnTo field.

func (*NormalizedProjectRevision) SetKratosOauth2ProviderUrl ¶

func (o *NormalizedProjectRevision) SetKratosOauth2ProviderUrl(v string)

SetKratosOauth2ProviderUrl gets a reference to the given string and assigns it to the KratosOauth2ProviderUrl field.

func (*NormalizedProjectRevision) SetKratosPreviewDefaultReadConsistencyLevel ¶

func (o *NormalizedProjectRevision) SetKratosPreviewDefaultReadConsistencyLevel(v string)

SetKratosPreviewDefaultReadConsistencyLevel gets a reference to the given string and assigns it to the KratosPreviewDefaultReadConsistencyLevel field.

func (*NormalizedProjectRevision) SetKratosSecretsCipher ¶

func (o *NormalizedProjectRevision) SetKratosSecretsCipher(v []string)

SetKratosSecretsCipher gets a reference to the given []string and assigns it to the KratosSecretsCipher field.

func (*NormalizedProjectRevision) SetKratosSecretsCookie ¶

func (o *NormalizedProjectRevision) SetKratosSecretsCookie(v []string)

SetKratosSecretsCookie gets a reference to the given []string and assigns it to the KratosSecretsCookie field.

func (*NormalizedProjectRevision) SetKratosSecretsDefault ¶

func (o *NormalizedProjectRevision) SetKratosSecretsDefault(v []string)

SetKratosSecretsDefault gets a reference to the given []string and assigns it to the KratosSecretsDefault field.

func (*NormalizedProjectRevision) SetKratosSelfserviceAllowedReturnUrls ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceAllowedReturnUrls(v []string)

SetKratosSelfserviceAllowedReturnUrls gets a reference to the given []string and assigns it to the KratosSelfserviceAllowedReturnUrls field.

func (*NormalizedProjectRevision) SetKratosSelfserviceDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsErrorUiUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsErrorUiUrl(v string)

SetKratosSelfserviceFlowsErrorUiUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsErrorUiUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginAfterCodeDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginAfterDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginAfterLookupSecretDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginAfterOidcDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginAfterPasswordDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginAfterTotpDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginAfterWebauthnDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginLifespan ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginLifespan(v string)

SetKratosSelfserviceFlowsLoginLifespan gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginLifespan field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginUiUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsLoginUiUrl(v string)

SetKratosSelfserviceFlowsLoginUiUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLoginUiUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsLogoutAfterDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRecoveryAfterDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRecoveryEnabled ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRecoveryEnabled(v bool)

SetKratosSelfserviceFlowsRecoveryEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceFlowsRecoveryEnabled field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRecoveryLifespan ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRecoveryLifespan(v string)

SetKratosSelfserviceFlowsRecoveryLifespan gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRecoveryLifespan field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients(v bool)

SetKratosSelfserviceFlowsRecoveryNotifyUnknownRecipients gets a reference to the given bool and assigns it to the KratosSelfserviceFlowsRecoveryNotifyUnknownRecipients field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRecoveryUiUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRecoveryUiUrl(v string)

SetKratosSelfserviceFlowsRecoveryUiUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRecoveryUiUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRecoveryUse ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRecoveryUse(v string)

SetKratosSelfserviceFlowsRecoveryUse gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRecoveryUse field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRegistrationAfterCodeDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRegistrationAfterDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRegistrationAfterOidcDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRegistrationAfterPasswordDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRegistrationAfterWebauthnDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationEnabled ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationEnabled(v bool)

SetKratosSelfserviceFlowsRegistrationEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceFlowsRegistrationEnabled field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationLifespan ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationLifespan(v string)

SetKratosSelfserviceFlowsRegistrationLifespan gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRegistrationLifespan field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationLoginHints ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationLoginHints(v bool)

SetKratosSelfserviceFlowsRegistrationLoginHints gets a reference to the given bool and assigns it to the KratosSelfserviceFlowsRegistrationLoginHints field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationUiUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsRegistrationUiUrl(v string)

SetKratosSelfserviceFlowsRegistrationUiUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsRegistrationUiUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsAfterDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsAfterLookupSecretDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsAfterOidcDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsAfterPasswordDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsAfterProfileDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsAfterTotpDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsAfterWebauthnDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsLifespan ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsLifespan(v string)

SetKratosSelfserviceFlowsSettingsLifespan gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsLifespan field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge(v string)

SetKratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsPrivilegedSessionMaxAge field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsRequiredAal ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsRequiredAal(v string)

SetKratosSelfserviceFlowsSettingsRequiredAal gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsRequiredAal field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsUiUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsSettingsUiUrl(v string)

SetKratosSelfserviceFlowsSettingsUiUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsSettingsUiUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl(v string)

SetKratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsVerificationAfterDefaultBrowserReturnUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsVerificationEnabled ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsVerificationEnabled(v bool)

SetKratosSelfserviceFlowsVerificationEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceFlowsVerificationEnabled field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsVerificationLifespan ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsVerificationLifespan(v string)

SetKratosSelfserviceFlowsVerificationLifespan gets a reference to the given string and assigns it to the KratosSelfserviceFlowsVerificationLifespan field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsVerificationNotifyUnknownRecipients ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsVerificationNotifyUnknownRecipients(v bool)

SetKratosSelfserviceFlowsVerificationNotifyUnknownRecipients gets a reference to the given bool and assigns it to the KratosSelfserviceFlowsVerificationNotifyUnknownRecipients field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsVerificationUiUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsVerificationUiUrl(v string)

SetKratosSelfserviceFlowsVerificationUiUrl gets a reference to the given string and assigns it to the KratosSelfserviceFlowsVerificationUiUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceFlowsVerificationUse ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceFlowsVerificationUse(v string)

SetKratosSelfserviceFlowsVerificationUse gets a reference to the given string and assigns it to the KratosSelfserviceFlowsVerificationUse field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsCodeConfigLifespan ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsCodeConfigLifespan(v string)

SetKratosSelfserviceMethodsCodeConfigLifespan gets a reference to the given string and assigns it to the KratosSelfserviceMethodsCodeConfigLifespan field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsCodeEnabled ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsCodeEnabled(v bool)

SetKratosSelfserviceMethodsCodeEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsCodeEnabled field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsCodePasswordlessEnabled ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsCodePasswordlessEnabled(v bool)

SetKratosSelfserviceMethodsCodePasswordlessEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsCodePasswordlessEnabled field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsLinkConfigBaseUrl ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsLinkConfigBaseUrl(v string)

SetKratosSelfserviceMethodsLinkConfigBaseUrl gets a reference to the given string and assigns it to the KratosSelfserviceMethodsLinkConfigBaseUrl field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsLinkConfigLifespan ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsLinkConfigLifespan(v string)

SetKratosSelfserviceMethodsLinkConfigLifespan gets a reference to the given string and assigns it to the KratosSelfserviceMethodsLinkConfigLifespan field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsLinkEnabled ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsLinkEnabled(v bool)

SetKratosSelfserviceMethodsLinkEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsLinkEnabled field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsLookupSecretEnabled ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsLookupSecretEnabled(v bool)

SetKratosSelfserviceMethodsLookupSecretEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsLookupSecretEnabled field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsOidcConfigBaseRedirectUri ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsOidcConfigBaseRedirectUri(v string)

SetKratosSelfserviceMethodsOidcConfigBaseRedirectUri gets a reference to the given string and assigns it to the KratosSelfserviceMethodsOidcConfigBaseRedirectUri field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsOidcConfigProviders ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsOidcConfigProviders(v []NormalizedProjectRevisionThirdPartyProvider)

SetKratosSelfserviceMethodsOidcConfigProviders gets a reference to the given []NormalizedProjectRevisionThirdPartyProvider and assigns it to the KratosSelfserviceMethodsOidcConfigProviders field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsOidcEnabled ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsOidcEnabled(v bool)

SetKratosSelfserviceMethodsOidcEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsOidcEnabled field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled(v bool)

SetKratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsPasswordConfigHaveibeenpwnedEnabled field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled(v bool)

SetKratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsPasswordConfigIdentifierSimilarityCheckEnabled field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors(v bool)

SetKratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsPasswordConfigIgnoreNetworkErrors field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsPasswordConfigMaxBreaches ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsPasswordConfigMaxBreaches(v int64)

SetKratosSelfserviceMethodsPasswordConfigMaxBreaches gets a reference to the given int64 and assigns it to the KratosSelfserviceMethodsPasswordConfigMaxBreaches field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsPasswordConfigMinPasswordLength ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsPasswordConfigMinPasswordLength(v int64)

SetKratosSelfserviceMethodsPasswordConfigMinPasswordLength gets a reference to the given int64 and assigns it to the KratosSelfserviceMethodsPasswordConfigMinPasswordLength field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsPasswordEnabled ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsPasswordEnabled(v bool)

SetKratosSelfserviceMethodsPasswordEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsPasswordEnabled field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsProfileEnabled ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsProfileEnabled(v bool)

SetKratosSelfserviceMethodsProfileEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsProfileEnabled field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsTotpConfigIssuer ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsTotpConfigIssuer(v string)

SetKratosSelfserviceMethodsTotpConfigIssuer gets a reference to the given string and assigns it to the KratosSelfserviceMethodsTotpConfigIssuer field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsTotpEnabled ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsTotpEnabled(v bool)

SetKratosSelfserviceMethodsTotpEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsTotpEnabled field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsWebauthnConfigPasswordless ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsWebauthnConfigPasswordless(v bool)

SetKratosSelfserviceMethodsWebauthnConfigPasswordless gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsWebauthnConfigPasswordless field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsWebauthnConfigRpDisplayName ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsWebauthnConfigRpDisplayName(v string)

SetKratosSelfserviceMethodsWebauthnConfigRpDisplayName gets a reference to the given string and assigns it to the KratosSelfserviceMethodsWebauthnConfigRpDisplayName field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsWebauthnConfigRpIcon ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsWebauthnConfigRpIcon(v string)

SetKratosSelfserviceMethodsWebauthnConfigRpIcon gets a reference to the given string and assigns it to the KratosSelfserviceMethodsWebauthnConfigRpIcon field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsWebauthnConfigRpId ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsWebauthnConfigRpId(v string)

SetKratosSelfserviceMethodsWebauthnConfigRpId gets a reference to the given string and assigns it to the KratosSelfserviceMethodsWebauthnConfigRpId field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsWebauthnConfigRpOrigins ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsWebauthnConfigRpOrigins(v []string)

SetKratosSelfserviceMethodsWebauthnConfigRpOrigins gets a reference to the given []string and assigns it to the KratosSelfserviceMethodsWebauthnConfigRpOrigins field.

func (*NormalizedProjectRevision) SetKratosSelfserviceMethodsWebauthnEnabled ¶

func (o *NormalizedProjectRevision) SetKratosSelfserviceMethodsWebauthnEnabled(v bool)

SetKratosSelfserviceMethodsWebauthnEnabled gets a reference to the given bool and assigns it to the KratosSelfserviceMethodsWebauthnEnabled field.

func (*NormalizedProjectRevision) SetKratosSessionCookiePersistent ¶

func (o *NormalizedProjectRevision) SetKratosSessionCookiePersistent(v bool)

SetKratosSessionCookiePersistent gets a reference to the given bool and assigns it to the KratosSessionCookiePersistent field.

func (*NormalizedProjectRevision) SetKratosSessionCookieSameSite ¶

func (o *NormalizedProjectRevision) SetKratosSessionCookieSameSite(v string)

SetKratosSessionCookieSameSite gets a reference to the given string and assigns it to the KratosSessionCookieSameSite field.

func (*NormalizedProjectRevision) SetKratosSessionLifespan ¶

func (o *NormalizedProjectRevision) SetKratosSessionLifespan(v string)

SetKratosSessionLifespan gets a reference to the given string and assigns it to the KratosSessionLifespan field.

func (*NormalizedProjectRevision) SetKratosSessionWhoamiRequiredAal ¶

func (o *NormalizedProjectRevision) SetKratosSessionWhoamiRequiredAal(v string)

SetKratosSessionWhoamiRequiredAal gets a reference to the given string and assigns it to the KratosSessionWhoamiRequiredAal field.

func (*NormalizedProjectRevision) SetKratosSessionWhoamiTokenizerTemplates ¶

func (o *NormalizedProjectRevision) SetKratosSessionWhoamiTokenizerTemplates(v []NormalizedProjectRevisionTokenizerTemplate)

SetKratosSessionWhoamiTokenizerTemplates gets a reference to the given []NormalizedProjectRevisionTokenizerTemplate and assigns it to the KratosSessionWhoamiTokenizerTemplates field.

func (*NormalizedProjectRevision) SetName ¶

func (o *NormalizedProjectRevision) SetName(v string)

SetName sets field value

func (*NormalizedProjectRevision) SetProjectId ¶

func (o *NormalizedProjectRevision) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*NormalizedProjectRevision) SetProjectRevisionHooks ¶

func (o *NormalizedProjectRevision) SetProjectRevisionHooks(v []NormalizedProjectRevisionHook)

SetProjectRevisionHooks gets a reference to the given []NormalizedProjectRevisionHook and assigns it to the ProjectRevisionHooks field.

func (*NormalizedProjectRevision) SetServeAdminCorsAllowedOrigins ¶

func (o *NormalizedProjectRevision) SetServeAdminCorsAllowedOrigins(v []string)

SetServeAdminCorsAllowedOrigins gets a reference to the given []string and assigns it to the ServeAdminCorsAllowedOrigins field.

func (*NormalizedProjectRevision) SetServeAdminCorsEnabled ¶

func (o *NormalizedProjectRevision) SetServeAdminCorsEnabled(v bool)

SetServeAdminCorsEnabled gets a reference to the given bool and assigns it to the ServeAdminCorsEnabled field.

func (*NormalizedProjectRevision) SetServePublicCorsAllowedOrigins ¶

func (o *NormalizedProjectRevision) SetServePublicCorsAllowedOrigins(v []string)

SetServePublicCorsAllowedOrigins gets a reference to the given []string and assigns it to the ServePublicCorsAllowedOrigins field.

func (*NormalizedProjectRevision) SetServePublicCorsEnabled ¶

func (o *NormalizedProjectRevision) SetServePublicCorsEnabled(v bool)

SetServePublicCorsEnabled gets a reference to the given bool and assigns it to the ServePublicCorsEnabled field.

func (*NormalizedProjectRevision) SetStrictSecurity ¶

func (o *NormalizedProjectRevision) SetStrictSecurity(v bool)

SetStrictSecurity gets a reference to the given bool and assigns it to the StrictSecurity field.

func (*NormalizedProjectRevision) SetUpdatedAt ¶

func (o *NormalizedProjectRevision) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (NormalizedProjectRevision) ToMap ¶

func (o NormalizedProjectRevision) ToMap() (map[string]interface{}, error)

func (*NormalizedProjectRevision) UnmarshalJSON ¶

func (o *NormalizedProjectRevision) UnmarshalJSON(bytes []byte) (err error)

type NormalizedProjectRevisionCourierChannel ¶

type NormalizedProjectRevisionCourierChannel struct {
	// The Channel's public ID
	ChannelId string `json:"channel_id"`
	// The creation date
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// API key location  Can either be \"header\" or \"query\"
	RequestConfigAuthConfigApiKeyIn *string `json:"request_config_auth_config_api_key_in,omitempty"`
	// API key name  Only used if the auth type is api_key
	RequestConfigAuthConfigApiKeyName *string `json:"request_config_auth_config_api_key_name,omitempty"`
	// API key value  Only used if the auth type is api_key
	RequestConfigAuthConfigApiKeyValue *string `json:"request_config_auth_config_api_key_value,omitempty"`
	// Basic Auth Password  Only used if the auth type is basic_auth
	RequestConfigAuthConfigBasicAuthPassword *string `json:"request_config_auth_config_basic_auth_password,omitempty"`
	// Basic Auth Username  Only used if the auth type is basic_auth
	RequestConfigAuthConfigBasicAuthUser *string `json:"request_config_auth_config_basic_auth_user,omitempty"`
	// HTTP Auth Method to use for the HTTP call  Can either be basic_auth or api_key basic_auth CourierChannelAuthTypeBasicAuth api_key CourierChannelAuthTypeApiKey
	RequestConfigAuthType *string `json:"request_config_auth_type,omitempty"`
	// URI pointing to the JsonNet template used for HTTP body payload generation.
	RequestConfigBody string `json:"request_config_body"`
	// NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable-
	RequestConfigHeaders map[string]interface{} `json:"request_config_headers,omitempty"`
	// The HTTP method to use (GET, POST, etc) for the HTTP call
	RequestConfigMethod string  `json:"request_config_method"`
	RequestConfigUrl    *string `json:"request_config_url,omitempty"`
	// Last upate time
	UpdatedAt            *time.Time `json:"updated_at,omitempty"`
	AdditionalProperties map[string]interface{}
}

NormalizedProjectRevisionCourierChannel struct for NormalizedProjectRevisionCourierChannel

func NewNormalizedProjectRevisionCourierChannel ¶

func NewNormalizedProjectRevisionCourierChannel(channelId string, requestConfigBody string, requestConfigMethod string) *NormalizedProjectRevisionCourierChannel

NewNormalizedProjectRevisionCourierChannel instantiates a new NormalizedProjectRevisionCourierChannel 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 NewNormalizedProjectRevisionCourierChannelWithDefaults ¶

func NewNormalizedProjectRevisionCourierChannelWithDefaults() *NormalizedProjectRevisionCourierChannel

NewNormalizedProjectRevisionCourierChannelWithDefaults instantiates a new NormalizedProjectRevisionCourierChannel 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 (*NormalizedProjectRevisionCourierChannel) GetChannelId ¶

GetChannelId returns the ChannelId field value

func (*NormalizedProjectRevisionCourierChannel) GetChannelIdOk ¶

func (o *NormalizedProjectRevisionCourierChannel) GetChannelIdOk() (*string, bool)

GetChannelIdOk returns a tuple with the ChannelId field value and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionCourierChannel) GetCreatedAt ¶

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*NormalizedProjectRevisionCourierChannel) GetCreatedAtOk ¶

func (o *NormalizedProjectRevisionCourierChannel) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigApiKeyIn ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigApiKeyIn() string

GetRequestConfigAuthConfigApiKeyIn returns the RequestConfigAuthConfigApiKeyIn field value if set, zero value otherwise.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigApiKeyInOk ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigApiKeyInOk() (*string, bool)

GetRequestConfigAuthConfigApiKeyInOk returns a tuple with the RequestConfigAuthConfigApiKeyIn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigApiKeyName ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigApiKeyName() string

GetRequestConfigAuthConfigApiKeyName returns the RequestConfigAuthConfigApiKeyName field value if set, zero value otherwise.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigApiKeyNameOk ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigApiKeyNameOk() (*string, bool)

GetRequestConfigAuthConfigApiKeyNameOk returns a tuple with the RequestConfigAuthConfigApiKeyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigApiKeyValue ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigApiKeyValue() string

GetRequestConfigAuthConfigApiKeyValue returns the RequestConfigAuthConfigApiKeyValue field value if set, zero value otherwise.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigApiKeyValueOk ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigApiKeyValueOk() (*string, bool)

GetRequestConfigAuthConfigApiKeyValueOk returns a tuple with the RequestConfigAuthConfigApiKeyValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigBasicAuthPassword ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigBasicAuthPassword() string

GetRequestConfigAuthConfigBasicAuthPassword returns the RequestConfigAuthConfigBasicAuthPassword field value if set, zero value otherwise.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigBasicAuthPasswordOk ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigBasicAuthPasswordOk() (*string, bool)

GetRequestConfigAuthConfigBasicAuthPasswordOk returns a tuple with the RequestConfigAuthConfigBasicAuthPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigBasicAuthUser ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigBasicAuthUser() string

GetRequestConfigAuthConfigBasicAuthUser returns the RequestConfigAuthConfigBasicAuthUser field value if set, zero value otherwise.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigBasicAuthUserOk ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthConfigBasicAuthUserOk() (*string, bool)

GetRequestConfigAuthConfigBasicAuthUserOk returns a tuple with the RequestConfigAuthConfigBasicAuthUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthType ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthType() string

GetRequestConfigAuthType returns the RequestConfigAuthType field value if set, zero value otherwise.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthTypeOk ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigAuthTypeOk() (*string, bool)

GetRequestConfigAuthTypeOk returns a tuple with the RequestConfigAuthType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigBody ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigBody() string

GetRequestConfigBody returns the RequestConfigBody field value

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigBodyOk ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigBodyOk() (*string, bool)

GetRequestConfigBodyOk returns a tuple with the RequestConfigBody field value and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigHeaders ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigHeaders() map[string]interface{}

GetRequestConfigHeaders returns the RequestConfigHeaders field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigHeadersOk ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigHeadersOk() (map[string]interface{}, bool)

GetRequestConfigHeadersOk returns a tuple with the RequestConfigHeaders field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigMethod ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigMethod() string

GetRequestConfigMethod returns the RequestConfigMethod field value

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigMethodOk ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigMethodOk() (*string, bool)

GetRequestConfigMethodOk returns a tuple with the RequestConfigMethod field value and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigUrl ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigUrl() string

GetRequestConfigUrl returns the RequestConfigUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevisionCourierChannel) GetRequestConfigUrlOk ¶

func (o *NormalizedProjectRevisionCourierChannel) GetRequestConfigUrlOk() (*string, bool)

GetRequestConfigUrlOk returns a tuple with the RequestConfigUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionCourierChannel) GetUpdatedAt ¶

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*NormalizedProjectRevisionCourierChannel) GetUpdatedAtOk ¶

func (o *NormalizedProjectRevisionCourierChannel) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionCourierChannel) HasCreatedAt ¶

HasCreatedAt returns a boolean if a field has been set.

func (*NormalizedProjectRevisionCourierChannel) HasRequestConfigAuthConfigApiKeyIn ¶

func (o *NormalizedProjectRevisionCourierChannel) HasRequestConfigAuthConfigApiKeyIn() bool

HasRequestConfigAuthConfigApiKeyIn returns a boolean if a field has been set.

func (*NormalizedProjectRevisionCourierChannel) HasRequestConfigAuthConfigApiKeyName ¶

func (o *NormalizedProjectRevisionCourierChannel) HasRequestConfigAuthConfigApiKeyName() bool

HasRequestConfigAuthConfigApiKeyName returns a boolean if a field has been set.

func (*NormalizedProjectRevisionCourierChannel) HasRequestConfigAuthConfigApiKeyValue ¶

func (o *NormalizedProjectRevisionCourierChannel) HasRequestConfigAuthConfigApiKeyValue() bool

HasRequestConfigAuthConfigApiKeyValue returns a boolean if a field has been set.

func (*NormalizedProjectRevisionCourierChannel) HasRequestConfigAuthConfigBasicAuthPassword ¶

func (o *NormalizedProjectRevisionCourierChannel) HasRequestConfigAuthConfigBasicAuthPassword() bool

HasRequestConfigAuthConfigBasicAuthPassword returns a boolean if a field has been set.

func (*NormalizedProjectRevisionCourierChannel) HasRequestConfigAuthConfigBasicAuthUser ¶

func (o *NormalizedProjectRevisionCourierChannel) HasRequestConfigAuthConfigBasicAuthUser() bool

HasRequestConfigAuthConfigBasicAuthUser returns a boolean if a field has been set.

func (*NormalizedProjectRevisionCourierChannel) HasRequestConfigAuthType ¶

func (o *NormalizedProjectRevisionCourierChannel) HasRequestConfigAuthType() bool

HasRequestConfigAuthType returns a boolean if a field has been set.

func (*NormalizedProjectRevisionCourierChannel) HasRequestConfigHeaders ¶

func (o *NormalizedProjectRevisionCourierChannel) HasRequestConfigHeaders() bool

HasRequestConfigHeaders returns a boolean if a field has been set.

func (*NormalizedProjectRevisionCourierChannel) HasRequestConfigUrl ¶

func (o *NormalizedProjectRevisionCourierChannel) HasRequestConfigUrl() bool

HasRequestConfigUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevisionCourierChannel) HasUpdatedAt ¶

HasUpdatedAt returns a boolean if a field has been set.

func (NormalizedProjectRevisionCourierChannel) MarshalJSON ¶

func (o NormalizedProjectRevisionCourierChannel) MarshalJSON() ([]byte, error)

func (*NormalizedProjectRevisionCourierChannel) SetChannelId ¶

SetChannelId sets field value

func (*NormalizedProjectRevisionCourierChannel) SetCreatedAt ¶

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*NormalizedProjectRevisionCourierChannel) SetRequestConfigAuthConfigApiKeyIn ¶

func (o *NormalizedProjectRevisionCourierChannel) SetRequestConfigAuthConfigApiKeyIn(v string)

SetRequestConfigAuthConfigApiKeyIn gets a reference to the given string and assigns it to the RequestConfigAuthConfigApiKeyIn field.

func (*NormalizedProjectRevisionCourierChannel) SetRequestConfigAuthConfigApiKeyName ¶

func (o *NormalizedProjectRevisionCourierChannel) SetRequestConfigAuthConfigApiKeyName(v string)

SetRequestConfigAuthConfigApiKeyName gets a reference to the given string and assigns it to the RequestConfigAuthConfigApiKeyName field.

func (*NormalizedProjectRevisionCourierChannel) SetRequestConfigAuthConfigApiKeyValue ¶

func (o *NormalizedProjectRevisionCourierChannel) SetRequestConfigAuthConfigApiKeyValue(v string)

SetRequestConfigAuthConfigApiKeyValue gets a reference to the given string and assigns it to the RequestConfigAuthConfigApiKeyValue field.

func (*NormalizedProjectRevisionCourierChannel) SetRequestConfigAuthConfigBasicAuthPassword ¶

func (o *NormalizedProjectRevisionCourierChannel) SetRequestConfigAuthConfigBasicAuthPassword(v string)

SetRequestConfigAuthConfigBasicAuthPassword gets a reference to the given string and assigns it to the RequestConfigAuthConfigBasicAuthPassword field.

func (*NormalizedProjectRevisionCourierChannel) SetRequestConfigAuthConfigBasicAuthUser ¶

func (o *NormalizedProjectRevisionCourierChannel) SetRequestConfigAuthConfigBasicAuthUser(v string)

SetRequestConfigAuthConfigBasicAuthUser gets a reference to the given string and assigns it to the RequestConfigAuthConfigBasicAuthUser field.

func (*NormalizedProjectRevisionCourierChannel) SetRequestConfigAuthType ¶

func (o *NormalizedProjectRevisionCourierChannel) SetRequestConfigAuthType(v string)

SetRequestConfigAuthType gets a reference to the given string and assigns it to the RequestConfigAuthType field.

func (*NormalizedProjectRevisionCourierChannel) SetRequestConfigBody ¶

func (o *NormalizedProjectRevisionCourierChannel) SetRequestConfigBody(v string)

SetRequestConfigBody sets field value

func (*NormalizedProjectRevisionCourierChannel) SetRequestConfigHeaders ¶

func (o *NormalizedProjectRevisionCourierChannel) SetRequestConfigHeaders(v map[string]interface{})

SetRequestConfigHeaders gets a reference to the given map[string]interface{} and assigns it to the RequestConfigHeaders field.

func (*NormalizedProjectRevisionCourierChannel) SetRequestConfigMethod ¶

func (o *NormalizedProjectRevisionCourierChannel) SetRequestConfigMethod(v string)

SetRequestConfigMethod sets field value

func (*NormalizedProjectRevisionCourierChannel) SetRequestConfigUrl ¶

func (o *NormalizedProjectRevisionCourierChannel) SetRequestConfigUrl(v string)

SetRequestConfigUrl gets a reference to the given string and assigns it to the RequestConfigUrl field.

func (*NormalizedProjectRevisionCourierChannel) SetUpdatedAt ¶

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (NormalizedProjectRevisionCourierChannel) ToMap ¶

func (o NormalizedProjectRevisionCourierChannel) ToMap() (map[string]interface{}, error)

func (*NormalizedProjectRevisionCourierChannel) UnmarshalJSON ¶

func (o *NormalizedProjectRevisionCourierChannel) UnmarshalJSON(bytes []byte) (err error)

type NormalizedProjectRevisionHook ¶

type NormalizedProjectRevisionHook struct {
	// The Hooks Config Key
	ConfigKey string `json:"config_key"`
	// The Project's Revision Creation Date
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// The Hook Type
	Hook string `json:"hook"`
	// ID of the entry
	Id *string `json:"id,omitempty"`
	// The Revision's ID this schema belongs to
	ProjectRevisionId *string `json:"project_revision_id,omitempty"`
	// Last Time Project's Revision was Updated
	UpdatedAt *time.Time `json:"updated_at,omitempty"`
	// Whether to send the API Key in the HTTP Header or as a HTTP Cookie
	WebHookConfigAuthApiKeyIn *string `json:"web_hook_config_auth_api_key_in,omitempty"`
	// The name of the api key
	WebHookConfigAuthApiKeyName *string `json:"web_hook_config_auth_api_key_name,omitempty"`
	// The value of the api key
	WebHookConfigAuthApiKeyValue *string `json:"web_hook_config_auth_api_key_value,omitempty"`
	// The password to be sent in the HTTP Basic Auth Header
	WebHookConfigAuthBasicAuthPassword *string `json:"web_hook_config_auth_basic_auth_password,omitempty"`
	// The username to be sent in the HTTP Basic Auth Header
	WebHookConfigAuthBasicAuthUser *string `json:"web_hook_config_auth_basic_auth_user,omitempty"`
	// HTTP Auth Method to use for the Web-Hook
	WebHookConfigAuthType *string `json:"web_hook_config_auth_type,omitempty"`
	// URI pointing to the JsonNet template used for Web-Hook payload generation. Only used for those HTTP methods, which support HTTP body payloads.
	WebHookConfigBody *string `json:"web_hook_config_body,omitempty"`
	// If enabled allows the web hook to interrupt / abort the self-service flow. It only applies to certain flows (registration/verification/login/settings) and requires a valid response format.
	WebHookConfigCanInterrupt *bool `json:"web_hook_config_can_interrupt,omitempty"`
	// The HTTP method to use (GET, POST, etc) for the Web-Hook
	WebHookConfigMethod *string `json:"web_hook_config_method,omitempty"`
	// Whether to ignore the Web Hook response
	WebHookConfigResponseIgnore *bool `json:"web_hook_config_response_ignore,omitempty"`
	// Whether to parse the Web Hook response
	WebHookConfigResponseParse *bool `json:"web_hook_config_response_parse,omitempty"`
	// The URL the Web-Hook should call
	WebHookConfigUrl     *string `json:"web_hook_config_url,omitempty"`
	AdditionalProperties map[string]interface{}
}

NormalizedProjectRevisionHook struct for NormalizedProjectRevisionHook

func NewNormalizedProjectRevisionHook ¶

func NewNormalizedProjectRevisionHook(configKey string, hook string) *NormalizedProjectRevisionHook

NewNormalizedProjectRevisionHook instantiates a new NormalizedProjectRevisionHook 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 NewNormalizedProjectRevisionHookWithDefaults ¶

func NewNormalizedProjectRevisionHookWithDefaults() *NormalizedProjectRevisionHook

NewNormalizedProjectRevisionHookWithDefaults instantiates a new NormalizedProjectRevisionHook 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 (*NormalizedProjectRevisionHook) GetConfigKey ¶

func (o *NormalizedProjectRevisionHook) GetConfigKey() string

GetConfigKey returns the ConfigKey field value

func (*NormalizedProjectRevisionHook) GetConfigKeyOk ¶

func (o *NormalizedProjectRevisionHook) GetConfigKeyOk() (*string, bool)

GetConfigKeyOk returns a tuple with the ConfigKey field value and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetCreatedAt ¶

func (o *NormalizedProjectRevisionHook) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetCreatedAtOk ¶

func (o *NormalizedProjectRevisionHook) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetHook ¶

GetHook returns the Hook field value

func (*NormalizedProjectRevisionHook) GetHookOk ¶

func (o *NormalizedProjectRevisionHook) GetHookOk() (*string, bool)

GetHookOk returns a tuple with the Hook field value and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetProjectRevisionId ¶

func (o *NormalizedProjectRevisionHook) GetProjectRevisionId() string

GetProjectRevisionId returns the ProjectRevisionId field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetProjectRevisionIdOk ¶

func (o *NormalizedProjectRevisionHook) GetProjectRevisionIdOk() (*string, bool)

GetProjectRevisionIdOk returns a tuple with the ProjectRevisionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetUpdatedAt ¶

func (o *NormalizedProjectRevisionHook) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetUpdatedAtOk ¶

func (o *NormalizedProjectRevisionHook) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetWebHookConfigAuthApiKeyIn ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigAuthApiKeyIn() string

GetWebHookConfigAuthApiKeyIn returns the WebHookConfigAuthApiKeyIn field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetWebHookConfigAuthApiKeyInOk ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigAuthApiKeyInOk() (*string, bool)

GetWebHookConfigAuthApiKeyInOk returns a tuple with the WebHookConfigAuthApiKeyIn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetWebHookConfigAuthApiKeyName ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigAuthApiKeyName() string

GetWebHookConfigAuthApiKeyName returns the WebHookConfigAuthApiKeyName field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetWebHookConfigAuthApiKeyNameOk ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigAuthApiKeyNameOk() (*string, bool)

GetWebHookConfigAuthApiKeyNameOk returns a tuple with the WebHookConfigAuthApiKeyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetWebHookConfigAuthApiKeyValue ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigAuthApiKeyValue() string

GetWebHookConfigAuthApiKeyValue returns the WebHookConfigAuthApiKeyValue field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetWebHookConfigAuthApiKeyValueOk ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigAuthApiKeyValueOk() (*string, bool)

GetWebHookConfigAuthApiKeyValueOk returns a tuple with the WebHookConfigAuthApiKeyValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetWebHookConfigAuthBasicAuthPassword ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigAuthBasicAuthPassword() string

GetWebHookConfigAuthBasicAuthPassword returns the WebHookConfigAuthBasicAuthPassword field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetWebHookConfigAuthBasicAuthPasswordOk ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigAuthBasicAuthPasswordOk() (*string, bool)

GetWebHookConfigAuthBasicAuthPasswordOk returns a tuple with the WebHookConfigAuthBasicAuthPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetWebHookConfigAuthBasicAuthUser ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigAuthBasicAuthUser() string

GetWebHookConfigAuthBasicAuthUser returns the WebHookConfigAuthBasicAuthUser field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetWebHookConfigAuthBasicAuthUserOk ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigAuthBasicAuthUserOk() (*string, bool)

GetWebHookConfigAuthBasicAuthUserOk returns a tuple with the WebHookConfigAuthBasicAuthUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetWebHookConfigAuthType ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigAuthType() string

GetWebHookConfigAuthType returns the WebHookConfigAuthType field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetWebHookConfigAuthTypeOk ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigAuthTypeOk() (*string, bool)

GetWebHookConfigAuthTypeOk returns a tuple with the WebHookConfigAuthType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetWebHookConfigBody ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigBody() string

GetWebHookConfigBody returns the WebHookConfigBody field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetWebHookConfigBodyOk ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigBodyOk() (*string, bool)

GetWebHookConfigBodyOk returns a tuple with the WebHookConfigBody field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetWebHookConfigCanInterrupt ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigCanInterrupt() bool

GetWebHookConfigCanInterrupt returns the WebHookConfigCanInterrupt field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetWebHookConfigCanInterruptOk ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigCanInterruptOk() (*bool, bool)

GetWebHookConfigCanInterruptOk returns a tuple with the WebHookConfigCanInterrupt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetWebHookConfigMethod ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigMethod() string

GetWebHookConfigMethod returns the WebHookConfigMethod field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetWebHookConfigMethodOk ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigMethodOk() (*string, bool)

GetWebHookConfigMethodOk returns a tuple with the WebHookConfigMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetWebHookConfigResponseIgnore ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigResponseIgnore() bool

GetWebHookConfigResponseIgnore returns the WebHookConfigResponseIgnore field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetWebHookConfigResponseIgnoreOk ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigResponseIgnoreOk() (*bool, bool)

GetWebHookConfigResponseIgnoreOk returns a tuple with the WebHookConfigResponseIgnore field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetWebHookConfigResponseParse ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigResponseParse() bool

GetWebHookConfigResponseParse returns the WebHookConfigResponseParse field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetWebHookConfigResponseParseOk ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigResponseParseOk() (*bool, bool)

GetWebHookConfigResponseParseOk returns a tuple with the WebHookConfigResponseParse field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) GetWebHookConfigUrl ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigUrl() string

GetWebHookConfigUrl returns the WebHookConfigUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevisionHook) GetWebHookConfigUrlOk ¶

func (o *NormalizedProjectRevisionHook) GetWebHookConfigUrlOk() (*string, bool)

GetWebHookConfigUrlOk returns a tuple with the WebHookConfigUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionHook) HasCreatedAt ¶

func (o *NormalizedProjectRevisionHook) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasId ¶

HasId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasProjectRevisionId ¶

func (o *NormalizedProjectRevisionHook) HasProjectRevisionId() bool

HasProjectRevisionId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasUpdatedAt ¶

func (o *NormalizedProjectRevisionHook) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasWebHookConfigAuthApiKeyIn ¶

func (o *NormalizedProjectRevisionHook) HasWebHookConfigAuthApiKeyIn() bool

HasWebHookConfigAuthApiKeyIn returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasWebHookConfigAuthApiKeyName ¶

func (o *NormalizedProjectRevisionHook) HasWebHookConfigAuthApiKeyName() bool

HasWebHookConfigAuthApiKeyName returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasWebHookConfigAuthApiKeyValue ¶

func (o *NormalizedProjectRevisionHook) HasWebHookConfigAuthApiKeyValue() bool

HasWebHookConfigAuthApiKeyValue returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasWebHookConfigAuthBasicAuthPassword ¶

func (o *NormalizedProjectRevisionHook) HasWebHookConfigAuthBasicAuthPassword() bool

HasWebHookConfigAuthBasicAuthPassword returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasWebHookConfigAuthBasicAuthUser ¶

func (o *NormalizedProjectRevisionHook) HasWebHookConfigAuthBasicAuthUser() bool

HasWebHookConfigAuthBasicAuthUser returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasWebHookConfigAuthType ¶

func (o *NormalizedProjectRevisionHook) HasWebHookConfigAuthType() bool

HasWebHookConfigAuthType returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasWebHookConfigBody ¶

func (o *NormalizedProjectRevisionHook) HasWebHookConfigBody() bool

HasWebHookConfigBody returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasWebHookConfigCanInterrupt ¶

func (o *NormalizedProjectRevisionHook) HasWebHookConfigCanInterrupt() bool

HasWebHookConfigCanInterrupt returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasWebHookConfigMethod ¶

func (o *NormalizedProjectRevisionHook) HasWebHookConfigMethod() bool

HasWebHookConfigMethod returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasWebHookConfigResponseIgnore ¶

func (o *NormalizedProjectRevisionHook) HasWebHookConfigResponseIgnore() bool

HasWebHookConfigResponseIgnore returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasWebHookConfigResponseParse ¶

func (o *NormalizedProjectRevisionHook) HasWebHookConfigResponseParse() bool

HasWebHookConfigResponseParse returns a boolean if a field has been set.

func (*NormalizedProjectRevisionHook) HasWebHookConfigUrl ¶

func (o *NormalizedProjectRevisionHook) HasWebHookConfigUrl() bool

HasWebHookConfigUrl returns a boolean if a field has been set.

func (NormalizedProjectRevisionHook) MarshalJSON ¶

func (o NormalizedProjectRevisionHook) MarshalJSON() ([]byte, error)

func (*NormalizedProjectRevisionHook) SetConfigKey ¶

func (o *NormalizedProjectRevisionHook) SetConfigKey(v string)

SetConfigKey sets field value

func (*NormalizedProjectRevisionHook) SetCreatedAt ¶

func (o *NormalizedProjectRevisionHook) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*NormalizedProjectRevisionHook) SetHook ¶

func (o *NormalizedProjectRevisionHook) SetHook(v string)

SetHook sets field value

func (*NormalizedProjectRevisionHook) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*NormalizedProjectRevisionHook) SetProjectRevisionId ¶

func (o *NormalizedProjectRevisionHook) SetProjectRevisionId(v string)

SetProjectRevisionId gets a reference to the given string and assigns it to the ProjectRevisionId field.

func (*NormalizedProjectRevisionHook) SetUpdatedAt ¶

func (o *NormalizedProjectRevisionHook) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*NormalizedProjectRevisionHook) SetWebHookConfigAuthApiKeyIn ¶

func (o *NormalizedProjectRevisionHook) SetWebHookConfigAuthApiKeyIn(v string)

SetWebHookConfigAuthApiKeyIn gets a reference to the given string and assigns it to the WebHookConfigAuthApiKeyIn field.

func (*NormalizedProjectRevisionHook) SetWebHookConfigAuthApiKeyName ¶

func (o *NormalizedProjectRevisionHook) SetWebHookConfigAuthApiKeyName(v string)

SetWebHookConfigAuthApiKeyName gets a reference to the given string and assigns it to the WebHookConfigAuthApiKeyName field.

func (*NormalizedProjectRevisionHook) SetWebHookConfigAuthApiKeyValue ¶

func (o *NormalizedProjectRevisionHook) SetWebHookConfigAuthApiKeyValue(v string)

SetWebHookConfigAuthApiKeyValue gets a reference to the given string and assigns it to the WebHookConfigAuthApiKeyValue field.

func (*NormalizedProjectRevisionHook) SetWebHookConfigAuthBasicAuthPassword ¶

func (o *NormalizedProjectRevisionHook) SetWebHookConfigAuthBasicAuthPassword(v string)

SetWebHookConfigAuthBasicAuthPassword gets a reference to the given string and assigns it to the WebHookConfigAuthBasicAuthPassword field.

func (*NormalizedProjectRevisionHook) SetWebHookConfigAuthBasicAuthUser ¶

func (o *NormalizedProjectRevisionHook) SetWebHookConfigAuthBasicAuthUser(v string)

SetWebHookConfigAuthBasicAuthUser gets a reference to the given string and assigns it to the WebHookConfigAuthBasicAuthUser field.

func (*NormalizedProjectRevisionHook) SetWebHookConfigAuthType ¶

func (o *NormalizedProjectRevisionHook) SetWebHookConfigAuthType(v string)

SetWebHookConfigAuthType gets a reference to the given string and assigns it to the WebHookConfigAuthType field.

func (*NormalizedProjectRevisionHook) SetWebHookConfigBody ¶

func (o *NormalizedProjectRevisionHook) SetWebHookConfigBody(v string)

SetWebHookConfigBody gets a reference to the given string and assigns it to the WebHookConfigBody field.

func (*NormalizedProjectRevisionHook) SetWebHookConfigCanInterrupt ¶

func (o *NormalizedProjectRevisionHook) SetWebHookConfigCanInterrupt(v bool)

SetWebHookConfigCanInterrupt gets a reference to the given bool and assigns it to the WebHookConfigCanInterrupt field.

func (*NormalizedProjectRevisionHook) SetWebHookConfigMethod ¶

func (o *NormalizedProjectRevisionHook) SetWebHookConfigMethod(v string)

SetWebHookConfigMethod gets a reference to the given string and assigns it to the WebHookConfigMethod field.

func (*NormalizedProjectRevisionHook) SetWebHookConfigResponseIgnore ¶

func (o *NormalizedProjectRevisionHook) SetWebHookConfigResponseIgnore(v bool)

SetWebHookConfigResponseIgnore gets a reference to the given bool and assigns it to the WebHookConfigResponseIgnore field.

func (*NormalizedProjectRevisionHook) SetWebHookConfigResponseParse ¶

func (o *NormalizedProjectRevisionHook) SetWebHookConfigResponseParse(v bool)

SetWebHookConfigResponseParse gets a reference to the given bool and assigns it to the WebHookConfigResponseParse field.

func (*NormalizedProjectRevisionHook) SetWebHookConfigUrl ¶

func (o *NormalizedProjectRevisionHook) SetWebHookConfigUrl(v string)

SetWebHookConfigUrl gets a reference to the given string and assigns it to the WebHookConfigUrl field.

func (NormalizedProjectRevisionHook) ToMap ¶

func (o NormalizedProjectRevisionHook) ToMap() (map[string]interface{}, error)

func (*NormalizedProjectRevisionHook) UnmarshalJSON ¶

func (o *NormalizedProjectRevisionHook) UnmarshalJSON(bytes []byte) (err error)

type NormalizedProjectRevisionIdentitySchema ¶

type NormalizedProjectRevisionIdentitySchema struct {
	// The Project's Revision Creation Date
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// The unique ID of this entry.
	Id               *string                `json:"id,omitempty"`
	IdentitySchema   *ManagedIdentitySchema `json:"identity_schema,omitempty"`
	IdentitySchemaId NullableString         `json:"identity_schema_id,omitempty"`
	// The imported (named) ID of the Identity Schema referenced in the Ory Kratos config.
	ImportId *string `json:"import_id,omitempty"`
	// The ImportURL can be used to import an Identity Schema from a bse64 encoded string. In the future, this key also support HTTPS and other sources!  If you import an Ory Kratos configuration, this would be akin to the `identity.schemas.#.url` key.  The configuration will always return the import URL when you fetch it from the API.
	ImportUrl *string `json:"import_url,omitempty"`
	// If true sets the default schema for identities  Only one schema can ever be the default schema. If you try to add two schemas with default to true, the request will fail.
	IsDefault *bool `json:"is_default,omitempty"`
	// Use a preset instead of a custom identity schema.
	Preset *string `json:"preset,omitempty"`
	// The Revision's ID this schema belongs to
	ProjectRevisionId *string `json:"project_revision_id,omitempty"`
	// Last Time Project's Revision was Updated
	UpdatedAt            *time.Time `json:"updated_at,omitempty"`
	AdditionalProperties map[string]interface{}
}

NormalizedProjectRevisionIdentitySchema struct for NormalizedProjectRevisionIdentitySchema

func NewNormalizedProjectRevisionIdentitySchema ¶

func NewNormalizedProjectRevisionIdentitySchema() *NormalizedProjectRevisionIdentitySchema

NewNormalizedProjectRevisionIdentitySchema instantiates a new NormalizedProjectRevisionIdentitySchema 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 NewNormalizedProjectRevisionIdentitySchemaWithDefaults ¶

func NewNormalizedProjectRevisionIdentitySchemaWithDefaults() *NormalizedProjectRevisionIdentitySchema

NewNormalizedProjectRevisionIdentitySchemaWithDefaults instantiates a new NormalizedProjectRevisionIdentitySchema 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 (*NormalizedProjectRevisionIdentitySchema) GetCreatedAt ¶

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*NormalizedProjectRevisionIdentitySchema) GetCreatedAtOk ¶

func (o *NormalizedProjectRevisionIdentitySchema) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionIdentitySchema) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*NormalizedProjectRevisionIdentitySchema) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionIdentitySchema) GetIdentitySchema ¶

GetIdentitySchema returns the IdentitySchema field value if set, zero value otherwise.

func (*NormalizedProjectRevisionIdentitySchema) GetIdentitySchemaId ¶

func (o *NormalizedProjectRevisionIdentitySchema) GetIdentitySchemaId() string

GetIdentitySchemaId returns the IdentitySchemaId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NormalizedProjectRevisionIdentitySchema) GetIdentitySchemaIdOk ¶

func (o *NormalizedProjectRevisionIdentitySchema) GetIdentitySchemaIdOk() (*string, bool)

GetIdentitySchemaIdOk returns a tuple with the IdentitySchemaId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*NormalizedProjectRevisionIdentitySchema) GetIdentitySchemaOk ¶

GetIdentitySchemaOk returns a tuple with the IdentitySchema field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionIdentitySchema) GetImportId ¶

GetImportId returns the ImportId field value if set, zero value otherwise.

func (*NormalizedProjectRevisionIdentitySchema) GetImportIdOk ¶

func (o *NormalizedProjectRevisionIdentitySchema) GetImportIdOk() (*string, bool)

GetImportIdOk returns a tuple with the ImportId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionIdentitySchema) GetImportUrl ¶

GetImportUrl returns the ImportUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevisionIdentitySchema) GetImportUrlOk ¶

func (o *NormalizedProjectRevisionIdentitySchema) GetImportUrlOk() (*string, bool)

GetImportUrlOk returns a tuple with the ImportUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionIdentitySchema) GetIsDefault ¶

GetIsDefault returns the IsDefault field value if set, zero value otherwise.

func (*NormalizedProjectRevisionIdentitySchema) GetIsDefaultOk ¶

func (o *NormalizedProjectRevisionIdentitySchema) GetIsDefaultOk() (*bool, bool)

GetIsDefaultOk returns a tuple with the IsDefault field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionIdentitySchema) GetPreset ¶

GetPreset returns the Preset field value if set, zero value otherwise.

func (*NormalizedProjectRevisionIdentitySchema) GetPresetOk ¶

GetPresetOk returns a tuple with the Preset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionIdentitySchema) GetProjectRevisionId ¶

func (o *NormalizedProjectRevisionIdentitySchema) GetProjectRevisionId() string

GetProjectRevisionId returns the ProjectRevisionId field value if set, zero value otherwise.

func (*NormalizedProjectRevisionIdentitySchema) GetProjectRevisionIdOk ¶

func (o *NormalizedProjectRevisionIdentitySchema) GetProjectRevisionIdOk() (*string, bool)

GetProjectRevisionIdOk returns a tuple with the ProjectRevisionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionIdentitySchema) GetUpdatedAt ¶

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*NormalizedProjectRevisionIdentitySchema) GetUpdatedAtOk ¶

func (o *NormalizedProjectRevisionIdentitySchema) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionIdentitySchema) HasCreatedAt ¶

HasCreatedAt returns a boolean if a field has been set.

func (*NormalizedProjectRevisionIdentitySchema) HasId ¶

HasId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionIdentitySchema) HasIdentitySchema ¶

func (o *NormalizedProjectRevisionIdentitySchema) HasIdentitySchema() bool

HasIdentitySchema returns a boolean if a field has been set.

func (*NormalizedProjectRevisionIdentitySchema) HasIdentitySchemaId ¶

func (o *NormalizedProjectRevisionIdentitySchema) HasIdentitySchemaId() bool

HasIdentitySchemaId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionIdentitySchema) HasImportId ¶

HasImportId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionIdentitySchema) HasImportUrl ¶

HasImportUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevisionIdentitySchema) HasIsDefault ¶

HasIsDefault returns a boolean if a field has been set.

func (*NormalizedProjectRevisionIdentitySchema) HasPreset ¶

HasPreset returns a boolean if a field has been set.

func (*NormalizedProjectRevisionIdentitySchema) HasProjectRevisionId ¶

func (o *NormalizedProjectRevisionIdentitySchema) HasProjectRevisionId() bool

HasProjectRevisionId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionIdentitySchema) HasUpdatedAt ¶

HasUpdatedAt returns a boolean if a field has been set.

func (NormalizedProjectRevisionIdentitySchema) MarshalJSON ¶

func (o NormalizedProjectRevisionIdentitySchema) MarshalJSON() ([]byte, error)

func (*NormalizedProjectRevisionIdentitySchema) SetCreatedAt ¶

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*NormalizedProjectRevisionIdentitySchema) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*NormalizedProjectRevisionIdentitySchema) SetIdentitySchema ¶

SetIdentitySchema gets a reference to the given ManagedIdentitySchema and assigns it to the IdentitySchema field.

func (*NormalizedProjectRevisionIdentitySchema) SetIdentitySchemaId ¶

func (o *NormalizedProjectRevisionIdentitySchema) SetIdentitySchemaId(v string)

SetIdentitySchemaId gets a reference to the given NullableString and assigns it to the IdentitySchemaId field.

func (*NormalizedProjectRevisionIdentitySchema) SetIdentitySchemaIdNil ¶

func (o *NormalizedProjectRevisionIdentitySchema) SetIdentitySchemaIdNil()

SetIdentitySchemaIdNil sets the value for IdentitySchemaId to be an explicit nil

func (*NormalizedProjectRevisionIdentitySchema) SetImportId ¶

SetImportId gets a reference to the given string and assigns it to the ImportId field.

func (*NormalizedProjectRevisionIdentitySchema) SetImportUrl ¶

SetImportUrl gets a reference to the given string and assigns it to the ImportUrl field.

func (*NormalizedProjectRevisionIdentitySchema) SetIsDefault ¶

func (o *NormalizedProjectRevisionIdentitySchema) SetIsDefault(v bool)

SetIsDefault gets a reference to the given bool and assigns it to the IsDefault field.

func (*NormalizedProjectRevisionIdentitySchema) SetPreset ¶

SetPreset gets a reference to the given string and assigns it to the Preset field.

func (*NormalizedProjectRevisionIdentitySchema) SetProjectRevisionId ¶

func (o *NormalizedProjectRevisionIdentitySchema) SetProjectRevisionId(v string)

SetProjectRevisionId gets a reference to the given string and assigns it to the ProjectRevisionId field.

func (*NormalizedProjectRevisionIdentitySchema) SetUpdatedAt ¶

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (NormalizedProjectRevisionIdentitySchema) ToMap ¶

func (o NormalizedProjectRevisionIdentitySchema) ToMap() (map[string]interface{}, error)

func (*NormalizedProjectRevisionIdentitySchema) UnmarshalJSON ¶

func (o *NormalizedProjectRevisionIdentitySchema) UnmarshalJSON(bytes []byte) (err error)

func (*NormalizedProjectRevisionIdentitySchema) UnsetIdentitySchemaId ¶

func (o *NormalizedProjectRevisionIdentitySchema) UnsetIdentitySchemaId()

UnsetIdentitySchemaId ensures that no value is present for IdentitySchemaId, not even an explicit nil

type NormalizedProjectRevisionThirdPartyProvider ¶

type NormalizedProjectRevisionThirdPartyProvider struct {
	AdditionalIdTokenAudiences []string       `json:"additional_id_token_audiences,omitempty"`
	ApplePrivateKey            NullableString `json:"apple_private_key,omitempty"`
	// Apple Private Key Identifier  Sign In with Apple Private Key Identifier needed for generating a JWT token for client secret
	ApplePrivateKeyId *string `json:"apple_private_key_id,omitempty"`
	// Apple Developer Team ID  Apple Developer Team ID needed for generating a JWT token for client secret
	AppleTeamId *string `json:"apple_team_id,omitempty"`
	// AuthURL is the authorize url, typically something like: https://example.org/oauth2/auth Should only be used when the OAuth2 / OpenID Connect server is not supporting OpenID Connect Discovery and when `provider` is set to `generic`.
	AuthUrl *string `json:"auth_url,omitempty"`
	// Tenant is the Azure AD Tenant to use for authentication, and must be set when `provider` is set to `microsoft`.  Can be either `common`, `organizations`, `consumers` for a multitenant application or a specific tenant like `8eaef023-2b34-4da1-9baa-8bc8c9d6a490` or `contoso.onmicrosoft.com`.
	AzureTenant *string `json:"azure_tenant,omitempty"`
	// ClientID is the application's Client ID.
	ClientId     *string        `json:"client_id,omitempty"`
	ClientSecret NullableString `json:"client_secret,omitempty"`
	// The Project's Revision Creation Date
	CreatedAt *time.Time `json:"created_at,omitempty"`
	Id        *string    `json:"id,omitempty"`
	// IssuerURL is the OpenID Connect Server URL. You can leave this empty if `provider` is not set to `generic`. If set, neither `auth_url` nor `token_url` are required.
	IssuerUrl *string `json:"issuer_url,omitempty"`
	// Label represents an optional label which can be used in the UI generation.
	Label *string `json:"label,omitempty"`
	// Mapper specifies the JSONNet code snippet which uses the OpenID Connect Provider's data (e.g. GitHub or Google profile information) to hydrate the identity's data.
	MapperUrl      *string        `json:"mapper_url,omitempty"`
	OrganizationId NullableString `json:"organization_id,omitempty"`
	// The Revision's ID this schema belongs to
	ProjectRevisionId *string `json:"project_revision_id,omitempty"`
	// Provider is either \"generic\" for a generic OAuth 2.0 / OpenID Connect Provider or one of: generic google github gitlab microsoft discord slack facebook vk yandex apple
	Provider *string `json:"provider,omitempty"`
	// ID is the provider's ID
	ProviderId      *string                `json:"provider_id,omitempty"`
	RequestedClaims map[string]interface{} `json:"requested_claims,omitempty"`
	Scope           []string               `json:"scope,omitempty"`
	// State indicates the state of the provider  Only providers with state `enabled` will be used for authentication enabled ThirdPartyProviderStateEnabled disabled ThirdPartyProviderStateDisabled
	State         *string        `json:"state,omitempty"`
	SubjectSource NullableString `json:"subject_source,omitempty"`
	// TokenURL is the token url, typically something like: https://example.org/oauth2/token  Should only be used when the OAuth2 / OpenID Connect server is not supporting OpenID Connect Discovery and when `provider` is set to `generic`.
	TokenUrl *string `json:"token_url,omitempty"`
	// Last Time Project's Revision was Updated
	UpdatedAt            *time.Time `json:"updated_at,omitempty"`
	AdditionalProperties map[string]interface{}
}

NormalizedProjectRevisionThirdPartyProvider struct for NormalizedProjectRevisionThirdPartyProvider

func NewNormalizedProjectRevisionThirdPartyProvider ¶

func NewNormalizedProjectRevisionThirdPartyProvider() *NormalizedProjectRevisionThirdPartyProvider

NewNormalizedProjectRevisionThirdPartyProvider instantiates a new NormalizedProjectRevisionThirdPartyProvider 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 NewNormalizedProjectRevisionThirdPartyProviderWithDefaults ¶

func NewNormalizedProjectRevisionThirdPartyProviderWithDefaults() *NormalizedProjectRevisionThirdPartyProvider

NewNormalizedProjectRevisionThirdPartyProviderWithDefaults instantiates a new NormalizedProjectRevisionThirdPartyProvider 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 (*NormalizedProjectRevisionThirdPartyProvider) GetAdditionalIdTokenAudiences ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetAdditionalIdTokenAudiences() []string

GetAdditionalIdTokenAudiences returns the AdditionalIdTokenAudiences field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetAdditionalIdTokenAudiencesOk ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetAdditionalIdTokenAudiencesOk() ([]string, bool)

GetAdditionalIdTokenAudiencesOk returns a tuple with the AdditionalIdTokenAudiences field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetApplePrivateKey ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetApplePrivateKey() string

GetApplePrivateKey returns the ApplePrivateKey field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NormalizedProjectRevisionThirdPartyProvider) GetApplePrivateKeyId ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetApplePrivateKeyId() string

GetApplePrivateKeyId returns the ApplePrivateKeyId field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetApplePrivateKeyIdOk ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetApplePrivateKeyIdOk() (*string, bool)

GetApplePrivateKeyIdOk returns a tuple with the ApplePrivateKeyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetApplePrivateKeyOk ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetApplePrivateKeyOk() (*string, bool)

GetApplePrivateKeyOk returns a tuple with the ApplePrivateKey field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*NormalizedProjectRevisionThirdPartyProvider) GetAppleTeamId ¶

GetAppleTeamId returns the AppleTeamId field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetAppleTeamIdOk ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetAppleTeamIdOk() (*string, bool)

GetAppleTeamIdOk returns a tuple with the AppleTeamId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetAuthUrl ¶

GetAuthUrl returns the AuthUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetAuthUrlOk ¶

GetAuthUrlOk returns a tuple with the AuthUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetAzureTenant ¶

GetAzureTenant returns the AzureTenant field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetAzureTenantOk ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetAzureTenantOk() (*string, bool)

GetAzureTenantOk returns a tuple with the AzureTenant field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetClientId ¶

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetClientIdOk ¶

GetClientIdOk returns a tuple with the ClientId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetClientSecret ¶

GetClientSecret returns the ClientSecret field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NormalizedProjectRevisionThirdPartyProvider) GetClientSecretOk ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetClientSecretOk() (*string, bool)

GetClientSecretOk returns a tuple with the ClientSecret field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*NormalizedProjectRevisionThirdPartyProvider) GetCreatedAt ¶

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetCreatedAtOk ¶

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetIssuerUrl ¶

GetIssuerUrl returns the IssuerUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetIssuerUrlOk ¶

GetIssuerUrlOk returns a tuple with the IssuerUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetLabel ¶

GetLabel returns the Label field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetLabelOk ¶

GetLabelOk returns a tuple with the Label field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetMapperUrl ¶

GetMapperUrl returns the MapperUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetMapperUrlOk ¶

GetMapperUrlOk returns a tuple with the MapperUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetOrganizationId ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NormalizedProjectRevisionThirdPartyProvider) GetOrganizationIdOk ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*NormalizedProjectRevisionThirdPartyProvider) GetProjectRevisionId ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetProjectRevisionId() string

GetProjectRevisionId returns the ProjectRevisionId field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetProjectRevisionIdOk ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetProjectRevisionIdOk() (*string, bool)

GetProjectRevisionIdOk returns a tuple with the ProjectRevisionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetProvider ¶

GetProvider returns the Provider field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetProviderId ¶

GetProviderId returns the ProviderId field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetProviderIdOk ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetProviderIdOk() (*string, bool)

GetProviderIdOk returns a tuple with the ProviderId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetProviderOk ¶

GetProviderOk returns a tuple with the Provider field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetRequestedClaims ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetRequestedClaims() map[string]interface{}

GetRequestedClaims returns the RequestedClaims field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetRequestedClaimsOk ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetRequestedClaimsOk() (map[string]interface{}, bool)

GetRequestedClaimsOk returns a tuple with the RequestedClaims field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetScope ¶

GetScope returns the Scope field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetScopeOk ¶

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetState ¶

GetState returns the State field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetStateOk ¶

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetSubjectSource ¶

GetSubjectSource returns the SubjectSource field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NormalizedProjectRevisionThirdPartyProvider) GetSubjectSourceOk ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) GetSubjectSourceOk() (*string, bool)

GetSubjectSourceOk returns a tuple with the SubjectSource field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*NormalizedProjectRevisionThirdPartyProvider) GetTokenUrl ¶

GetTokenUrl returns the TokenUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetTokenUrlOk ¶

GetTokenUrlOk returns a tuple with the TokenUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) GetUpdatedAt ¶

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*NormalizedProjectRevisionThirdPartyProvider) GetUpdatedAtOk ¶

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasAdditionalIdTokenAudiences ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) HasAdditionalIdTokenAudiences() bool

HasAdditionalIdTokenAudiences returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasApplePrivateKey ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) HasApplePrivateKey() bool

HasApplePrivateKey returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasApplePrivateKeyId ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) HasApplePrivateKeyId() bool

HasApplePrivateKeyId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasAppleTeamId ¶

HasAppleTeamId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasAuthUrl ¶

HasAuthUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasAzureTenant ¶

HasAzureTenant returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasClientId ¶

HasClientId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasClientSecret ¶

HasClientSecret returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasCreatedAt ¶

HasCreatedAt returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasId ¶

HasId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasIssuerUrl ¶

HasIssuerUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasLabel ¶

HasLabel returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasMapperUrl ¶

HasMapperUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasOrganizationId ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasProjectRevisionId ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) HasProjectRevisionId() bool

HasProjectRevisionId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasProvider ¶

HasProvider returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasProviderId ¶

HasProviderId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasRequestedClaims ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) HasRequestedClaims() bool

HasRequestedClaims returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasScope ¶

HasScope returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasState ¶

HasState returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasSubjectSource ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) HasSubjectSource() bool

HasSubjectSource returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasTokenUrl ¶

HasTokenUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevisionThirdPartyProvider) HasUpdatedAt ¶

HasUpdatedAt returns a boolean if a field has been set.

func (NormalizedProjectRevisionThirdPartyProvider) MarshalJSON ¶

func (*NormalizedProjectRevisionThirdPartyProvider) SetAdditionalIdTokenAudiences ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) SetAdditionalIdTokenAudiences(v []string)

SetAdditionalIdTokenAudiences gets a reference to the given []string and assigns it to the AdditionalIdTokenAudiences field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetApplePrivateKey ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) SetApplePrivateKey(v string)

SetApplePrivateKey gets a reference to the given NullableString and assigns it to the ApplePrivateKey field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetApplePrivateKeyId ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) SetApplePrivateKeyId(v string)

SetApplePrivateKeyId gets a reference to the given string and assigns it to the ApplePrivateKeyId field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetApplePrivateKeyNil ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) SetApplePrivateKeyNil()

SetApplePrivateKeyNil sets the value for ApplePrivateKey to be an explicit nil

func (*NormalizedProjectRevisionThirdPartyProvider) SetAppleTeamId ¶

SetAppleTeamId gets a reference to the given string and assigns it to the AppleTeamId field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetAuthUrl ¶

SetAuthUrl gets a reference to the given string and assigns it to the AuthUrl field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetAzureTenant ¶

SetAzureTenant gets a reference to the given string and assigns it to the AzureTenant field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetClientId ¶

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetClientSecret ¶

SetClientSecret gets a reference to the given NullableString and assigns it to the ClientSecret field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetClientSecretNil ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) SetClientSecretNil()

SetClientSecretNil sets the value for ClientSecret to be an explicit nil

func (*NormalizedProjectRevisionThirdPartyProvider) SetCreatedAt ¶

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetIssuerUrl ¶

SetIssuerUrl gets a reference to the given string and assigns it to the IssuerUrl field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetLabel ¶

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetMapperUrl ¶

SetMapperUrl gets a reference to the given string and assigns it to the MapperUrl field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetOrganizationId ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given NullableString and assigns it to the OrganizationId field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetOrganizationIdNil ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) SetOrganizationIdNil()

SetOrganizationIdNil sets the value for OrganizationId to be an explicit nil

func (*NormalizedProjectRevisionThirdPartyProvider) SetProjectRevisionId ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) SetProjectRevisionId(v string)

SetProjectRevisionId gets a reference to the given string and assigns it to the ProjectRevisionId field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetProvider ¶

SetProvider gets a reference to the given string and assigns it to the Provider field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetProviderId ¶

SetProviderId gets a reference to the given string and assigns it to the ProviderId field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetRequestedClaims ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) SetRequestedClaims(v map[string]interface{})

SetRequestedClaims gets a reference to the given map[string]interface{} and assigns it to the RequestedClaims field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetScope ¶

SetScope gets a reference to the given []string and assigns it to the Scope field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetState ¶

SetState gets a reference to the given string and assigns it to the State field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetSubjectSource ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) SetSubjectSource(v string)

SetSubjectSource gets a reference to the given NullableString and assigns it to the SubjectSource field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetSubjectSourceNil ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) SetSubjectSourceNil()

SetSubjectSourceNil sets the value for SubjectSource to be an explicit nil

func (*NormalizedProjectRevisionThirdPartyProvider) SetTokenUrl ¶

SetTokenUrl gets a reference to the given string and assigns it to the TokenUrl field.

func (*NormalizedProjectRevisionThirdPartyProvider) SetUpdatedAt ¶

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (NormalizedProjectRevisionThirdPartyProvider) ToMap ¶

func (o NormalizedProjectRevisionThirdPartyProvider) ToMap() (map[string]interface{}, error)

func (*NormalizedProjectRevisionThirdPartyProvider) UnmarshalJSON ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) UnmarshalJSON(bytes []byte) (err error)

func (*NormalizedProjectRevisionThirdPartyProvider) UnsetApplePrivateKey ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) UnsetApplePrivateKey()

UnsetApplePrivateKey ensures that no value is present for ApplePrivateKey, not even an explicit nil

func (*NormalizedProjectRevisionThirdPartyProvider) UnsetClientSecret ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) UnsetClientSecret()

UnsetClientSecret ensures that no value is present for ClientSecret, not even an explicit nil

func (*NormalizedProjectRevisionThirdPartyProvider) UnsetOrganizationId ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) UnsetOrganizationId()

UnsetOrganizationId ensures that no value is present for OrganizationId, not even an explicit nil

func (*NormalizedProjectRevisionThirdPartyProvider) UnsetSubjectSource ¶

func (o *NormalizedProjectRevisionThirdPartyProvider) UnsetSubjectSource()

UnsetSubjectSource ensures that no value is present for SubjectSource, not even an explicit nil

type NormalizedProjectRevisionTokenizerTemplate ¶

type NormalizedProjectRevisionTokenizerTemplate struct {
	// Claims mapper URL
	ClaimsMapperUrl *string `json:"claims_mapper_url,omitempty"`
	// The Project's Revision Creation Date
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// The revision ID.
	Id *string `json:"id,omitempty"`
	// JSON Web Key URL
	JwksUrl *string `json:"jwks_url,omitempty"`
	// The unique key of the template
	Key *string `json:"key,omitempty"`
	// The Revision's ID this schema belongs to
	ProjectRevisionId *string `json:"project_revision_id,omitempty"`
	// Token time to live
	Ttl *string `json:"ttl,omitempty"`
	// Last Time Project's Revision was Updated
	UpdatedAt            *time.Time `json:"updated_at,omitempty"`
	AdditionalProperties map[string]interface{}
}

NormalizedProjectRevisionTokenizerTemplate struct for NormalizedProjectRevisionTokenizerTemplate

func NewNormalizedProjectRevisionTokenizerTemplate ¶

func NewNormalizedProjectRevisionTokenizerTemplate() *NormalizedProjectRevisionTokenizerTemplate

NewNormalizedProjectRevisionTokenizerTemplate instantiates a new NormalizedProjectRevisionTokenizerTemplate 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 NewNormalizedProjectRevisionTokenizerTemplateWithDefaults ¶

func NewNormalizedProjectRevisionTokenizerTemplateWithDefaults() *NormalizedProjectRevisionTokenizerTemplate

NewNormalizedProjectRevisionTokenizerTemplateWithDefaults instantiates a new NormalizedProjectRevisionTokenizerTemplate 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 (*NormalizedProjectRevisionTokenizerTemplate) GetClaimsMapperUrl ¶

func (o *NormalizedProjectRevisionTokenizerTemplate) GetClaimsMapperUrl() string

GetClaimsMapperUrl returns the ClaimsMapperUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevisionTokenizerTemplate) GetClaimsMapperUrlOk ¶

func (o *NormalizedProjectRevisionTokenizerTemplate) GetClaimsMapperUrlOk() (*string, bool)

GetClaimsMapperUrlOk returns a tuple with the ClaimsMapperUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) GetCreatedAt ¶

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*NormalizedProjectRevisionTokenizerTemplate) GetCreatedAtOk ¶

func (o *NormalizedProjectRevisionTokenizerTemplate) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*NormalizedProjectRevisionTokenizerTemplate) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) GetJwksUrl ¶

GetJwksUrl returns the JwksUrl field value if set, zero value otherwise.

func (*NormalizedProjectRevisionTokenizerTemplate) GetJwksUrlOk ¶

GetJwksUrlOk returns a tuple with the JwksUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) GetKey ¶

GetKey returns the Key field value if set, zero value otherwise.

func (*NormalizedProjectRevisionTokenizerTemplate) GetKeyOk ¶

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) GetProjectRevisionId ¶

func (o *NormalizedProjectRevisionTokenizerTemplate) GetProjectRevisionId() string

GetProjectRevisionId returns the ProjectRevisionId field value if set, zero value otherwise.

func (*NormalizedProjectRevisionTokenizerTemplate) GetProjectRevisionIdOk ¶

func (o *NormalizedProjectRevisionTokenizerTemplate) GetProjectRevisionIdOk() (*string, bool)

GetProjectRevisionIdOk returns a tuple with the ProjectRevisionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) GetTtl ¶

GetTtl returns the Ttl field value if set, zero value otherwise.

func (*NormalizedProjectRevisionTokenizerTemplate) GetTtlOk ¶

GetTtlOk returns a tuple with the Ttl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) GetUpdatedAt ¶

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*NormalizedProjectRevisionTokenizerTemplate) GetUpdatedAtOk ¶

func (o *NormalizedProjectRevisionTokenizerTemplate) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) HasClaimsMapperUrl ¶

func (o *NormalizedProjectRevisionTokenizerTemplate) HasClaimsMapperUrl() bool

HasClaimsMapperUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) HasCreatedAt ¶

HasCreatedAt returns a boolean if a field has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) HasId ¶

HasId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) HasJwksUrl ¶

HasJwksUrl returns a boolean if a field has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) HasKey ¶

HasKey returns a boolean if a field has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) HasProjectRevisionId ¶

func (o *NormalizedProjectRevisionTokenizerTemplate) HasProjectRevisionId() bool

HasProjectRevisionId returns a boolean if a field has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) HasTtl ¶

HasTtl returns a boolean if a field has been set.

func (*NormalizedProjectRevisionTokenizerTemplate) HasUpdatedAt ¶

HasUpdatedAt returns a boolean if a field has been set.

func (NormalizedProjectRevisionTokenizerTemplate) MarshalJSON ¶

func (*NormalizedProjectRevisionTokenizerTemplate) SetClaimsMapperUrl ¶

func (o *NormalizedProjectRevisionTokenizerTemplate) SetClaimsMapperUrl(v string)

SetClaimsMapperUrl gets a reference to the given string and assigns it to the ClaimsMapperUrl field.

func (*NormalizedProjectRevisionTokenizerTemplate) SetCreatedAt ¶

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*NormalizedProjectRevisionTokenizerTemplate) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*NormalizedProjectRevisionTokenizerTemplate) SetJwksUrl ¶

SetJwksUrl gets a reference to the given string and assigns it to the JwksUrl field.

func (*NormalizedProjectRevisionTokenizerTemplate) SetKey ¶

SetKey gets a reference to the given string and assigns it to the Key field.

func (*NormalizedProjectRevisionTokenizerTemplate) SetProjectRevisionId ¶

func (o *NormalizedProjectRevisionTokenizerTemplate) SetProjectRevisionId(v string)

SetProjectRevisionId gets a reference to the given string and assigns it to the ProjectRevisionId field.

func (*NormalizedProjectRevisionTokenizerTemplate) SetTtl ¶

SetTtl gets a reference to the given string and assigns it to the Ttl field.

func (*NormalizedProjectRevisionTokenizerTemplate) SetUpdatedAt ¶

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (NormalizedProjectRevisionTokenizerTemplate) ToMap ¶

func (o NormalizedProjectRevisionTokenizerTemplate) ToMap() (map[string]interface{}, error)

func (*NormalizedProjectRevisionTokenizerTemplate) UnmarshalJSON ¶

func (o *NormalizedProjectRevisionTokenizerTemplate) UnmarshalJSON(bytes []byte) (err error)

type NullableAcceptOAuth2ConsentRequest ¶

type NullableAcceptOAuth2ConsentRequest struct {
	// contains filtered or unexported fields
}

func (NullableAcceptOAuth2ConsentRequest) Get ¶

func (NullableAcceptOAuth2ConsentRequest) IsSet ¶

func (NullableAcceptOAuth2ConsentRequest) MarshalJSON ¶

func (v NullableAcceptOAuth2ConsentRequest) MarshalJSON() ([]byte, error)

func (*NullableAcceptOAuth2ConsentRequest) Set ¶

func (*NullableAcceptOAuth2ConsentRequest) UnmarshalJSON ¶

func (v *NullableAcceptOAuth2ConsentRequest) UnmarshalJSON(src []byte) error

func (*NullableAcceptOAuth2ConsentRequest) Unset ¶

type NullableAcceptOAuth2ConsentRequestSession ¶

type NullableAcceptOAuth2ConsentRequestSession struct {
	// contains filtered or unexported fields
}

func (NullableAcceptOAuth2ConsentRequestSession) Get ¶

func (NullableAcceptOAuth2ConsentRequestSession) IsSet ¶

func (NullableAcceptOAuth2ConsentRequestSession) MarshalJSON ¶

func (*NullableAcceptOAuth2ConsentRequestSession) Set ¶

func (*NullableAcceptOAuth2ConsentRequestSession) UnmarshalJSON ¶

func (v *NullableAcceptOAuth2ConsentRequestSession) UnmarshalJSON(src []byte) error

func (*NullableAcceptOAuth2ConsentRequestSession) Unset ¶

type NullableAcceptOAuth2LoginRequest ¶

type NullableAcceptOAuth2LoginRequest struct {
	// contains filtered or unexported fields
}

func (NullableAcceptOAuth2LoginRequest) Get ¶

func (NullableAcceptOAuth2LoginRequest) IsSet ¶

func (NullableAcceptOAuth2LoginRequest) MarshalJSON ¶

func (v NullableAcceptOAuth2LoginRequest) MarshalJSON() ([]byte, error)

func (*NullableAcceptOAuth2LoginRequest) Set ¶

func (*NullableAcceptOAuth2LoginRequest) UnmarshalJSON ¶

func (v *NullableAcceptOAuth2LoginRequest) UnmarshalJSON(src []byte) error

func (*NullableAcceptOAuth2LoginRequest) Unset ¶

type NullableActiveProjectInConsole ¶

type NullableActiveProjectInConsole struct {
	// contains filtered or unexported fields
}

func (NullableActiveProjectInConsole) Get ¶

func (NullableActiveProjectInConsole) IsSet ¶

func (NullableActiveProjectInConsole) MarshalJSON ¶

func (v NullableActiveProjectInConsole) MarshalJSON() ([]byte, error)

func (*NullableActiveProjectInConsole) Set ¶

func (*NullableActiveProjectInConsole) UnmarshalJSON ¶

func (v *NullableActiveProjectInConsole) UnmarshalJSON(src []byte) error

func (*NullableActiveProjectInConsole) Unset ¶

func (v *NullableActiveProjectInConsole) Unset()

type NullableAttribute ¶

type NullableAttribute struct {
	// contains filtered or unexported fields
}

func NewNullableAttribute ¶

func NewNullableAttribute(val *Attribute) *NullableAttribute

func (NullableAttribute) Get ¶

func (v NullableAttribute) Get() *Attribute

func (NullableAttribute) IsSet ¶

func (v NullableAttribute) IsSet() bool

func (NullableAttribute) MarshalJSON ¶

func (v NullableAttribute) MarshalJSON() ([]byte, error)

func (*NullableAttribute) Set ¶

func (v *NullableAttribute) Set(val *Attribute)

func (*NullableAttribute) UnmarshalJSON ¶

func (v *NullableAttribute) UnmarshalJSON(src []byte) error

func (*NullableAttribute) Unset ¶

func (v *NullableAttribute) Unset()

type NullableAttributeFilter ¶

type NullableAttributeFilter struct {
	// contains filtered or unexported fields
}

func NewNullableAttributeFilter ¶

func NewNullableAttributeFilter(val *AttributeFilter) *NullableAttributeFilter

func (NullableAttributeFilter) Get ¶

func (NullableAttributeFilter) IsSet ¶

func (v NullableAttributeFilter) IsSet() bool

func (NullableAttributeFilter) MarshalJSON ¶

func (v NullableAttributeFilter) MarshalJSON() ([]byte, error)

func (*NullableAttributeFilter) Set ¶

func (*NullableAttributeFilter) UnmarshalJSON ¶

func (v *NullableAttributeFilter) UnmarshalJSON(src []byte) error

func (*NullableAttributeFilter) Unset ¶

func (v *NullableAttributeFilter) Unset()

type NullableAttributesCountDatapoint ¶

type NullableAttributesCountDatapoint struct {
	// contains filtered or unexported fields
}

func (NullableAttributesCountDatapoint) Get ¶

func (NullableAttributesCountDatapoint) IsSet ¶

func (NullableAttributesCountDatapoint) MarshalJSON ¶

func (v NullableAttributesCountDatapoint) MarshalJSON() ([]byte, error)

func (*NullableAttributesCountDatapoint) Set ¶

func (*NullableAttributesCountDatapoint) UnmarshalJSON ¶

func (v *NullableAttributesCountDatapoint) UnmarshalJSON(src []byte) error

func (*NullableAttributesCountDatapoint) Unset ¶

type NullableAuthenticatorAssuranceLevel ¶

type NullableAuthenticatorAssuranceLevel struct {
	// contains filtered or unexported fields
}

func (NullableAuthenticatorAssuranceLevel) Get ¶

func (NullableAuthenticatorAssuranceLevel) IsSet ¶

func (NullableAuthenticatorAssuranceLevel) MarshalJSON ¶

func (v NullableAuthenticatorAssuranceLevel) MarshalJSON() ([]byte, error)

func (*NullableAuthenticatorAssuranceLevel) Set ¶

func (*NullableAuthenticatorAssuranceLevel) UnmarshalJSON ¶

func (v *NullableAuthenticatorAssuranceLevel) UnmarshalJSON(src []byte) error

func (*NullableAuthenticatorAssuranceLevel) Unset ¶

type NullableBatchPatchIdentitiesResponse ¶

type NullableBatchPatchIdentitiesResponse struct {
	// contains filtered or unexported fields
}

func (NullableBatchPatchIdentitiesResponse) Get ¶

func (NullableBatchPatchIdentitiesResponse) IsSet ¶

func (NullableBatchPatchIdentitiesResponse) MarshalJSON ¶

func (v NullableBatchPatchIdentitiesResponse) MarshalJSON() ([]byte, error)

func (*NullableBatchPatchIdentitiesResponse) Set ¶

func (*NullableBatchPatchIdentitiesResponse) UnmarshalJSON ¶

func (v *NullableBatchPatchIdentitiesResponse) UnmarshalJSON(src []byte) error

func (*NullableBatchPatchIdentitiesResponse) Unset ¶

type NullableBool ¶

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool ¶

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get ¶

func (v NullableBool) Get() *bool

func (NullableBool) IsSet ¶

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON ¶

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set ¶

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON ¶

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset ¶

func (v *NullableBool) Unset()

type NullableCheckOplSyntaxResult ¶

type NullableCheckOplSyntaxResult struct {
	// contains filtered or unexported fields
}

func (NullableCheckOplSyntaxResult) Get ¶

func (NullableCheckOplSyntaxResult) IsSet ¶

func (NullableCheckOplSyntaxResult) MarshalJSON ¶

func (v NullableCheckOplSyntaxResult) MarshalJSON() ([]byte, error)

func (*NullableCheckOplSyntaxResult) Set ¶

func (*NullableCheckOplSyntaxResult) UnmarshalJSON ¶

func (v *NullableCheckOplSyntaxResult) UnmarshalJSON(src []byte) error

func (*NullableCheckOplSyntaxResult) Unset ¶

func (v *NullableCheckOplSyntaxResult) Unset()

type NullableCheckPermissionResult ¶

type NullableCheckPermissionResult struct {
	// contains filtered or unexported fields
}

func (NullableCheckPermissionResult) Get ¶

func (NullableCheckPermissionResult) IsSet ¶

func (NullableCheckPermissionResult) MarshalJSON ¶

func (v NullableCheckPermissionResult) MarshalJSON() ([]byte, error)

func (*NullableCheckPermissionResult) Set ¶

func (*NullableCheckPermissionResult) UnmarshalJSON ¶

func (v *NullableCheckPermissionResult) UnmarshalJSON(src []byte) error

func (*NullableCheckPermissionResult) Unset ¶

func (v *NullableCheckPermissionResult) Unset()

type NullableCloudAccount ¶

type NullableCloudAccount struct {
	// contains filtered or unexported fields
}

func NewNullableCloudAccount ¶

func NewNullableCloudAccount(val *CloudAccount) *NullableCloudAccount

func (NullableCloudAccount) Get ¶

func (NullableCloudAccount) IsSet ¶

func (v NullableCloudAccount) IsSet() bool

func (NullableCloudAccount) MarshalJSON ¶

func (v NullableCloudAccount) MarshalJSON() ([]byte, error)

func (*NullableCloudAccount) Set ¶

func (v *NullableCloudAccount) Set(val *CloudAccount)

func (*NullableCloudAccount) UnmarshalJSON ¶

func (v *NullableCloudAccount) UnmarshalJSON(src []byte) error

func (*NullableCloudAccount) Unset ¶

func (v *NullableCloudAccount) Unset()

type NullableConsistencyRequestParameters ¶

type NullableConsistencyRequestParameters struct {
	// contains filtered or unexported fields
}

func (NullableConsistencyRequestParameters) Get ¶

func (NullableConsistencyRequestParameters) IsSet ¶

func (NullableConsistencyRequestParameters) MarshalJSON ¶

func (v NullableConsistencyRequestParameters) MarshalJSON() ([]byte, error)

func (*NullableConsistencyRequestParameters) Set ¶

func (*NullableConsistencyRequestParameters) UnmarshalJSON ¶

func (v *NullableConsistencyRequestParameters) UnmarshalJSON(src []byte) error

func (*NullableConsistencyRequestParameters) Unset ¶

type NullableContinueWith ¶

type NullableContinueWith struct {
	// contains filtered or unexported fields
}

func NewNullableContinueWith ¶

func NewNullableContinueWith(val *ContinueWith) *NullableContinueWith

func (NullableContinueWith) Get ¶

func (NullableContinueWith) IsSet ¶

func (v NullableContinueWith) IsSet() bool

func (NullableContinueWith) MarshalJSON ¶

func (v NullableContinueWith) MarshalJSON() ([]byte, error)

func (*NullableContinueWith) Set ¶

func (v *NullableContinueWith) Set(val *ContinueWith)

func (*NullableContinueWith) UnmarshalJSON ¶

func (v *NullableContinueWith) UnmarshalJSON(src []byte) error

func (*NullableContinueWith) Unset ¶

func (v *NullableContinueWith) Unset()

type NullableContinueWithRecoveryUi ¶

type NullableContinueWithRecoveryUi struct {
	// contains filtered or unexported fields
}

func (NullableContinueWithRecoveryUi) Get ¶

func (NullableContinueWithRecoveryUi) IsSet ¶

func (NullableContinueWithRecoveryUi) MarshalJSON ¶

func (v NullableContinueWithRecoveryUi) MarshalJSON() ([]byte, error)

func (*NullableContinueWithRecoveryUi) Set ¶

func (*NullableContinueWithRecoveryUi) UnmarshalJSON ¶

func (v *NullableContinueWithRecoveryUi) UnmarshalJSON(src []byte) error

func (*NullableContinueWithRecoveryUi) Unset ¶

func (v *NullableContinueWithRecoveryUi) Unset()

type NullableContinueWithRecoveryUiFlow ¶

type NullableContinueWithRecoveryUiFlow struct {
	// contains filtered or unexported fields
}

func (NullableContinueWithRecoveryUiFlow) Get ¶

func (NullableContinueWithRecoveryUiFlow) IsSet ¶

func (NullableContinueWithRecoveryUiFlow) MarshalJSON ¶

func (v NullableContinueWithRecoveryUiFlow) MarshalJSON() ([]byte, error)

func (*NullableContinueWithRecoveryUiFlow) Set ¶

func (*NullableContinueWithRecoveryUiFlow) UnmarshalJSON ¶

func (v *NullableContinueWithRecoveryUiFlow) UnmarshalJSON(src []byte) error

func (*NullableContinueWithRecoveryUiFlow) Unset ¶

type NullableContinueWithSetOrySessionToken ¶

type NullableContinueWithSetOrySessionToken struct {
	// contains filtered or unexported fields
}

func (NullableContinueWithSetOrySessionToken) Get ¶

func (NullableContinueWithSetOrySessionToken) IsSet ¶

func (NullableContinueWithSetOrySessionToken) MarshalJSON ¶

func (v NullableContinueWithSetOrySessionToken) MarshalJSON() ([]byte, error)

func (*NullableContinueWithSetOrySessionToken) Set ¶

func (*NullableContinueWithSetOrySessionToken) UnmarshalJSON ¶

func (v *NullableContinueWithSetOrySessionToken) UnmarshalJSON(src []byte) error

func (*NullableContinueWithSetOrySessionToken) Unset ¶

type NullableContinueWithSettingsUi ¶

type NullableContinueWithSettingsUi struct {
	// contains filtered or unexported fields
}

func (NullableContinueWithSettingsUi) Get ¶

func (NullableContinueWithSettingsUi) IsSet ¶

func (NullableContinueWithSettingsUi) MarshalJSON ¶

func (v NullableContinueWithSettingsUi) MarshalJSON() ([]byte, error)

func (*NullableContinueWithSettingsUi) Set ¶

func (*NullableContinueWithSettingsUi) UnmarshalJSON ¶

func (v *NullableContinueWithSettingsUi) UnmarshalJSON(src []byte) error

func (*NullableContinueWithSettingsUi) Unset ¶

func (v *NullableContinueWithSettingsUi) Unset()

type NullableContinueWithSettingsUiFlow ¶

type NullableContinueWithSettingsUiFlow struct {
	// contains filtered or unexported fields
}

func (NullableContinueWithSettingsUiFlow) Get ¶

func (NullableContinueWithSettingsUiFlow) IsSet ¶

func (NullableContinueWithSettingsUiFlow) MarshalJSON ¶

func (v NullableContinueWithSettingsUiFlow) MarshalJSON() ([]byte, error)

func (*NullableContinueWithSettingsUiFlow) Set ¶

func (*NullableContinueWithSettingsUiFlow) UnmarshalJSON ¶

func (v *NullableContinueWithSettingsUiFlow) UnmarshalJSON(src []byte) error

func (*NullableContinueWithSettingsUiFlow) Unset ¶

type NullableContinueWithVerificationUi ¶

type NullableContinueWithVerificationUi struct {
	// contains filtered or unexported fields
}

func (NullableContinueWithVerificationUi) Get ¶

func (NullableContinueWithVerificationUi) IsSet ¶

func (NullableContinueWithVerificationUi) MarshalJSON ¶

func (v NullableContinueWithVerificationUi) MarshalJSON() ([]byte, error)

func (*NullableContinueWithVerificationUi) Set ¶

func (*NullableContinueWithVerificationUi) UnmarshalJSON ¶

func (v *NullableContinueWithVerificationUi) UnmarshalJSON(src []byte) error

func (*NullableContinueWithVerificationUi) Unset ¶

type NullableContinueWithVerificationUiFlow ¶

type NullableContinueWithVerificationUiFlow struct {
	// contains filtered or unexported fields
}

func (NullableContinueWithVerificationUiFlow) Get ¶

func (NullableContinueWithVerificationUiFlow) IsSet ¶

func (NullableContinueWithVerificationUiFlow) MarshalJSON ¶

func (v NullableContinueWithVerificationUiFlow) MarshalJSON() ([]byte, error)

func (*NullableContinueWithVerificationUiFlow) Set ¶

func (*NullableContinueWithVerificationUiFlow) UnmarshalJSON ¶

func (v *NullableContinueWithVerificationUiFlow) UnmarshalJSON(src []byte) error

func (*NullableContinueWithVerificationUiFlow) Unset ¶

type NullableCourierMessageStatus ¶

type NullableCourierMessageStatus struct {
	// contains filtered or unexported fields
}

func (NullableCourierMessageStatus) Get ¶

func (NullableCourierMessageStatus) IsSet ¶

func (NullableCourierMessageStatus) MarshalJSON ¶

func (v NullableCourierMessageStatus) MarshalJSON() ([]byte, error)

func (*NullableCourierMessageStatus) Set ¶

func (*NullableCourierMessageStatus) UnmarshalJSON ¶

func (v *NullableCourierMessageStatus) UnmarshalJSON(src []byte) error

func (*NullableCourierMessageStatus) Unset ¶

func (v *NullableCourierMessageStatus) Unset()

type NullableCourierMessageType ¶

type NullableCourierMessageType struct {
	// contains filtered or unexported fields
}

func NewNullableCourierMessageType ¶

func NewNullableCourierMessageType(val *CourierMessageType) *NullableCourierMessageType

func (NullableCourierMessageType) Get ¶

func (NullableCourierMessageType) IsSet ¶

func (v NullableCourierMessageType) IsSet() bool

func (NullableCourierMessageType) MarshalJSON ¶

func (v NullableCourierMessageType) MarshalJSON() ([]byte, error)

func (*NullableCourierMessageType) Set ¶

func (*NullableCourierMessageType) UnmarshalJSON ¶

func (v *NullableCourierMessageType) UnmarshalJSON(src []byte) error

func (*NullableCourierMessageType) Unset ¶

func (v *NullableCourierMessageType) Unset()

type NullableCreateCustomDomainBody ¶

type NullableCreateCustomDomainBody struct {
	// contains filtered or unexported fields
}

func (NullableCreateCustomDomainBody) Get ¶

func (NullableCreateCustomDomainBody) IsSet ¶

func (NullableCreateCustomDomainBody) MarshalJSON ¶

func (v NullableCreateCustomDomainBody) MarshalJSON() ([]byte, error)

func (*NullableCreateCustomDomainBody) Set ¶

func (*NullableCreateCustomDomainBody) UnmarshalJSON ¶

func (v *NullableCreateCustomDomainBody) UnmarshalJSON(src []byte) error

func (*NullableCreateCustomDomainBody) Unset ¶

func (v *NullableCreateCustomDomainBody) Unset()

type NullableCreateEventStreamBody ¶

type NullableCreateEventStreamBody struct {
	// contains filtered or unexported fields
}

func (NullableCreateEventStreamBody) Get ¶

func (NullableCreateEventStreamBody) IsSet ¶

func (NullableCreateEventStreamBody) MarshalJSON ¶

func (v NullableCreateEventStreamBody) MarshalJSON() ([]byte, error)

func (*NullableCreateEventStreamBody) Set ¶

func (*NullableCreateEventStreamBody) UnmarshalJSON ¶

func (v *NullableCreateEventStreamBody) UnmarshalJSON(src []byte) error

func (*NullableCreateEventStreamBody) Unset ¶

func (v *NullableCreateEventStreamBody) Unset()

type NullableCreateIdentityBody ¶

type NullableCreateIdentityBody struct {
	// contains filtered or unexported fields
}

func NewNullableCreateIdentityBody ¶

func NewNullableCreateIdentityBody(val *CreateIdentityBody) *NullableCreateIdentityBody

func (NullableCreateIdentityBody) Get ¶

func (NullableCreateIdentityBody) IsSet ¶

func (v NullableCreateIdentityBody) IsSet() bool

func (NullableCreateIdentityBody) MarshalJSON ¶

func (v NullableCreateIdentityBody) MarshalJSON() ([]byte, error)

func (*NullableCreateIdentityBody) Set ¶

func (*NullableCreateIdentityBody) UnmarshalJSON ¶

func (v *NullableCreateIdentityBody) UnmarshalJSON(src []byte) error

func (*NullableCreateIdentityBody) Unset ¶

func (v *NullableCreateIdentityBody) Unset()

type NullableCreateInviteResponse ¶

type NullableCreateInviteResponse struct {
	// contains filtered or unexported fields
}

func (NullableCreateInviteResponse) Get ¶

func (NullableCreateInviteResponse) IsSet ¶

func (NullableCreateInviteResponse) MarshalJSON ¶

func (v NullableCreateInviteResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateInviteResponse) Set ¶

func (*NullableCreateInviteResponse) UnmarshalJSON ¶

func (v *NullableCreateInviteResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateInviteResponse) Unset ¶

func (v *NullableCreateInviteResponse) Unset()

type NullableCreateJsonWebKeySet ¶

type NullableCreateJsonWebKeySet struct {
	// contains filtered or unexported fields
}

func (NullableCreateJsonWebKeySet) Get ¶

func (NullableCreateJsonWebKeySet) IsSet ¶

func (NullableCreateJsonWebKeySet) MarshalJSON ¶

func (v NullableCreateJsonWebKeySet) MarshalJSON() ([]byte, error)

func (*NullableCreateJsonWebKeySet) Set ¶

func (*NullableCreateJsonWebKeySet) UnmarshalJSON ¶

func (v *NullableCreateJsonWebKeySet) UnmarshalJSON(src []byte) error

func (*NullableCreateJsonWebKeySet) Unset ¶

func (v *NullableCreateJsonWebKeySet) Unset()

type NullableCreateProjectApiKeyRequest ¶

type NullableCreateProjectApiKeyRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateProjectApiKeyRequest) Get ¶

func (NullableCreateProjectApiKeyRequest) IsSet ¶

func (NullableCreateProjectApiKeyRequest) MarshalJSON ¶

func (v NullableCreateProjectApiKeyRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateProjectApiKeyRequest) Set ¶

func (*NullableCreateProjectApiKeyRequest) UnmarshalJSON ¶

func (v *NullableCreateProjectApiKeyRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateProjectApiKeyRequest) Unset ¶

type NullableCreateProjectBody ¶

type NullableCreateProjectBody struct {
	// contains filtered or unexported fields
}

func NewNullableCreateProjectBody ¶

func NewNullableCreateProjectBody(val *CreateProjectBody) *NullableCreateProjectBody

func (NullableCreateProjectBody) Get ¶

func (NullableCreateProjectBody) IsSet ¶

func (v NullableCreateProjectBody) IsSet() bool

func (NullableCreateProjectBody) MarshalJSON ¶

func (v NullableCreateProjectBody) MarshalJSON() ([]byte, error)

func (*NullableCreateProjectBody) Set ¶

func (*NullableCreateProjectBody) UnmarshalJSON ¶

func (v *NullableCreateProjectBody) UnmarshalJSON(src []byte) error

func (*NullableCreateProjectBody) Unset ¶

func (v *NullableCreateProjectBody) Unset()

type NullableCreateProjectBranding ¶

type NullableCreateProjectBranding struct {
	// contains filtered or unexported fields
}

func (NullableCreateProjectBranding) Get ¶

func (NullableCreateProjectBranding) IsSet ¶

func (NullableCreateProjectBranding) MarshalJSON ¶

func (v NullableCreateProjectBranding) MarshalJSON() ([]byte, error)

func (*NullableCreateProjectBranding) Set ¶

func (*NullableCreateProjectBranding) UnmarshalJSON ¶

func (v *NullableCreateProjectBranding) UnmarshalJSON(src []byte) error

func (*NullableCreateProjectBranding) Unset ¶

func (v *NullableCreateProjectBranding) Unset()

type NullableCreateProjectMemberInviteBody ¶

type NullableCreateProjectMemberInviteBody struct {
	// contains filtered or unexported fields
}

func (NullableCreateProjectMemberInviteBody) Get ¶

func (NullableCreateProjectMemberInviteBody) IsSet ¶

func (NullableCreateProjectMemberInviteBody) MarshalJSON ¶

func (v NullableCreateProjectMemberInviteBody) MarshalJSON() ([]byte, error)

func (*NullableCreateProjectMemberInviteBody) Set ¶

func (*NullableCreateProjectMemberInviteBody) UnmarshalJSON ¶

func (v *NullableCreateProjectMemberInviteBody) UnmarshalJSON(src []byte) error

func (*NullableCreateProjectMemberInviteBody) Unset ¶

type NullableCreateProjectNormalizedPayload ¶

type NullableCreateProjectNormalizedPayload struct {
	// contains filtered or unexported fields
}

func (NullableCreateProjectNormalizedPayload) Get ¶

func (NullableCreateProjectNormalizedPayload) IsSet ¶

func (NullableCreateProjectNormalizedPayload) MarshalJSON ¶

func (v NullableCreateProjectNormalizedPayload) MarshalJSON() ([]byte, error)

func (*NullableCreateProjectNormalizedPayload) Set ¶

func (*NullableCreateProjectNormalizedPayload) UnmarshalJSON ¶

func (v *NullableCreateProjectNormalizedPayload) UnmarshalJSON(src []byte) error

func (*NullableCreateProjectNormalizedPayload) Unset ¶

type NullableCreateRecoveryCodeForIdentityBody ¶

type NullableCreateRecoveryCodeForIdentityBody struct {
	// contains filtered or unexported fields
}

func (NullableCreateRecoveryCodeForIdentityBody) Get ¶

func (NullableCreateRecoveryCodeForIdentityBody) IsSet ¶

func (NullableCreateRecoveryCodeForIdentityBody) MarshalJSON ¶

func (*NullableCreateRecoveryCodeForIdentityBody) Set ¶

func (*NullableCreateRecoveryCodeForIdentityBody) UnmarshalJSON ¶

func (v *NullableCreateRecoveryCodeForIdentityBody) UnmarshalJSON(src []byte) error

func (*NullableCreateRecoveryCodeForIdentityBody) Unset ¶

type NullableCreateRecoveryLinkForIdentityBody ¶

type NullableCreateRecoveryLinkForIdentityBody struct {
	// contains filtered or unexported fields
}

func (NullableCreateRecoveryLinkForIdentityBody) Get ¶

func (NullableCreateRecoveryLinkForIdentityBody) IsSet ¶

func (NullableCreateRecoveryLinkForIdentityBody) MarshalJSON ¶

func (*NullableCreateRecoveryLinkForIdentityBody) Set ¶

func (*NullableCreateRecoveryLinkForIdentityBody) UnmarshalJSON ¶

func (v *NullableCreateRecoveryLinkForIdentityBody) UnmarshalJSON(src []byte) error

func (*NullableCreateRecoveryLinkForIdentityBody) Unset ¶

type NullableCreateRelationshipBody ¶

type NullableCreateRelationshipBody struct {
	// contains filtered or unexported fields
}

func (NullableCreateRelationshipBody) Get ¶

func (NullableCreateRelationshipBody) IsSet ¶

func (NullableCreateRelationshipBody) MarshalJSON ¶

func (v NullableCreateRelationshipBody) MarshalJSON() ([]byte, error)

func (*NullableCreateRelationshipBody) Set ¶

func (*NullableCreateRelationshipBody) UnmarshalJSON ¶

func (v *NullableCreateRelationshipBody) UnmarshalJSON(src []byte) error

func (*NullableCreateRelationshipBody) Unset ¶

func (v *NullableCreateRelationshipBody) Unset()

type NullableCreateSubscriptionBody ¶

type NullableCreateSubscriptionBody struct {
	// contains filtered or unexported fields
}

func (NullableCreateSubscriptionBody) Get ¶

func (NullableCreateSubscriptionBody) IsSet ¶

func (NullableCreateSubscriptionBody) MarshalJSON ¶

func (v NullableCreateSubscriptionBody) MarshalJSON() ([]byte, error)

func (*NullableCreateSubscriptionBody) Set ¶

func (*NullableCreateSubscriptionBody) UnmarshalJSON ¶

func (v *NullableCreateSubscriptionBody) UnmarshalJSON(src []byte) error

func (*NullableCreateSubscriptionBody) Unset ¶

func (v *NullableCreateSubscriptionBody) Unset()

type NullableCreateVerifiableCredentialRequestBody ¶

type NullableCreateVerifiableCredentialRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableCreateVerifiableCredentialRequestBody) Get ¶

func (NullableCreateVerifiableCredentialRequestBody) IsSet ¶

func (NullableCreateVerifiableCredentialRequestBody) MarshalJSON ¶

func (*NullableCreateVerifiableCredentialRequestBody) Set ¶

func (*NullableCreateVerifiableCredentialRequestBody) UnmarshalJSON ¶

func (*NullableCreateVerifiableCredentialRequestBody) Unset ¶

type NullableCreateWorkspaceMemberInviteBody ¶

type NullableCreateWorkspaceMemberInviteBody struct {
	// contains filtered or unexported fields
}

func (NullableCreateWorkspaceMemberInviteBody) Get ¶

func (NullableCreateWorkspaceMemberInviteBody) IsSet ¶

func (NullableCreateWorkspaceMemberInviteBody) MarshalJSON ¶

func (v NullableCreateWorkspaceMemberInviteBody) MarshalJSON() ([]byte, error)

func (*NullableCreateWorkspaceMemberInviteBody) Set ¶

func (*NullableCreateWorkspaceMemberInviteBody) UnmarshalJSON ¶

func (v *NullableCreateWorkspaceMemberInviteBody) UnmarshalJSON(src []byte) error

func (*NullableCreateWorkspaceMemberInviteBody) Unset ¶

type NullableCredentialSupportedDraft00 ¶

type NullableCredentialSupportedDraft00 struct {
	// contains filtered or unexported fields
}

func (NullableCredentialSupportedDraft00) Get ¶

func (NullableCredentialSupportedDraft00) IsSet ¶

func (NullableCredentialSupportedDraft00) MarshalJSON ¶

func (v NullableCredentialSupportedDraft00) MarshalJSON() ([]byte, error)

func (*NullableCredentialSupportedDraft00) Set ¶

func (*NullableCredentialSupportedDraft00) UnmarshalJSON ¶

func (v *NullableCredentialSupportedDraft00) UnmarshalJSON(src []byte) error

func (*NullableCredentialSupportedDraft00) Unset ¶

type NullableCustomDomain ¶

type NullableCustomDomain struct {
	// contains filtered or unexported fields
}

func NewNullableCustomDomain ¶

func NewNullableCustomDomain(val *CustomDomain) *NullableCustomDomain

func (NullableCustomDomain) Get ¶

func (NullableCustomDomain) IsSet ¶

func (v NullableCustomDomain) IsSet() bool

func (NullableCustomDomain) MarshalJSON ¶

func (v NullableCustomDomain) MarshalJSON() ([]byte, error)

func (*NullableCustomDomain) Set ¶

func (v *NullableCustomDomain) Set(val *CustomDomain)

func (*NullableCustomDomain) UnmarshalJSON ¶

func (v *NullableCustomDomain) UnmarshalJSON(src []byte) error

func (*NullableCustomDomain) Unset ¶

func (v *NullableCustomDomain) Unset()

type NullableDeleteMySessionsCount ¶

type NullableDeleteMySessionsCount struct {
	// contains filtered or unexported fields
}

func (NullableDeleteMySessionsCount) Get ¶

func (NullableDeleteMySessionsCount) IsSet ¶

func (NullableDeleteMySessionsCount) MarshalJSON ¶

func (v NullableDeleteMySessionsCount) MarshalJSON() ([]byte, error)

func (*NullableDeleteMySessionsCount) Set ¶

func (*NullableDeleteMySessionsCount) UnmarshalJSON ¶

func (v *NullableDeleteMySessionsCount) UnmarshalJSON(src []byte) error

func (*NullableDeleteMySessionsCount) Unset ¶

func (v *NullableDeleteMySessionsCount) Unset()

type NullableEmailTemplateData ¶

type NullableEmailTemplateData struct {
	// contains filtered or unexported fields
}

func NewNullableEmailTemplateData ¶

func NewNullableEmailTemplateData(val *EmailTemplateData) *NullableEmailTemplateData

func (NullableEmailTemplateData) Get ¶

func (NullableEmailTemplateData) IsSet ¶

func (v NullableEmailTemplateData) IsSet() bool

func (NullableEmailTemplateData) MarshalJSON ¶

func (v NullableEmailTemplateData) MarshalJSON() ([]byte, error)

func (*NullableEmailTemplateData) Set ¶

func (*NullableEmailTemplateData) UnmarshalJSON ¶

func (v *NullableEmailTemplateData) UnmarshalJSON(src []byte) error

func (*NullableEmailTemplateData) Unset ¶

func (v *NullableEmailTemplateData) Unset()

type NullableEmailTemplateDataBody ¶

type NullableEmailTemplateDataBody struct {
	// contains filtered or unexported fields
}

func (NullableEmailTemplateDataBody) Get ¶

func (NullableEmailTemplateDataBody) IsSet ¶

func (NullableEmailTemplateDataBody) MarshalJSON ¶

func (v NullableEmailTemplateDataBody) MarshalJSON() ([]byte, error)

func (*NullableEmailTemplateDataBody) Set ¶

func (*NullableEmailTemplateDataBody) UnmarshalJSON ¶

func (v *NullableEmailTemplateDataBody) UnmarshalJSON(src []byte) error

func (*NullableEmailTemplateDataBody) Unset ¶

func (v *NullableEmailTemplateDataBody) Unset()

type NullableErrorAuthenticatorAssuranceLevelNotSatisfied ¶

type NullableErrorAuthenticatorAssuranceLevelNotSatisfied struct {
	// contains filtered or unexported fields
}

func (NullableErrorAuthenticatorAssuranceLevelNotSatisfied) Get ¶

func (NullableErrorAuthenticatorAssuranceLevelNotSatisfied) IsSet ¶

func (NullableErrorAuthenticatorAssuranceLevelNotSatisfied) MarshalJSON ¶

func (*NullableErrorAuthenticatorAssuranceLevelNotSatisfied) Set ¶

func (*NullableErrorAuthenticatorAssuranceLevelNotSatisfied) UnmarshalJSON ¶

func (*NullableErrorAuthenticatorAssuranceLevelNotSatisfied) Unset ¶

type NullableErrorBrowserLocationChangeRequired ¶

type NullableErrorBrowserLocationChangeRequired struct {
	// contains filtered or unexported fields
}

func (NullableErrorBrowserLocationChangeRequired) Get ¶

func (NullableErrorBrowserLocationChangeRequired) IsSet ¶

func (NullableErrorBrowserLocationChangeRequired) MarshalJSON ¶

func (*NullableErrorBrowserLocationChangeRequired) Set ¶

func (*NullableErrorBrowserLocationChangeRequired) UnmarshalJSON ¶

func (v *NullableErrorBrowserLocationChangeRequired) UnmarshalJSON(src []byte) error

func (*NullableErrorBrowserLocationChangeRequired) Unset ¶

type NullableErrorFlowReplaced ¶

type NullableErrorFlowReplaced struct {
	// contains filtered or unexported fields
}

func NewNullableErrorFlowReplaced ¶

func NewNullableErrorFlowReplaced(val *ErrorFlowReplaced) *NullableErrorFlowReplaced

func (NullableErrorFlowReplaced) Get ¶

func (NullableErrorFlowReplaced) IsSet ¶

func (v NullableErrorFlowReplaced) IsSet() bool

func (NullableErrorFlowReplaced) MarshalJSON ¶

func (v NullableErrorFlowReplaced) MarshalJSON() ([]byte, error)

func (*NullableErrorFlowReplaced) Set ¶

func (*NullableErrorFlowReplaced) UnmarshalJSON ¶

func (v *NullableErrorFlowReplaced) UnmarshalJSON(src []byte) error

func (*NullableErrorFlowReplaced) Unset ¶

func (v *NullableErrorFlowReplaced) Unset()

type NullableErrorGeneric ¶

type NullableErrorGeneric struct {
	// contains filtered or unexported fields
}

func NewNullableErrorGeneric ¶

func NewNullableErrorGeneric(val *ErrorGeneric) *NullableErrorGeneric

func (NullableErrorGeneric) Get ¶

func (NullableErrorGeneric) IsSet ¶

func (v NullableErrorGeneric) IsSet() bool

func (NullableErrorGeneric) MarshalJSON ¶

func (v NullableErrorGeneric) MarshalJSON() ([]byte, error)

func (*NullableErrorGeneric) Set ¶

func (v *NullableErrorGeneric) Set(val *ErrorGeneric)

func (*NullableErrorGeneric) UnmarshalJSON ¶

func (v *NullableErrorGeneric) UnmarshalJSON(src []byte) error

func (*NullableErrorGeneric) Unset ¶

func (v *NullableErrorGeneric) Unset()

type NullableErrorOAuth2 ¶

type NullableErrorOAuth2 struct {
	// contains filtered or unexported fields
}

func NewNullableErrorOAuth2 ¶

func NewNullableErrorOAuth2(val *ErrorOAuth2) *NullableErrorOAuth2

func (NullableErrorOAuth2) Get ¶

func (NullableErrorOAuth2) IsSet ¶

func (v NullableErrorOAuth2) IsSet() bool

func (NullableErrorOAuth2) MarshalJSON ¶

func (v NullableErrorOAuth2) MarshalJSON() ([]byte, error)

func (*NullableErrorOAuth2) Set ¶

func (v *NullableErrorOAuth2) Set(val *ErrorOAuth2)

func (*NullableErrorOAuth2) UnmarshalJSON ¶

func (v *NullableErrorOAuth2) UnmarshalJSON(src []byte) error

func (*NullableErrorOAuth2) Unset ¶

func (v *NullableErrorOAuth2) Unset()

type NullableEventStream ¶

type NullableEventStream struct {
	// contains filtered or unexported fields
}

func NewNullableEventStream ¶

func NewNullableEventStream(val *EventStream) *NullableEventStream

func (NullableEventStream) Get ¶

func (NullableEventStream) IsSet ¶

func (v NullableEventStream) IsSet() bool

func (NullableEventStream) MarshalJSON ¶

func (v NullableEventStream) MarshalJSON() ([]byte, error)

func (*NullableEventStream) Set ¶

func (v *NullableEventStream) Set(val *EventStream)

func (*NullableEventStream) UnmarshalJSON ¶

func (v *NullableEventStream) UnmarshalJSON(src []byte) error

func (*NullableEventStream) Unset ¶

func (v *NullableEventStream) Unset()

type NullableExpandedPermissionTree ¶

type NullableExpandedPermissionTree struct {
	// contains filtered or unexported fields
}

func (NullableExpandedPermissionTree) Get ¶

func (NullableExpandedPermissionTree) IsSet ¶

func (NullableExpandedPermissionTree) MarshalJSON ¶

func (v NullableExpandedPermissionTree) MarshalJSON() ([]byte, error)

func (*NullableExpandedPermissionTree) Set ¶

func (*NullableExpandedPermissionTree) UnmarshalJSON ¶

func (v *NullableExpandedPermissionTree) UnmarshalJSON(src []byte) error

func (*NullableExpandedPermissionTree) Unset ¶

func (v *NullableExpandedPermissionTree) Unset()

type NullableFloat32 ¶

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32 ¶

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get ¶

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet ¶

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON ¶

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set ¶

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON ¶

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset ¶

func (v *NullableFloat32) Unset()

type NullableFloat64 ¶

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64 ¶

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get ¶

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet ¶

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON ¶

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set ¶

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON ¶

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset ¶

func (v *NullableFloat64) Unset()

type NullableFlowError ¶

type NullableFlowError struct {
	// contains filtered or unexported fields
}

func NewNullableFlowError ¶

func NewNullableFlowError(val *FlowError) *NullableFlowError

func (NullableFlowError) Get ¶

func (v NullableFlowError) Get() *FlowError

func (NullableFlowError) IsSet ¶

func (v NullableFlowError) IsSet() bool

func (NullableFlowError) MarshalJSON ¶

func (v NullableFlowError) MarshalJSON() ([]byte, error)

func (*NullableFlowError) Set ¶

func (v *NullableFlowError) Set(val *FlowError)

func (*NullableFlowError) UnmarshalJSON ¶

func (v *NullableFlowError) UnmarshalJSON(src []byte) error

func (*NullableFlowError) Unset ¶

func (v *NullableFlowError) Unset()

type NullableGenericError ¶

type NullableGenericError struct {
	// contains filtered or unexported fields
}

func NewNullableGenericError ¶

func NewNullableGenericError(val *GenericError) *NullableGenericError

func (NullableGenericError) Get ¶

func (NullableGenericError) IsSet ¶

func (v NullableGenericError) IsSet() bool

func (NullableGenericError) MarshalJSON ¶

func (v NullableGenericError) MarshalJSON() ([]byte, error)

func (*NullableGenericError) Set ¶

func (v *NullableGenericError) Set(val *GenericError)

func (*NullableGenericError) UnmarshalJSON ¶

func (v *NullableGenericError) UnmarshalJSON(src []byte) error

func (*NullableGenericError) Unset ¶

func (v *NullableGenericError) Unset()

type NullableGenericErrorContent ¶

type NullableGenericErrorContent struct {
	// contains filtered or unexported fields
}

func (NullableGenericErrorContent) Get ¶

func (NullableGenericErrorContent) IsSet ¶

func (NullableGenericErrorContent) MarshalJSON ¶

func (v NullableGenericErrorContent) MarshalJSON() ([]byte, error)

func (*NullableGenericErrorContent) Set ¶

func (*NullableGenericErrorContent) UnmarshalJSON ¶

func (v *NullableGenericErrorContent) UnmarshalJSON(src []byte) error

func (*NullableGenericErrorContent) Unset ¶

func (v *NullableGenericErrorContent) Unset()

type NullableGenericUsage ¶

type NullableGenericUsage struct {
	// contains filtered or unexported fields
}

func NewNullableGenericUsage ¶

func NewNullableGenericUsage(val *GenericUsage) *NullableGenericUsage

func (NullableGenericUsage) Get ¶

func (NullableGenericUsage) IsSet ¶

func (v NullableGenericUsage) IsSet() bool

func (NullableGenericUsage) MarshalJSON ¶

func (v NullableGenericUsage) MarshalJSON() ([]byte, error)

func (*NullableGenericUsage) Set ¶

func (v *NullableGenericUsage) Set(val *GenericUsage)

func (*NullableGenericUsage) UnmarshalJSON ¶

func (v *NullableGenericUsage) UnmarshalJSON(src []byte) error

func (*NullableGenericUsage) Unset ¶

func (v *NullableGenericUsage) Unset()

type NullableGetAttributesCountResponse ¶

type NullableGetAttributesCountResponse struct {
	// contains filtered or unexported fields
}

func (NullableGetAttributesCountResponse) Get ¶

func (NullableGetAttributesCountResponse) IsSet ¶

func (NullableGetAttributesCountResponse) MarshalJSON ¶

func (v NullableGetAttributesCountResponse) MarshalJSON() ([]byte, error)

func (*NullableGetAttributesCountResponse) Set ¶

func (*NullableGetAttributesCountResponse) UnmarshalJSON ¶

func (v *NullableGetAttributesCountResponse) UnmarshalJSON(src []byte) error

func (*NullableGetAttributesCountResponse) Unset ¶

type NullableGetManagedIdentitySchemaLocation ¶

type NullableGetManagedIdentitySchemaLocation struct {
	// contains filtered or unexported fields
}

func (NullableGetManagedIdentitySchemaLocation) Get ¶

func (NullableGetManagedIdentitySchemaLocation) IsSet ¶

func (NullableGetManagedIdentitySchemaLocation) MarshalJSON ¶

func (*NullableGetManagedIdentitySchemaLocation) Set ¶

func (*NullableGetManagedIdentitySchemaLocation) UnmarshalJSON ¶

func (v *NullableGetManagedIdentitySchemaLocation) UnmarshalJSON(src []byte) error

func (*NullableGetManagedIdentitySchemaLocation) Unset ¶

type NullableGetMetricsEventAttributesResponse ¶

type NullableGetMetricsEventAttributesResponse struct {
	// contains filtered or unexported fields
}

func (NullableGetMetricsEventAttributesResponse) Get ¶

func (NullableGetMetricsEventAttributesResponse) IsSet ¶

func (NullableGetMetricsEventAttributesResponse) MarshalJSON ¶

func (*NullableGetMetricsEventAttributesResponse) Set ¶

func (*NullableGetMetricsEventAttributesResponse) UnmarshalJSON ¶

func (v *NullableGetMetricsEventAttributesResponse) UnmarshalJSON(src []byte) error

func (*NullableGetMetricsEventAttributesResponse) Unset ¶

type NullableGetMetricsEventTypesResponse ¶

type NullableGetMetricsEventTypesResponse struct {
	// contains filtered or unexported fields
}

func (NullableGetMetricsEventTypesResponse) Get ¶

func (NullableGetMetricsEventTypesResponse) IsSet ¶

func (NullableGetMetricsEventTypesResponse) MarshalJSON ¶

func (v NullableGetMetricsEventTypesResponse) MarshalJSON() ([]byte, error)

func (*NullableGetMetricsEventTypesResponse) Set ¶

func (*NullableGetMetricsEventTypesResponse) UnmarshalJSON ¶

func (v *NullableGetMetricsEventTypesResponse) UnmarshalJSON(src []byte) error

func (*NullableGetMetricsEventTypesResponse) Unset ¶

type NullableGetOrganizationResponse ¶

type NullableGetOrganizationResponse struct {
	// contains filtered or unexported fields
}

func (NullableGetOrganizationResponse) Get ¶

func (NullableGetOrganizationResponse) IsSet ¶

func (NullableGetOrganizationResponse) MarshalJSON ¶

func (v NullableGetOrganizationResponse) MarshalJSON() ([]byte, error)

func (*NullableGetOrganizationResponse) Set ¶

func (*NullableGetOrganizationResponse) UnmarshalJSON ¶

func (v *NullableGetOrganizationResponse) UnmarshalJSON(src []byte) error

func (*NullableGetOrganizationResponse) Unset ¶

type NullableGetProjectEventsBody ¶

type NullableGetProjectEventsBody struct {
	// contains filtered or unexported fields
}

func (NullableGetProjectEventsBody) Get ¶

func (NullableGetProjectEventsBody) IsSet ¶

func (NullableGetProjectEventsBody) MarshalJSON ¶

func (v NullableGetProjectEventsBody) MarshalJSON() ([]byte, error)

func (*NullableGetProjectEventsBody) Set ¶

func (*NullableGetProjectEventsBody) UnmarshalJSON ¶

func (v *NullableGetProjectEventsBody) UnmarshalJSON(src []byte) error

func (*NullableGetProjectEventsBody) Unset ¶

func (v *NullableGetProjectEventsBody) Unset()

type NullableGetProjectEventsResponse ¶

type NullableGetProjectEventsResponse struct {
	// contains filtered or unexported fields
}

func (NullableGetProjectEventsResponse) Get ¶

func (NullableGetProjectEventsResponse) IsSet ¶

func (NullableGetProjectEventsResponse) MarshalJSON ¶

func (v NullableGetProjectEventsResponse) MarshalJSON() ([]byte, error)

func (*NullableGetProjectEventsResponse) Set ¶

func (*NullableGetProjectEventsResponse) UnmarshalJSON ¶

func (v *NullableGetProjectEventsResponse) UnmarshalJSON(src []byte) error

func (*NullableGetProjectEventsResponse) Unset ¶

type NullableGetProjectMetricsResponse ¶

type NullableGetProjectMetricsResponse struct {
	// contains filtered or unexported fields
}

func (NullableGetProjectMetricsResponse) Get ¶

func (NullableGetProjectMetricsResponse) IsSet ¶

func (NullableGetProjectMetricsResponse) MarshalJSON ¶

func (v NullableGetProjectMetricsResponse) MarshalJSON() ([]byte, error)

func (*NullableGetProjectMetricsResponse) Set ¶

func (*NullableGetProjectMetricsResponse) UnmarshalJSON ¶

func (v *NullableGetProjectMetricsResponse) UnmarshalJSON(src []byte) error

func (*NullableGetProjectMetricsResponse) Unset ¶

type NullableGetSessionActivityResponse ¶

type NullableGetSessionActivityResponse struct {
	// contains filtered or unexported fields
}

func (NullableGetSessionActivityResponse) Get ¶

func (NullableGetSessionActivityResponse) IsSet ¶

func (NullableGetSessionActivityResponse) MarshalJSON ¶

func (v NullableGetSessionActivityResponse) MarshalJSON() ([]byte, error)

func (*NullableGetSessionActivityResponse) Set ¶

func (*NullableGetSessionActivityResponse) UnmarshalJSON ¶

func (v *NullableGetSessionActivityResponse) UnmarshalJSON(src []byte) error

func (*NullableGetSessionActivityResponse) Unset ¶

type NullableGetVersion200Response ¶

type NullableGetVersion200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetVersion200Response) Get ¶

func (NullableGetVersion200Response) IsSet ¶

func (NullableGetVersion200Response) MarshalJSON ¶

func (v NullableGetVersion200Response) MarshalJSON() ([]byte, error)

func (*NullableGetVersion200Response) Set ¶

func (*NullableGetVersion200Response) UnmarshalJSON ¶

func (v *NullableGetVersion200Response) UnmarshalJSON(src []byte) error

func (*NullableGetVersion200Response) Unset ¶

func (v *NullableGetVersion200Response) Unset()

type NullableHealthNotReadyStatus ¶

type NullableHealthNotReadyStatus struct {
	// contains filtered or unexported fields
}

func (NullableHealthNotReadyStatus) Get ¶

func (NullableHealthNotReadyStatus) IsSet ¶

func (NullableHealthNotReadyStatus) MarshalJSON ¶

func (v NullableHealthNotReadyStatus) MarshalJSON() ([]byte, error)

func (*NullableHealthNotReadyStatus) Set ¶

func (*NullableHealthNotReadyStatus) UnmarshalJSON ¶

func (v *NullableHealthNotReadyStatus) UnmarshalJSON(src []byte) error

func (*NullableHealthNotReadyStatus) Unset ¶

func (v *NullableHealthNotReadyStatus) Unset()

type NullableHealthStatus ¶

type NullableHealthStatus struct {
	// contains filtered or unexported fields
}

func NewNullableHealthStatus ¶

func NewNullableHealthStatus(val *HealthStatus) *NullableHealthStatus

func (NullableHealthStatus) Get ¶

func (NullableHealthStatus) IsSet ¶

func (v NullableHealthStatus) IsSet() bool

func (NullableHealthStatus) MarshalJSON ¶

func (v NullableHealthStatus) MarshalJSON() ([]byte, error)

func (*NullableHealthStatus) Set ¶

func (v *NullableHealthStatus) Set(val *HealthStatus)

func (*NullableHealthStatus) UnmarshalJSON ¶

func (v *NullableHealthStatus) UnmarshalJSON(src []byte) error

func (*NullableHealthStatus) Unset ¶

func (v *NullableHealthStatus) Unset()

type NullableIdentity ¶

type NullableIdentity struct {
	// contains filtered or unexported fields
}

func NewNullableIdentity ¶

func NewNullableIdentity(val *Identity) *NullableIdentity

func (NullableIdentity) Get ¶

func (v NullableIdentity) Get() *Identity

func (NullableIdentity) IsSet ¶

func (v NullableIdentity) IsSet() bool

func (NullableIdentity) MarshalJSON ¶

func (v NullableIdentity) MarshalJSON() ([]byte, error)

func (*NullableIdentity) Set ¶

func (v *NullableIdentity) Set(val *Identity)

func (*NullableIdentity) UnmarshalJSON ¶

func (v *NullableIdentity) UnmarshalJSON(src []byte) error

func (*NullableIdentity) Unset ¶

func (v *NullableIdentity) Unset()

type NullableIdentityCredentials ¶

type NullableIdentityCredentials struct {
	// contains filtered or unexported fields
}

func (NullableIdentityCredentials) Get ¶

func (NullableIdentityCredentials) IsSet ¶

func (NullableIdentityCredentials) MarshalJSON ¶

func (v NullableIdentityCredentials) MarshalJSON() ([]byte, error)

func (*NullableIdentityCredentials) Set ¶

func (*NullableIdentityCredentials) UnmarshalJSON ¶

func (v *NullableIdentityCredentials) UnmarshalJSON(src []byte) error

func (*NullableIdentityCredentials) Unset ¶

func (v *NullableIdentityCredentials) Unset()

type NullableIdentityCredentialsCode ¶

type NullableIdentityCredentialsCode struct {
	// contains filtered or unexported fields
}

func (NullableIdentityCredentialsCode) Get ¶

func (NullableIdentityCredentialsCode) IsSet ¶

func (NullableIdentityCredentialsCode) MarshalJSON ¶

func (v NullableIdentityCredentialsCode) MarshalJSON() ([]byte, error)

func (*NullableIdentityCredentialsCode) Set ¶

func (*NullableIdentityCredentialsCode) UnmarshalJSON ¶

func (v *NullableIdentityCredentialsCode) UnmarshalJSON(src []byte) error

func (*NullableIdentityCredentialsCode) Unset ¶

type NullableIdentityCredentialsOidc ¶

type NullableIdentityCredentialsOidc struct {
	// contains filtered or unexported fields
}

func (NullableIdentityCredentialsOidc) Get ¶

func (NullableIdentityCredentialsOidc) IsSet ¶

func (NullableIdentityCredentialsOidc) MarshalJSON ¶

func (v NullableIdentityCredentialsOidc) MarshalJSON() ([]byte, error)

func (*NullableIdentityCredentialsOidc) Set ¶

func (*NullableIdentityCredentialsOidc) UnmarshalJSON ¶

func (v *NullableIdentityCredentialsOidc) UnmarshalJSON(src []byte) error

func (*NullableIdentityCredentialsOidc) Unset ¶

type NullableIdentityCredentialsOidcProvider ¶

type NullableIdentityCredentialsOidcProvider struct {
	// contains filtered or unexported fields
}

func (NullableIdentityCredentialsOidcProvider) Get ¶

func (NullableIdentityCredentialsOidcProvider) IsSet ¶

func (NullableIdentityCredentialsOidcProvider) MarshalJSON ¶

func (v NullableIdentityCredentialsOidcProvider) MarshalJSON() ([]byte, error)

func (*NullableIdentityCredentialsOidcProvider) Set ¶

func (*NullableIdentityCredentialsOidcProvider) UnmarshalJSON ¶

func (v *NullableIdentityCredentialsOidcProvider) UnmarshalJSON(src []byte) error

func (*NullableIdentityCredentialsOidcProvider) Unset ¶

type NullableIdentityCredentialsPassword ¶

type NullableIdentityCredentialsPassword struct {
	// contains filtered or unexported fields
}

func (NullableIdentityCredentialsPassword) Get ¶

func (NullableIdentityCredentialsPassword) IsSet ¶

func (NullableIdentityCredentialsPassword) MarshalJSON ¶

func (v NullableIdentityCredentialsPassword) MarshalJSON() ([]byte, error)

func (*NullableIdentityCredentialsPassword) Set ¶

func (*NullableIdentityCredentialsPassword) UnmarshalJSON ¶

func (v *NullableIdentityCredentialsPassword) UnmarshalJSON(src []byte) error

func (*NullableIdentityCredentialsPassword) Unset ¶

type NullableIdentityCredentialsType ¶

type NullableIdentityCredentialsType struct {
	// contains filtered or unexported fields
}

func (NullableIdentityCredentialsType) Get ¶

func (NullableIdentityCredentialsType) IsSet ¶

func (NullableIdentityCredentialsType) MarshalJSON ¶

func (v NullableIdentityCredentialsType) MarshalJSON() ([]byte, error)

func (*NullableIdentityCredentialsType) Set ¶

func (*NullableIdentityCredentialsType) UnmarshalJSON ¶

func (v *NullableIdentityCredentialsType) UnmarshalJSON(src []byte) error

func (*NullableIdentityCredentialsType) Unset ¶

type NullableIdentityPatch ¶

type NullableIdentityPatch struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityPatch ¶

func NewNullableIdentityPatch(val *IdentityPatch) *NullableIdentityPatch

func (NullableIdentityPatch) Get ¶

func (NullableIdentityPatch) IsSet ¶

func (v NullableIdentityPatch) IsSet() bool

func (NullableIdentityPatch) MarshalJSON ¶

func (v NullableIdentityPatch) MarshalJSON() ([]byte, error)

func (*NullableIdentityPatch) Set ¶

func (v *NullableIdentityPatch) Set(val *IdentityPatch)

func (*NullableIdentityPatch) UnmarshalJSON ¶

func (v *NullableIdentityPatch) UnmarshalJSON(src []byte) error

func (*NullableIdentityPatch) Unset ¶

func (v *NullableIdentityPatch) Unset()

type NullableIdentityPatchResponse ¶

type NullableIdentityPatchResponse struct {
	// contains filtered or unexported fields
}

func (NullableIdentityPatchResponse) Get ¶

func (NullableIdentityPatchResponse) IsSet ¶

func (NullableIdentityPatchResponse) MarshalJSON ¶

func (v NullableIdentityPatchResponse) MarshalJSON() ([]byte, error)

func (*NullableIdentityPatchResponse) Set ¶

func (*NullableIdentityPatchResponse) UnmarshalJSON ¶

func (v *NullableIdentityPatchResponse) UnmarshalJSON(src []byte) error

func (*NullableIdentityPatchResponse) Unset ¶

func (v *NullableIdentityPatchResponse) Unset()

type NullableIdentitySchemaContainer ¶

type NullableIdentitySchemaContainer struct {
	// contains filtered or unexported fields
}

func (NullableIdentitySchemaContainer) Get ¶

func (NullableIdentitySchemaContainer) IsSet ¶

func (NullableIdentitySchemaContainer) MarshalJSON ¶

func (v NullableIdentitySchemaContainer) MarshalJSON() ([]byte, error)

func (*NullableIdentitySchemaContainer) Set ¶

func (*NullableIdentitySchemaContainer) UnmarshalJSON ¶

func (v *NullableIdentitySchemaContainer) UnmarshalJSON(src []byte) error

func (*NullableIdentitySchemaContainer) Unset ¶

type NullableIdentitySchemaPreset ¶

type NullableIdentitySchemaPreset struct {
	// contains filtered or unexported fields
}

func (NullableIdentitySchemaPreset) Get ¶

func (NullableIdentitySchemaPreset) IsSet ¶

func (NullableIdentitySchemaPreset) MarshalJSON ¶

func (v NullableIdentitySchemaPreset) MarshalJSON() ([]byte, error)

func (*NullableIdentitySchemaPreset) Set ¶

func (*NullableIdentitySchemaPreset) UnmarshalJSON ¶

func (v *NullableIdentitySchemaPreset) UnmarshalJSON(src []byte) error

func (*NullableIdentitySchemaPreset) Unset ¶

func (v *NullableIdentitySchemaPreset) Unset()

type NullableIdentityState ¶

type NullableIdentityState struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityState ¶

func NewNullableIdentityState(val *IdentityState) *NullableIdentityState

func (NullableIdentityState) Get ¶

func (NullableIdentityState) IsSet ¶

func (v NullableIdentityState) IsSet() bool

func (NullableIdentityState) MarshalJSON ¶

func (v NullableIdentityState) MarshalJSON() ([]byte, error)

func (*NullableIdentityState) Set ¶

func (v *NullableIdentityState) Set(val *IdentityState)

func (*NullableIdentityState) UnmarshalJSON ¶

func (v *NullableIdentityState) UnmarshalJSON(src []byte) error

func (*NullableIdentityState) Unset ¶

func (v *NullableIdentityState) Unset()

type NullableIdentityWithCredentials ¶

type NullableIdentityWithCredentials struct {
	// contains filtered or unexported fields
}

func (NullableIdentityWithCredentials) Get ¶

func (NullableIdentityWithCredentials) IsSet ¶

func (NullableIdentityWithCredentials) MarshalJSON ¶

func (v NullableIdentityWithCredentials) MarshalJSON() ([]byte, error)

func (*NullableIdentityWithCredentials) Set ¶

func (*NullableIdentityWithCredentials) UnmarshalJSON ¶

func (v *NullableIdentityWithCredentials) UnmarshalJSON(src []byte) error

func (*NullableIdentityWithCredentials) Unset ¶

type NullableIdentityWithCredentialsOidc ¶

type NullableIdentityWithCredentialsOidc struct {
	// contains filtered or unexported fields
}

func (NullableIdentityWithCredentialsOidc) Get ¶

func (NullableIdentityWithCredentialsOidc) IsSet ¶

func (NullableIdentityWithCredentialsOidc) MarshalJSON ¶

func (v NullableIdentityWithCredentialsOidc) MarshalJSON() ([]byte, error)

func (*NullableIdentityWithCredentialsOidc) Set ¶

func (*NullableIdentityWithCredentialsOidc) UnmarshalJSON ¶

func (v *NullableIdentityWithCredentialsOidc) UnmarshalJSON(src []byte) error

func (*NullableIdentityWithCredentialsOidc) Unset ¶

type NullableIdentityWithCredentialsOidcConfig ¶

type NullableIdentityWithCredentialsOidcConfig struct {
	// contains filtered or unexported fields
}

func (NullableIdentityWithCredentialsOidcConfig) Get ¶

func (NullableIdentityWithCredentialsOidcConfig) IsSet ¶

func (NullableIdentityWithCredentialsOidcConfig) MarshalJSON ¶

func (*NullableIdentityWithCredentialsOidcConfig) Set ¶

func (*NullableIdentityWithCredentialsOidcConfig) UnmarshalJSON ¶

func (v *NullableIdentityWithCredentialsOidcConfig) UnmarshalJSON(src []byte) error

func (*NullableIdentityWithCredentialsOidcConfig) Unset ¶

type NullableIdentityWithCredentialsOidcConfigProvider ¶

type NullableIdentityWithCredentialsOidcConfigProvider struct {
	// contains filtered or unexported fields
}

func (NullableIdentityWithCredentialsOidcConfigProvider) Get ¶

func (NullableIdentityWithCredentialsOidcConfigProvider) IsSet ¶

func (NullableIdentityWithCredentialsOidcConfigProvider) MarshalJSON ¶

func (*NullableIdentityWithCredentialsOidcConfigProvider) Set ¶

func (*NullableIdentityWithCredentialsOidcConfigProvider) UnmarshalJSON ¶

func (*NullableIdentityWithCredentialsOidcConfigProvider) Unset ¶

type NullableIdentityWithCredentialsPassword ¶

type NullableIdentityWithCredentialsPassword struct {
	// contains filtered or unexported fields
}

func (NullableIdentityWithCredentialsPassword) Get ¶

func (NullableIdentityWithCredentialsPassword) IsSet ¶

func (NullableIdentityWithCredentialsPassword) MarshalJSON ¶

func (v NullableIdentityWithCredentialsPassword) MarshalJSON() ([]byte, error)

func (*NullableIdentityWithCredentialsPassword) Set ¶

func (*NullableIdentityWithCredentialsPassword) UnmarshalJSON ¶

func (v *NullableIdentityWithCredentialsPassword) UnmarshalJSON(src []byte) error

func (*NullableIdentityWithCredentialsPassword) Unset ¶

type NullableIdentityWithCredentialsPasswordConfig ¶

type NullableIdentityWithCredentialsPasswordConfig struct {
	// contains filtered or unexported fields
}

func (NullableIdentityWithCredentialsPasswordConfig) Get ¶

func (NullableIdentityWithCredentialsPasswordConfig) IsSet ¶

func (NullableIdentityWithCredentialsPasswordConfig) MarshalJSON ¶

func (*NullableIdentityWithCredentialsPasswordConfig) Set ¶

func (*NullableIdentityWithCredentialsPasswordConfig) UnmarshalJSON ¶

func (*NullableIdentityWithCredentialsPasswordConfig) Unset ¶

type NullableInt ¶

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt ¶

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get ¶

func (v NullableInt) Get() *int

func (NullableInt) IsSet ¶

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON ¶

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set ¶

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON ¶

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset ¶

func (v *NullableInt) Unset()

type NullableInt32 ¶

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32 ¶

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get ¶

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet ¶

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON ¶

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set ¶

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON ¶

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset ¶

func (v *NullableInt32) Unset()

type NullableInt64 ¶

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64 ¶

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get ¶

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet ¶

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON ¶

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set ¶

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON ¶

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset ¶

func (v *NullableInt64) Unset()

type NullableInternalGetProjectBrandingBody ¶

type NullableInternalGetProjectBrandingBody struct {
	// contains filtered or unexported fields
}

func (NullableInternalGetProjectBrandingBody) Get ¶

func (NullableInternalGetProjectBrandingBody) IsSet ¶

func (NullableInternalGetProjectBrandingBody) MarshalJSON ¶

func (v NullableInternalGetProjectBrandingBody) MarshalJSON() ([]byte, error)

func (*NullableInternalGetProjectBrandingBody) Set ¶

func (*NullableInternalGetProjectBrandingBody) UnmarshalJSON ¶

func (v *NullableInternalGetProjectBrandingBody) UnmarshalJSON(src []byte) error

func (*NullableInternalGetProjectBrandingBody) Unset ¶

type NullableInternalIsAXWelcomeScreenEnabledForProjectBody ¶

type NullableInternalIsAXWelcomeScreenEnabledForProjectBody struct {
	// contains filtered or unexported fields
}

func (NullableInternalIsAXWelcomeScreenEnabledForProjectBody) Get ¶

func (NullableInternalIsAXWelcomeScreenEnabledForProjectBody) IsSet ¶

func (NullableInternalIsAXWelcomeScreenEnabledForProjectBody) MarshalJSON ¶

func (*NullableInternalIsAXWelcomeScreenEnabledForProjectBody) Set ¶

func (*NullableInternalIsAXWelcomeScreenEnabledForProjectBody) UnmarshalJSON ¶

func (*NullableInternalIsAXWelcomeScreenEnabledForProjectBody) Unset ¶

type NullableInternalIsOwnerForProjectBySlugBody ¶

type NullableInternalIsOwnerForProjectBySlugBody struct {
	// contains filtered or unexported fields
}

func (NullableInternalIsOwnerForProjectBySlugBody) Get ¶

func (NullableInternalIsOwnerForProjectBySlugBody) IsSet ¶

func (NullableInternalIsOwnerForProjectBySlugBody) MarshalJSON ¶

func (*NullableInternalIsOwnerForProjectBySlugBody) Set ¶

func (*NullableInternalIsOwnerForProjectBySlugBody) UnmarshalJSON ¶

func (v *NullableInternalIsOwnerForProjectBySlugBody) UnmarshalJSON(src []byte) error

func (*NullableInternalIsOwnerForProjectBySlugBody) Unset ¶

type NullableInternalIsOwnerForProjectBySlugResponse ¶

type NullableInternalIsOwnerForProjectBySlugResponse struct {
	// contains filtered or unexported fields
}

func (NullableInternalIsOwnerForProjectBySlugResponse) Get ¶

func (NullableInternalIsOwnerForProjectBySlugResponse) IsSet ¶

func (NullableInternalIsOwnerForProjectBySlugResponse) MarshalJSON ¶

func (*NullableInternalIsOwnerForProjectBySlugResponse) Set ¶

func (*NullableInternalIsOwnerForProjectBySlugResponse) UnmarshalJSON ¶

func (*NullableInternalIsOwnerForProjectBySlugResponse) Unset ¶

type NullableInternalProvisionMockSubscription ¶

type NullableInternalProvisionMockSubscription struct {
	// contains filtered or unexported fields
}

func (NullableInternalProvisionMockSubscription) Get ¶

func (NullableInternalProvisionMockSubscription) IsSet ¶

func (NullableInternalProvisionMockSubscription) MarshalJSON ¶

func (*NullableInternalProvisionMockSubscription) Set ¶

func (*NullableInternalProvisionMockSubscription) UnmarshalJSON ¶

func (v *NullableInternalProvisionMockSubscription) UnmarshalJSON(src []byte) error

func (*NullableInternalProvisionMockSubscription) Unset ¶

type NullableIntrospectedOAuth2Token ¶

type NullableIntrospectedOAuth2Token struct {
	// contains filtered or unexported fields
}

func (NullableIntrospectedOAuth2Token) Get ¶

func (NullableIntrospectedOAuth2Token) IsSet ¶

func (NullableIntrospectedOAuth2Token) MarshalJSON ¶

func (v NullableIntrospectedOAuth2Token) MarshalJSON() ([]byte, error)

func (*NullableIntrospectedOAuth2Token) Set ¶

func (*NullableIntrospectedOAuth2Token) UnmarshalJSON ¶

func (v *NullableIntrospectedOAuth2Token) UnmarshalJSON(src []byte) error

func (*NullableIntrospectedOAuth2Token) Unset ¶

type NullableIsOwnerForProjectBySlug ¶

type NullableIsOwnerForProjectBySlug struct {
	// contains filtered or unexported fields
}

func (NullableIsOwnerForProjectBySlug) Get ¶

func (NullableIsOwnerForProjectBySlug) IsSet ¶

func (NullableIsOwnerForProjectBySlug) MarshalJSON ¶

func (v NullableIsOwnerForProjectBySlug) MarshalJSON() ([]byte, error)

func (*NullableIsOwnerForProjectBySlug) Set ¶

func (*NullableIsOwnerForProjectBySlug) UnmarshalJSON ¶

func (v *NullableIsOwnerForProjectBySlug) UnmarshalJSON(src []byte) error

func (*NullableIsOwnerForProjectBySlug) Unset ¶

type NullableIsReady200Response ¶

type NullableIsReady200Response struct {
	// contains filtered or unexported fields
}

func NewNullableIsReady200Response ¶

func NewNullableIsReady200Response(val *IsReady200Response) *NullableIsReady200Response

func (NullableIsReady200Response) Get ¶

func (NullableIsReady200Response) IsSet ¶

func (v NullableIsReady200Response) IsSet() bool

func (NullableIsReady200Response) MarshalJSON ¶

func (v NullableIsReady200Response) MarshalJSON() ([]byte, error)

func (*NullableIsReady200Response) Set ¶

func (*NullableIsReady200Response) UnmarshalJSON ¶

func (v *NullableIsReady200Response) UnmarshalJSON(src []byte) error

func (*NullableIsReady200Response) Unset ¶

func (v *NullableIsReady200Response) Unset()

type NullableIsReady503Response ¶

type NullableIsReady503Response struct {
	// contains filtered or unexported fields
}

func NewNullableIsReady503Response ¶

func NewNullableIsReady503Response(val *IsReady503Response) *NullableIsReady503Response

func (NullableIsReady503Response) Get ¶

func (NullableIsReady503Response) IsSet ¶

func (v NullableIsReady503Response) IsSet() bool

func (NullableIsReady503Response) MarshalJSON ¶

func (v NullableIsReady503Response) MarshalJSON() ([]byte, error)

func (*NullableIsReady503Response) Set ¶

func (*NullableIsReady503Response) UnmarshalJSON ¶

func (v *NullableIsReady503Response) UnmarshalJSON(src []byte) error

func (*NullableIsReady503Response) Unset ¶

func (v *NullableIsReady503Response) Unset()

type NullableJsonPatch ¶

type NullableJsonPatch struct {
	// contains filtered or unexported fields
}

func NewNullableJsonPatch ¶

func NewNullableJsonPatch(val *JsonPatch) *NullableJsonPatch

func (NullableJsonPatch) Get ¶

func (v NullableJsonPatch) Get() *JsonPatch

func (NullableJsonPatch) IsSet ¶

func (v NullableJsonPatch) IsSet() bool

func (NullableJsonPatch) MarshalJSON ¶

func (v NullableJsonPatch) MarshalJSON() ([]byte, error)

func (*NullableJsonPatch) Set ¶

func (v *NullableJsonPatch) Set(val *JsonPatch)

func (*NullableJsonPatch) UnmarshalJSON ¶

func (v *NullableJsonPatch) UnmarshalJSON(src []byte) error

func (*NullableJsonPatch) Unset ¶

func (v *NullableJsonPatch) Unset()

type NullableJsonWebKey ¶

type NullableJsonWebKey struct {
	// contains filtered or unexported fields
}

func NewNullableJsonWebKey ¶

func NewNullableJsonWebKey(val *JsonWebKey) *NullableJsonWebKey

func (NullableJsonWebKey) Get ¶

func (v NullableJsonWebKey) Get() *JsonWebKey

func (NullableJsonWebKey) IsSet ¶

func (v NullableJsonWebKey) IsSet() bool

func (NullableJsonWebKey) MarshalJSON ¶

func (v NullableJsonWebKey) MarshalJSON() ([]byte, error)

func (*NullableJsonWebKey) Set ¶

func (v *NullableJsonWebKey) Set(val *JsonWebKey)

func (*NullableJsonWebKey) UnmarshalJSON ¶

func (v *NullableJsonWebKey) UnmarshalJSON(src []byte) error

func (*NullableJsonWebKey) Unset ¶

func (v *NullableJsonWebKey) Unset()

type NullableJsonWebKeySet ¶

type NullableJsonWebKeySet struct {
	// contains filtered or unexported fields
}

func NewNullableJsonWebKeySet ¶

func NewNullableJsonWebKeySet(val *JsonWebKeySet) *NullableJsonWebKeySet

func (NullableJsonWebKeySet) Get ¶

func (NullableJsonWebKeySet) IsSet ¶

func (v NullableJsonWebKeySet) IsSet() bool

func (NullableJsonWebKeySet) MarshalJSON ¶

func (v NullableJsonWebKeySet) MarshalJSON() ([]byte, error)

func (*NullableJsonWebKeySet) Set ¶

func (v *NullableJsonWebKeySet) Set(val *JsonWebKeySet)

func (*NullableJsonWebKeySet) UnmarshalJSON ¶

func (v *NullableJsonWebKeySet) UnmarshalJSON(src []byte) error

func (*NullableJsonWebKeySet) Unset ¶

func (v *NullableJsonWebKeySet) Unset()

type NullableKetoNamespace ¶

type NullableKetoNamespace struct {
	// contains filtered or unexported fields
}

func NewNullableKetoNamespace ¶

func NewNullableKetoNamespace(val *KetoNamespace) *NullableKetoNamespace

func (NullableKetoNamespace) Get ¶

func (NullableKetoNamespace) IsSet ¶

func (v NullableKetoNamespace) IsSet() bool

func (NullableKetoNamespace) MarshalJSON ¶

func (v NullableKetoNamespace) MarshalJSON() ([]byte, error)

func (*NullableKetoNamespace) Set ¶

func (v *NullableKetoNamespace) Set(val *KetoNamespace)

func (*NullableKetoNamespace) UnmarshalJSON ¶

func (v *NullableKetoNamespace) UnmarshalJSON(src []byte) error

func (*NullableKetoNamespace) Unset ¶

func (v *NullableKetoNamespace) Unset()

type NullableListEventStreams ¶

type NullableListEventStreams struct {
	// contains filtered or unexported fields
}

func NewNullableListEventStreams ¶

func NewNullableListEventStreams(val *ListEventStreams) *NullableListEventStreams

func (NullableListEventStreams) Get ¶

func (NullableListEventStreams) IsSet ¶

func (v NullableListEventStreams) IsSet() bool

func (NullableListEventStreams) MarshalJSON ¶

func (v NullableListEventStreams) MarshalJSON() ([]byte, error)

func (*NullableListEventStreams) Set ¶

func (*NullableListEventStreams) UnmarshalJSON ¶

func (v *NullableListEventStreams) UnmarshalJSON(src []byte) error

func (*NullableListEventStreams) Unset ¶

func (v *NullableListEventStreams) Unset()

type NullableListMyWorkspacesResponse ¶

type NullableListMyWorkspacesResponse struct {
	// contains filtered or unexported fields
}

func (NullableListMyWorkspacesResponse) Get ¶

func (NullableListMyWorkspacesResponse) IsSet ¶

func (NullableListMyWorkspacesResponse) MarshalJSON ¶

func (v NullableListMyWorkspacesResponse) MarshalJSON() ([]byte, error)

func (*NullableListMyWorkspacesResponse) Set ¶

func (*NullableListMyWorkspacesResponse) UnmarshalJSON ¶

func (v *NullableListMyWorkspacesResponse) UnmarshalJSON(src []byte) error

func (*NullableListMyWorkspacesResponse) Unset ¶

type NullableListOrganizationsResponse ¶

type NullableListOrganizationsResponse struct {
	// contains filtered or unexported fields
}

func (NullableListOrganizationsResponse) Get ¶

func (NullableListOrganizationsResponse) IsSet ¶

func (NullableListOrganizationsResponse) MarshalJSON ¶

func (v NullableListOrganizationsResponse) MarshalJSON() ([]byte, error)

func (*NullableListOrganizationsResponse) Set ¶

func (*NullableListOrganizationsResponse) UnmarshalJSON ¶

func (v *NullableListOrganizationsResponse) UnmarshalJSON(src []byte) error

func (*NullableListOrganizationsResponse) Unset ¶

type NullableLoginFlow ¶

type NullableLoginFlow struct {
	// contains filtered or unexported fields
}

func NewNullableLoginFlow ¶

func NewNullableLoginFlow(val *LoginFlow) *NullableLoginFlow

func (NullableLoginFlow) Get ¶

func (v NullableLoginFlow) Get() *LoginFlow

func (NullableLoginFlow) IsSet ¶

func (v NullableLoginFlow) IsSet() bool

func (NullableLoginFlow) MarshalJSON ¶

func (v NullableLoginFlow) MarshalJSON() ([]byte, error)

func (*NullableLoginFlow) Set ¶

func (v *NullableLoginFlow) Set(val *LoginFlow)

func (*NullableLoginFlow) UnmarshalJSON ¶

func (v *NullableLoginFlow) UnmarshalJSON(src []byte) error

func (*NullableLoginFlow) Unset ¶

func (v *NullableLoginFlow) Unset()

type NullableLogoutFlow ¶

type NullableLogoutFlow struct {
	// contains filtered or unexported fields
}

func NewNullableLogoutFlow ¶

func NewNullableLogoutFlow(val *LogoutFlow) *NullableLogoutFlow

func (NullableLogoutFlow) Get ¶

func (v NullableLogoutFlow) Get() *LogoutFlow

func (NullableLogoutFlow) IsSet ¶

func (v NullableLogoutFlow) IsSet() bool

func (NullableLogoutFlow) MarshalJSON ¶

func (v NullableLogoutFlow) MarshalJSON() ([]byte, error)

func (*NullableLogoutFlow) Set ¶

func (v *NullableLogoutFlow) Set(val *LogoutFlow)

func (*NullableLogoutFlow) UnmarshalJSON ¶

func (v *NullableLogoutFlow) UnmarshalJSON(src []byte) error

func (*NullableLogoutFlow) Unset ¶

func (v *NullableLogoutFlow) Unset()

type NullableManagedIdentitySchema ¶

type NullableManagedIdentitySchema struct {
	// contains filtered or unexported fields
}

func (NullableManagedIdentitySchema) Get ¶

func (NullableManagedIdentitySchema) IsSet ¶

func (NullableManagedIdentitySchema) MarshalJSON ¶

func (v NullableManagedIdentitySchema) MarshalJSON() ([]byte, error)

func (*NullableManagedIdentitySchema) Set ¶

func (*NullableManagedIdentitySchema) UnmarshalJSON ¶

func (v *NullableManagedIdentitySchema) UnmarshalJSON(src []byte) error

func (*NullableManagedIdentitySchema) Unset ¶

func (v *NullableManagedIdentitySchema) Unset()

type NullableManagedIdentitySchemaValidationResult ¶

type NullableManagedIdentitySchemaValidationResult struct {
	// contains filtered or unexported fields
}

func (NullableManagedIdentitySchemaValidationResult) Get ¶

func (NullableManagedIdentitySchemaValidationResult) IsSet ¶

func (NullableManagedIdentitySchemaValidationResult) MarshalJSON ¶

func (*NullableManagedIdentitySchemaValidationResult) Set ¶

func (*NullableManagedIdentitySchemaValidationResult) UnmarshalJSON ¶

func (*NullableManagedIdentitySchemaValidationResult) Unset ¶

type NullableMemberInvite ¶

type NullableMemberInvite struct {
	// contains filtered or unexported fields
}

func NewNullableMemberInvite ¶

func NewNullableMemberInvite(val *MemberInvite) *NullableMemberInvite

func (NullableMemberInvite) Get ¶

func (NullableMemberInvite) IsSet ¶

func (v NullableMemberInvite) IsSet() bool

func (NullableMemberInvite) MarshalJSON ¶

func (v NullableMemberInvite) MarshalJSON() ([]byte, error)

func (*NullableMemberInvite) Set ¶

func (v *NullableMemberInvite) Set(val *MemberInvite)

func (*NullableMemberInvite) UnmarshalJSON ¶

func (v *NullableMemberInvite) UnmarshalJSON(src []byte) error

func (*NullableMemberInvite) Unset ¶

func (v *NullableMemberInvite) Unset()

type NullableMessage ¶

type NullableMessage struct {
	// contains filtered or unexported fields
}

func NewNullableMessage ¶

func NewNullableMessage(val *Message) *NullableMessage

func (NullableMessage) Get ¶

func (v NullableMessage) Get() *Message

func (NullableMessage) IsSet ¶

func (v NullableMessage) IsSet() bool

func (NullableMessage) MarshalJSON ¶

func (v NullableMessage) MarshalJSON() ([]byte, error)

func (*NullableMessage) Set ¶

func (v *NullableMessage) Set(val *Message)

func (*NullableMessage) UnmarshalJSON ¶

func (v *NullableMessage) UnmarshalJSON(src []byte) error

func (*NullableMessage) Unset ¶

func (v *NullableMessage) Unset()

type NullableMessageDispatch ¶

type NullableMessageDispatch struct {
	// contains filtered or unexported fields
}

func NewNullableMessageDispatch ¶

func NewNullableMessageDispatch(val *MessageDispatch) *NullableMessageDispatch

func (NullableMessageDispatch) Get ¶

func (NullableMessageDispatch) IsSet ¶

func (v NullableMessageDispatch) IsSet() bool

func (NullableMessageDispatch) MarshalJSON ¶

func (v NullableMessageDispatch) MarshalJSON() ([]byte, error)

func (*NullableMessageDispatch) Set ¶

func (*NullableMessageDispatch) UnmarshalJSON ¶

func (v *NullableMessageDispatch) UnmarshalJSON(src []byte) error

func (*NullableMessageDispatch) Unset ¶

func (v *NullableMessageDispatch) Unset()

type NullableMetricsDatapoint ¶

type NullableMetricsDatapoint struct {
	// contains filtered or unexported fields
}

func NewNullableMetricsDatapoint ¶

func NewNullableMetricsDatapoint(val *MetricsDatapoint) *NullableMetricsDatapoint

func (NullableMetricsDatapoint) Get ¶

func (NullableMetricsDatapoint) IsSet ¶

func (v NullableMetricsDatapoint) IsSet() bool

func (NullableMetricsDatapoint) MarshalJSON ¶

func (v NullableMetricsDatapoint) MarshalJSON() ([]byte, error)

func (*NullableMetricsDatapoint) Set ¶

func (*NullableMetricsDatapoint) UnmarshalJSON ¶

func (v *NullableMetricsDatapoint) UnmarshalJSON(src []byte) error

func (*NullableMetricsDatapoint) Unset ¶

func (v *NullableMetricsDatapoint) Unset()

type NullableNamespace ¶

type NullableNamespace struct {
	// contains filtered or unexported fields
}

func NewNullableNamespace ¶

func NewNullableNamespace(val *Namespace) *NullableNamespace

func (NullableNamespace) Get ¶

func (v NullableNamespace) Get() *Namespace

func (NullableNamespace) IsSet ¶

func (v NullableNamespace) IsSet() bool

func (NullableNamespace) MarshalJSON ¶

func (v NullableNamespace) MarshalJSON() ([]byte, error)

func (*NullableNamespace) Set ¶

func (v *NullableNamespace) Set(val *Namespace)

func (*NullableNamespace) UnmarshalJSON ¶

func (v *NullableNamespace) UnmarshalJSON(src []byte) error

func (*NullableNamespace) Unset ¶

func (v *NullableNamespace) Unset()

type NullableNeedsPrivilegedSessionError ¶

type NullableNeedsPrivilegedSessionError struct {
	// contains filtered or unexported fields
}

func (NullableNeedsPrivilegedSessionError) Get ¶

func (NullableNeedsPrivilegedSessionError) IsSet ¶

func (NullableNeedsPrivilegedSessionError) MarshalJSON ¶

func (v NullableNeedsPrivilegedSessionError) MarshalJSON() ([]byte, error)

func (*NullableNeedsPrivilegedSessionError) Set ¶

func (*NullableNeedsPrivilegedSessionError) UnmarshalJSON ¶

func (v *NullableNeedsPrivilegedSessionError) UnmarshalJSON(src []byte) error

func (*NullableNeedsPrivilegedSessionError) Unset ¶

type NullableNormalizedProject ¶

type NullableNormalizedProject struct {
	// contains filtered or unexported fields
}

func NewNullableNormalizedProject ¶

func NewNullableNormalizedProject(val *NormalizedProject) *NullableNormalizedProject

func (NullableNormalizedProject) Get ¶

func (NullableNormalizedProject) IsSet ¶

func (v NullableNormalizedProject) IsSet() bool

func (NullableNormalizedProject) MarshalJSON ¶

func (v NullableNormalizedProject) MarshalJSON() ([]byte, error)

func (*NullableNormalizedProject) Set ¶

func (*NullableNormalizedProject) UnmarshalJSON ¶

func (v *NullableNormalizedProject) UnmarshalJSON(src []byte) error

func (*NullableNormalizedProject) Unset ¶

func (v *NullableNormalizedProject) Unset()

type NullableNormalizedProjectRevision ¶

type NullableNormalizedProjectRevision struct {
	// contains filtered or unexported fields
}

func (NullableNormalizedProjectRevision) Get ¶

func (NullableNormalizedProjectRevision) IsSet ¶

func (NullableNormalizedProjectRevision) MarshalJSON ¶

func (v NullableNormalizedProjectRevision) MarshalJSON() ([]byte, error)

func (*NullableNormalizedProjectRevision) Set ¶

func (*NullableNormalizedProjectRevision) UnmarshalJSON ¶

func (v *NullableNormalizedProjectRevision) UnmarshalJSON(src []byte) error

func (*NullableNormalizedProjectRevision) Unset ¶

type NullableNormalizedProjectRevisionCourierChannel ¶

type NullableNormalizedProjectRevisionCourierChannel struct {
	// contains filtered or unexported fields
}

func (NullableNormalizedProjectRevisionCourierChannel) Get ¶

func (NullableNormalizedProjectRevisionCourierChannel) IsSet ¶

func (NullableNormalizedProjectRevisionCourierChannel) MarshalJSON ¶

func (*NullableNormalizedProjectRevisionCourierChannel) Set ¶

func (*NullableNormalizedProjectRevisionCourierChannel) UnmarshalJSON ¶

func (*NullableNormalizedProjectRevisionCourierChannel) Unset ¶

type NullableNormalizedProjectRevisionHook ¶

type NullableNormalizedProjectRevisionHook struct {
	// contains filtered or unexported fields
}

func (NullableNormalizedProjectRevisionHook) Get ¶

func (NullableNormalizedProjectRevisionHook) IsSet ¶

func (NullableNormalizedProjectRevisionHook) MarshalJSON ¶

func (v NullableNormalizedProjectRevisionHook) MarshalJSON() ([]byte, error)

func (*NullableNormalizedProjectRevisionHook) Set ¶

func (*NullableNormalizedProjectRevisionHook) UnmarshalJSON ¶

func (v *NullableNormalizedProjectRevisionHook) UnmarshalJSON(src []byte) error

func (*NullableNormalizedProjectRevisionHook) Unset ¶

type NullableNormalizedProjectRevisionIdentitySchema ¶

type NullableNormalizedProjectRevisionIdentitySchema struct {
	// contains filtered or unexported fields
}

func (NullableNormalizedProjectRevisionIdentitySchema) Get ¶

func (NullableNormalizedProjectRevisionIdentitySchema) IsSet ¶

func (NullableNormalizedProjectRevisionIdentitySchema) MarshalJSON ¶

func (*NullableNormalizedProjectRevisionIdentitySchema) Set ¶

func (*NullableNormalizedProjectRevisionIdentitySchema) UnmarshalJSON ¶

func (*NullableNormalizedProjectRevisionIdentitySchema) Unset ¶

type NullableNormalizedProjectRevisionThirdPartyProvider ¶

type NullableNormalizedProjectRevisionThirdPartyProvider struct {
	// contains filtered or unexported fields
}

func (NullableNormalizedProjectRevisionThirdPartyProvider) Get ¶

func (NullableNormalizedProjectRevisionThirdPartyProvider) IsSet ¶

func (NullableNormalizedProjectRevisionThirdPartyProvider) MarshalJSON ¶

func (*NullableNormalizedProjectRevisionThirdPartyProvider) Set ¶

func (*NullableNormalizedProjectRevisionThirdPartyProvider) UnmarshalJSON ¶

func (*NullableNormalizedProjectRevisionThirdPartyProvider) Unset ¶

type NullableNormalizedProjectRevisionTokenizerTemplate ¶

type NullableNormalizedProjectRevisionTokenizerTemplate struct {
	// contains filtered or unexported fields
}

func (NullableNormalizedProjectRevisionTokenizerTemplate) Get ¶

func (NullableNormalizedProjectRevisionTokenizerTemplate) IsSet ¶

func (NullableNormalizedProjectRevisionTokenizerTemplate) MarshalJSON ¶

func (*NullableNormalizedProjectRevisionTokenizerTemplate) Set ¶

func (*NullableNormalizedProjectRevisionTokenizerTemplate) UnmarshalJSON ¶

func (*NullableNormalizedProjectRevisionTokenizerTemplate) Unset ¶

type NullableOAuth2Client ¶

type NullableOAuth2Client struct {
	// contains filtered or unexported fields
}

func NewNullableOAuth2Client ¶

func NewNullableOAuth2Client(val *OAuth2Client) *NullableOAuth2Client

func (NullableOAuth2Client) Get ¶

func (NullableOAuth2Client) IsSet ¶

func (v NullableOAuth2Client) IsSet() bool

func (NullableOAuth2Client) MarshalJSON ¶

func (v NullableOAuth2Client) MarshalJSON() ([]byte, error)

func (*NullableOAuth2Client) Set ¶

func (v *NullableOAuth2Client) Set(val *OAuth2Client)

func (*NullableOAuth2Client) UnmarshalJSON ¶

func (v *NullableOAuth2Client) UnmarshalJSON(src []byte) error

func (*NullableOAuth2Client) Unset ¶

func (v *NullableOAuth2Client) Unset()

type NullableOAuth2ClientTokenLifespans ¶

type NullableOAuth2ClientTokenLifespans struct {
	// contains filtered or unexported fields
}

func (NullableOAuth2ClientTokenLifespans) Get ¶

func (NullableOAuth2ClientTokenLifespans) IsSet ¶

func (NullableOAuth2ClientTokenLifespans) MarshalJSON ¶

func (v NullableOAuth2ClientTokenLifespans) MarshalJSON() ([]byte, error)

func (*NullableOAuth2ClientTokenLifespans) Set ¶

func (*NullableOAuth2ClientTokenLifespans) UnmarshalJSON ¶

func (v *NullableOAuth2ClientTokenLifespans) UnmarshalJSON(src []byte) error

func (*NullableOAuth2ClientTokenLifespans) Unset ¶

type NullableOAuth2ConsentRequest ¶

type NullableOAuth2ConsentRequest struct {
	// contains filtered or unexported fields
}

func (NullableOAuth2ConsentRequest) Get ¶

func (NullableOAuth2ConsentRequest) IsSet ¶

func (NullableOAuth2ConsentRequest) MarshalJSON ¶

func (v NullableOAuth2ConsentRequest) MarshalJSON() ([]byte, error)

func (*NullableOAuth2ConsentRequest) Set ¶

func (*NullableOAuth2ConsentRequest) UnmarshalJSON ¶

func (v *NullableOAuth2ConsentRequest) UnmarshalJSON(src []byte) error

func (*NullableOAuth2ConsentRequest) Unset ¶

func (v *NullableOAuth2ConsentRequest) Unset()

type NullableOAuth2ConsentRequestOpenIDConnectContext ¶

type NullableOAuth2ConsentRequestOpenIDConnectContext struct {
	// contains filtered or unexported fields
}

func (NullableOAuth2ConsentRequestOpenIDConnectContext) Get ¶

func (NullableOAuth2ConsentRequestOpenIDConnectContext) IsSet ¶

func (NullableOAuth2ConsentRequestOpenIDConnectContext) MarshalJSON ¶

func (*NullableOAuth2ConsentRequestOpenIDConnectContext) Set ¶

func (*NullableOAuth2ConsentRequestOpenIDConnectContext) UnmarshalJSON ¶

func (*NullableOAuth2ConsentRequestOpenIDConnectContext) Unset ¶

type NullableOAuth2ConsentSession ¶

type NullableOAuth2ConsentSession struct {
	// contains filtered or unexported fields
}

func (NullableOAuth2ConsentSession) Get ¶

func (NullableOAuth2ConsentSession) IsSet ¶

func (NullableOAuth2ConsentSession) MarshalJSON ¶

func (v NullableOAuth2ConsentSession) MarshalJSON() ([]byte, error)

func (*NullableOAuth2ConsentSession) Set ¶

func (*NullableOAuth2ConsentSession) UnmarshalJSON ¶

func (v *NullableOAuth2ConsentSession) UnmarshalJSON(src []byte) error

func (*NullableOAuth2ConsentSession) Unset ¶

func (v *NullableOAuth2ConsentSession) Unset()

type NullableOAuth2ConsentSessionExpiresAt ¶

type NullableOAuth2ConsentSessionExpiresAt struct {
	// contains filtered or unexported fields
}

func (NullableOAuth2ConsentSessionExpiresAt) Get ¶

func (NullableOAuth2ConsentSessionExpiresAt) IsSet ¶

func (NullableOAuth2ConsentSessionExpiresAt) MarshalJSON ¶

func (v NullableOAuth2ConsentSessionExpiresAt) MarshalJSON() ([]byte, error)

func (*NullableOAuth2ConsentSessionExpiresAt) Set ¶

func (*NullableOAuth2ConsentSessionExpiresAt) UnmarshalJSON ¶

func (v *NullableOAuth2ConsentSessionExpiresAt) UnmarshalJSON(src []byte) error

func (*NullableOAuth2ConsentSessionExpiresAt) Unset ¶

type NullableOAuth2LoginRequest ¶

type NullableOAuth2LoginRequest struct {
	// contains filtered or unexported fields
}

func NewNullableOAuth2LoginRequest ¶

func NewNullableOAuth2LoginRequest(val *OAuth2LoginRequest) *NullableOAuth2LoginRequest

func (NullableOAuth2LoginRequest) Get ¶

func (NullableOAuth2LoginRequest) IsSet ¶

func (v NullableOAuth2LoginRequest) IsSet() bool

func (NullableOAuth2LoginRequest) MarshalJSON ¶

func (v NullableOAuth2LoginRequest) MarshalJSON() ([]byte, error)

func (*NullableOAuth2LoginRequest) Set ¶

func (*NullableOAuth2LoginRequest) UnmarshalJSON ¶

func (v *NullableOAuth2LoginRequest) UnmarshalJSON(src []byte) error

func (*NullableOAuth2LoginRequest) Unset ¶

func (v *NullableOAuth2LoginRequest) Unset()

type NullableOAuth2LogoutRequest ¶

type NullableOAuth2LogoutRequest struct {
	// contains filtered or unexported fields
}

func (NullableOAuth2LogoutRequest) Get ¶

func (NullableOAuth2LogoutRequest) IsSet ¶

func (NullableOAuth2LogoutRequest) MarshalJSON ¶

func (v NullableOAuth2LogoutRequest) MarshalJSON() ([]byte, error)

func (*NullableOAuth2LogoutRequest) Set ¶

func (*NullableOAuth2LogoutRequest) UnmarshalJSON ¶

func (v *NullableOAuth2LogoutRequest) UnmarshalJSON(src []byte) error

func (*NullableOAuth2LogoutRequest) Unset ¶

func (v *NullableOAuth2LogoutRequest) Unset()

type NullableOAuth2RedirectTo ¶

type NullableOAuth2RedirectTo struct {
	// contains filtered or unexported fields
}

func NewNullableOAuth2RedirectTo ¶

func NewNullableOAuth2RedirectTo(val *OAuth2RedirectTo) *NullableOAuth2RedirectTo

func (NullableOAuth2RedirectTo) Get ¶

func (NullableOAuth2RedirectTo) IsSet ¶

func (v NullableOAuth2RedirectTo) IsSet() bool

func (NullableOAuth2RedirectTo) MarshalJSON ¶

func (v NullableOAuth2RedirectTo) MarshalJSON() ([]byte, error)

func (*NullableOAuth2RedirectTo) Set ¶

func (*NullableOAuth2RedirectTo) UnmarshalJSON ¶

func (v *NullableOAuth2RedirectTo) UnmarshalJSON(src []byte) error

func (*NullableOAuth2RedirectTo) Unset ¶

func (v *NullableOAuth2RedirectTo) Unset()

type NullableOAuth2TokenExchange ¶

type NullableOAuth2TokenExchange struct {
	// contains filtered or unexported fields
}

func (NullableOAuth2TokenExchange) Get ¶

func (NullableOAuth2TokenExchange) IsSet ¶

func (NullableOAuth2TokenExchange) MarshalJSON ¶

func (v NullableOAuth2TokenExchange) MarshalJSON() ([]byte, error)

func (*NullableOAuth2TokenExchange) Set ¶

func (*NullableOAuth2TokenExchange) UnmarshalJSON ¶

func (v *NullableOAuth2TokenExchange) UnmarshalJSON(src []byte) error

func (*NullableOAuth2TokenExchange) Unset ¶

func (v *NullableOAuth2TokenExchange) Unset()

type NullableOidcConfiguration ¶

type NullableOidcConfiguration struct {
	// contains filtered or unexported fields
}

func NewNullableOidcConfiguration ¶

func NewNullableOidcConfiguration(val *OidcConfiguration) *NullableOidcConfiguration

func (NullableOidcConfiguration) Get ¶

func (NullableOidcConfiguration) IsSet ¶

func (v NullableOidcConfiguration) IsSet() bool

func (NullableOidcConfiguration) MarshalJSON ¶

func (v NullableOidcConfiguration) MarshalJSON() ([]byte, error)

func (*NullableOidcConfiguration) Set ¶

func (*NullableOidcConfiguration) UnmarshalJSON ¶

func (v *NullableOidcConfiguration) UnmarshalJSON(src []byte) error

func (*NullableOidcConfiguration) Unset ¶

func (v *NullableOidcConfiguration) Unset()

type NullableOidcUserInfo ¶

type NullableOidcUserInfo struct {
	// contains filtered or unexported fields
}

func NewNullableOidcUserInfo ¶

func NewNullableOidcUserInfo(val *OidcUserInfo) *NullableOidcUserInfo

func (NullableOidcUserInfo) Get ¶

func (NullableOidcUserInfo) IsSet ¶

func (v NullableOidcUserInfo) IsSet() bool

func (NullableOidcUserInfo) MarshalJSON ¶

func (v NullableOidcUserInfo) MarshalJSON() ([]byte, error)

func (*NullableOidcUserInfo) Set ¶

func (v *NullableOidcUserInfo) Set(val *OidcUserInfo)

func (*NullableOidcUserInfo) UnmarshalJSON ¶

func (v *NullableOidcUserInfo) UnmarshalJSON(src []byte) error

func (*NullableOidcUserInfo) Unset ¶

func (v *NullableOidcUserInfo) Unset()

type NullableOrganization ¶

type NullableOrganization struct {
	// contains filtered or unexported fields
}

func NewNullableOrganization ¶

func NewNullableOrganization(val *Organization) *NullableOrganization

func (NullableOrganization) Get ¶

func (NullableOrganization) IsSet ¶

func (v NullableOrganization) IsSet() bool

func (NullableOrganization) MarshalJSON ¶

func (v NullableOrganization) MarshalJSON() ([]byte, error)

func (*NullableOrganization) Set ¶

func (v *NullableOrganization) Set(val *Organization)

func (*NullableOrganization) UnmarshalJSON ¶

func (v *NullableOrganization) UnmarshalJSON(src []byte) error

func (*NullableOrganization) Unset ¶

func (v *NullableOrganization) Unset()

type NullableOrganizationBody ¶

type NullableOrganizationBody struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationBody ¶

func NewNullableOrganizationBody(val *OrganizationBody) *NullableOrganizationBody

func (NullableOrganizationBody) Get ¶

func (NullableOrganizationBody) IsSet ¶

func (v NullableOrganizationBody) IsSet() bool

func (NullableOrganizationBody) MarshalJSON ¶

func (v NullableOrganizationBody) MarshalJSON() ([]byte, error)

func (*NullableOrganizationBody) Set ¶

func (*NullableOrganizationBody) UnmarshalJSON ¶

func (v *NullableOrganizationBody) UnmarshalJSON(src []byte) error

func (*NullableOrganizationBody) Unset ¶

func (v *NullableOrganizationBody) Unset()

type NullablePagination ¶

type NullablePagination struct {
	// contains filtered or unexported fields
}

func NewNullablePagination ¶

func NewNullablePagination(val *Pagination) *NullablePagination

func (NullablePagination) Get ¶

func (v NullablePagination) Get() *Pagination

func (NullablePagination) IsSet ¶

func (v NullablePagination) IsSet() bool

func (NullablePagination) MarshalJSON ¶

func (v NullablePagination) MarshalJSON() ([]byte, error)

func (*NullablePagination) Set ¶

func (v *NullablePagination) Set(val *Pagination)

func (*NullablePagination) UnmarshalJSON ¶

func (v *NullablePagination) UnmarshalJSON(src []byte) error

func (*NullablePagination) Unset ¶

func (v *NullablePagination) Unset()

type NullablePaginationHeaders ¶

type NullablePaginationHeaders struct {
	// contains filtered or unexported fields
}

func NewNullablePaginationHeaders ¶

func NewNullablePaginationHeaders(val *PaginationHeaders) *NullablePaginationHeaders

func (NullablePaginationHeaders) Get ¶

func (NullablePaginationHeaders) IsSet ¶

func (v NullablePaginationHeaders) IsSet() bool

func (NullablePaginationHeaders) MarshalJSON ¶

func (v NullablePaginationHeaders) MarshalJSON() ([]byte, error)

func (*NullablePaginationHeaders) Set ¶

func (*NullablePaginationHeaders) UnmarshalJSON ¶

func (v *NullablePaginationHeaders) UnmarshalJSON(src []byte) error

func (*NullablePaginationHeaders) Unset ¶

func (v *NullablePaginationHeaders) Unset()

type NullableParseError ¶

type NullableParseError struct {
	// contains filtered or unexported fields
}

func NewNullableParseError ¶

func NewNullableParseError(val *ParseError) *NullableParseError

func (NullableParseError) Get ¶

func (v NullableParseError) Get() *ParseError

func (NullableParseError) IsSet ¶

func (v NullableParseError) IsSet() bool

func (NullableParseError) MarshalJSON ¶

func (v NullableParseError) MarshalJSON() ([]byte, error)

func (*NullableParseError) Set ¶

func (v *NullableParseError) Set(val *ParseError)

func (*NullableParseError) UnmarshalJSON ¶

func (v *NullableParseError) UnmarshalJSON(src []byte) error

func (*NullableParseError) Unset ¶

func (v *NullableParseError) Unset()

type NullablePatchIdentitiesBody ¶

type NullablePatchIdentitiesBody struct {
	// contains filtered or unexported fields
}

func (NullablePatchIdentitiesBody) Get ¶

func (NullablePatchIdentitiesBody) IsSet ¶

func (NullablePatchIdentitiesBody) MarshalJSON ¶

func (v NullablePatchIdentitiesBody) MarshalJSON() ([]byte, error)

func (*NullablePatchIdentitiesBody) Set ¶

func (*NullablePatchIdentitiesBody) UnmarshalJSON ¶

func (v *NullablePatchIdentitiesBody) UnmarshalJSON(src []byte) error

func (*NullablePatchIdentitiesBody) Unset ¶

func (v *NullablePatchIdentitiesBody) Unset()

type NullablePerformNativeLogoutBody ¶

type NullablePerformNativeLogoutBody struct {
	// contains filtered or unexported fields
}

func (NullablePerformNativeLogoutBody) Get ¶

func (NullablePerformNativeLogoutBody) IsSet ¶

func (NullablePerformNativeLogoutBody) MarshalJSON ¶

func (v NullablePerformNativeLogoutBody) MarshalJSON() ([]byte, error)

func (*NullablePerformNativeLogoutBody) Set ¶

func (*NullablePerformNativeLogoutBody) UnmarshalJSON ¶

func (v *NullablePerformNativeLogoutBody) UnmarshalJSON(src []byte) error

func (*NullablePerformNativeLogoutBody) Unset ¶

type NullablePlan ¶

type NullablePlan struct {
	// contains filtered or unexported fields
}

func NewNullablePlan ¶

func NewNullablePlan(val *Plan) *NullablePlan

func (NullablePlan) Get ¶

func (v NullablePlan) Get() *Plan

func (NullablePlan) IsSet ¶

func (v NullablePlan) IsSet() bool

func (NullablePlan) MarshalJSON ¶

func (v NullablePlan) MarshalJSON() ([]byte, error)

func (*NullablePlan) Set ¶

func (v *NullablePlan) Set(val *Plan)

func (*NullablePlan) UnmarshalJSON ¶

func (v *NullablePlan) UnmarshalJSON(src []byte) error

func (*NullablePlan) Unset ¶

func (v *NullablePlan) Unset()

type NullablePlanDetails ¶

type NullablePlanDetails struct {
	// contains filtered or unexported fields
}

func NewNullablePlanDetails ¶

func NewNullablePlanDetails(val *PlanDetails) *NullablePlanDetails

func (NullablePlanDetails) Get ¶

func (NullablePlanDetails) IsSet ¶

func (v NullablePlanDetails) IsSet() bool

func (NullablePlanDetails) MarshalJSON ¶

func (v NullablePlanDetails) MarshalJSON() ([]byte, error)

func (*NullablePlanDetails) Set ¶

func (v *NullablePlanDetails) Set(val *PlanDetails)

func (*NullablePlanDetails) UnmarshalJSON ¶

func (v *NullablePlanDetails) UnmarshalJSON(src []byte) error

func (*NullablePlanDetails) Unset ¶

func (v *NullablePlanDetails) Unset()

type NullablePostCheckPermissionBody ¶

type NullablePostCheckPermissionBody struct {
	// contains filtered or unexported fields
}

func (NullablePostCheckPermissionBody) Get ¶

func (NullablePostCheckPermissionBody) IsSet ¶

func (NullablePostCheckPermissionBody) MarshalJSON ¶

func (v NullablePostCheckPermissionBody) MarshalJSON() ([]byte, error)

func (*NullablePostCheckPermissionBody) Set ¶

func (*NullablePostCheckPermissionBody) UnmarshalJSON ¶

func (v *NullablePostCheckPermissionBody) UnmarshalJSON(src []byte) error

func (*NullablePostCheckPermissionBody) Unset ¶

type NullablePostCheckPermissionOrErrorBody ¶

type NullablePostCheckPermissionOrErrorBody struct {
	// contains filtered or unexported fields
}

func (NullablePostCheckPermissionOrErrorBody) Get ¶

func (NullablePostCheckPermissionOrErrorBody) IsSet ¶

func (NullablePostCheckPermissionOrErrorBody) MarshalJSON ¶

func (v NullablePostCheckPermissionOrErrorBody) MarshalJSON() ([]byte, error)

func (*NullablePostCheckPermissionOrErrorBody) Set ¶

func (*NullablePostCheckPermissionOrErrorBody) UnmarshalJSON ¶

func (v *NullablePostCheckPermissionOrErrorBody) UnmarshalJSON(src []byte) error

func (*NullablePostCheckPermissionOrErrorBody) Unset ¶

type NullableProject ¶

type NullableProject struct {
	// contains filtered or unexported fields
}

func NewNullableProject ¶

func NewNullableProject(val *Project) *NullableProject

func (NullableProject) Get ¶

func (v NullableProject) Get() *Project

func (NullableProject) IsSet ¶

func (v NullableProject) IsSet() bool

func (NullableProject) MarshalJSON ¶

func (v NullableProject) MarshalJSON() ([]byte, error)

func (*NullableProject) Set ¶

func (v *NullableProject) Set(val *Project)

func (*NullableProject) UnmarshalJSON ¶

func (v *NullableProject) UnmarshalJSON(src []byte) error

func (*NullableProject) Unset ¶

func (v *NullableProject) Unset()

type NullableProjectApiKey ¶

type NullableProjectApiKey struct {
	// contains filtered or unexported fields
}

func NewNullableProjectApiKey ¶

func NewNullableProjectApiKey(val *ProjectApiKey) *NullableProjectApiKey

func (NullableProjectApiKey) Get ¶

func (NullableProjectApiKey) IsSet ¶

func (v NullableProjectApiKey) IsSet() bool

func (NullableProjectApiKey) MarshalJSON ¶

func (v NullableProjectApiKey) MarshalJSON() ([]byte, error)

func (*NullableProjectApiKey) Set ¶

func (v *NullableProjectApiKey) Set(val *ProjectApiKey)

func (*NullableProjectApiKey) UnmarshalJSON ¶

func (v *NullableProjectApiKey) UnmarshalJSON(src []byte) error

func (*NullableProjectApiKey) Unset ¶

func (v *NullableProjectApiKey) Unset()

type NullableProjectBranding ¶

type NullableProjectBranding struct {
	// contains filtered or unexported fields
}

func NewNullableProjectBranding ¶

func NewNullableProjectBranding(val *ProjectBranding) *NullableProjectBranding

func (NullableProjectBranding) Get ¶

func (NullableProjectBranding) IsSet ¶

func (v NullableProjectBranding) IsSet() bool

func (NullableProjectBranding) MarshalJSON ¶

func (v NullableProjectBranding) MarshalJSON() ([]byte, error)

func (*NullableProjectBranding) Set ¶

func (*NullableProjectBranding) UnmarshalJSON ¶

func (v *NullableProjectBranding) UnmarshalJSON(src []byte) error

func (*NullableProjectBranding) Unset ¶

func (v *NullableProjectBranding) Unset()

type NullableProjectBrandingColors ¶

type NullableProjectBrandingColors struct {
	// contains filtered or unexported fields
}

func (NullableProjectBrandingColors) Get ¶

func (NullableProjectBrandingColors) IsSet ¶

func (NullableProjectBrandingColors) MarshalJSON ¶

func (v NullableProjectBrandingColors) MarshalJSON() ([]byte, error)

func (*NullableProjectBrandingColors) Set ¶

func (*NullableProjectBrandingColors) UnmarshalJSON ¶

func (v *NullableProjectBrandingColors) UnmarshalJSON(src []byte) error

func (*NullableProjectBrandingColors) Unset ¶

func (v *NullableProjectBrandingColors) Unset()

type NullableProjectBrandingTheme ¶

type NullableProjectBrandingTheme struct {
	// contains filtered or unexported fields
}

func (NullableProjectBrandingTheme) Get ¶

func (NullableProjectBrandingTheme) IsSet ¶

func (NullableProjectBrandingTheme) MarshalJSON ¶

func (v NullableProjectBrandingTheme) MarshalJSON() ([]byte, error)

func (*NullableProjectBrandingTheme) Set ¶

func (*NullableProjectBrandingTheme) UnmarshalJSON ¶

func (v *NullableProjectBrandingTheme) UnmarshalJSON(src []byte) error

func (*NullableProjectBrandingTheme) Unset ¶

func (v *NullableProjectBrandingTheme) Unset()

type NullableProjectCors ¶

type NullableProjectCors struct {
	// contains filtered or unexported fields
}

func NewNullableProjectCors ¶

func NewNullableProjectCors(val *ProjectCors) *NullableProjectCors

func (NullableProjectCors) Get ¶

func (NullableProjectCors) IsSet ¶

func (v NullableProjectCors) IsSet() bool

func (NullableProjectCors) MarshalJSON ¶

func (v NullableProjectCors) MarshalJSON() ([]byte, error)

func (*NullableProjectCors) Set ¶

func (v *NullableProjectCors) Set(val *ProjectCors)

func (*NullableProjectCors) UnmarshalJSON ¶

func (v *NullableProjectCors) UnmarshalJSON(src []byte) error

func (*NullableProjectCors) Unset ¶

func (v *NullableProjectCors) Unset()

type NullableProjectEventsDatapoint ¶

type NullableProjectEventsDatapoint struct {
	// contains filtered or unexported fields
}

func (NullableProjectEventsDatapoint) Get ¶

func (NullableProjectEventsDatapoint) IsSet ¶

func (NullableProjectEventsDatapoint) MarshalJSON ¶

func (v NullableProjectEventsDatapoint) MarshalJSON() ([]byte, error)

func (*NullableProjectEventsDatapoint) Set ¶

func (*NullableProjectEventsDatapoint) UnmarshalJSON ¶

func (v *NullableProjectEventsDatapoint) UnmarshalJSON(src []byte) error

func (*NullableProjectEventsDatapoint) Unset ¶

func (v *NullableProjectEventsDatapoint) Unset()

type NullableProjectHost ¶

type NullableProjectHost struct {
	// contains filtered or unexported fields
}

func NewNullableProjectHost ¶

func NewNullableProjectHost(val *ProjectHost) *NullableProjectHost

func (NullableProjectHost) Get ¶

func (NullableProjectHost) IsSet ¶

func (v NullableProjectHost) IsSet() bool

func (NullableProjectHost) MarshalJSON ¶

func (v NullableProjectHost) MarshalJSON() ([]byte, error)

func (*NullableProjectHost) Set ¶

func (v *NullableProjectHost) Set(val *ProjectHost)

func (*NullableProjectHost) UnmarshalJSON ¶

func (v *NullableProjectHost) UnmarshalJSON(src []byte) error

func (*NullableProjectHost) Unset ¶

func (v *NullableProjectHost) Unset()

type NullableProjectMetadata ¶

type NullableProjectMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableProjectMetadata ¶

func NewNullableProjectMetadata(val *ProjectMetadata) *NullableProjectMetadata

func (NullableProjectMetadata) Get ¶

func (NullableProjectMetadata) IsSet ¶

func (v NullableProjectMetadata) IsSet() bool

func (NullableProjectMetadata) MarshalJSON ¶

func (v NullableProjectMetadata) MarshalJSON() ([]byte, error)

func (*NullableProjectMetadata) Set ¶

func (*NullableProjectMetadata) UnmarshalJSON ¶

func (v *NullableProjectMetadata) UnmarshalJSON(src []byte) error

func (*NullableProjectMetadata) Unset ¶

func (v *NullableProjectMetadata) Unset()

type NullableProjectServiceIdentity ¶

type NullableProjectServiceIdentity struct {
	// contains filtered or unexported fields
}

func (NullableProjectServiceIdentity) Get ¶

func (NullableProjectServiceIdentity) IsSet ¶

func (NullableProjectServiceIdentity) MarshalJSON ¶

func (v NullableProjectServiceIdentity) MarshalJSON() ([]byte, error)

func (*NullableProjectServiceIdentity) Set ¶

func (*NullableProjectServiceIdentity) UnmarshalJSON ¶

func (v *NullableProjectServiceIdentity) UnmarshalJSON(src []byte) error

func (*NullableProjectServiceIdentity) Unset ¶

func (v *NullableProjectServiceIdentity) Unset()

type NullableProjectServiceOAuth2 ¶

type NullableProjectServiceOAuth2 struct {
	// contains filtered or unexported fields
}

func (NullableProjectServiceOAuth2) Get ¶

func (NullableProjectServiceOAuth2) IsSet ¶

func (NullableProjectServiceOAuth2) MarshalJSON ¶

func (v NullableProjectServiceOAuth2) MarshalJSON() ([]byte, error)

func (*NullableProjectServiceOAuth2) Set ¶

func (*NullableProjectServiceOAuth2) UnmarshalJSON ¶

func (v *NullableProjectServiceOAuth2) UnmarshalJSON(src []byte) error

func (*NullableProjectServiceOAuth2) Unset ¶

func (v *NullableProjectServiceOAuth2) Unset()

type NullableProjectServicePermission ¶

type NullableProjectServicePermission struct {
	// contains filtered or unexported fields
}

func (NullableProjectServicePermission) Get ¶

func (NullableProjectServicePermission) IsSet ¶

func (NullableProjectServicePermission) MarshalJSON ¶

func (v NullableProjectServicePermission) MarshalJSON() ([]byte, error)

func (*NullableProjectServicePermission) Set ¶

func (*NullableProjectServicePermission) UnmarshalJSON ¶

func (v *NullableProjectServicePermission) UnmarshalJSON(src []byte) error

func (*NullableProjectServicePermission) Unset ¶

type NullableProjectServices ¶

type NullableProjectServices struct {
	// contains filtered or unexported fields
}

func NewNullableProjectServices ¶

func NewNullableProjectServices(val *ProjectServices) *NullableProjectServices

func (NullableProjectServices) Get ¶

func (NullableProjectServices) IsSet ¶

func (v NullableProjectServices) IsSet() bool

func (NullableProjectServices) MarshalJSON ¶

func (v NullableProjectServices) MarshalJSON() ([]byte, error)

func (*NullableProjectServices) Set ¶

func (*NullableProjectServices) UnmarshalJSON ¶

func (v *NullableProjectServices) UnmarshalJSON(src []byte) error

func (*NullableProjectServices) Unset ¶

func (v *NullableProjectServices) Unset()

type NullableQuotaUsage ¶

type NullableQuotaUsage struct {
	// contains filtered or unexported fields
}

func NewNullableQuotaUsage ¶

func NewNullableQuotaUsage(val *QuotaUsage) *NullableQuotaUsage

func (NullableQuotaUsage) Get ¶

func (v NullableQuotaUsage) Get() *QuotaUsage

func (NullableQuotaUsage) IsSet ¶

func (v NullableQuotaUsage) IsSet() bool

func (NullableQuotaUsage) MarshalJSON ¶

func (v NullableQuotaUsage) MarshalJSON() ([]byte, error)

func (*NullableQuotaUsage) Set ¶

func (v *NullableQuotaUsage) Set(val *QuotaUsage)

func (*NullableQuotaUsage) UnmarshalJSON ¶

func (v *NullableQuotaUsage) UnmarshalJSON(src []byte) error

func (*NullableQuotaUsage) Unset ¶

func (v *NullableQuotaUsage) Unset()

type NullableRFC6749ErrorJson ¶

type NullableRFC6749ErrorJson struct {
	// contains filtered or unexported fields
}

func NewNullableRFC6749ErrorJson ¶

func NewNullableRFC6749ErrorJson(val *RFC6749ErrorJson) *NullableRFC6749ErrorJson

func (NullableRFC6749ErrorJson) Get ¶

func (NullableRFC6749ErrorJson) IsSet ¶

func (v NullableRFC6749ErrorJson) IsSet() bool

func (NullableRFC6749ErrorJson) MarshalJSON ¶

func (v NullableRFC6749ErrorJson) MarshalJSON() ([]byte, error)

func (*NullableRFC6749ErrorJson) Set ¶

func (*NullableRFC6749ErrorJson) UnmarshalJSON ¶

func (v *NullableRFC6749ErrorJson) UnmarshalJSON(src []byte) error

func (*NullableRFC6749ErrorJson) Unset ¶

func (v *NullableRFC6749ErrorJson) Unset()

type NullableRecoveryCodeForIdentity ¶

type NullableRecoveryCodeForIdentity struct {
	// contains filtered or unexported fields
}

func (NullableRecoveryCodeForIdentity) Get ¶

func (NullableRecoveryCodeForIdentity) IsSet ¶

func (NullableRecoveryCodeForIdentity) MarshalJSON ¶

func (v NullableRecoveryCodeForIdentity) MarshalJSON() ([]byte, error)

func (*NullableRecoveryCodeForIdentity) Set ¶

func (*NullableRecoveryCodeForIdentity) UnmarshalJSON ¶

func (v *NullableRecoveryCodeForIdentity) UnmarshalJSON(src []byte) error

func (*NullableRecoveryCodeForIdentity) Unset ¶

type NullableRecoveryFlow ¶

type NullableRecoveryFlow struct {
	// contains filtered or unexported fields
}

func NewNullableRecoveryFlow ¶

func NewNullableRecoveryFlow(val *RecoveryFlow) *NullableRecoveryFlow

func (NullableRecoveryFlow) Get ¶

func (NullableRecoveryFlow) IsSet ¶

func (v NullableRecoveryFlow) IsSet() bool

func (NullableRecoveryFlow) MarshalJSON ¶

func (v NullableRecoveryFlow) MarshalJSON() ([]byte, error)

func (*NullableRecoveryFlow) Set ¶

func (v *NullableRecoveryFlow) Set(val *RecoveryFlow)

func (*NullableRecoveryFlow) UnmarshalJSON ¶

func (v *NullableRecoveryFlow) UnmarshalJSON(src []byte) error

func (*NullableRecoveryFlow) Unset ¶

func (v *NullableRecoveryFlow) Unset()

type NullableRecoveryFlowState ¶

type NullableRecoveryFlowState struct {
	// contains filtered or unexported fields
}

func NewNullableRecoveryFlowState ¶

func NewNullableRecoveryFlowState(val *RecoveryFlowState) *NullableRecoveryFlowState

func (NullableRecoveryFlowState) Get ¶

func (NullableRecoveryFlowState) IsSet ¶

func (v NullableRecoveryFlowState) IsSet() bool

func (NullableRecoveryFlowState) MarshalJSON ¶

func (v NullableRecoveryFlowState) MarshalJSON() ([]byte, error)

func (*NullableRecoveryFlowState) Set ¶

func (*NullableRecoveryFlowState) UnmarshalJSON ¶

func (v *NullableRecoveryFlowState) UnmarshalJSON(src []byte) error

func (*NullableRecoveryFlowState) Unset ¶

func (v *NullableRecoveryFlowState) Unset()

type NullableRecoveryIdentityAddress ¶

type NullableRecoveryIdentityAddress struct {
	// contains filtered or unexported fields
}

func (NullableRecoveryIdentityAddress) Get ¶

func (NullableRecoveryIdentityAddress) IsSet ¶

func (NullableRecoveryIdentityAddress) MarshalJSON ¶

func (v NullableRecoveryIdentityAddress) MarshalJSON() ([]byte, error)

func (*NullableRecoveryIdentityAddress) Set ¶

func (*NullableRecoveryIdentityAddress) UnmarshalJSON ¶

func (v *NullableRecoveryIdentityAddress) UnmarshalJSON(src []byte) error

func (*NullableRecoveryIdentityAddress) Unset ¶

type NullableRecoveryLinkForIdentity ¶

type NullableRecoveryLinkForIdentity struct {
	// contains filtered or unexported fields
}

func (NullableRecoveryLinkForIdentity) Get ¶

func (NullableRecoveryLinkForIdentity) IsSet ¶

func (NullableRecoveryLinkForIdentity) MarshalJSON ¶

func (v NullableRecoveryLinkForIdentity) MarshalJSON() ([]byte, error)

func (*NullableRecoveryLinkForIdentity) Set ¶

func (*NullableRecoveryLinkForIdentity) UnmarshalJSON ¶

func (v *NullableRecoveryLinkForIdentity) UnmarshalJSON(src []byte) error

func (*NullableRecoveryLinkForIdentity) Unset ¶

type NullableRegistrationFlow ¶

type NullableRegistrationFlow struct {
	// contains filtered or unexported fields
}

func NewNullableRegistrationFlow ¶

func NewNullableRegistrationFlow(val *RegistrationFlow) *NullableRegistrationFlow

func (NullableRegistrationFlow) Get ¶

func (NullableRegistrationFlow) IsSet ¶

func (v NullableRegistrationFlow) IsSet() bool

func (NullableRegistrationFlow) MarshalJSON ¶

func (v NullableRegistrationFlow) MarshalJSON() ([]byte, error)

func (*NullableRegistrationFlow) Set ¶

func (*NullableRegistrationFlow) UnmarshalJSON ¶

func (v *NullableRegistrationFlow) UnmarshalJSON(src []byte) error

func (*NullableRegistrationFlow) Unset ¶

func (v *NullableRegistrationFlow) Unset()

type NullableRegistrationFlowState ¶

type NullableRegistrationFlowState struct {
	// contains filtered or unexported fields
}

func (NullableRegistrationFlowState) Get ¶

func (NullableRegistrationFlowState) IsSet ¶

func (NullableRegistrationFlowState) MarshalJSON ¶

func (v NullableRegistrationFlowState) MarshalJSON() ([]byte, error)

func (*NullableRegistrationFlowState) Set ¶

func (*NullableRegistrationFlowState) UnmarshalJSON ¶

func (v *NullableRegistrationFlowState) UnmarshalJSON(src []byte) error

func (*NullableRegistrationFlowState) Unset ¶

func (v *NullableRegistrationFlowState) Unset()

type NullableRejectOAuth2Request ¶

type NullableRejectOAuth2Request struct {
	// contains filtered or unexported fields
}

func (NullableRejectOAuth2Request) Get ¶

func (NullableRejectOAuth2Request) IsSet ¶

func (NullableRejectOAuth2Request) MarshalJSON ¶

func (v NullableRejectOAuth2Request) MarshalJSON() ([]byte, error)

func (*NullableRejectOAuth2Request) Set ¶

func (*NullableRejectOAuth2Request) UnmarshalJSON ¶

func (v *NullableRejectOAuth2Request) UnmarshalJSON(src []byte) error

func (*NullableRejectOAuth2Request) Unset ¶

func (v *NullableRejectOAuth2Request) Unset()

type NullableRelationQuery ¶

type NullableRelationQuery struct {
	// contains filtered or unexported fields
}

func NewNullableRelationQuery ¶

func NewNullableRelationQuery(val *RelationQuery) *NullableRelationQuery

func (NullableRelationQuery) Get ¶

func (NullableRelationQuery) IsSet ¶

func (v NullableRelationQuery) IsSet() bool

func (NullableRelationQuery) MarshalJSON ¶

func (v NullableRelationQuery) MarshalJSON() ([]byte, error)

func (*NullableRelationQuery) Set ¶

func (v *NullableRelationQuery) Set(val *RelationQuery)

func (*NullableRelationQuery) UnmarshalJSON ¶

func (v *NullableRelationQuery) UnmarshalJSON(src []byte) error

func (*NullableRelationQuery) Unset ¶

func (v *NullableRelationQuery) Unset()

type NullableRelationship ¶

type NullableRelationship struct {
	// contains filtered or unexported fields
}

func NewNullableRelationship ¶

func NewNullableRelationship(val *Relationship) *NullableRelationship

func (NullableRelationship) Get ¶

func (NullableRelationship) IsSet ¶

func (v NullableRelationship) IsSet() bool

func (NullableRelationship) MarshalJSON ¶

func (v NullableRelationship) MarshalJSON() ([]byte, error)

func (*NullableRelationship) Set ¶

func (v *NullableRelationship) Set(val *Relationship)

func (*NullableRelationship) UnmarshalJSON ¶

func (v *NullableRelationship) UnmarshalJSON(src []byte) error

func (*NullableRelationship) Unset ¶

func (v *NullableRelationship) Unset()

type NullableRelationshipNamespaces ¶

type NullableRelationshipNamespaces struct {
	// contains filtered or unexported fields
}

func (NullableRelationshipNamespaces) Get ¶

func (NullableRelationshipNamespaces) IsSet ¶

func (NullableRelationshipNamespaces) MarshalJSON ¶

func (v NullableRelationshipNamespaces) MarshalJSON() ([]byte, error)

func (*NullableRelationshipNamespaces) Set ¶

func (*NullableRelationshipNamespaces) UnmarshalJSON ¶

func (v *NullableRelationshipNamespaces) UnmarshalJSON(src []byte) error

func (*NullableRelationshipNamespaces) Unset ¶

func (v *NullableRelationshipNamespaces) Unset()

type NullableRelationshipPatch ¶

type NullableRelationshipPatch struct {
	// contains filtered or unexported fields
}

func NewNullableRelationshipPatch ¶

func NewNullableRelationshipPatch(val *RelationshipPatch) *NullableRelationshipPatch

func (NullableRelationshipPatch) Get ¶

func (NullableRelationshipPatch) IsSet ¶

func (v NullableRelationshipPatch) IsSet() bool

func (NullableRelationshipPatch) MarshalJSON ¶

func (v NullableRelationshipPatch) MarshalJSON() ([]byte, error)

func (*NullableRelationshipPatch) Set ¶

func (*NullableRelationshipPatch) UnmarshalJSON ¶

func (v *NullableRelationshipPatch) UnmarshalJSON(src []byte) error

func (*NullableRelationshipPatch) Unset ¶

func (v *NullableRelationshipPatch) Unset()

type NullableRelationships ¶

type NullableRelationships struct {
	// contains filtered or unexported fields
}

func NewNullableRelationships ¶

func NewNullableRelationships(val *Relationships) *NullableRelationships

func (NullableRelationships) Get ¶

func (NullableRelationships) IsSet ¶

func (v NullableRelationships) IsSet() bool

func (NullableRelationships) MarshalJSON ¶

func (v NullableRelationships) MarshalJSON() ([]byte, error)

func (*NullableRelationships) Set ¶

func (v *NullableRelationships) Set(val *Relationships)

func (*NullableRelationships) UnmarshalJSON ¶

func (v *NullableRelationships) UnmarshalJSON(src []byte) error

func (*NullableRelationships) Unset ¶

func (v *NullableRelationships) Unset()

type NullableSchemaPatch ¶

type NullableSchemaPatch struct {
	// contains filtered or unexported fields
}

func NewNullableSchemaPatch ¶

func NewNullableSchemaPatch(val *SchemaPatch) *NullableSchemaPatch

func (NullableSchemaPatch) Get ¶

func (NullableSchemaPatch) IsSet ¶

func (v NullableSchemaPatch) IsSet() bool

func (NullableSchemaPatch) MarshalJSON ¶

func (v NullableSchemaPatch) MarshalJSON() ([]byte, error)

func (*NullableSchemaPatch) Set ¶

func (v *NullableSchemaPatch) Set(val *SchemaPatch)

func (*NullableSchemaPatch) UnmarshalJSON ¶

func (v *NullableSchemaPatch) UnmarshalJSON(src []byte) error

func (*NullableSchemaPatch) Unset ¶

func (v *NullableSchemaPatch) Unset()

type NullableSelfServiceFlowExpiredError ¶

type NullableSelfServiceFlowExpiredError struct {
	// contains filtered or unexported fields
}

func (NullableSelfServiceFlowExpiredError) Get ¶

func (NullableSelfServiceFlowExpiredError) IsSet ¶

func (NullableSelfServiceFlowExpiredError) MarshalJSON ¶

func (v NullableSelfServiceFlowExpiredError) MarshalJSON() ([]byte, error)

func (*NullableSelfServiceFlowExpiredError) Set ¶

func (*NullableSelfServiceFlowExpiredError) UnmarshalJSON ¶

func (v *NullableSelfServiceFlowExpiredError) UnmarshalJSON(src []byte) error

func (*NullableSelfServiceFlowExpiredError) Unset ¶

type NullableSession ¶

type NullableSession struct {
	// contains filtered or unexported fields
}

func NewNullableSession ¶

func NewNullableSession(val *Session) *NullableSession

func (NullableSession) Get ¶

func (v NullableSession) Get() *Session

func (NullableSession) IsSet ¶

func (v NullableSession) IsSet() bool

func (NullableSession) MarshalJSON ¶

func (v NullableSession) MarshalJSON() ([]byte, error)

func (*NullableSession) Set ¶

func (v *NullableSession) Set(val *Session)

func (*NullableSession) UnmarshalJSON ¶

func (v *NullableSession) UnmarshalJSON(src []byte) error

func (*NullableSession) Unset ¶

func (v *NullableSession) Unset()

type NullableSessionActivityDatapoint ¶

type NullableSessionActivityDatapoint struct {
	// contains filtered or unexported fields
}

func (NullableSessionActivityDatapoint) Get ¶

func (NullableSessionActivityDatapoint) IsSet ¶

func (NullableSessionActivityDatapoint) MarshalJSON ¶

func (v NullableSessionActivityDatapoint) MarshalJSON() ([]byte, error)

func (*NullableSessionActivityDatapoint) Set ¶

func (*NullableSessionActivityDatapoint) UnmarshalJSON ¶

func (v *NullableSessionActivityDatapoint) UnmarshalJSON(src []byte) error

func (*NullableSessionActivityDatapoint) Unset ¶

type NullableSessionAuthenticationMethod ¶

type NullableSessionAuthenticationMethod struct {
	// contains filtered or unexported fields
}

func (NullableSessionAuthenticationMethod) Get ¶

func (NullableSessionAuthenticationMethod) IsSet ¶

func (NullableSessionAuthenticationMethod) MarshalJSON ¶

func (v NullableSessionAuthenticationMethod) MarshalJSON() ([]byte, error)

func (*NullableSessionAuthenticationMethod) Set ¶

func (*NullableSessionAuthenticationMethod) UnmarshalJSON ¶

func (v *NullableSessionAuthenticationMethod) UnmarshalJSON(src []byte) error

func (*NullableSessionAuthenticationMethod) Unset ¶

type NullableSessionDevice ¶

type NullableSessionDevice struct {
	// contains filtered or unexported fields
}

func NewNullableSessionDevice ¶

func NewNullableSessionDevice(val *SessionDevice) *NullableSessionDevice

func (NullableSessionDevice) Get ¶

func (NullableSessionDevice) IsSet ¶

func (v NullableSessionDevice) IsSet() bool

func (NullableSessionDevice) MarshalJSON ¶

func (v NullableSessionDevice) MarshalJSON() ([]byte, error)

func (*NullableSessionDevice) Set ¶

func (v *NullableSessionDevice) Set(val *SessionDevice)

func (*NullableSessionDevice) UnmarshalJSON ¶

func (v *NullableSessionDevice) UnmarshalJSON(src []byte) error

func (*NullableSessionDevice) Unset ¶

func (v *NullableSessionDevice) Unset()

type NullableSetActiveProjectInConsoleBody ¶

type NullableSetActiveProjectInConsoleBody struct {
	// contains filtered or unexported fields
}

func (NullableSetActiveProjectInConsoleBody) Get ¶

func (NullableSetActiveProjectInConsoleBody) IsSet ¶

func (NullableSetActiveProjectInConsoleBody) MarshalJSON ¶

func (v NullableSetActiveProjectInConsoleBody) MarshalJSON() ([]byte, error)

func (*NullableSetActiveProjectInConsoleBody) Set ¶

func (*NullableSetActiveProjectInConsoleBody) UnmarshalJSON ¶

func (v *NullableSetActiveProjectInConsoleBody) UnmarshalJSON(src []byte) error

func (*NullableSetActiveProjectInConsoleBody) Unset ¶

type NullableSetCustomDomainBody ¶

type NullableSetCustomDomainBody struct {
	// contains filtered or unexported fields
}

func (NullableSetCustomDomainBody) Get ¶

func (NullableSetCustomDomainBody) IsSet ¶

func (NullableSetCustomDomainBody) MarshalJSON ¶

func (v NullableSetCustomDomainBody) MarshalJSON() ([]byte, error)

func (*NullableSetCustomDomainBody) Set ¶

func (*NullableSetCustomDomainBody) UnmarshalJSON ¶

func (v *NullableSetCustomDomainBody) UnmarshalJSON(src []byte) error

func (*NullableSetCustomDomainBody) Unset ¶

func (v *NullableSetCustomDomainBody) Unset()

type NullableSetEventStreamBody ¶

type NullableSetEventStreamBody struct {
	// contains filtered or unexported fields
}

func NewNullableSetEventStreamBody ¶

func NewNullableSetEventStreamBody(val *SetEventStreamBody) *NullableSetEventStreamBody

func (NullableSetEventStreamBody) Get ¶

func (NullableSetEventStreamBody) IsSet ¶

func (v NullableSetEventStreamBody) IsSet() bool

func (NullableSetEventStreamBody) MarshalJSON ¶

func (v NullableSetEventStreamBody) MarshalJSON() ([]byte, error)

func (*NullableSetEventStreamBody) Set ¶

func (*NullableSetEventStreamBody) UnmarshalJSON ¶

func (v *NullableSetEventStreamBody) UnmarshalJSON(src []byte) error

func (*NullableSetEventStreamBody) Unset ¶

func (v *NullableSetEventStreamBody) Unset()

type NullableSetProject ¶

type NullableSetProject struct {
	// contains filtered or unexported fields
}

func NewNullableSetProject ¶

func NewNullableSetProject(val *SetProject) *NullableSetProject

func (NullableSetProject) Get ¶

func (v NullableSetProject) Get() *SetProject

func (NullableSetProject) IsSet ¶

func (v NullableSetProject) IsSet() bool

func (NullableSetProject) MarshalJSON ¶

func (v NullableSetProject) MarshalJSON() ([]byte, error)

func (*NullableSetProject) Set ¶

func (v *NullableSetProject) Set(val *SetProject)

func (*NullableSetProject) UnmarshalJSON ¶

func (v *NullableSetProject) UnmarshalJSON(src []byte) error

func (*NullableSetProject) Unset ¶

func (v *NullableSetProject) Unset()

type NullableSetProjectBrandingThemeBody ¶

type NullableSetProjectBrandingThemeBody struct {
	// contains filtered or unexported fields
}

func (NullableSetProjectBrandingThemeBody) Get ¶

func (NullableSetProjectBrandingThemeBody) IsSet ¶

func (NullableSetProjectBrandingThemeBody) MarshalJSON ¶

func (v NullableSetProjectBrandingThemeBody) MarshalJSON() ([]byte, error)

func (*NullableSetProjectBrandingThemeBody) Set ¶

func (*NullableSetProjectBrandingThemeBody) UnmarshalJSON ¶

func (v *NullableSetProjectBrandingThemeBody) UnmarshalJSON(src []byte) error

func (*NullableSetProjectBrandingThemeBody) Unset ¶

type NullableSettingsFlow ¶

type NullableSettingsFlow struct {
	// contains filtered or unexported fields
}

func NewNullableSettingsFlow ¶

func NewNullableSettingsFlow(val *SettingsFlow) *NullableSettingsFlow

func (NullableSettingsFlow) Get ¶

func (NullableSettingsFlow) IsSet ¶

func (v NullableSettingsFlow) IsSet() bool

func (NullableSettingsFlow) MarshalJSON ¶

func (v NullableSettingsFlow) MarshalJSON() ([]byte, error)

func (*NullableSettingsFlow) Set ¶

func (v *NullableSettingsFlow) Set(val *SettingsFlow)

func (*NullableSettingsFlow) UnmarshalJSON ¶

func (v *NullableSettingsFlow) UnmarshalJSON(src []byte) error

func (*NullableSettingsFlow) Unset ¶

func (v *NullableSettingsFlow) Unset()

type NullableSettingsFlowState ¶

type NullableSettingsFlowState struct {
	// contains filtered or unexported fields
}

func NewNullableSettingsFlowState ¶

func NewNullableSettingsFlowState(val *SettingsFlowState) *NullableSettingsFlowState

func (NullableSettingsFlowState) Get ¶

func (NullableSettingsFlowState) IsSet ¶

func (v NullableSettingsFlowState) IsSet() bool

func (NullableSettingsFlowState) MarshalJSON ¶

func (v NullableSettingsFlowState) MarshalJSON() ([]byte, error)

func (*NullableSettingsFlowState) Set ¶

func (*NullableSettingsFlowState) UnmarshalJSON ¶

func (v *NullableSettingsFlowState) UnmarshalJSON(src []byte) error

func (*NullableSettingsFlowState) Unset ¶

func (v *NullableSettingsFlowState) Unset()

type NullableSourcePosition ¶

type NullableSourcePosition struct {
	// contains filtered or unexported fields
}

func NewNullableSourcePosition ¶

func NewNullableSourcePosition(val *SourcePosition) *NullableSourcePosition

func (NullableSourcePosition) Get ¶

func (NullableSourcePosition) IsSet ¶

func (v NullableSourcePosition) IsSet() bool

func (NullableSourcePosition) MarshalJSON ¶

func (v NullableSourcePosition) MarshalJSON() ([]byte, error)

func (*NullableSourcePosition) Set ¶

func (*NullableSourcePosition) UnmarshalJSON ¶

func (v *NullableSourcePosition) UnmarshalJSON(src []byte) error

func (*NullableSourcePosition) Unset ¶

func (v *NullableSourcePosition) Unset()

type NullableString ¶

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString ¶

func NewNullableString(val *string) *NullableString

func (NullableString) Get ¶

func (v NullableString) Get() *string

func (NullableString) IsSet ¶

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON ¶

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set ¶

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON ¶

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset ¶

func (v *NullableString) Unset()

type NullableStripeCustomer ¶

type NullableStripeCustomer struct {
	// contains filtered or unexported fields
}

func NewNullableStripeCustomer ¶

func NewNullableStripeCustomer(val *StripeCustomer) *NullableStripeCustomer

func (NullableStripeCustomer) Get ¶

func (NullableStripeCustomer) IsSet ¶

func (v NullableStripeCustomer) IsSet() bool

func (NullableStripeCustomer) MarshalJSON ¶

func (v NullableStripeCustomer) MarshalJSON() ([]byte, error)

func (*NullableStripeCustomer) Set ¶

func (*NullableStripeCustomer) UnmarshalJSON ¶

func (v *NullableStripeCustomer) UnmarshalJSON(src []byte) error

func (*NullableStripeCustomer) Unset ¶

func (v *NullableStripeCustomer) Unset()

type NullableSubjectSet ¶

type NullableSubjectSet struct {
	// contains filtered or unexported fields
}

func NewNullableSubjectSet ¶

func NewNullableSubjectSet(val *SubjectSet) *NullableSubjectSet

func (NullableSubjectSet) Get ¶

func (v NullableSubjectSet) Get() *SubjectSet

func (NullableSubjectSet) IsSet ¶

func (v NullableSubjectSet) IsSet() bool

func (NullableSubjectSet) MarshalJSON ¶

func (v NullableSubjectSet) MarshalJSON() ([]byte, error)

func (*NullableSubjectSet) Set ¶

func (v *NullableSubjectSet) Set(val *SubjectSet)

func (*NullableSubjectSet) UnmarshalJSON ¶

func (v *NullableSubjectSet) UnmarshalJSON(src []byte) error

func (*NullableSubjectSet) Unset ¶

func (v *NullableSubjectSet) Unset()

type NullableSubscription ¶

type NullableSubscription struct {
	// contains filtered or unexported fields
}

func NewNullableSubscription ¶

func NewNullableSubscription(val *Subscription) *NullableSubscription

func (NullableSubscription) Get ¶

func (NullableSubscription) IsSet ¶

func (v NullableSubscription) IsSet() bool

func (NullableSubscription) MarshalJSON ¶

func (v NullableSubscription) MarshalJSON() ([]byte, error)

func (*NullableSubscription) Set ¶

func (v *NullableSubscription) Set(val *Subscription)

func (*NullableSubscription) UnmarshalJSON ¶

func (v *NullableSubscription) UnmarshalJSON(src []byte) error

func (*NullableSubscription) Unset ¶

func (v *NullableSubscription) Unset()

type NullableSuccessfulCodeExchangeResponse ¶

type NullableSuccessfulCodeExchangeResponse struct {
	// contains filtered or unexported fields
}

func (NullableSuccessfulCodeExchangeResponse) Get ¶

func (NullableSuccessfulCodeExchangeResponse) IsSet ¶

func (NullableSuccessfulCodeExchangeResponse) MarshalJSON ¶

func (v NullableSuccessfulCodeExchangeResponse) MarshalJSON() ([]byte, error)

func (*NullableSuccessfulCodeExchangeResponse) Set ¶

func (*NullableSuccessfulCodeExchangeResponse) UnmarshalJSON ¶

func (v *NullableSuccessfulCodeExchangeResponse) UnmarshalJSON(src []byte) error

func (*NullableSuccessfulCodeExchangeResponse) Unset ¶

type NullableSuccessfulNativeLogin ¶

type NullableSuccessfulNativeLogin struct {
	// contains filtered or unexported fields
}

func (NullableSuccessfulNativeLogin) Get ¶

func (NullableSuccessfulNativeLogin) IsSet ¶

func (NullableSuccessfulNativeLogin) MarshalJSON ¶

func (v NullableSuccessfulNativeLogin) MarshalJSON() ([]byte, error)

func (*NullableSuccessfulNativeLogin) Set ¶

func (*NullableSuccessfulNativeLogin) UnmarshalJSON ¶

func (v *NullableSuccessfulNativeLogin) UnmarshalJSON(src []byte) error

func (*NullableSuccessfulNativeLogin) Unset ¶

func (v *NullableSuccessfulNativeLogin) Unset()

type NullableSuccessfulNativeRegistration ¶

type NullableSuccessfulNativeRegistration struct {
	// contains filtered or unexported fields
}

func (NullableSuccessfulNativeRegistration) Get ¶

func (NullableSuccessfulNativeRegistration) IsSet ¶

func (NullableSuccessfulNativeRegistration) MarshalJSON ¶

func (v NullableSuccessfulNativeRegistration) MarshalJSON() ([]byte, error)

func (*NullableSuccessfulNativeRegistration) Set ¶

func (*NullableSuccessfulNativeRegistration) UnmarshalJSON ¶

func (v *NullableSuccessfulNativeRegistration) UnmarshalJSON(src []byte) error

func (*NullableSuccessfulNativeRegistration) Unset ¶

type NullableSuccessfulProjectUpdate ¶

type NullableSuccessfulProjectUpdate struct {
	// contains filtered or unexported fields
}

func (NullableSuccessfulProjectUpdate) Get ¶

func (NullableSuccessfulProjectUpdate) IsSet ¶

func (NullableSuccessfulProjectUpdate) MarshalJSON ¶

func (v NullableSuccessfulProjectUpdate) MarshalJSON() ([]byte, error)

func (*NullableSuccessfulProjectUpdate) Set ¶

func (*NullableSuccessfulProjectUpdate) UnmarshalJSON ¶

func (v *NullableSuccessfulProjectUpdate) UnmarshalJSON(src []byte) error

func (*NullableSuccessfulProjectUpdate) Unset ¶

type NullableTime ¶

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime ¶

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get ¶

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet ¶

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON ¶

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set ¶

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON ¶

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset ¶

func (v *NullableTime) Unset()

type NullableTokenPagination ¶

type NullableTokenPagination struct {
	// contains filtered or unexported fields
}

func NewNullableTokenPagination ¶

func NewNullableTokenPagination(val *TokenPagination) *NullableTokenPagination

func (NullableTokenPagination) Get ¶

func (NullableTokenPagination) IsSet ¶

func (v NullableTokenPagination) IsSet() bool

func (NullableTokenPagination) MarshalJSON ¶

func (v NullableTokenPagination) MarshalJSON() ([]byte, error)

func (*NullableTokenPagination) Set ¶

func (*NullableTokenPagination) UnmarshalJSON ¶

func (v *NullableTokenPagination) UnmarshalJSON(src []byte) error

func (*NullableTokenPagination) Unset ¶

func (v *NullableTokenPagination) Unset()

type NullableTokenPaginationHeaders ¶

type NullableTokenPaginationHeaders struct {
	// contains filtered or unexported fields
}

func (NullableTokenPaginationHeaders) Get ¶

func (NullableTokenPaginationHeaders) IsSet ¶

func (NullableTokenPaginationHeaders) MarshalJSON ¶

func (v NullableTokenPaginationHeaders) MarshalJSON() ([]byte, error)

func (*NullableTokenPaginationHeaders) Set ¶

func (*NullableTokenPaginationHeaders) UnmarshalJSON ¶

func (v *NullableTokenPaginationHeaders) UnmarshalJSON(src []byte) error

func (*NullableTokenPaginationHeaders) Unset ¶

func (v *NullableTokenPaginationHeaders) Unset()

type NullableTokenPaginationRequestParameters ¶

type NullableTokenPaginationRequestParameters struct {
	// contains filtered or unexported fields
}

func (NullableTokenPaginationRequestParameters) Get ¶

func (NullableTokenPaginationRequestParameters) IsSet ¶

func (NullableTokenPaginationRequestParameters) MarshalJSON ¶

func (*NullableTokenPaginationRequestParameters) Set ¶

func (*NullableTokenPaginationRequestParameters) UnmarshalJSON ¶

func (v *NullableTokenPaginationRequestParameters) UnmarshalJSON(src []byte) error

func (*NullableTokenPaginationRequestParameters) Unset ¶

type NullableTokenPaginationResponseHeaders ¶

type NullableTokenPaginationResponseHeaders struct {
	// contains filtered or unexported fields
}

func (NullableTokenPaginationResponseHeaders) Get ¶

func (NullableTokenPaginationResponseHeaders) IsSet ¶

func (NullableTokenPaginationResponseHeaders) MarshalJSON ¶

func (v NullableTokenPaginationResponseHeaders) MarshalJSON() ([]byte, error)

func (*NullableTokenPaginationResponseHeaders) Set ¶

func (*NullableTokenPaginationResponseHeaders) UnmarshalJSON ¶

func (v *NullableTokenPaginationResponseHeaders) UnmarshalJSON(src []byte) error

func (*NullableTokenPaginationResponseHeaders) Unset ¶

type NullableTrustOAuth2JwtGrantIssuer ¶

type NullableTrustOAuth2JwtGrantIssuer struct {
	// contains filtered or unexported fields
}

func (NullableTrustOAuth2JwtGrantIssuer) Get ¶

func (NullableTrustOAuth2JwtGrantIssuer) IsSet ¶

func (NullableTrustOAuth2JwtGrantIssuer) MarshalJSON ¶

func (v NullableTrustOAuth2JwtGrantIssuer) MarshalJSON() ([]byte, error)

func (*NullableTrustOAuth2JwtGrantIssuer) Set ¶

func (*NullableTrustOAuth2JwtGrantIssuer) UnmarshalJSON ¶

func (v *NullableTrustOAuth2JwtGrantIssuer) UnmarshalJSON(src []byte) error

func (*NullableTrustOAuth2JwtGrantIssuer) Unset ¶

type NullableTrustedOAuth2JwtGrantIssuer ¶

type NullableTrustedOAuth2JwtGrantIssuer struct {
	// contains filtered or unexported fields
}

func (NullableTrustedOAuth2JwtGrantIssuer) Get ¶

func (NullableTrustedOAuth2JwtGrantIssuer) IsSet ¶

func (NullableTrustedOAuth2JwtGrantIssuer) MarshalJSON ¶

func (v NullableTrustedOAuth2JwtGrantIssuer) MarshalJSON() ([]byte, error)

func (*NullableTrustedOAuth2JwtGrantIssuer) Set ¶

func (*NullableTrustedOAuth2JwtGrantIssuer) UnmarshalJSON ¶

func (v *NullableTrustedOAuth2JwtGrantIssuer) UnmarshalJSON(src []byte) error

func (*NullableTrustedOAuth2JwtGrantIssuer) Unset ¶

type NullableTrustedOAuth2JwtGrantJsonWebKey ¶

type NullableTrustedOAuth2JwtGrantJsonWebKey struct {
	// contains filtered or unexported fields
}

func (NullableTrustedOAuth2JwtGrantJsonWebKey) Get ¶

func (NullableTrustedOAuth2JwtGrantJsonWebKey) IsSet ¶

func (NullableTrustedOAuth2JwtGrantJsonWebKey) MarshalJSON ¶

func (v NullableTrustedOAuth2JwtGrantJsonWebKey) MarshalJSON() ([]byte, error)

func (*NullableTrustedOAuth2JwtGrantJsonWebKey) Set ¶

func (*NullableTrustedOAuth2JwtGrantJsonWebKey) UnmarshalJSON ¶

func (v *NullableTrustedOAuth2JwtGrantJsonWebKey) UnmarshalJSON(src []byte) error

func (*NullableTrustedOAuth2JwtGrantJsonWebKey) Unset ¶

type NullableUiContainer ¶

type NullableUiContainer struct {
	// contains filtered or unexported fields
}

func NewNullableUiContainer ¶

func NewNullableUiContainer(val *UiContainer) *NullableUiContainer

func (NullableUiContainer) Get ¶

func (NullableUiContainer) IsSet ¶

func (v NullableUiContainer) IsSet() bool

func (NullableUiContainer) MarshalJSON ¶

func (v NullableUiContainer) MarshalJSON() ([]byte, error)

func (*NullableUiContainer) Set ¶

func (v *NullableUiContainer) Set(val *UiContainer)

func (*NullableUiContainer) UnmarshalJSON ¶

func (v *NullableUiContainer) UnmarshalJSON(src []byte) error

func (*NullableUiContainer) Unset ¶

func (v *NullableUiContainer) Unset()

type NullableUiNode ¶

type NullableUiNode struct {
	// contains filtered or unexported fields
}

func NewNullableUiNode ¶

func NewNullableUiNode(val *UiNode) *NullableUiNode

func (NullableUiNode) Get ¶

func (v NullableUiNode) Get() *UiNode

func (NullableUiNode) IsSet ¶

func (v NullableUiNode) IsSet() bool

func (NullableUiNode) MarshalJSON ¶

func (v NullableUiNode) MarshalJSON() ([]byte, error)

func (*NullableUiNode) Set ¶

func (v *NullableUiNode) Set(val *UiNode)

func (*NullableUiNode) UnmarshalJSON ¶

func (v *NullableUiNode) UnmarshalJSON(src []byte) error

func (*NullableUiNode) Unset ¶

func (v *NullableUiNode) Unset()

type NullableUiNodeAnchorAttributes ¶

type NullableUiNodeAnchorAttributes struct {
	// contains filtered or unexported fields
}

func (NullableUiNodeAnchorAttributes) Get ¶

func (NullableUiNodeAnchorAttributes) IsSet ¶

func (NullableUiNodeAnchorAttributes) MarshalJSON ¶

func (v NullableUiNodeAnchorAttributes) MarshalJSON() ([]byte, error)

func (*NullableUiNodeAnchorAttributes) Set ¶

func (*NullableUiNodeAnchorAttributes) UnmarshalJSON ¶

func (v *NullableUiNodeAnchorAttributes) UnmarshalJSON(src []byte) error

func (*NullableUiNodeAnchorAttributes) Unset ¶

func (v *NullableUiNodeAnchorAttributes) Unset()

type NullableUiNodeAttributes ¶

type NullableUiNodeAttributes struct {
	// contains filtered or unexported fields
}

func NewNullableUiNodeAttributes ¶

func NewNullableUiNodeAttributes(val *UiNodeAttributes) *NullableUiNodeAttributes

func (NullableUiNodeAttributes) Get ¶

func (NullableUiNodeAttributes) IsSet ¶

func (v NullableUiNodeAttributes) IsSet() bool

func (NullableUiNodeAttributes) MarshalJSON ¶

func (v NullableUiNodeAttributes) MarshalJSON() ([]byte, error)

func (*NullableUiNodeAttributes) Set ¶

func (*NullableUiNodeAttributes) UnmarshalJSON ¶

func (v *NullableUiNodeAttributes) UnmarshalJSON(src []byte) error

func (*NullableUiNodeAttributes) Unset ¶

func (v *NullableUiNodeAttributes) Unset()

type NullableUiNodeImageAttributes ¶

type NullableUiNodeImageAttributes struct {
	// contains filtered or unexported fields
}

func (NullableUiNodeImageAttributes) Get ¶

func (NullableUiNodeImageAttributes) IsSet ¶

func (NullableUiNodeImageAttributes) MarshalJSON ¶

func (v NullableUiNodeImageAttributes) MarshalJSON() ([]byte, error)

func (*NullableUiNodeImageAttributes) Set ¶

func (*NullableUiNodeImageAttributes) UnmarshalJSON ¶

func (v *NullableUiNodeImageAttributes) UnmarshalJSON(src []byte) error

func (*NullableUiNodeImageAttributes) Unset ¶

func (v *NullableUiNodeImageAttributes) Unset()

type NullableUiNodeInputAttributes ¶

type NullableUiNodeInputAttributes struct {
	// contains filtered or unexported fields
}

func (NullableUiNodeInputAttributes) Get ¶

func (NullableUiNodeInputAttributes) IsSet ¶

func (NullableUiNodeInputAttributes) MarshalJSON ¶

func (v NullableUiNodeInputAttributes) MarshalJSON() ([]byte, error)

func (*NullableUiNodeInputAttributes) Set ¶

func (*NullableUiNodeInputAttributes) UnmarshalJSON ¶

func (v *NullableUiNodeInputAttributes) UnmarshalJSON(src []byte) error

func (*NullableUiNodeInputAttributes) Unset ¶

func (v *NullableUiNodeInputAttributes) Unset()

type NullableUiNodeMeta ¶

type NullableUiNodeMeta struct {
	// contains filtered or unexported fields
}

func NewNullableUiNodeMeta ¶

func NewNullableUiNodeMeta(val *UiNodeMeta) *NullableUiNodeMeta

func (NullableUiNodeMeta) Get ¶

func (v NullableUiNodeMeta) Get() *UiNodeMeta

func (NullableUiNodeMeta) IsSet ¶

func (v NullableUiNodeMeta) IsSet() bool

func (NullableUiNodeMeta) MarshalJSON ¶

func (v NullableUiNodeMeta) MarshalJSON() ([]byte, error)

func (*NullableUiNodeMeta) Set ¶

func (v *NullableUiNodeMeta) Set(val *UiNodeMeta)

func (*NullableUiNodeMeta) UnmarshalJSON ¶

func (v *NullableUiNodeMeta) UnmarshalJSON(src []byte) error

func (*NullableUiNodeMeta) Unset ¶

func (v *NullableUiNodeMeta) Unset()

type NullableUiNodeScriptAttributes ¶

type NullableUiNodeScriptAttributes struct {
	// contains filtered or unexported fields
}

func (NullableUiNodeScriptAttributes) Get ¶

func (NullableUiNodeScriptAttributes) IsSet ¶

func (NullableUiNodeScriptAttributes) MarshalJSON ¶

func (v NullableUiNodeScriptAttributes) MarshalJSON() ([]byte, error)

func (*NullableUiNodeScriptAttributes) Set ¶

func (*NullableUiNodeScriptAttributes) UnmarshalJSON ¶

func (v *NullableUiNodeScriptAttributes) UnmarshalJSON(src []byte) error

func (*NullableUiNodeScriptAttributes) Unset ¶

func (v *NullableUiNodeScriptAttributes) Unset()

type NullableUiNodeTextAttributes ¶

type NullableUiNodeTextAttributes struct {
	// contains filtered or unexported fields
}

func (NullableUiNodeTextAttributes) Get ¶

func (NullableUiNodeTextAttributes) IsSet ¶

func (NullableUiNodeTextAttributes) MarshalJSON ¶

func (v NullableUiNodeTextAttributes) MarshalJSON() ([]byte, error)

func (*NullableUiNodeTextAttributes) Set ¶

func (*NullableUiNodeTextAttributes) UnmarshalJSON ¶

func (v *NullableUiNodeTextAttributes) UnmarshalJSON(src []byte) error

func (*NullableUiNodeTextAttributes) Unset ¶

func (v *NullableUiNodeTextAttributes) Unset()

type NullableUiText ¶

type NullableUiText struct {
	// contains filtered or unexported fields
}

func NewNullableUiText ¶

func NewNullableUiText(val *UiText) *NullableUiText

func (NullableUiText) Get ¶

func (v NullableUiText) Get() *UiText

func (NullableUiText) IsSet ¶

func (v NullableUiText) IsSet() bool

func (NullableUiText) MarshalJSON ¶

func (v NullableUiText) MarshalJSON() ([]byte, error)

func (*NullableUiText) Set ¶

func (v *NullableUiText) Set(val *UiText)

func (*NullableUiText) UnmarshalJSON ¶

func (v *NullableUiText) UnmarshalJSON(src []byte) error

func (*NullableUiText) Unset ¶

func (v *NullableUiText) Unset()

type NullableUpdateIdentityBody ¶

type NullableUpdateIdentityBody struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateIdentityBody ¶

func NewNullableUpdateIdentityBody(val *UpdateIdentityBody) *NullableUpdateIdentityBody

func (NullableUpdateIdentityBody) Get ¶

func (NullableUpdateIdentityBody) IsSet ¶

func (v NullableUpdateIdentityBody) IsSet() bool

func (NullableUpdateIdentityBody) MarshalJSON ¶

func (v NullableUpdateIdentityBody) MarshalJSON() ([]byte, error)

func (*NullableUpdateIdentityBody) Set ¶

func (*NullableUpdateIdentityBody) UnmarshalJSON ¶

func (v *NullableUpdateIdentityBody) UnmarshalJSON(src []byte) error

func (*NullableUpdateIdentityBody) Unset ¶

func (v *NullableUpdateIdentityBody) Unset()

type NullableUpdateLoginFlowBody ¶

type NullableUpdateLoginFlowBody struct {
	// contains filtered or unexported fields
}

func (NullableUpdateLoginFlowBody) Get ¶

func (NullableUpdateLoginFlowBody) IsSet ¶

func (NullableUpdateLoginFlowBody) MarshalJSON ¶

func (v NullableUpdateLoginFlowBody) MarshalJSON() ([]byte, error)

func (*NullableUpdateLoginFlowBody) Set ¶

func (*NullableUpdateLoginFlowBody) UnmarshalJSON ¶

func (v *NullableUpdateLoginFlowBody) UnmarshalJSON(src []byte) error

func (*NullableUpdateLoginFlowBody) Unset ¶

func (v *NullableUpdateLoginFlowBody) Unset()

type NullableUpdateLoginFlowWithCodeMethod ¶

type NullableUpdateLoginFlowWithCodeMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateLoginFlowWithCodeMethod) Get ¶

func (NullableUpdateLoginFlowWithCodeMethod) IsSet ¶

func (NullableUpdateLoginFlowWithCodeMethod) MarshalJSON ¶

func (v NullableUpdateLoginFlowWithCodeMethod) MarshalJSON() ([]byte, error)

func (*NullableUpdateLoginFlowWithCodeMethod) Set ¶

func (*NullableUpdateLoginFlowWithCodeMethod) UnmarshalJSON ¶

func (v *NullableUpdateLoginFlowWithCodeMethod) UnmarshalJSON(src []byte) error

func (*NullableUpdateLoginFlowWithCodeMethod) Unset ¶

type NullableUpdateLoginFlowWithLookupSecretMethod ¶

type NullableUpdateLoginFlowWithLookupSecretMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateLoginFlowWithLookupSecretMethod) Get ¶

func (NullableUpdateLoginFlowWithLookupSecretMethod) IsSet ¶

func (NullableUpdateLoginFlowWithLookupSecretMethod) MarshalJSON ¶

func (*NullableUpdateLoginFlowWithLookupSecretMethod) Set ¶

func (*NullableUpdateLoginFlowWithLookupSecretMethod) UnmarshalJSON ¶

func (*NullableUpdateLoginFlowWithLookupSecretMethod) Unset ¶

type NullableUpdateLoginFlowWithOidcMethod ¶

type NullableUpdateLoginFlowWithOidcMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateLoginFlowWithOidcMethod) Get ¶

func (NullableUpdateLoginFlowWithOidcMethod) IsSet ¶

func (NullableUpdateLoginFlowWithOidcMethod) MarshalJSON ¶

func (v NullableUpdateLoginFlowWithOidcMethod) MarshalJSON() ([]byte, error)

func (*NullableUpdateLoginFlowWithOidcMethod) Set ¶

func (*NullableUpdateLoginFlowWithOidcMethod) UnmarshalJSON ¶

func (v *NullableUpdateLoginFlowWithOidcMethod) UnmarshalJSON(src []byte) error

func (*NullableUpdateLoginFlowWithOidcMethod) Unset ¶

type NullableUpdateLoginFlowWithPasswordMethod ¶

type NullableUpdateLoginFlowWithPasswordMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateLoginFlowWithPasswordMethod) Get ¶

func (NullableUpdateLoginFlowWithPasswordMethod) IsSet ¶

func (NullableUpdateLoginFlowWithPasswordMethod) MarshalJSON ¶

func (*NullableUpdateLoginFlowWithPasswordMethod) Set ¶

func (*NullableUpdateLoginFlowWithPasswordMethod) UnmarshalJSON ¶

func (v *NullableUpdateLoginFlowWithPasswordMethod) UnmarshalJSON(src []byte) error

func (*NullableUpdateLoginFlowWithPasswordMethod) Unset ¶

type NullableUpdateLoginFlowWithTotpMethod ¶

type NullableUpdateLoginFlowWithTotpMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateLoginFlowWithTotpMethod) Get ¶

func (NullableUpdateLoginFlowWithTotpMethod) IsSet ¶

func (NullableUpdateLoginFlowWithTotpMethod) MarshalJSON ¶

func (v NullableUpdateLoginFlowWithTotpMethod) MarshalJSON() ([]byte, error)

func (*NullableUpdateLoginFlowWithTotpMethod) Set ¶

func (*NullableUpdateLoginFlowWithTotpMethod) UnmarshalJSON ¶

func (v *NullableUpdateLoginFlowWithTotpMethod) UnmarshalJSON(src []byte) error

func (*NullableUpdateLoginFlowWithTotpMethod) Unset ¶

type NullableUpdateLoginFlowWithWebAuthnMethod ¶

type NullableUpdateLoginFlowWithWebAuthnMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateLoginFlowWithWebAuthnMethod) Get ¶

func (NullableUpdateLoginFlowWithWebAuthnMethod) IsSet ¶

func (NullableUpdateLoginFlowWithWebAuthnMethod) MarshalJSON ¶

func (*NullableUpdateLoginFlowWithWebAuthnMethod) Set ¶

func (*NullableUpdateLoginFlowWithWebAuthnMethod) UnmarshalJSON ¶

func (v *NullableUpdateLoginFlowWithWebAuthnMethod) UnmarshalJSON(src []byte) error

func (*NullableUpdateLoginFlowWithWebAuthnMethod) Unset ¶

type NullableUpdateRecoveryFlowBody ¶

type NullableUpdateRecoveryFlowBody struct {
	// contains filtered or unexported fields
}

func (NullableUpdateRecoveryFlowBody) Get ¶

func (NullableUpdateRecoveryFlowBody) IsSet ¶

func (NullableUpdateRecoveryFlowBody) MarshalJSON ¶

func (v NullableUpdateRecoveryFlowBody) MarshalJSON() ([]byte, error)

func (*NullableUpdateRecoveryFlowBody) Set ¶

func (*NullableUpdateRecoveryFlowBody) UnmarshalJSON ¶

func (v *NullableUpdateRecoveryFlowBody) UnmarshalJSON(src []byte) error

func (*NullableUpdateRecoveryFlowBody) Unset ¶

func (v *NullableUpdateRecoveryFlowBody) Unset()

type NullableUpdateRecoveryFlowWithCodeMethod ¶

type NullableUpdateRecoveryFlowWithCodeMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateRecoveryFlowWithCodeMethod) Get ¶

func (NullableUpdateRecoveryFlowWithCodeMethod) IsSet ¶

func (NullableUpdateRecoveryFlowWithCodeMethod) MarshalJSON ¶

func (*NullableUpdateRecoveryFlowWithCodeMethod) Set ¶

func (*NullableUpdateRecoveryFlowWithCodeMethod) UnmarshalJSON ¶

func (v *NullableUpdateRecoveryFlowWithCodeMethod) UnmarshalJSON(src []byte) error

func (*NullableUpdateRecoveryFlowWithCodeMethod) Unset ¶

type NullableUpdateRecoveryFlowWithLinkMethod ¶

type NullableUpdateRecoveryFlowWithLinkMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateRecoveryFlowWithLinkMethod) Get ¶

func (NullableUpdateRecoveryFlowWithLinkMethod) IsSet ¶

func (NullableUpdateRecoveryFlowWithLinkMethod) MarshalJSON ¶

func (*NullableUpdateRecoveryFlowWithLinkMethod) Set ¶

func (*NullableUpdateRecoveryFlowWithLinkMethod) UnmarshalJSON ¶

func (v *NullableUpdateRecoveryFlowWithLinkMethod) UnmarshalJSON(src []byte) error

func (*NullableUpdateRecoveryFlowWithLinkMethod) Unset ¶

type NullableUpdateRegistrationFlowBody ¶

type NullableUpdateRegistrationFlowBody struct {
	// contains filtered or unexported fields
}

func (NullableUpdateRegistrationFlowBody) Get ¶

func (NullableUpdateRegistrationFlowBody) IsSet ¶

func (NullableUpdateRegistrationFlowBody) MarshalJSON ¶

func (v NullableUpdateRegistrationFlowBody) MarshalJSON() ([]byte, error)

func (*NullableUpdateRegistrationFlowBody) Set ¶

func (*NullableUpdateRegistrationFlowBody) UnmarshalJSON ¶

func (v *NullableUpdateRegistrationFlowBody) UnmarshalJSON(src []byte) error

func (*NullableUpdateRegistrationFlowBody) Unset ¶

type NullableUpdateRegistrationFlowWithCodeMethod ¶

type NullableUpdateRegistrationFlowWithCodeMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateRegistrationFlowWithCodeMethod) Get ¶

func (NullableUpdateRegistrationFlowWithCodeMethod) IsSet ¶

func (NullableUpdateRegistrationFlowWithCodeMethod) MarshalJSON ¶

func (*NullableUpdateRegistrationFlowWithCodeMethod) Set ¶

func (*NullableUpdateRegistrationFlowWithCodeMethod) UnmarshalJSON ¶

func (*NullableUpdateRegistrationFlowWithCodeMethod) Unset ¶

type NullableUpdateRegistrationFlowWithOidcMethod ¶

type NullableUpdateRegistrationFlowWithOidcMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateRegistrationFlowWithOidcMethod) Get ¶

func (NullableUpdateRegistrationFlowWithOidcMethod) IsSet ¶

func (NullableUpdateRegistrationFlowWithOidcMethod) MarshalJSON ¶

func (*NullableUpdateRegistrationFlowWithOidcMethod) Set ¶

func (*NullableUpdateRegistrationFlowWithOidcMethod) UnmarshalJSON ¶

func (*NullableUpdateRegistrationFlowWithOidcMethod) Unset ¶

type NullableUpdateRegistrationFlowWithPasswordMethod ¶

type NullableUpdateRegistrationFlowWithPasswordMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateRegistrationFlowWithPasswordMethod) Get ¶

func (NullableUpdateRegistrationFlowWithPasswordMethod) IsSet ¶

func (NullableUpdateRegistrationFlowWithPasswordMethod) MarshalJSON ¶

func (*NullableUpdateRegistrationFlowWithPasswordMethod) Set ¶

func (*NullableUpdateRegistrationFlowWithPasswordMethod) UnmarshalJSON ¶

func (*NullableUpdateRegistrationFlowWithPasswordMethod) Unset ¶

type NullableUpdateRegistrationFlowWithWebAuthnMethod ¶

type NullableUpdateRegistrationFlowWithWebAuthnMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateRegistrationFlowWithWebAuthnMethod) Get ¶

func (NullableUpdateRegistrationFlowWithWebAuthnMethod) IsSet ¶

func (NullableUpdateRegistrationFlowWithWebAuthnMethod) MarshalJSON ¶

func (*NullableUpdateRegistrationFlowWithWebAuthnMethod) Set ¶

func (*NullableUpdateRegistrationFlowWithWebAuthnMethod) UnmarshalJSON ¶

func (*NullableUpdateRegistrationFlowWithWebAuthnMethod) Unset ¶

type NullableUpdateSettingsFlowBody ¶

type NullableUpdateSettingsFlowBody struct {
	// contains filtered or unexported fields
}

func (NullableUpdateSettingsFlowBody) Get ¶

func (NullableUpdateSettingsFlowBody) IsSet ¶

func (NullableUpdateSettingsFlowBody) MarshalJSON ¶

func (v NullableUpdateSettingsFlowBody) MarshalJSON() ([]byte, error)

func (*NullableUpdateSettingsFlowBody) Set ¶

func (*NullableUpdateSettingsFlowBody) UnmarshalJSON ¶

func (v *NullableUpdateSettingsFlowBody) UnmarshalJSON(src []byte) error

func (*NullableUpdateSettingsFlowBody) Unset ¶

func (v *NullableUpdateSettingsFlowBody) Unset()

type NullableUpdateSettingsFlowWithLookupMethod ¶

type NullableUpdateSettingsFlowWithLookupMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateSettingsFlowWithLookupMethod) Get ¶

func (NullableUpdateSettingsFlowWithLookupMethod) IsSet ¶

func (NullableUpdateSettingsFlowWithLookupMethod) MarshalJSON ¶

func (*NullableUpdateSettingsFlowWithLookupMethod) Set ¶

func (*NullableUpdateSettingsFlowWithLookupMethod) UnmarshalJSON ¶

func (v *NullableUpdateSettingsFlowWithLookupMethod) UnmarshalJSON(src []byte) error

func (*NullableUpdateSettingsFlowWithLookupMethod) Unset ¶

type NullableUpdateSettingsFlowWithOidcMethod ¶

type NullableUpdateSettingsFlowWithOidcMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateSettingsFlowWithOidcMethod) Get ¶

func (NullableUpdateSettingsFlowWithOidcMethod) IsSet ¶

func (NullableUpdateSettingsFlowWithOidcMethod) MarshalJSON ¶

func (*NullableUpdateSettingsFlowWithOidcMethod) Set ¶

func (*NullableUpdateSettingsFlowWithOidcMethod) UnmarshalJSON ¶

func (v *NullableUpdateSettingsFlowWithOidcMethod) UnmarshalJSON(src []byte) error

func (*NullableUpdateSettingsFlowWithOidcMethod) Unset ¶

type NullableUpdateSettingsFlowWithPasswordMethod ¶

type NullableUpdateSettingsFlowWithPasswordMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateSettingsFlowWithPasswordMethod) Get ¶

func (NullableUpdateSettingsFlowWithPasswordMethod) IsSet ¶

func (NullableUpdateSettingsFlowWithPasswordMethod) MarshalJSON ¶

func (*NullableUpdateSettingsFlowWithPasswordMethod) Set ¶

func (*NullableUpdateSettingsFlowWithPasswordMethod) UnmarshalJSON ¶

func (*NullableUpdateSettingsFlowWithPasswordMethod) Unset ¶

type NullableUpdateSettingsFlowWithProfileMethod ¶

type NullableUpdateSettingsFlowWithProfileMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateSettingsFlowWithProfileMethod) Get ¶

func (NullableUpdateSettingsFlowWithProfileMethod) IsSet ¶

func (NullableUpdateSettingsFlowWithProfileMethod) MarshalJSON ¶

func (*NullableUpdateSettingsFlowWithProfileMethod) Set ¶

func (*NullableUpdateSettingsFlowWithProfileMethod) UnmarshalJSON ¶

func (v *NullableUpdateSettingsFlowWithProfileMethod) UnmarshalJSON(src []byte) error

func (*NullableUpdateSettingsFlowWithProfileMethod) Unset ¶

type NullableUpdateSettingsFlowWithTotpMethod ¶

type NullableUpdateSettingsFlowWithTotpMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateSettingsFlowWithTotpMethod) Get ¶

func (NullableUpdateSettingsFlowWithTotpMethod) IsSet ¶

func (NullableUpdateSettingsFlowWithTotpMethod) MarshalJSON ¶

func (*NullableUpdateSettingsFlowWithTotpMethod) Set ¶

func (*NullableUpdateSettingsFlowWithTotpMethod) UnmarshalJSON ¶

func (v *NullableUpdateSettingsFlowWithTotpMethod) UnmarshalJSON(src []byte) error

func (*NullableUpdateSettingsFlowWithTotpMethod) Unset ¶

type NullableUpdateSettingsFlowWithWebAuthnMethod ¶

type NullableUpdateSettingsFlowWithWebAuthnMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateSettingsFlowWithWebAuthnMethod) Get ¶

func (NullableUpdateSettingsFlowWithWebAuthnMethod) IsSet ¶

func (NullableUpdateSettingsFlowWithWebAuthnMethod) MarshalJSON ¶

func (*NullableUpdateSettingsFlowWithWebAuthnMethod) Set ¶

func (*NullableUpdateSettingsFlowWithWebAuthnMethod) UnmarshalJSON ¶

func (*NullableUpdateSettingsFlowWithWebAuthnMethod) Unset ¶

type NullableUpdateSubscriptionBody ¶

type NullableUpdateSubscriptionBody struct {
	// contains filtered or unexported fields
}

func (NullableUpdateSubscriptionBody) Get ¶

func (NullableUpdateSubscriptionBody) IsSet ¶

func (NullableUpdateSubscriptionBody) MarshalJSON ¶

func (v NullableUpdateSubscriptionBody) MarshalJSON() ([]byte, error)

func (*NullableUpdateSubscriptionBody) Set ¶

func (*NullableUpdateSubscriptionBody) UnmarshalJSON ¶

func (v *NullableUpdateSubscriptionBody) UnmarshalJSON(src []byte) error

func (*NullableUpdateSubscriptionBody) Unset ¶

func (v *NullableUpdateSubscriptionBody) Unset()

type NullableUpdateVerificationFlowBody ¶

type NullableUpdateVerificationFlowBody struct {
	// contains filtered or unexported fields
}

func (NullableUpdateVerificationFlowBody) Get ¶

func (NullableUpdateVerificationFlowBody) IsSet ¶

func (NullableUpdateVerificationFlowBody) MarshalJSON ¶

func (v NullableUpdateVerificationFlowBody) MarshalJSON() ([]byte, error)

func (*NullableUpdateVerificationFlowBody) Set ¶

func (*NullableUpdateVerificationFlowBody) UnmarshalJSON ¶

func (v *NullableUpdateVerificationFlowBody) UnmarshalJSON(src []byte) error

func (*NullableUpdateVerificationFlowBody) Unset ¶

type NullableUpdateVerificationFlowWithCodeMethod ¶

type NullableUpdateVerificationFlowWithCodeMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateVerificationFlowWithCodeMethod) Get ¶

func (NullableUpdateVerificationFlowWithCodeMethod) IsSet ¶

func (NullableUpdateVerificationFlowWithCodeMethod) MarshalJSON ¶

func (*NullableUpdateVerificationFlowWithCodeMethod) Set ¶

func (*NullableUpdateVerificationFlowWithCodeMethod) UnmarshalJSON ¶

func (*NullableUpdateVerificationFlowWithCodeMethod) Unset ¶

type NullableUpdateVerificationFlowWithLinkMethod ¶

type NullableUpdateVerificationFlowWithLinkMethod struct {
	// contains filtered or unexported fields
}

func (NullableUpdateVerificationFlowWithLinkMethod) Get ¶

func (NullableUpdateVerificationFlowWithLinkMethod) IsSet ¶

func (NullableUpdateVerificationFlowWithLinkMethod) MarshalJSON ¶

func (*NullableUpdateVerificationFlowWithLinkMethod) Set ¶

func (*NullableUpdateVerificationFlowWithLinkMethod) UnmarshalJSON ¶

func (*NullableUpdateVerificationFlowWithLinkMethod) Unset ¶

type NullableUsage ¶

type NullableUsage struct {
	// contains filtered or unexported fields
}

func NewNullableUsage ¶

func NewNullableUsage(val *Usage) *NullableUsage

func (NullableUsage) Get ¶

func (v NullableUsage) Get() *Usage

func (NullableUsage) IsSet ¶

func (v NullableUsage) IsSet() bool

func (NullableUsage) MarshalJSON ¶

func (v NullableUsage) MarshalJSON() ([]byte, error)

func (*NullableUsage) Set ¶

func (v *NullableUsage) Set(val *Usage)

func (*NullableUsage) UnmarshalJSON ¶

func (v *NullableUsage) UnmarshalJSON(src []byte) error

func (*NullableUsage) Unset ¶

func (v *NullableUsage) Unset()

type NullableVerifiableCredentialPrimingResponse ¶

type NullableVerifiableCredentialPrimingResponse struct {
	// contains filtered or unexported fields
}

func (NullableVerifiableCredentialPrimingResponse) Get ¶

func (NullableVerifiableCredentialPrimingResponse) IsSet ¶

func (NullableVerifiableCredentialPrimingResponse) MarshalJSON ¶

func (*NullableVerifiableCredentialPrimingResponse) Set ¶

func (*NullableVerifiableCredentialPrimingResponse) UnmarshalJSON ¶

func (v *NullableVerifiableCredentialPrimingResponse) UnmarshalJSON(src []byte) error

func (*NullableVerifiableCredentialPrimingResponse) Unset ¶

type NullableVerifiableCredentialProof ¶

type NullableVerifiableCredentialProof struct {
	// contains filtered or unexported fields
}

func (NullableVerifiableCredentialProof) Get ¶

func (NullableVerifiableCredentialProof) IsSet ¶

func (NullableVerifiableCredentialProof) MarshalJSON ¶

func (v NullableVerifiableCredentialProof) MarshalJSON() ([]byte, error)

func (*NullableVerifiableCredentialProof) Set ¶

func (*NullableVerifiableCredentialProof) UnmarshalJSON ¶

func (v *NullableVerifiableCredentialProof) UnmarshalJSON(src []byte) error

func (*NullableVerifiableCredentialProof) Unset ¶

type NullableVerifiableCredentialResponse ¶

type NullableVerifiableCredentialResponse struct {
	// contains filtered or unexported fields
}

func (NullableVerifiableCredentialResponse) Get ¶

func (NullableVerifiableCredentialResponse) IsSet ¶

func (NullableVerifiableCredentialResponse) MarshalJSON ¶

func (v NullableVerifiableCredentialResponse) MarshalJSON() ([]byte, error)

func (*NullableVerifiableCredentialResponse) Set ¶

func (*NullableVerifiableCredentialResponse) UnmarshalJSON ¶

func (v *NullableVerifiableCredentialResponse) UnmarshalJSON(src []byte) error

func (*NullableVerifiableCredentialResponse) Unset ¶

type NullableVerifiableIdentityAddress ¶

type NullableVerifiableIdentityAddress struct {
	// contains filtered or unexported fields
}

func (NullableVerifiableIdentityAddress) Get ¶

func (NullableVerifiableIdentityAddress) IsSet ¶

func (NullableVerifiableIdentityAddress) MarshalJSON ¶

func (v NullableVerifiableIdentityAddress) MarshalJSON() ([]byte, error)

func (*NullableVerifiableIdentityAddress) Set ¶

func (*NullableVerifiableIdentityAddress) UnmarshalJSON ¶

func (v *NullableVerifiableIdentityAddress) UnmarshalJSON(src []byte) error

func (*NullableVerifiableIdentityAddress) Unset ¶

type NullableVerificationFlow ¶

type NullableVerificationFlow struct {
	// contains filtered or unexported fields
}

func NewNullableVerificationFlow ¶

func NewNullableVerificationFlow(val *VerificationFlow) *NullableVerificationFlow

func (NullableVerificationFlow) Get ¶

func (NullableVerificationFlow) IsSet ¶

func (v NullableVerificationFlow) IsSet() bool

func (NullableVerificationFlow) MarshalJSON ¶

func (v NullableVerificationFlow) MarshalJSON() ([]byte, error)

func (*NullableVerificationFlow) Set ¶

func (*NullableVerificationFlow) UnmarshalJSON ¶

func (v *NullableVerificationFlow) UnmarshalJSON(src []byte) error

func (*NullableVerificationFlow) Unset ¶

func (v *NullableVerificationFlow) Unset()

type NullableVerificationFlowState ¶

type NullableVerificationFlowState struct {
	// contains filtered or unexported fields
}

func (NullableVerificationFlowState) Get ¶

func (NullableVerificationFlowState) IsSet ¶

func (NullableVerificationFlowState) MarshalJSON ¶

func (v NullableVerificationFlowState) MarshalJSON() ([]byte, error)

func (*NullableVerificationFlowState) Set ¶

func (*NullableVerificationFlowState) UnmarshalJSON ¶

func (v *NullableVerificationFlowState) UnmarshalJSON(src []byte) error

func (*NullableVerificationFlowState) Unset ¶

func (v *NullableVerificationFlowState) Unset()

type NullableVersion ¶

type NullableVersion struct {
	// contains filtered or unexported fields
}

func NewNullableVersion ¶

func NewNullableVersion(val *Version) *NullableVersion

func (NullableVersion) Get ¶

func (v NullableVersion) Get() *Version

func (NullableVersion) IsSet ¶

func (v NullableVersion) IsSet() bool

func (NullableVersion) MarshalJSON ¶

func (v NullableVersion) MarshalJSON() ([]byte, error)

func (*NullableVersion) Set ¶

func (v *NullableVersion) Set(val *Version)

func (*NullableVersion) UnmarshalJSON ¶

func (v *NullableVersion) UnmarshalJSON(src []byte) error

func (*NullableVersion) Unset ¶

func (v *NullableVersion) Unset()

type NullableWarning ¶

type NullableWarning struct {
	// contains filtered or unexported fields
}

func NewNullableWarning ¶

func NewNullableWarning(val *Warning) *NullableWarning

func (NullableWarning) Get ¶

func (v NullableWarning) Get() *Warning

func (NullableWarning) IsSet ¶

func (v NullableWarning) IsSet() bool

func (NullableWarning) MarshalJSON ¶

func (v NullableWarning) MarshalJSON() ([]byte, error)

func (*NullableWarning) Set ¶

func (v *NullableWarning) Set(val *Warning)

func (*NullableWarning) UnmarshalJSON ¶

func (v *NullableWarning) UnmarshalJSON(src []byte) error

func (*NullableWarning) Unset ¶

func (v *NullableWarning) Unset()

type NullableWorkspace ¶

type NullableWorkspace struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspace ¶

func NewNullableWorkspace(val *Workspace) *NullableWorkspace

func (NullableWorkspace) Get ¶

func (v NullableWorkspace) Get() *Workspace

func (NullableWorkspace) IsSet ¶

func (v NullableWorkspace) IsSet() bool

func (NullableWorkspace) MarshalJSON ¶

func (v NullableWorkspace) MarshalJSON() ([]byte, error)

func (*NullableWorkspace) Set ¶

func (v *NullableWorkspace) Set(val *Workspace)

func (*NullableWorkspace) UnmarshalJSON ¶

func (v *NullableWorkspace) UnmarshalJSON(src []byte) error

func (*NullableWorkspace) Unset ¶

func (v *NullableWorkspace) Unset()

type OAuth2API ¶

type OAuth2API interface {

	/*
		AcceptOAuth2ConsentRequest Accept OAuth 2.0 Consent Request

		When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider
	to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if
	the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject's behalf.

	The consent challenge is appended to the consent provider's URL to which the subject's user-agent (browser) is redirected to. The consent
	provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted
	or rejected the request.

	This endpoint tells Ory that the subject has authorized the OAuth 2.0 client to access resources on his/her behalf.
	The consent provider includes additional information, such as session data for access and ID tokens, and if the
	consent request should be used as basis for future requests.

	The response contains a redirect URL which the consent provider should redirect the user-agent to.

	The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please
	head over to the OAuth 2.0 documentation.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIAcceptOAuth2ConsentRequestRequest
	*/
	AcceptOAuth2ConsentRequest(ctx context.Context) OAuth2APIAcceptOAuth2ConsentRequestRequest

	// AcceptOAuth2ConsentRequestExecute executes the request
	//  @return OAuth2RedirectTo
	AcceptOAuth2ConsentRequestExecute(r OAuth2APIAcceptOAuth2ConsentRequestRequest) (*OAuth2RedirectTo, *http.Response, error)

	/*
		AcceptOAuth2LoginRequest Accept OAuth 2.0 Login Request

		When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider
	to authenticate the subject and then tell the Ory OAuth2 Service about it.

	The authentication challenge is appended to the login provider URL to which the subject's user-agent (browser) is redirected to. The login
	provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process.

	This endpoint tells Ory that the subject has successfully authenticated and includes additional information such as
	the subject's ID and if Ory should remember the subject's subject agent for future authentication attempts by setting
	a cookie.

	The response contains a redirect URL which the login provider should redirect the user-agent to.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIAcceptOAuth2LoginRequestRequest
	*/
	AcceptOAuth2LoginRequest(ctx context.Context) OAuth2APIAcceptOAuth2LoginRequestRequest

	// AcceptOAuth2LoginRequestExecute executes the request
	//  @return OAuth2RedirectTo
	AcceptOAuth2LoginRequestExecute(r OAuth2APIAcceptOAuth2LoginRequestRequest) (*OAuth2RedirectTo, *http.Response, error)

	/*
		AcceptOAuth2LogoutRequest Accept OAuth 2.0 Session Logout Request

		When a user or an application requests Ory OAuth 2.0 to remove the session state of a subject, this endpoint is used to confirm that logout request.

	The response contains a redirect URL which the consent provider should redirect the user-agent to.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIAcceptOAuth2LogoutRequestRequest
	*/
	AcceptOAuth2LogoutRequest(ctx context.Context) OAuth2APIAcceptOAuth2LogoutRequestRequest

	// AcceptOAuth2LogoutRequestExecute executes the request
	//  @return OAuth2RedirectTo
	AcceptOAuth2LogoutRequestExecute(r OAuth2APIAcceptOAuth2LogoutRequestRequest) (*OAuth2RedirectTo, *http.Response, error)

	/*
		CreateOAuth2Client Create OAuth 2.0 Client

		Create a new OAuth 2.0 client. If you pass `client_secret` the secret is used, otherwise a random secret
	is generated. The secret is echoed in the response. It is not possible to retrieve it later on.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APICreateOAuth2ClientRequest
	*/
	CreateOAuth2Client(ctx context.Context) OAuth2APICreateOAuth2ClientRequest

	// CreateOAuth2ClientExecute executes the request
	//  @return OAuth2Client
	CreateOAuth2ClientExecute(r OAuth2APICreateOAuth2ClientRequest) (*OAuth2Client, *http.Response, error)

	/*
		DeleteOAuth2Client Delete OAuth 2.0 Client

		Delete an existing OAuth 2.0 Client by its ID.

	OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are
	generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.

	Make sure that this endpoint is well protected and only callable by first-party components.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the OAuth 2.0 Client.
		@return OAuth2APIDeleteOAuth2ClientRequest
	*/
	DeleteOAuth2Client(ctx context.Context, id string) OAuth2APIDeleteOAuth2ClientRequest

	// DeleteOAuth2ClientExecute executes the request
	DeleteOAuth2ClientExecute(r OAuth2APIDeleteOAuth2ClientRequest) (*http.Response, error)

	/*
		DeleteOAuth2Token Delete OAuth 2.0 Access Tokens from specific OAuth 2.0 Client

		This endpoint deletes OAuth2 access tokens issued to an OAuth 2.0 Client from the database.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIDeleteOAuth2TokenRequest
	*/
	DeleteOAuth2Token(ctx context.Context) OAuth2APIDeleteOAuth2TokenRequest

	// DeleteOAuth2TokenExecute executes the request
	DeleteOAuth2TokenExecute(r OAuth2APIDeleteOAuth2TokenRequest) (*http.Response, error)

	/*
		DeleteTrustedOAuth2JwtGrantIssuer Delete Trusted OAuth2 JWT Bearer Grant Type Issuer

		Use this endpoint to delete trusted JWT Bearer Grant Type Issuer. The ID is the one returned when you
	created the trust relationship.

	Once deleted, the associated issuer will no longer be able to perform the JSON Web Token (JWT) Profile
	for OAuth 2.0 Client Authentication and Authorization Grant.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the desired grant
		@return OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest
	*/
	DeleteTrustedOAuth2JwtGrantIssuer(ctx context.Context, id string) OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest

	// DeleteTrustedOAuth2JwtGrantIssuerExecute executes the request
	DeleteTrustedOAuth2JwtGrantIssuerExecute(r OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest) (*http.Response, error)

	/*
		GetOAuth2Client Get an OAuth 2.0 Client

		Get an OAuth 2.0 client by its ID. This endpoint never returns the client secret.

	OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are
	generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the OAuth 2.0 Client.
		@return OAuth2APIGetOAuth2ClientRequest
	*/
	GetOAuth2Client(ctx context.Context, id string) OAuth2APIGetOAuth2ClientRequest

	// GetOAuth2ClientExecute executes the request
	//  @return OAuth2Client
	GetOAuth2ClientExecute(r OAuth2APIGetOAuth2ClientRequest) (*OAuth2Client, *http.Response, error)

	/*
		GetOAuth2ConsentRequest Get OAuth 2.0 Consent Request

		When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider
	to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if
	the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject's behalf.

	The consent challenge is appended to the consent provider's URL to which the subject's user-agent (browser) is redirected to. The consent
	provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted
	or rejected the request.

	The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please
	head over to the OAuth 2.0 documentation.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIGetOAuth2ConsentRequestRequest
	*/
	GetOAuth2ConsentRequest(ctx context.Context) OAuth2APIGetOAuth2ConsentRequestRequest

	// GetOAuth2ConsentRequestExecute executes the request
	//  @return OAuth2ConsentRequest
	GetOAuth2ConsentRequestExecute(r OAuth2APIGetOAuth2ConsentRequestRequest) (*OAuth2ConsentRequest, *http.Response, error)

	/*
		GetOAuth2LoginRequest Get OAuth 2.0 Login Request

		When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider
	to authenticate the subject and then tell the Ory OAuth2 Service about it.

	Per default, the login provider is Ory itself. You may use a different login provider which needs to be a web-app
	you write and host, and it must be able to authenticate ("show the subject a login screen")
	a subject (in OAuth2 the proper name for subject is "resource owner").

	The authentication challenge is appended to the login provider URL to which the subject's user-agent (browser) is redirected to. The login
	provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIGetOAuth2LoginRequestRequest
	*/
	GetOAuth2LoginRequest(ctx context.Context) OAuth2APIGetOAuth2LoginRequestRequest

	// GetOAuth2LoginRequestExecute executes the request
	//  @return OAuth2LoginRequest
	GetOAuth2LoginRequestExecute(r OAuth2APIGetOAuth2LoginRequestRequest) (*OAuth2LoginRequest, *http.Response, error)

	/*
		GetOAuth2LogoutRequest Get OAuth 2.0 Session Logout Request

		Use this endpoint to fetch an Ory OAuth 2.0 logout request.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIGetOAuth2LogoutRequestRequest
	*/
	GetOAuth2LogoutRequest(ctx context.Context) OAuth2APIGetOAuth2LogoutRequestRequest

	// GetOAuth2LogoutRequestExecute executes the request
	//  @return OAuth2LogoutRequest
	GetOAuth2LogoutRequestExecute(r OAuth2APIGetOAuth2LogoutRequestRequest) (*OAuth2LogoutRequest, *http.Response, error)

	/*
		GetTrustedOAuth2JwtGrantIssuer Get Trusted OAuth2 JWT Bearer Grant Type Issuer

		Use this endpoint to get a trusted JWT Bearer Grant Type Issuer. The ID is the one returned when you
	created the trust relationship.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the desired grant
		@return OAuth2APIGetTrustedOAuth2JwtGrantIssuerRequest
	*/
	GetTrustedOAuth2JwtGrantIssuer(ctx context.Context, id string) OAuth2APIGetTrustedOAuth2JwtGrantIssuerRequest

	// GetTrustedOAuth2JwtGrantIssuerExecute executes the request
	//  @return TrustedOAuth2JwtGrantIssuer
	GetTrustedOAuth2JwtGrantIssuerExecute(r OAuth2APIGetTrustedOAuth2JwtGrantIssuerRequest) (*TrustedOAuth2JwtGrantIssuer, *http.Response, error)

	/*
		IntrospectOAuth2Token Introspect OAuth2 Access and Refresh Tokens

		The introspection endpoint allows to check if a token (both refresh and access) is active or not. An active token
	is neither expired nor revoked. If a token is active, additional information on the token will be included. You can
	set additional data for a token by setting `session.access_token` during the consent flow.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIIntrospectOAuth2TokenRequest
	*/
	IntrospectOAuth2Token(ctx context.Context) OAuth2APIIntrospectOAuth2TokenRequest

	// IntrospectOAuth2TokenExecute executes the request
	//  @return IntrospectedOAuth2Token
	IntrospectOAuth2TokenExecute(r OAuth2APIIntrospectOAuth2TokenRequest) (*IntrospectedOAuth2Token, *http.Response, error)

	/*
		ListOAuth2Clients List OAuth 2.0 Clients

		This endpoint lists all clients in the database, and never returns client secrets.
	As a default it lists the first 100 clients.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIListOAuth2ClientsRequest
	*/
	ListOAuth2Clients(ctx context.Context) OAuth2APIListOAuth2ClientsRequest

	// ListOAuth2ClientsExecute executes the request
	//  @return []OAuth2Client
	ListOAuth2ClientsExecute(r OAuth2APIListOAuth2ClientsRequest) ([]OAuth2Client, *http.Response, error)

	/*
		ListOAuth2ConsentSessions List OAuth 2.0 Consent Sessions of a Subject

		This endpoint lists all subject's granted consent sessions, including client and granted scope.
	If the subject is unknown or has not granted any consent sessions yet, the endpoint returns an
	empty JSON array with status code 200 OK.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIListOAuth2ConsentSessionsRequest
	*/
	ListOAuth2ConsentSessions(ctx context.Context) OAuth2APIListOAuth2ConsentSessionsRequest

	// ListOAuth2ConsentSessionsExecute executes the request
	//  @return []OAuth2ConsentSession
	ListOAuth2ConsentSessionsExecute(r OAuth2APIListOAuth2ConsentSessionsRequest) ([]OAuth2ConsentSession, *http.Response, error)

	/*
		ListTrustedOAuth2JwtGrantIssuers List Trusted OAuth2 JWT Bearer Grant Type Issuers

		Use this endpoint to list all trusted JWT Bearer Grant Type Issuers.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest
	*/
	ListTrustedOAuth2JwtGrantIssuers(ctx context.Context) OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest

	// ListTrustedOAuth2JwtGrantIssuersExecute executes the request
	//  @return []TrustedOAuth2JwtGrantIssuer
	ListTrustedOAuth2JwtGrantIssuersExecute(r OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest) ([]TrustedOAuth2JwtGrantIssuer, *http.Response, error)

	/*
		OAuth2Authorize OAuth 2.0 Authorize Endpoint

		Use open source libraries to perform OAuth 2.0 and OpenID Connect
	available for any programming language. You can find a list of libraries at https://oauth.net/code/

	The Ory SDK is not yet able to this endpoint properly.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIOAuth2AuthorizeRequest
	*/
	OAuth2Authorize(ctx context.Context) OAuth2APIOAuth2AuthorizeRequest

	// OAuth2AuthorizeExecute executes the request
	//  @return ErrorOAuth2
	OAuth2AuthorizeExecute(r OAuth2APIOAuth2AuthorizeRequest) (*ErrorOAuth2, *http.Response, error)

	/*
		Oauth2TokenExchange The OAuth 2.0 Token Endpoint

		Use open source libraries to perform OAuth 2.0 and OpenID Connect
	available for any programming language. You can find a list of libraries here https://oauth.net/code/

	The Ory SDK is not yet able to this endpoint properly.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIOauth2TokenExchangeRequest
	*/
	Oauth2TokenExchange(ctx context.Context) OAuth2APIOauth2TokenExchangeRequest

	// Oauth2TokenExchangeExecute executes the request
	//  @return OAuth2TokenExchange
	Oauth2TokenExchangeExecute(r OAuth2APIOauth2TokenExchangeRequest) (*OAuth2TokenExchange, *http.Response, error)

	/*
		PatchOAuth2Client Patch OAuth 2.0 Client

		Patch an existing OAuth 2.0 Client using JSON Patch. If you pass `client_secret`
	the secret will be updated and returned via the API. This is the
	only time you will be able to retrieve the client secret, so write it down and keep it safe.

	OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are
	generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the OAuth 2.0 Client.
		@return OAuth2APIPatchOAuth2ClientRequest
	*/
	PatchOAuth2Client(ctx context.Context, id string) OAuth2APIPatchOAuth2ClientRequest

	// PatchOAuth2ClientExecute executes the request
	//  @return OAuth2Client
	PatchOAuth2ClientExecute(r OAuth2APIPatchOAuth2ClientRequest) (*OAuth2Client, *http.Response, error)

	/*
		RejectOAuth2ConsentRequest Reject OAuth 2.0 Consent Request

		When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider
	to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if
	the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject's behalf.

	The consent challenge is appended to the consent provider's URL to which the subject's user-agent (browser) is redirected to. The consent
	provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted
	or rejected the request.

	This endpoint tells Ory that the subject has not authorized the OAuth 2.0 client to access resources on his/her behalf.
	The consent provider must include a reason why the consent was not granted.

	The response contains a redirect URL which the consent provider should redirect the user-agent to.

	The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please
	head over to the OAuth 2.0 documentation.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIRejectOAuth2ConsentRequestRequest
	*/
	RejectOAuth2ConsentRequest(ctx context.Context) OAuth2APIRejectOAuth2ConsentRequestRequest

	// RejectOAuth2ConsentRequestExecute executes the request
	//  @return OAuth2RedirectTo
	RejectOAuth2ConsentRequestExecute(r OAuth2APIRejectOAuth2ConsentRequestRequest) (*OAuth2RedirectTo, *http.Response, error)

	/*
		RejectOAuth2LoginRequest Reject OAuth 2.0 Login Request

		When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider
	to authenticate the subject and then tell the Ory OAuth2 Service about it.

	The authentication challenge is appended to the login provider URL to which the subject's user-agent (browser) is redirected to. The login
	provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process.

	This endpoint tells Ory that the subject has not authenticated and includes a reason why the authentication
	was denied.

	The response contains a redirect URL which the login provider should redirect the user-agent to.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIRejectOAuth2LoginRequestRequest
	*/
	RejectOAuth2LoginRequest(ctx context.Context) OAuth2APIRejectOAuth2LoginRequestRequest

	// RejectOAuth2LoginRequestExecute executes the request
	//  @return OAuth2RedirectTo
	RejectOAuth2LoginRequestExecute(r OAuth2APIRejectOAuth2LoginRequestRequest) (*OAuth2RedirectTo, *http.Response, error)

	/*
		RejectOAuth2LogoutRequest Reject OAuth 2.0 Session Logout Request

		When a user or an application requests Ory OAuth 2.0 to remove the session state of a subject, this endpoint is used to deny that logout request.
	No HTTP request body is required.

	The response is empty as the logout provider has to chose what action to perform next.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIRejectOAuth2LogoutRequestRequest
	*/
	RejectOAuth2LogoutRequest(ctx context.Context) OAuth2APIRejectOAuth2LogoutRequestRequest

	// RejectOAuth2LogoutRequestExecute executes the request
	RejectOAuth2LogoutRequestExecute(r OAuth2APIRejectOAuth2LogoutRequestRequest) (*http.Response, error)

	/*
		RevokeOAuth2ConsentSessions Revoke OAuth 2.0 Consent Sessions of a Subject

		This endpoint revokes a subject's granted consent sessions and invalidates all
	associated OAuth 2.0 Access Tokens. You may also only revoke sessions for a specific OAuth 2.0 Client ID.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIRevokeOAuth2ConsentSessionsRequest
	*/
	RevokeOAuth2ConsentSessions(ctx context.Context) OAuth2APIRevokeOAuth2ConsentSessionsRequest

	// RevokeOAuth2ConsentSessionsExecute executes the request
	RevokeOAuth2ConsentSessionsExecute(r OAuth2APIRevokeOAuth2ConsentSessionsRequest) (*http.Response, error)

	/*
		RevokeOAuth2LoginSessions Revokes OAuth 2.0 Login Sessions by either a Subject or a SessionID

		This endpoint invalidates authentication sessions. After revoking the authentication session(s), the subject
	has to re-authenticate at the Ory OAuth2 Provider. This endpoint does not invalidate any tokens.

	If you send the subject in a query param, all authentication sessions that belong to that subject are revoked.
	No OpenID Connect Front- or Back-channel logout is performed in this case.

	Alternatively, you can send a SessionID via `sid` query param, in which case, only the session that is connected
	to that SessionID is revoked. OpenID Connect Back-channel logout is performed in this case.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIRevokeOAuth2LoginSessionsRequest
	*/
	RevokeOAuth2LoginSessions(ctx context.Context) OAuth2APIRevokeOAuth2LoginSessionsRequest

	// RevokeOAuth2LoginSessionsExecute executes the request
	RevokeOAuth2LoginSessionsExecute(r OAuth2APIRevokeOAuth2LoginSessionsRequest) (*http.Response, error)

	/*
		RevokeOAuth2Token Revoke OAuth 2.0 Access or Refresh Token

		Revoking a token (both access and refresh) means that the tokens will be invalid. A revoked access token can no
	longer be used to make access requests, and a revoked refresh token can no longer be used to refresh an access token.
	Revoking a refresh token also invalidates the access token that was created with it. A token may only be revoked by
	the client the token was generated for.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APIRevokeOAuth2TokenRequest
	*/
	RevokeOAuth2Token(ctx context.Context) OAuth2APIRevokeOAuth2TokenRequest

	// RevokeOAuth2TokenExecute executes the request
	RevokeOAuth2TokenExecute(r OAuth2APIRevokeOAuth2TokenRequest) (*http.Response, error)

	/*
		SetOAuth2Client Set OAuth 2.0 Client

		Replaces an existing OAuth 2.0 Client with the payload you send. If you pass `client_secret` the secret is used,
	otherwise the existing secret is used.

	If set, the secret is echoed in the response. It is not possible to retrieve it later on.

	OAuth 2.0 Clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are
	generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id OAuth 2.0 Client ID
		@return OAuth2APISetOAuth2ClientRequest
	*/
	SetOAuth2Client(ctx context.Context, id string) OAuth2APISetOAuth2ClientRequest

	// SetOAuth2ClientExecute executes the request
	//  @return OAuth2Client
	SetOAuth2ClientExecute(r OAuth2APISetOAuth2ClientRequest) (*OAuth2Client, *http.Response, error)

	/*
		SetOAuth2ClientLifespans Set OAuth2 Client Token Lifespans

		Set lifespans of different token types issued for this OAuth 2.0 client. Does not modify other fields.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id OAuth 2.0 Client ID
		@return OAuth2APISetOAuth2ClientLifespansRequest
	*/
	SetOAuth2ClientLifespans(ctx context.Context, id string) OAuth2APISetOAuth2ClientLifespansRequest

	// SetOAuth2ClientLifespansExecute executes the request
	//  @return OAuth2Client
	SetOAuth2ClientLifespansExecute(r OAuth2APISetOAuth2ClientLifespansRequest) (*OAuth2Client, *http.Response, error)

	/*
		TrustOAuth2JwtGrantIssuer Trust OAuth2 JWT Bearer Grant Type Issuer

		Use this endpoint to establish a trust relationship for a JWT issuer
	to perform JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication
	and Authorization Grants [RFC7523](https://datatracker.ietf.org/doc/html/rfc7523).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OAuth2APITrustOAuth2JwtGrantIssuerRequest
	*/
	TrustOAuth2JwtGrantIssuer(ctx context.Context) OAuth2APITrustOAuth2JwtGrantIssuerRequest

	// TrustOAuth2JwtGrantIssuerExecute executes the request
	//  @return TrustedOAuth2JwtGrantIssuer
	TrustOAuth2JwtGrantIssuerExecute(r OAuth2APITrustOAuth2JwtGrantIssuerRequest) (*TrustedOAuth2JwtGrantIssuer, *http.Response, error)
}

type OAuth2APIAcceptOAuth2ConsentRequestRequest ¶

type OAuth2APIAcceptOAuth2ConsentRequestRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIAcceptOAuth2ConsentRequestRequest) AcceptOAuth2ConsentRequest ¶

func (OAuth2APIAcceptOAuth2ConsentRequestRequest) ConsentChallenge ¶

OAuth 2.0 Consent Request Challenge

func (OAuth2APIAcceptOAuth2ConsentRequestRequest) Execute ¶

type OAuth2APIAcceptOAuth2LoginRequestRequest ¶

type OAuth2APIAcceptOAuth2LoginRequestRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIAcceptOAuth2LoginRequestRequest) AcceptOAuth2LoginRequest ¶

func (OAuth2APIAcceptOAuth2LoginRequestRequest) Execute ¶

func (OAuth2APIAcceptOAuth2LoginRequestRequest) LoginChallenge ¶

OAuth 2.0 Login Request Challenge

type OAuth2APIAcceptOAuth2LogoutRequestRequest ¶

type OAuth2APIAcceptOAuth2LogoutRequestRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIAcceptOAuth2LogoutRequestRequest) Execute ¶

func (OAuth2APIAcceptOAuth2LogoutRequestRequest) LogoutChallenge ¶

OAuth 2.0 Logout Request Challenge

type OAuth2APICreateOAuth2ClientRequest ¶

type OAuth2APICreateOAuth2ClientRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APICreateOAuth2ClientRequest) Execute ¶

func (OAuth2APICreateOAuth2ClientRequest) OAuth2Client ¶

OAuth 2.0 Client Request Body

type OAuth2APIDeleteOAuth2ClientRequest ¶

type OAuth2APIDeleteOAuth2ClientRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIDeleteOAuth2ClientRequest) Execute ¶

type OAuth2APIDeleteOAuth2TokenRequest ¶

type OAuth2APIDeleteOAuth2TokenRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIDeleteOAuth2TokenRequest) ClientId ¶

OAuth 2.0 Client ID

func (OAuth2APIDeleteOAuth2TokenRequest) Execute ¶

type OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest ¶

type OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest) Execute ¶

type OAuth2APIGetOAuth2ClientRequest ¶

type OAuth2APIGetOAuth2ClientRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIGetOAuth2ClientRequest) Execute ¶

type OAuth2APIGetOAuth2ConsentRequestRequest ¶

type OAuth2APIGetOAuth2ConsentRequestRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIGetOAuth2ConsentRequestRequest) ConsentChallenge ¶

OAuth 2.0 Consent Request Challenge

func (OAuth2APIGetOAuth2ConsentRequestRequest) Execute ¶

type OAuth2APIGetOAuth2LoginRequestRequest ¶

type OAuth2APIGetOAuth2LoginRequestRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIGetOAuth2LoginRequestRequest) Execute ¶

func (OAuth2APIGetOAuth2LoginRequestRequest) LoginChallenge ¶

OAuth 2.0 Login Request Challenge

type OAuth2APIGetOAuth2LogoutRequestRequest ¶

type OAuth2APIGetOAuth2LogoutRequestRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIGetOAuth2LogoutRequestRequest) Execute ¶

func (OAuth2APIGetOAuth2LogoutRequestRequest) LogoutChallenge ¶

type OAuth2APIGetTrustedOAuth2JwtGrantIssuerRequest ¶

type OAuth2APIGetTrustedOAuth2JwtGrantIssuerRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIGetTrustedOAuth2JwtGrantIssuerRequest) Execute ¶

type OAuth2APIIntrospectOAuth2TokenRequest ¶

type OAuth2APIIntrospectOAuth2TokenRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIIntrospectOAuth2TokenRequest) Execute ¶

func (OAuth2APIIntrospectOAuth2TokenRequest) Scope ¶

An optional, space separated list of required scopes. If the access token was not granted one of the scopes, the result of active will be false.

func (OAuth2APIIntrospectOAuth2TokenRequest) Token ¶

The string value of the token. For access tokens, this is the \\\&quot;access_token\\\&quot; value returned from the token endpoint defined in OAuth 2.0. For refresh tokens, this is the \\\&quot;refresh_token\\\&quot; value returned.

type OAuth2APIListOAuth2ClientsRequest ¶

type OAuth2APIListOAuth2ClientsRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIListOAuth2ClientsRequest) ClientName ¶

The name of the clients to filter by.

func (OAuth2APIListOAuth2ClientsRequest) Execute ¶

func (OAuth2APIListOAuth2ClientsRequest) Owner ¶

The owner of the clients to filter by.

func (OAuth2APIListOAuth2ClientsRequest) PageSize ¶

Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func (OAuth2APIListOAuth2ClientsRequest) PageToken ¶

Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

type OAuth2APIListOAuth2ConsentSessionsRequest ¶

type OAuth2APIListOAuth2ConsentSessionsRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIListOAuth2ConsentSessionsRequest) Execute ¶

func (OAuth2APIListOAuth2ConsentSessionsRequest) LoginSessionId ¶

The login session id to list the consent sessions for.

func (OAuth2APIListOAuth2ConsentSessionsRequest) PageSize ¶

Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func (OAuth2APIListOAuth2ConsentSessionsRequest) PageToken ¶

Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func (OAuth2APIListOAuth2ConsentSessionsRequest) Subject ¶

The subject to list the consent sessions for.

type OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest ¶

type OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest) DefaultItems ¶

func (OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest) Execute ¶

func (OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest) Issuer ¶

If optional \&quot;issuer\&quot; is supplied, only jwt-bearer grants with this issuer will be returned.

func (OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest) MaxItems ¶

type OAuth2APIOAuth2AuthorizeRequest ¶

type OAuth2APIOAuth2AuthorizeRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIOAuth2AuthorizeRequest) Execute ¶

type OAuth2APIOauth2TokenExchangeRequest ¶

type OAuth2APIOauth2TokenExchangeRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIOauth2TokenExchangeRequest) ClientId ¶

func (OAuth2APIOauth2TokenExchangeRequest) Code ¶

func (OAuth2APIOauth2TokenExchangeRequest) Execute ¶

func (OAuth2APIOauth2TokenExchangeRequest) GrantType ¶

func (OAuth2APIOauth2TokenExchangeRequest) RedirectUri ¶

func (OAuth2APIOauth2TokenExchangeRequest) RefreshToken ¶

type OAuth2APIPatchOAuth2ClientRequest ¶

type OAuth2APIPatchOAuth2ClientRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIPatchOAuth2ClientRequest) Execute ¶

func (OAuth2APIPatchOAuth2ClientRequest) JsonPatch ¶

OAuth 2.0 Client JSON Patch Body

type OAuth2APIRejectOAuth2ConsentRequestRequest ¶

type OAuth2APIRejectOAuth2ConsentRequestRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIRejectOAuth2ConsentRequestRequest) ConsentChallenge ¶

OAuth 2.0 Consent Request Challenge

func (OAuth2APIRejectOAuth2ConsentRequestRequest) Execute ¶

func (OAuth2APIRejectOAuth2ConsentRequestRequest) RejectOAuth2Request ¶

type OAuth2APIRejectOAuth2LoginRequestRequest ¶

type OAuth2APIRejectOAuth2LoginRequestRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIRejectOAuth2LoginRequestRequest) Execute ¶

func (OAuth2APIRejectOAuth2LoginRequestRequest) LoginChallenge ¶

OAuth 2.0 Login Request Challenge

func (OAuth2APIRejectOAuth2LoginRequestRequest) RejectOAuth2Request ¶

type OAuth2APIRejectOAuth2LogoutRequestRequest ¶

type OAuth2APIRejectOAuth2LogoutRequestRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIRejectOAuth2LogoutRequestRequest) Execute ¶

func (OAuth2APIRejectOAuth2LogoutRequestRequest) LogoutChallenge ¶

type OAuth2APIRevokeOAuth2ConsentSessionsRequest ¶

type OAuth2APIRevokeOAuth2ConsentSessionsRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIRevokeOAuth2ConsentSessionsRequest) All ¶

Revoke All Consent Sessions If set to &#x60;true&#x60; deletes all consent sessions by the Subject that have been granted.

func (OAuth2APIRevokeOAuth2ConsentSessionsRequest) Client ¶

OAuth 2.0 Client ID If set, deletes only those consent sessions that have been granted to the specified OAuth 2.0 Client ID.

func (OAuth2APIRevokeOAuth2ConsentSessionsRequest) Execute ¶

func (OAuth2APIRevokeOAuth2ConsentSessionsRequest) Subject ¶

OAuth 2.0 Consent Subject The subject whose consent sessions should be deleted.

type OAuth2APIRevokeOAuth2LoginSessionsRequest ¶

type OAuth2APIRevokeOAuth2LoginSessionsRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIRevokeOAuth2LoginSessionsRequest) Execute ¶

func (OAuth2APIRevokeOAuth2LoginSessionsRequest) Sid ¶

OAuth 2.0 Subject The subject to revoke authentication sessions for.

func (OAuth2APIRevokeOAuth2LoginSessionsRequest) Subject ¶

OAuth 2.0 Subject The subject to revoke authentication sessions for.

type OAuth2APIRevokeOAuth2TokenRequest ¶

type OAuth2APIRevokeOAuth2TokenRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APIRevokeOAuth2TokenRequest) ClientId ¶

func (OAuth2APIRevokeOAuth2TokenRequest) ClientSecret ¶

func (OAuth2APIRevokeOAuth2TokenRequest) Execute ¶

func (OAuth2APIRevokeOAuth2TokenRequest) Token ¶

type OAuth2APIService ¶

type OAuth2APIService service

OAuth2APIService OAuth2API service

func (*OAuth2APIService) AcceptOAuth2ConsentRequest ¶

AcceptOAuth2ConsentRequest Accept OAuth 2.0 Consent Request

When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject's behalf.

The consent challenge is appended to the consent provider's URL to which the subject's user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request.

This endpoint tells Ory that the subject has authorized the OAuth 2.0 client to access resources on his/her behalf. The consent provider includes additional information, such as session data for access and ID tokens, and if the consent request should be used as basis for future requests.

The response contains a redirect URL which the consent provider should redirect the user-agent to.

The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIAcceptOAuth2ConsentRequestRequest

func (*OAuth2APIService) AcceptOAuth2ConsentRequestExecute ¶

Execute executes the request

@return OAuth2RedirectTo

func (*OAuth2APIService) AcceptOAuth2LoginRequest ¶

AcceptOAuth2LoginRequest Accept OAuth 2.0 Login Request

When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it.

The authentication challenge is appended to the login provider URL to which the subject's user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process.

This endpoint tells Ory that the subject has successfully authenticated and includes additional information such as the subject's ID and if Ory should remember the subject's subject agent for future authentication attempts by setting a cookie.

The response contains a redirect URL which the login provider should redirect the user-agent to.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIAcceptOAuth2LoginRequestRequest

func (*OAuth2APIService) AcceptOAuth2LoginRequestExecute ¶

Execute executes the request

@return OAuth2RedirectTo

func (*OAuth2APIService) AcceptOAuth2LogoutRequest ¶

AcceptOAuth2LogoutRequest Accept OAuth 2.0 Session Logout Request

When a user or an application requests Ory OAuth 2.0 to remove the session state of a subject, this endpoint is used to confirm that logout request.

The response contains a redirect URL which the consent provider should redirect the user-agent to.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIAcceptOAuth2LogoutRequestRequest

func (*OAuth2APIService) AcceptOAuth2LogoutRequestExecute ¶

Execute executes the request

@return OAuth2RedirectTo

func (*OAuth2APIService) CreateOAuth2Client ¶

CreateOAuth2Client Create OAuth 2.0 Client

Create a new OAuth 2.0 client. If you pass `client_secret` the secret is used, otherwise a random secret is generated. The secret is echoed in the response. It is not possible to retrieve it later on.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APICreateOAuth2ClientRequest

func (*OAuth2APIService) CreateOAuth2ClientExecute ¶

Execute executes the request

@return OAuth2Client

func (*OAuth2APIService) DeleteOAuth2Client ¶

DeleteOAuth2Client Delete OAuth 2.0 Client

Delete an existing OAuth 2.0 Client by its ID.

OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.

Make sure that this endpoint is well protected and only callable by first-party components.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the OAuth 2.0 Client.
@return OAuth2APIDeleteOAuth2ClientRequest

func (*OAuth2APIService) DeleteOAuth2ClientExecute ¶

func (a *OAuth2APIService) DeleteOAuth2ClientExecute(r OAuth2APIDeleteOAuth2ClientRequest) (*http.Response, error)

Execute executes the request

func (*OAuth2APIService) DeleteOAuth2Token ¶

DeleteOAuth2Token Delete OAuth 2.0 Access Tokens from specific OAuth 2.0 Client

This endpoint deletes OAuth2 access tokens issued to an OAuth 2.0 Client from the database.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIDeleteOAuth2TokenRequest

func (*OAuth2APIService) DeleteOAuth2TokenExecute ¶

func (a *OAuth2APIService) DeleteOAuth2TokenExecute(r OAuth2APIDeleteOAuth2TokenRequest) (*http.Response, error)

Execute executes the request

func (*OAuth2APIService) DeleteTrustedOAuth2JwtGrantIssuer ¶

func (a *OAuth2APIService) DeleteTrustedOAuth2JwtGrantIssuer(ctx context.Context, id string) OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest

DeleteTrustedOAuth2JwtGrantIssuer Delete Trusted OAuth2 JWT Bearer Grant Type Issuer

Use this endpoint to delete trusted JWT Bearer Grant Type Issuer. The ID is the one returned when you created the trust relationship.

Once deleted, the associated issuer will no longer be able to perform the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grant.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the desired grant
@return OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest

func (*OAuth2APIService) DeleteTrustedOAuth2JwtGrantIssuerExecute ¶

func (a *OAuth2APIService) DeleteTrustedOAuth2JwtGrantIssuerExecute(r OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest) (*http.Response, error)

Execute executes the request

func (*OAuth2APIService) GetOAuth2Client ¶

GetOAuth2Client Get an OAuth 2.0 Client

Get an OAuth 2.0 client by its ID. This endpoint never returns the client secret.

OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the OAuth 2.0 Client.
@return OAuth2APIGetOAuth2ClientRequest

func (*OAuth2APIService) GetOAuth2ClientExecute ¶

Execute executes the request

@return OAuth2Client

func (*OAuth2APIService) GetOAuth2ConsentRequest ¶

GetOAuth2ConsentRequest Get OAuth 2.0 Consent Request

When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject's behalf.

The consent challenge is appended to the consent provider's URL to which the subject's user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request.

The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIGetOAuth2ConsentRequestRequest

func (*OAuth2APIService) GetOAuth2ConsentRequestExecute ¶

Execute executes the request

@return OAuth2ConsentRequest

func (*OAuth2APIService) GetOAuth2LoginRequest ¶

GetOAuth2LoginRequest Get OAuth 2.0 Login Request

When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it.

Per default, the login provider is Ory itself. You may use a different login provider which needs to be a web-app you write and host, and it must be able to authenticate ("show the subject a login screen") a subject (in OAuth2 the proper name for subject is "resource owner").

The authentication challenge is appended to the login provider URL to which the subject's user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIGetOAuth2LoginRequestRequest

func (*OAuth2APIService) GetOAuth2LoginRequestExecute ¶

Execute executes the request

@return OAuth2LoginRequest

func (*OAuth2APIService) GetOAuth2LogoutRequest ¶

GetOAuth2LogoutRequest Get OAuth 2.0 Session Logout Request

Use this endpoint to fetch an Ory OAuth 2.0 logout request.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIGetOAuth2LogoutRequestRequest

func (*OAuth2APIService) GetOAuth2LogoutRequestExecute ¶

Execute executes the request

@return OAuth2LogoutRequest

func (*OAuth2APIService) GetTrustedOAuth2JwtGrantIssuer ¶

func (a *OAuth2APIService) GetTrustedOAuth2JwtGrantIssuer(ctx context.Context, id string) OAuth2APIGetTrustedOAuth2JwtGrantIssuerRequest

GetTrustedOAuth2JwtGrantIssuer Get Trusted OAuth2 JWT Bearer Grant Type Issuer

Use this endpoint to get a trusted JWT Bearer Grant Type Issuer. The ID is the one returned when you created the trust relationship.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the desired grant
@return OAuth2APIGetTrustedOAuth2JwtGrantIssuerRequest

func (*OAuth2APIService) GetTrustedOAuth2JwtGrantIssuerExecute ¶

Execute executes the request

@return TrustedOAuth2JwtGrantIssuer

func (*OAuth2APIService) IntrospectOAuth2Token ¶

IntrospectOAuth2Token Introspect OAuth2 Access and Refresh Tokens

The introspection endpoint allows to check if a token (both refresh and access) is active or not. An active token is neither expired nor revoked. If a token is active, additional information on the token will be included. You can set additional data for a token by setting `session.access_token` during the consent flow.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIIntrospectOAuth2TokenRequest

func (*OAuth2APIService) IntrospectOAuth2TokenExecute ¶

Execute executes the request

@return IntrospectedOAuth2Token

func (*OAuth2APIService) ListOAuth2Clients ¶

ListOAuth2Clients List OAuth 2.0 Clients

This endpoint lists all clients in the database, and never returns client secrets. As a default it lists the first 100 clients.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIListOAuth2ClientsRequest

func (*OAuth2APIService) ListOAuth2ClientsExecute ¶

func (a *OAuth2APIService) ListOAuth2ClientsExecute(r OAuth2APIListOAuth2ClientsRequest) ([]OAuth2Client, *http.Response, error)

Execute executes the request

@return []OAuth2Client

func (*OAuth2APIService) ListOAuth2ConsentSessions ¶

ListOAuth2ConsentSessions List OAuth 2.0 Consent Sessions of a Subject

This endpoint lists all subject's granted consent sessions, including client and granted scope. If the subject is unknown or has not granted any consent sessions yet, the endpoint returns an empty JSON array with status code 200 OK.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIListOAuth2ConsentSessionsRequest

func (*OAuth2APIService) ListOAuth2ConsentSessionsExecute ¶

Execute executes the request

@return []OAuth2ConsentSession

func (*OAuth2APIService) ListTrustedOAuth2JwtGrantIssuers ¶

func (a *OAuth2APIService) ListTrustedOAuth2JwtGrantIssuers(ctx context.Context) OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest

ListTrustedOAuth2JwtGrantIssuers List Trusted OAuth2 JWT Bearer Grant Type Issuers

Use this endpoint to list all trusted JWT Bearer Grant Type Issuers.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest

func (*OAuth2APIService) ListTrustedOAuth2JwtGrantIssuersExecute ¶

Execute executes the request

@return []TrustedOAuth2JwtGrantIssuer

func (*OAuth2APIService) OAuth2Authorize ¶

OAuth2Authorize OAuth 2.0 Authorize Endpoint

Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries at https://oauth.net/code/

The Ory SDK is not yet able to this endpoint properly.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIOAuth2AuthorizeRequest

func (*OAuth2APIService) OAuth2AuthorizeExecute ¶

Execute executes the request

@return ErrorOAuth2

func (*OAuth2APIService) Oauth2TokenExchange ¶

Oauth2TokenExchange The OAuth 2.0 Token Endpoint

Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries here https://oauth.net/code/

The Ory SDK is not yet able to this endpoint properly.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIOauth2TokenExchangeRequest

func (*OAuth2APIService) Oauth2TokenExchangeExecute ¶

Execute executes the request

@return OAuth2TokenExchange

func (*OAuth2APIService) PatchOAuth2Client ¶

PatchOAuth2Client Patch OAuth 2.0 Client

Patch an existing OAuth 2.0 Client using JSON Patch. If you pass `client_secret` the secret will be updated and returned via the API. This is the only time you will be able to retrieve the client secret, so write it down and keep it safe.

OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the OAuth 2.0 Client.
@return OAuth2APIPatchOAuth2ClientRequest

func (*OAuth2APIService) PatchOAuth2ClientExecute ¶

Execute executes the request

@return OAuth2Client

func (*OAuth2APIService) RejectOAuth2ConsentRequest ¶

RejectOAuth2ConsentRequest Reject OAuth 2.0 Consent Request

When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject's behalf.

The consent challenge is appended to the consent provider's URL to which the subject's user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request.

This endpoint tells Ory that the subject has not authorized the OAuth 2.0 client to access resources on his/her behalf. The consent provider must include a reason why the consent was not granted.

The response contains a redirect URL which the consent provider should redirect the user-agent to.

The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIRejectOAuth2ConsentRequestRequest

func (*OAuth2APIService) RejectOAuth2ConsentRequestExecute ¶

Execute executes the request

@return OAuth2RedirectTo

func (*OAuth2APIService) RejectOAuth2LoginRequest ¶

RejectOAuth2LoginRequest Reject OAuth 2.0 Login Request

When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it.

The authentication challenge is appended to the login provider URL to which the subject's user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process.

This endpoint tells Ory that the subject has not authenticated and includes a reason why the authentication was denied.

The response contains a redirect URL which the login provider should redirect the user-agent to.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIRejectOAuth2LoginRequestRequest

func (*OAuth2APIService) RejectOAuth2LoginRequestExecute ¶

Execute executes the request

@return OAuth2RedirectTo

func (*OAuth2APIService) RejectOAuth2LogoutRequest ¶

RejectOAuth2LogoutRequest Reject OAuth 2.0 Session Logout Request

When a user or an application requests Ory OAuth 2.0 to remove the session state of a subject, this endpoint is used to deny that logout request. No HTTP request body is required.

The response is empty as the logout provider has to chose what action to perform next.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIRejectOAuth2LogoutRequestRequest

func (*OAuth2APIService) RejectOAuth2LogoutRequestExecute ¶

func (a *OAuth2APIService) RejectOAuth2LogoutRequestExecute(r OAuth2APIRejectOAuth2LogoutRequestRequest) (*http.Response, error)

Execute executes the request

func (*OAuth2APIService) RevokeOAuth2ConsentSessions ¶

RevokeOAuth2ConsentSessions Revoke OAuth 2.0 Consent Sessions of a Subject

This endpoint revokes a subject's granted consent sessions and invalidates all associated OAuth 2.0 Access Tokens. You may also only revoke sessions for a specific OAuth 2.0 Client ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIRevokeOAuth2ConsentSessionsRequest

func (*OAuth2APIService) RevokeOAuth2ConsentSessionsExecute ¶

func (a *OAuth2APIService) RevokeOAuth2ConsentSessionsExecute(r OAuth2APIRevokeOAuth2ConsentSessionsRequest) (*http.Response, error)

Execute executes the request

func (*OAuth2APIService) RevokeOAuth2LoginSessions ¶

RevokeOAuth2LoginSessions Revokes OAuth 2.0 Login Sessions by either a Subject or a SessionID

This endpoint invalidates authentication sessions. After revoking the authentication session(s), the subject has to re-authenticate at the Ory OAuth2 Provider. This endpoint does not invalidate any tokens.

If you send the subject in a query param, all authentication sessions that belong to that subject are revoked. No OpenID Connect Front- or Back-channel logout is performed in this case.

Alternatively, you can send a SessionID via `sid` query param, in which case, only the session that is connected to that SessionID is revoked. OpenID Connect Back-channel logout is performed in this case.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIRevokeOAuth2LoginSessionsRequest

func (*OAuth2APIService) RevokeOAuth2LoginSessionsExecute ¶

func (a *OAuth2APIService) RevokeOAuth2LoginSessionsExecute(r OAuth2APIRevokeOAuth2LoginSessionsRequest) (*http.Response, error)

Execute executes the request

func (*OAuth2APIService) RevokeOAuth2Token ¶

RevokeOAuth2Token Revoke OAuth 2.0 Access or Refresh Token

Revoking a token (both access and refresh) means that the tokens will be invalid. A revoked access token can no longer be used to make access requests, and a revoked refresh token can no longer be used to refresh an access token. Revoking a refresh token also invalidates the access token that was created with it. A token may only be revoked by the client the token was generated for.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APIRevokeOAuth2TokenRequest

func (*OAuth2APIService) RevokeOAuth2TokenExecute ¶

func (a *OAuth2APIService) RevokeOAuth2TokenExecute(r OAuth2APIRevokeOAuth2TokenRequest) (*http.Response, error)

Execute executes the request

func (*OAuth2APIService) SetOAuth2Client ¶

SetOAuth2Client Set OAuth 2.0 Client

Replaces an existing OAuth 2.0 Client with the payload you send. If you pass `client_secret` the secret is used, otherwise the existing secret is used.

If set, the secret is echoed in the response. It is not possible to retrieve it later on.

OAuth 2.0 Clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id OAuth 2.0 Client ID
@return OAuth2APISetOAuth2ClientRequest

func (*OAuth2APIService) SetOAuth2ClientExecute ¶

Execute executes the request

@return OAuth2Client

func (*OAuth2APIService) SetOAuth2ClientLifespans ¶

SetOAuth2ClientLifespans Set OAuth2 Client Token Lifespans

Set lifespans of different token types issued for this OAuth 2.0 client. Does not modify other fields.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id OAuth 2.0 Client ID
@return OAuth2APISetOAuth2ClientLifespansRequest

func (*OAuth2APIService) SetOAuth2ClientLifespansExecute ¶

func (a *OAuth2APIService) SetOAuth2ClientLifespansExecute(r OAuth2APISetOAuth2ClientLifespansRequest) (*OAuth2Client, *http.Response, error)

Execute executes the request

@return OAuth2Client

func (*OAuth2APIService) TrustOAuth2JwtGrantIssuer ¶

TrustOAuth2JwtGrantIssuer Trust OAuth2 JWT Bearer Grant Type Issuer

Use this endpoint to establish a trust relationship for a JWT issuer to perform JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants [RFC7523](https://datatracker.ietf.org/doc/html/rfc7523).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OAuth2APITrustOAuth2JwtGrantIssuerRequest

func (*OAuth2APIService) TrustOAuth2JwtGrantIssuerExecute ¶

Execute executes the request

@return TrustedOAuth2JwtGrantIssuer

type OAuth2APISetOAuth2ClientLifespansRequest ¶

type OAuth2APISetOAuth2ClientLifespansRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APISetOAuth2ClientLifespansRequest) Execute ¶

func (OAuth2APISetOAuth2ClientLifespansRequest) OAuth2ClientTokenLifespans ¶

type OAuth2APISetOAuth2ClientRequest ¶

type OAuth2APISetOAuth2ClientRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APISetOAuth2ClientRequest) Execute ¶

func (OAuth2APISetOAuth2ClientRequest) OAuth2Client ¶

OAuth 2.0 Client Request Body

type OAuth2APITrustOAuth2JwtGrantIssuerRequest ¶

type OAuth2APITrustOAuth2JwtGrantIssuerRequest struct {
	ApiService OAuth2API
	// contains filtered or unexported fields
}

func (OAuth2APITrustOAuth2JwtGrantIssuerRequest) Execute ¶

func (OAuth2APITrustOAuth2JwtGrantIssuerRequest) TrustOAuth2JwtGrantIssuer ¶

type OAuth2Client ¶

type OAuth2Client struct {
	// OAuth 2.0 Access Token Strategy  AccessTokenStrategy is the strategy used to generate access tokens. Valid options are `jwt` and `opaque`. `jwt` is a bad idea, see https://www.ory.sh/docs/hydra/advanced#json-web-tokens Setting the stragegy here overrides the global setting in `strategies.access_token`.
	AccessTokenStrategy                        *string        `json:"access_token_strategy,omitempty"`
	AllowedCorsOrigins                         []string       `json:"allowed_cors_origins,omitempty"`
	Audience                                   []string       `json:"audience,omitempty"`
	AuthorizationCodeGrantAccessTokenLifespan  NullableString `json:"authorization_code_grant_access_token_lifespan,omitempty"`
	AuthorizationCodeGrantIdTokenLifespan      NullableString `json:"authorization_code_grant_id_token_lifespan,omitempty"`
	AuthorizationCodeGrantRefreshTokenLifespan NullableString `json:"authorization_code_grant_refresh_token_lifespan,omitempty"`
	// OpenID Connect Back-Channel Logout Session Required  Boolean value specifying whether the RP requires that a sid (session ID) Claim be included in the Logout Token to identify the RP session with the OP when the backchannel_logout_uri is used. If omitted, the default value is false.
	BackchannelLogoutSessionRequired *bool `json:"backchannel_logout_session_required,omitempty"`
	// OpenID Connect Back-Channel Logout URI  RP URL that will cause the RP to log itself out when sent a Logout Token by the OP.
	BackchannelLogoutUri                      *string        `json:"backchannel_logout_uri,omitempty"`
	ClientCredentialsGrantAccessTokenLifespan NullableString `json:"client_credentials_grant_access_token_lifespan,omitempty"`
	// OAuth 2.0 Client ID  The ID is immutable. If no ID is provided, a UUID4 will be generated.
	ClientId *string `json:"client_id,omitempty"`
	// OAuth 2.0 Client Name  The human-readable name of the client to be presented to the end-user during authorization.
	ClientName *string `json:"client_name,omitempty"`
	// OAuth 2.0 Client Secret  The secret will be included in the create request as cleartext, and then never again. The secret is kept in hashed format and is not recoverable once lost.
	ClientSecret *string `json:"client_secret,omitempty"`
	// OAuth 2.0 Client Secret Expires At  The field is currently not supported and its value is always 0.
	ClientSecretExpiresAt *int64 `json:"client_secret_expires_at,omitempty"`
	// OAuth 2.0 Client URI  ClientURI is a URL string of a web page providing information about the client. If present, the server SHOULD display this URL to the end-user in a clickable fashion.
	ClientUri *string  `json:"client_uri,omitempty"`
	Contacts  []string `json:"contacts,omitempty"`
	// OAuth 2.0 Client Creation Date  CreatedAt returns the timestamp of the client's creation.
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// OpenID Connect Front-Channel Logout Session Required  Boolean value specifying whether the RP requires that iss (issuer) and sid (session ID) query parameters be included to identify the RP session with the OP when the frontchannel_logout_uri is used. If omitted, the default value is false.
	FrontchannelLogoutSessionRequired *bool `json:"frontchannel_logout_session_required,omitempty"`
	// OpenID Connect Front-Channel Logout URI  RP URL that will cause the RP to log itself out when rendered in an iframe by the OP. An iss (issuer) query parameter and a sid (session ID) query parameter MAY be included by the OP to enable the RP to validate the request and to determine which of the potentially multiple sessions is to be logged out; if either is included, both MUST be.
	FrontchannelLogoutUri            *string        `json:"frontchannel_logout_uri,omitempty"`
	GrantTypes                       []string       `json:"grant_types,omitempty"`
	ImplicitGrantAccessTokenLifespan NullableString `json:"implicit_grant_access_token_lifespan,omitempty"`
	ImplicitGrantIdTokenLifespan     NullableString `json:"implicit_grant_id_token_lifespan,omitempty"`
	// OAuth 2.0 Client JSON Web Key Set  Client's JSON Web Key Set [JWK] document, passed by value. The semantics of the jwks parameter are the same as the jwks_uri parameter, other than that the JWK Set is passed by value, rather than by reference. This parameter is intended only to be used by Clients that, for some reason, are unable to use the jwks_uri parameter, for instance, by native applications that might not have a location to host the contents of the JWK Set. If a Client can use jwks_uri, it MUST NOT use jwks. One significant downside of jwks is that it does not enable key rotation (which jwks_uri does, as described in Section 10 of OpenID Connect Core 1.0 [OpenID.Core]). The jwks_uri and jwks parameters MUST NOT be used together.
	Jwks interface{} `json:"jwks,omitempty"`
	// OAuth 2.0 Client JSON Web Key Set URL  URL for the Client's JSON Web Key Set [JWK] document. If the Client signs requests to the Server, it contains the signing key(s) the Server uses to validate signatures from the Client. The JWK Set MAY also contain the Client's encryption keys(s), which are used by the Server to encrypt responses to the Client. When both signing and encryption keys are made available, a use (Key Use) parameter value is REQUIRED for all keys in the referenced JWK Set to indicate each key's intended usage. Although some algorithms allow the same key to be used for both signatures and encryption, doing so is NOT RECOMMENDED, as it is less secure. The JWK x5c parameter MAY be used to provide X.509 representations of keys provided. When used, the bare key values MUST still be present and MUST match those in the certificate.
	JwksUri                           *string        `json:"jwks_uri,omitempty"`
	JwtBearerGrantAccessTokenLifespan NullableString `json:"jwt_bearer_grant_access_token_lifespan,omitempty"`
	// OAuth 2.0 Client Logo URI  A URL string referencing the client's logo.
	LogoUri  *string                `json:"logo_uri,omitempty"`
	Metadata map[string]interface{} `json:"metadata,omitempty"`
	// OAuth 2.0 Client Owner  Owner is a string identifying the owner of the OAuth 2.0 Client.
	Owner *string `json:"owner,omitempty"`
	// OAuth 2.0 Client Policy URI  PolicyURI is a URL string that points to a human-readable privacy policy document that describes how the deployment organization collects, uses, retains, and discloses personal data.
	PolicyUri                             *string        `json:"policy_uri,omitempty"`
	PostLogoutRedirectUris                []string       `json:"post_logout_redirect_uris,omitempty"`
	RedirectUris                          []string       `json:"redirect_uris,omitempty"`
	RefreshTokenGrantAccessTokenLifespan  NullableString `json:"refresh_token_grant_access_token_lifespan,omitempty"`
	RefreshTokenGrantIdTokenLifespan      NullableString `json:"refresh_token_grant_id_token_lifespan,omitempty"`
	RefreshTokenGrantRefreshTokenLifespan NullableString `json:"refresh_token_grant_refresh_token_lifespan,omitempty"`
	// OpenID Connect Dynamic Client Registration Access Token  RegistrationAccessToken can be used to update, get, or delete the OAuth2 Client. It is sent when creating a client using Dynamic Client Registration.
	RegistrationAccessToken *string `json:"registration_access_token,omitempty"`
	// OpenID Connect Dynamic Client Registration URL  RegistrationClientURI is the URL used to update, get, or delete the OAuth2 Client.
	RegistrationClientUri *string `json:"registration_client_uri,omitempty"`
	// OpenID Connect Request Object Signing Algorithm  JWS [JWS] alg algorithm [JWA] that MUST be used for signing Request Objects sent to the OP. All Request Objects from this Client MUST be rejected, if not signed with this algorithm.
	RequestObjectSigningAlg *string  `json:"request_object_signing_alg,omitempty"`
	RequestUris             []string `json:"request_uris,omitempty"`
	ResponseTypes           []string `json:"response_types,omitempty"`
	// OAuth 2.0 Client Scope  Scope is a string containing a space-separated list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749]) that the client can use when requesting access tokens.
	Scope *string `json:"scope,omitempty"`
	// OpenID Connect Sector Identifier URI  URL using the https scheme to be used in calculating Pseudonymous Identifiers by the OP. The URL references a file with a single JSON array of redirect_uri values.
	SectorIdentifierUri *string `json:"sector_identifier_uri,omitempty"`
	// SkipConsent skips the consent screen for this client. This field can only be set from the admin API.
	SkipConsent *bool `json:"skip_consent,omitempty"`
	// OpenID Connect Subject Type  The `subject_types_supported` Discovery parameter contains a list of the supported subject_type values for this server. Valid types include `pairwise` and `public`.
	SubjectType *string `json:"subject_type,omitempty"`
	// OAuth 2.0 Token Endpoint Authentication Method  Requested Client Authentication method for the Token Endpoint. The options are:  `client_secret_basic`: (default) Send `client_id` and `client_secret` as `application/x-www-form-urlencoded` encoded in the HTTP Authorization header. `client_secret_post`: Send `client_id` and `client_secret` as `application/x-www-form-urlencoded` in the HTTP body. `private_key_jwt`: Use JSON Web Tokens to authenticate the client. `none`: Used for public clients (native apps, mobile apps) which can not have secrets.
	TokenEndpointAuthMethod *string `json:"token_endpoint_auth_method,omitempty"`
	// OAuth 2.0 Token Endpoint Signing Algorithm  Requested Client Authentication signing algorithm for the Token Endpoint.
	TokenEndpointAuthSigningAlg *string `json:"token_endpoint_auth_signing_alg,omitempty"`
	// OAuth 2.0 Client Terms of Service URI  A URL string pointing to a human-readable terms of service document for the client that describes a contractual relationship between the end-user and the client that the end-user accepts when authorizing the client.
	TosUri *string `json:"tos_uri,omitempty"`
	// OAuth 2.0 Client Last Update Date  UpdatedAt returns the timestamp of the last update.
	UpdatedAt *time.Time `json:"updated_at,omitempty"`
	// OpenID Connect Request Userinfo Signed Response Algorithm  JWS alg algorithm [JWA] REQUIRED for signing UserInfo Responses. If this is specified, the response will be JWT [JWT] serialized, and signed using JWS. The default, if omitted, is for the UserInfo Response to return the Claims as a UTF-8 encoded JSON object using the application/json content-type.
	UserinfoSignedResponseAlg *string `json:"userinfo_signed_response_alg,omitempty"`
	AdditionalProperties      map[string]interface{}
}

OAuth2Client OAuth 2.0 Clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.

func NewOAuth2Client ¶

func NewOAuth2Client() *OAuth2Client

NewOAuth2Client instantiates a new OAuth2Client 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 NewOAuth2ClientWithDefaults ¶

func NewOAuth2ClientWithDefaults() *OAuth2Client

NewOAuth2ClientWithDefaults instantiates a new OAuth2Client 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 (*OAuth2Client) GetAccessTokenStrategy ¶

func (o *OAuth2Client) GetAccessTokenStrategy() string

GetAccessTokenStrategy returns the AccessTokenStrategy field value if set, zero value otherwise.

func (*OAuth2Client) GetAccessTokenStrategyOk ¶

func (o *OAuth2Client) GetAccessTokenStrategyOk() (*string, bool)

GetAccessTokenStrategyOk returns a tuple with the AccessTokenStrategy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetAllowedCorsOrigins ¶

func (o *OAuth2Client) GetAllowedCorsOrigins() []string

GetAllowedCorsOrigins returns the AllowedCorsOrigins field value if set, zero value otherwise.

func (*OAuth2Client) GetAllowedCorsOriginsOk ¶

func (o *OAuth2Client) GetAllowedCorsOriginsOk() ([]string, bool)

GetAllowedCorsOriginsOk returns a tuple with the AllowedCorsOrigins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetAudience ¶

func (o *OAuth2Client) GetAudience() []string

GetAudience returns the Audience field value if set, zero value otherwise.

func (*OAuth2Client) GetAudienceOk ¶

func (o *OAuth2Client) GetAudienceOk() ([]string, bool)

GetAudienceOk returns a tuple with the Audience field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetAuthorizationCodeGrantAccessTokenLifespan ¶

func (o *OAuth2Client) GetAuthorizationCodeGrantAccessTokenLifespan() string

GetAuthorizationCodeGrantAccessTokenLifespan returns the AuthorizationCodeGrantAccessTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2Client) GetAuthorizationCodeGrantAccessTokenLifespanOk ¶

func (o *OAuth2Client) GetAuthorizationCodeGrantAccessTokenLifespanOk() (*string, bool)

GetAuthorizationCodeGrantAccessTokenLifespanOk returns a tuple with the AuthorizationCodeGrantAccessTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2Client) GetAuthorizationCodeGrantIdTokenLifespan ¶

func (o *OAuth2Client) GetAuthorizationCodeGrantIdTokenLifespan() string

GetAuthorizationCodeGrantIdTokenLifespan returns the AuthorizationCodeGrantIdTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2Client) GetAuthorizationCodeGrantIdTokenLifespanOk ¶

func (o *OAuth2Client) GetAuthorizationCodeGrantIdTokenLifespanOk() (*string, bool)

GetAuthorizationCodeGrantIdTokenLifespanOk returns a tuple with the AuthorizationCodeGrantIdTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2Client) GetAuthorizationCodeGrantRefreshTokenLifespan ¶

func (o *OAuth2Client) GetAuthorizationCodeGrantRefreshTokenLifespan() string

GetAuthorizationCodeGrantRefreshTokenLifespan returns the AuthorizationCodeGrantRefreshTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2Client) GetAuthorizationCodeGrantRefreshTokenLifespanOk ¶

func (o *OAuth2Client) GetAuthorizationCodeGrantRefreshTokenLifespanOk() (*string, bool)

GetAuthorizationCodeGrantRefreshTokenLifespanOk returns a tuple with the AuthorizationCodeGrantRefreshTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2Client) GetBackchannelLogoutSessionRequired ¶

func (o *OAuth2Client) GetBackchannelLogoutSessionRequired() bool

GetBackchannelLogoutSessionRequired returns the BackchannelLogoutSessionRequired field value if set, zero value otherwise.

func (*OAuth2Client) GetBackchannelLogoutSessionRequiredOk ¶

func (o *OAuth2Client) GetBackchannelLogoutSessionRequiredOk() (*bool, bool)

GetBackchannelLogoutSessionRequiredOk returns a tuple with the BackchannelLogoutSessionRequired field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetBackchannelLogoutUri ¶

func (o *OAuth2Client) GetBackchannelLogoutUri() string

GetBackchannelLogoutUri returns the BackchannelLogoutUri field value if set, zero value otherwise.

func (*OAuth2Client) GetBackchannelLogoutUriOk ¶

func (o *OAuth2Client) GetBackchannelLogoutUriOk() (*string, bool)

GetBackchannelLogoutUriOk returns a tuple with the BackchannelLogoutUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetClientCredentialsGrantAccessTokenLifespan ¶

func (o *OAuth2Client) GetClientCredentialsGrantAccessTokenLifespan() string

GetClientCredentialsGrantAccessTokenLifespan returns the ClientCredentialsGrantAccessTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2Client) GetClientCredentialsGrantAccessTokenLifespanOk ¶

func (o *OAuth2Client) GetClientCredentialsGrantAccessTokenLifespanOk() (*string, bool)

GetClientCredentialsGrantAccessTokenLifespanOk returns a tuple with the ClientCredentialsGrantAccessTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2Client) GetClientId ¶

func (o *OAuth2Client) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*OAuth2Client) GetClientIdOk ¶

func (o *OAuth2Client) GetClientIdOk() (*string, bool)

GetClientIdOk returns a tuple with the ClientId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetClientName ¶

func (o *OAuth2Client) GetClientName() string

GetClientName returns the ClientName field value if set, zero value otherwise.

func (*OAuth2Client) GetClientNameOk ¶

func (o *OAuth2Client) GetClientNameOk() (*string, bool)

GetClientNameOk returns a tuple with the ClientName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetClientSecret ¶

func (o *OAuth2Client) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*OAuth2Client) GetClientSecretExpiresAt ¶

func (o *OAuth2Client) GetClientSecretExpiresAt() int64

GetClientSecretExpiresAt returns the ClientSecretExpiresAt field value if set, zero value otherwise.

func (*OAuth2Client) GetClientSecretExpiresAtOk ¶

func (o *OAuth2Client) GetClientSecretExpiresAtOk() (*int64, bool)

GetClientSecretExpiresAtOk returns a tuple with the ClientSecretExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetClientSecretOk ¶

func (o *OAuth2Client) GetClientSecretOk() (*string, bool)

GetClientSecretOk returns a tuple with the ClientSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetClientUri ¶

func (o *OAuth2Client) GetClientUri() string

GetClientUri returns the ClientUri field value if set, zero value otherwise.

func (*OAuth2Client) GetClientUriOk ¶

func (o *OAuth2Client) GetClientUriOk() (*string, bool)

GetClientUriOk returns a tuple with the ClientUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetContacts ¶

func (o *OAuth2Client) GetContacts() []string

GetContacts returns the Contacts field value if set, zero value otherwise.

func (*OAuth2Client) GetContactsOk ¶

func (o *OAuth2Client) GetContactsOk() ([]string, bool)

GetContactsOk returns a tuple with the Contacts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetCreatedAt ¶

func (o *OAuth2Client) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*OAuth2Client) GetCreatedAtOk ¶

func (o *OAuth2Client) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetFrontchannelLogoutSessionRequired ¶

func (o *OAuth2Client) GetFrontchannelLogoutSessionRequired() bool

GetFrontchannelLogoutSessionRequired returns the FrontchannelLogoutSessionRequired field value if set, zero value otherwise.

func (*OAuth2Client) GetFrontchannelLogoutSessionRequiredOk ¶

func (o *OAuth2Client) GetFrontchannelLogoutSessionRequiredOk() (*bool, bool)

GetFrontchannelLogoutSessionRequiredOk returns a tuple with the FrontchannelLogoutSessionRequired field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetFrontchannelLogoutUri ¶

func (o *OAuth2Client) GetFrontchannelLogoutUri() string

GetFrontchannelLogoutUri returns the FrontchannelLogoutUri field value if set, zero value otherwise.

func (*OAuth2Client) GetFrontchannelLogoutUriOk ¶

func (o *OAuth2Client) GetFrontchannelLogoutUriOk() (*string, bool)

GetFrontchannelLogoutUriOk returns a tuple with the FrontchannelLogoutUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetGrantTypes ¶

func (o *OAuth2Client) GetGrantTypes() []string

GetGrantTypes returns the GrantTypes field value if set, zero value otherwise.

func (*OAuth2Client) GetGrantTypesOk ¶

func (o *OAuth2Client) GetGrantTypesOk() ([]string, bool)

GetGrantTypesOk returns a tuple with the GrantTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetImplicitGrantAccessTokenLifespan ¶

func (o *OAuth2Client) GetImplicitGrantAccessTokenLifespan() string

GetImplicitGrantAccessTokenLifespan returns the ImplicitGrantAccessTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2Client) GetImplicitGrantAccessTokenLifespanOk ¶

func (o *OAuth2Client) GetImplicitGrantAccessTokenLifespanOk() (*string, bool)

GetImplicitGrantAccessTokenLifespanOk returns a tuple with the ImplicitGrantAccessTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2Client) GetImplicitGrantIdTokenLifespan ¶

func (o *OAuth2Client) GetImplicitGrantIdTokenLifespan() string

GetImplicitGrantIdTokenLifespan returns the ImplicitGrantIdTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2Client) GetImplicitGrantIdTokenLifespanOk ¶

func (o *OAuth2Client) GetImplicitGrantIdTokenLifespanOk() (*string, bool)

GetImplicitGrantIdTokenLifespanOk returns a tuple with the ImplicitGrantIdTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2Client) GetJwks ¶

func (o *OAuth2Client) GetJwks() interface{}

GetJwks returns the Jwks field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2Client) GetJwksOk ¶

func (o *OAuth2Client) GetJwksOk() (*interface{}, bool)

GetJwksOk returns a tuple with the Jwks field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2Client) GetJwksUri ¶

func (o *OAuth2Client) GetJwksUri() string

GetJwksUri returns the JwksUri field value if set, zero value otherwise.

func (*OAuth2Client) GetJwksUriOk ¶

func (o *OAuth2Client) GetJwksUriOk() (*string, bool)

GetJwksUriOk returns a tuple with the JwksUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetJwtBearerGrantAccessTokenLifespan ¶

func (o *OAuth2Client) GetJwtBearerGrantAccessTokenLifespan() string

GetJwtBearerGrantAccessTokenLifespan returns the JwtBearerGrantAccessTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2Client) GetJwtBearerGrantAccessTokenLifespanOk ¶

func (o *OAuth2Client) GetJwtBearerGrantAccessTokenLifespanOk() (*string, bool)

GetJwtBearerGrantAccessTokenLifespanOk returns a tuple with the JwtBearerGrantAccessTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2Client) GetLogoUri ¶

func (o *OAuth2Client) GetLogoUri() string

GetLogoUri returns the LogoUri field value if set, zero value otherwise.

func (*OAuth2Client) GetLogoUriOk ¶

func (o *OAuth2Client) GetLogoUriOk() (*string, bool)

GetLogoUriOk returns a tuple with the LogoUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetMetadata ¶

func (o *OAuth2Client) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*OAuth2Client) GetMetadataOk ¶

func (o *OAuth2Client) GetMetadataOk() (map[string]interface{}, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetOwner ¶

func (o *OAuth2Client) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*OAuth2Client) GetOwnerOk ¶

func (o *OAuth2Client) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetPolicyUri ¶

func (o *OAuth2Client) GetPolicyUri() string

GetPolicyUri returns the PolicyUri field value if set, zero value otherwise.

func (*OAuth2Client) GetPolicyUriOk ¶

func (o *OAuth2Client) GetPolicyUriOk() (*string, bool)

GetPolicyUriOk returns a tuple with the PolicyUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetPostLogoutRedirectUris ¶

func (o *OAuth2Client) GetPostLogoutRedirectUris() []string

GetPostLogoutRedirectUris returns the PostLogoutRedirectUris field value if set, zero value otherwise.

func (*OAuth2Client) GetPostLogoutRedirectUrisOk ¶

func (o *OAuth2Client) GetPostLogoutRedirectUrisOk() ([]string, bool)

GetPostLogoutRedirectUrisOk returns a tuple with the PostLogoutRedirectUris field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetRedirectUris ¶

func (o *OAuth2Client) GetRedirectUris() []string

GetRedirectUris returns the RedirectUris field value if set, zero value otherwise.

func (*OAuth2Client) GetRedirectUrisOk ¶

func (o *OAuth2Client) GetRedirectUrisOk() ([]string, bool)

GetRedirectUrisOk returns a tuple with the RedirectUris field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetRefreshTokenGrantAccessTokenLifespan ¶

func (o *OAuth2Client) GetRefreshTokenGrantAccessTokenLifespan() string

GetRefreshTokenGrantAccessTokenLifespan returns the RefreshTokenGrantAccessTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2Client) GetRefreshTokenGrantAccessTokenLifespanOk ¶

func (o *OAuth2Client) GetRefreshTokenGrantAccessTokenLifespanOk() (*string, bool)

GetRefreshTokenGrantAccessTokenLifespanOk returns a tuple with the RefreshTokenGrantAccessTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2Client) GetRefreshTokenGrantIdTokenLifespan ¶

func (o *OAuth2Client) GetRefreshTokenGrantIdTokenLifespan() string

GetRefreshTokenGrantIdTokenLifespan returns the RefreshTokenGrantIdTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2Client) GetRefreshTokenGrantIdTokenLifespanOk ¶

func (o *OAuth2Client) GetRefreshTokenGrantIdTokenLifespanOk() (*string, bool)

GetRefreshTokenGrantIdTokenLifespanOk returns a tuple with the RefreshTokenGrantIdTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2Client) GetRefreshTokenGrantRefreshTokenLifespan ¶

func (o *OAuth2Client) GetRefreshTokenGrantRefreshTokenLifespan() string

GetRefreshTokenGrantRefreshTokenLifespan returns the RefreshTokenGrantRefreshTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2Client) GetRefreshTokenGrantRefreshTokenLifespanOk ¶

func (o *OAuth2Client) GetRefreshTokenGrantRefreshTokenLifespanOk() (*string, bool)

GetRefreshTokenGrantRefreshTokenLifespanOk returns a tuple with the RefreshTokenGrantRefreshTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2Client) GetRegistrationAccessToken ¶

func (o *OAuth2Client) GetRegistrationAccessToken() string

GetRegistrationAccessToken returns the RegistrationAccessToken field value if set, zero value otherwise.

func (*OAuth2Client) GetRegistrationAccessTokenOk ¶

func (o *OAuth2Client) GetRegistrationAccessTokenOk() (*string, bool)

GetRegistrationAccessTokenOk returns a tuple with the RegistrationAccessToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetRegistrationClientUri ¶

func (o *OAuth2Client) GetRegistrationClientUri() string

GetRegistrationClientUri returns the RegistrationClientUri field value if set, zero value otherwise.

func (*OAuth2Client) GetRegistrationClientUriOk ¶

func (o *OAuth2Client) GetRegistrationClientUriOk() (*string, bool)

GetRegistrationClientUriOk returns a tuple with the RegistrationClientUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetRequestObjectSigningAlg ¶

func (o *OAuth2Client) GetRequestObjectSigningAlg() string

GetRequestObjectSigningAlg returns the RequestObjectSigningAlg field value if set, zero value otherwise.

func (*OAuth2Client) GetRequestObjectSigningAlgOk ¶

func (o *OAuth2Client) GetRequestObjectSigningAlgOk() (*string, bool)

GetRequestObjectSigningAlgOk returns a tuple with the RequestObjectSigningAlg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetRequestUris ¶

func (o *OAuth2Client) GetRequestUris() []string

GetRequestUris returns the RequestUris field value if set, zero value otherwise.

func (*OAuth2Client) GetRequestUrisOk ¶

func (o *OAuth2Client) GetRequestUrisOk() ([]string, bool)

GetRequestUrisOk returns a tuple with the RequestUris field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetResponseTypes ¶

func (o *OAuth2Client) GetResponseTypes() []string

GetResponseTypes returns the ResponseTypes field value if set, zero value otherwise.

func (*OAuth2Client) GetResponseTypesOk ¶

func (o *OAuth2Client) GetResponseTypesOk() ([]string, bool)

GetResponseTypesOk returns a tuple with the ResponseTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetScope ¶

func (o *OAuth2Client) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*OAuth2Client) GetScopeOk ¶

func (o *OAuth2Client) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetSectorIdentifierUri ¶

func (o *OAuth2Client) GetSectorIdentifierUri() string

GetSectorIdentifierUri returns the SectorIdentifierUri field value if set, zero value otherwise.

func (*OAuth2Client) GetSectorIdentifierUriOk ¶

func (o *OAuth2Client) GetSectorIdentifierUriOk() (*string, bool)

GetSectorIdentifierUriOk returns a tuple with the SectorIdentifierUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetSkipConsent ¶

func (o *OAuth2Client) GetSkipConsent() bool

GetSkipConsent returns the SkipConsent field value if set, zero value otherwise.

func (*OAuth2Client) GetSkipConsentOk ¶

func (o *OAuth2Client) GetSkipConsentOk() (*bool, bool)

GetSkipConsentOk returns a tuple with the SkipConsent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetSubjectType ¶

func (o *OAuth2Client) GetSubjectType() string

GetSubjectType returns the SubjectType field value if set, zero value otherwise.

func (*OAuth2Client) GetSubjectTypeOk ¶

func (o *OAuth2Client) GetSubjectTypeOk() (*string, bool)

GetSubjectTypeOk returns a tuple with the SubjectType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetTokenEndpointAuthMethod ¶

func (o *OAuth2Client) GetTokenEndpointAuthMethod() string

GetTokenEndpointAuthMethod returns the TokenEndpointAuthMethod field value if set, zero value otherwise.

func (*OAuth2Client) GetTokenEndpointAuthMethodOk ¶

func (o *OAuth2Client) GetTokenEndpointAuthMethodOk() (*string, bool)

GetTokenEndpointAuthMethodOk returns a tuple with the TokenEndpointAuthMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetTokenEndpointAuthSigningAlg ¶

func (o *OAuth2Client) GetTokenEndpointAuthSigningAlg() string

GetTokenEndpointAuthSigningAlg returns the TokenEndpointAuthSigningAlg field value if set, zero value otherwise.

func (*OAuth2Client) GetTokenEndpointAuthSigningAlgOk ¶

func (o *OAuth2Client) GetTokenEndpointAuthSigningAlgOk() (*string, bool)

GetTokenEndpointAuthSigningAlgOk returns a tuple with the TokenEndpointAuthSigningAlg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetTosUri ¶

func (o *OAuth2Client) GetTosUri() string

GetTosUri returns the TosUri field value if set, zero value otherwise.

func (*OAuth2Client) GetTosUriOk ¶

func (o *OAuth2Client) GetTosUriOk() (*string, bool)

GetTosUriOk returns a tuple with the TosUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetUpdatedAt ¶

func (o *OAuth2Client) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*OAuth2Client) GetUpdatedAtOk ¶

func (o *OAuth2Client) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) GetUserinfoSignedResponseAlg ¶

func (o *OAuth2Client) GetUserinfoSignedResponseAlg() string

GetUserinfoSignedResponseAlg returns the UserinfoSignedResponseAlg field value if set, zero value otherwise.

func (*OAuth2Client) GetUserinfoSignedResponseAlgOk ¶

func (o *OAuth2Client) GetUserinfoSignedResponseAlgOk() (*string, bool)

GetUserinfoSignedResponseAlgOk returns a tuple with the UserinfoSignedResponseAlg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2Client) HasAccessTokenStrategy ¶

func (o *OAuth2Client) HasAccessTokenStrategy() bool

HasAccessTokenStrategy returns a boolean if a field has been set.

func (*OAuth2Client) HasAllowedCorsOrigins ¶

func (o *OAuth2Client) HasAllowedCorsOrigins() bool

HasAllowedCorsOrigins returns a boolean if a field has been set.

func (*OAuth2Client) HasAudience ¶

func (o *OAuth2Client) HasAudience() bool

HasAudience returns a boolean if a field has been set.

func (*OAuth2Client) HasAuthorizationCodeGrantAccessTokenLifespan ¶

func (o *OAuth2Client) HasAuthorizationCodeGrantAccessTokenLifespan() bool

HasAuthorizationCodeGrantAccessTokenLifespan returns a boolean if a field has been set.

func (*OAuth2Client) HasAuthorizationCodeGrantIdTokenLifespan ¶

func (o *OAuth2Client) HasAuthorizationCodeGrantIdTokenLifespan() bool

HasAuthorizationCodeGrantIdTokenLifespan returns a boolean if a field has been set.

func (*OAuth2Client) HasAuthorizationCodeGrantRefreshTokenLifespan ¶

func (o *OAuth2Client) HasAuthorizationCodeGrantRefreshTokenLifespan() bool

HasAuthorizationCodeGrantRefreshTokenLifespan returns a boolean if a field has been set.

func (*OAuth2Client) HasBackchannelLogoutSessionRequired ¶

func (o *OAuth2Client) HasBackchannelLogoutSessionRequired() bool

HasBackchannelLogoutSessionRequired returns a boolean if a field has been set.

func (*OAuth2Client) HasBackchannelLogoutUri ¶

func (o *OAuth2Client) HasBackchannelLogoutUri() bool

HasBackchannelLogoutUri returns a boolean if a field has been set.

func (*OAuth2Client) HasClientCredentialsGrantAccessTokenLifespan ¶

func (o *OAuth2Client) HasClientCredentialsGrantAccessTokenLifespan() bool

HasClientCredentialsGrantAccessTokenLifespan returns a boolean if a field has been set.

func (*OAuth2Client) HasClientId ¶

func (o *OAuth2Client) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*OAuth2Client) HasClientName ¶

func (o *OAuth2Client) HasClientName() bool

HasClientName returns a boolean if a field has been set.

func (*OAuth2Client) HasClientSecret ¶

func (o *OAuth2Client) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*OAuth2Client) HasClientSecretExpiresAt ¶

func (o *OAuth2Client) HasClientSecretExpiresAt() bool

HasClientSecretExpiresAt returns a boolean if a field has been set.

func (*OAuth2Client) HasClientUri ¶

func (o *OAuth2Client) HasClientUri() bool

HasClientUri returns a boolean if a field has been set.

func (*OAuth2Client) HasContacts ¶

func (o *OAuth2Client) HasContacts() bool

HasContacts returns a boolean if a field has been set.

func (*OAuth2Client) HasCreatedAt ¶

func (o *OAuth2Client) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*OAuth2Client) HasFrontchannelLogoutSessionRequired ¶

func (o *OAuth2Client) HasFrontchannelLogoutSessionRequired() bool

HasFrontchannelLogoutSessionRequired returns a boolean if a field has been set.

func (*OAuth2Client) HasFrontchannelLogoutUri ¶

func (o *OAuth2Client) HasFrontchannelLogoutUri() bool

HasFrontchannelLogoutUri returns a boolean if a field has been set.

func (*OAuth2Client) HasGrantTypes ¶

func (o *OAuth2Client) HasGrantTypes() bool

HasGrantTypes returns a boolean if a field has been set.

func (*OAuth2Client) HasImplicitGrantAccessTokenLifespan ¶

func (o *OAuth2Client) HasImplicitGrantAccessTokenLifespan() bool

HasImplicitGrantAccessTokenLifespan returns a boolean if a field has been set.

func (*OAuth2Client) HasImplicitGrantIdTokenLifespan ¶

func (o *OAuth2Client) HasImplicitGrantIdTokenLifespan() bool

HasImplicitGrantIdTokenLifespan returns a boolean if a field has been set.

func (*OAuth2Client) HasJwks ¶

func (o *OAuth2Client) HasJwks() bool

HasJwks returns a boolean if a field has been set.

func (*OAuth2Client) HasJwksUri ¶

func (o *OAuth2Client) HasJwksUri() bool

HasJwksUri returns a boolean if a field has been set.

func (*OAuth2Client) HasJwtBearerGrantAccessTokenLifespan ¶

func (o *OAuth2Client) HasJwtBearerGrantAccessTokenLifespan() bool

HasJwtBearerGrantAccessTokenLifespan returns a boolean if a field has been set.

func (*OAuth2Client) HasLogoUri ¶

func (o *OAuth2Client) HasLogoUri() bool

HasLogoUri returns a boolean if a field has been set.

func (*OAuth2Client) HasMetadata ¶

func (o *OAuth2Client) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*OAuth2Client) HasOwner ¶

func (o *OAuth2Client) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*OAuth2Client) HasPolicyUri ¶

func (o *OAuth2Client) HasPolicyUri() bool

HasPolicyUri returns a boolean if a field has been set.

func (*OAuth2Client) HasPostLogoutRedirectUris ¶

func (o *OAuth2Client) HasPostLogoutRedirectUris() bool

HasPostLogoutRedirectUris returns a boolean if a field has been set.

func (*OAuth2Client) HasRedirectUris ¶

func (o *OAuth2Client) HasRedirectUris() bool

HasRedirectUris returns a boolean if a field has been set.

func (*OAuth2Client) HasRefreshTokenGrantAccessTokenLifespan ¶

func (o *OAuth2Client) HasRefreshTokenGrantAccessTokenLifespan() bool

HasRefreshTokenGrantAccessTokenLifespan returns a boolean if a field has been set.

func (*OAuth2Client) HasRefreshTokenGrantIdTokenLifespan ¶

func (o *OAuth2Client) HasRefreshTokenGrantIdTokenLifespan() bool

HasRefreshTokenGrantIdTokenLifespan returns a boolean if a field has been set.

func (*OAuth2Client) HasRefreshTokenGrantRefreshTokenLifespan ¶

func (o *OAuth2Client) HasRefreshTokenGrantRefreshTokenLifespan() bool

HasRefreshTokenGrantRefreshTokenLifespan returns a boolean if a field has been set.

func (*OAuth2Client) HasRegistrationAccessToken ¶

func (o *OAuth2Client) HasRegistrationAccessToken() bool

HasRegistrationAccessToken returns a boolean if a field has been set.

func (*OAuth2Client) HasRegistrationClientUri ¶

func (o *OAuth2Client) HasRegistrationClientUri() bool

HasRegistrationClientUri returns a boolean if a field has been set.

func (*OAuth2Client) HasRequestObjectSigningAlg ¶

func (o *OAuth2Client) HasRequestObjectSigningAlg() bool

HasRequestObjectSigningAlg returns a boolean if a field has been set.

func (*OAuth2Client) HasRequestUris ¶

func (o *OAuth2Client) HasRequestUris() bool

HasRequestUris returns a boolean if a field has been set.

func (*OAuth2Client) HasResponseTypes ¶

func (o *OAuth2Client) HasResponseTypes() bool

HasResponseTypes returns a boolean if a field has been set.

func (*OAuth2Client) HasScope ¶

func (o *OAuth2Client) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*OAuth2Client) HasSectorIdentifierUri ¶

func (o *OAuth2Client) HasSectorIdentifierUri() bool

HasSectorIdentifierUri returns a boolean if a field has been set.

func (*OAuth2Client) HasSkipConsent ¶

func (o *OAuth2Client) HasSkipConsent() bool

HasSkipConsent returns a boolean if a field has been set.

func (*OAuth2Client) HasSubjectType ¶

func (o *OAuth2Client) HasSubjectType() bool

HasSubjectType returns a boolean if a field has been set.

func (*OAuth2Client) HasTokenEndpointAuthMethod ¶

func (o *OAuth2Client) HasTokenEndpointAuthMethod() bool

HasTokenEndpointAuthMethod returns a boolean if a field has been set.

func (*OAuth2Client) HasTokenEndpointAuthSigningAlg ¶

func (o *OAuth2Client) HasTokenEndpointAuthSigningAlg() bool

HasTokenEndpointAuthSigningAlg returns a boolean if a field has been set.

func (*OAuth2Client) HasTosUri ¶

func (o *OAuth2Client) HasTosUri() bool

HasTosUri returns a boolean if a field has been set.

func (*OAuth2Client) HasUpdatedAt ¶

func (o *OAuth2Client) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*OAuth2Client) HasUserinfoSignedResponseAlg ¶

func (o *OAuth2Client) HasUserinfoSignedResponseAlg() bool

HasUserinfoSignedResponseAlg returns a boolean if a field has been set.

func (OAuth2Client) MarshalJSON ¶

func (o OAuth2Client) MarshalJSON() ([]byte, error)

func (*OAuth2Client) SetAccessTokenStrategy ¶

func (o *OAuth2Client) SetAccessTokenStrategy(v string)

SetAccessTokenStrategy gets a reference to the given string and assigns it to the AccessTokenStrategy field.

func (*OAuth2Client) SetAllowedCorsOrigins ¶

func (o *OAuth2Client) SetAllowedCorsOrigins(v []string)

SetAllowedCorsOrigins gets a reference to the given []string and assigns it to the AllowedCorsOrigins field.

func (*OAuth2Client) SetAudience ¶

func (o *OAuth2Client) SetAudience(v []string)

SetAudience gets a reference to the given []string and assigns it to the Audience field.

func (*OAuth2Client) SetAuthorizationCodeGrantAccessTokenLifespan ¶

func (o *OAuth2Client) SetAuthorizationCodeGrantAccessTokenLifespan(v string)

SetAuthorizationCodeGrantAccessTokenLifespan gets a reference to the given NullableString and assigns it to the AuthorizationCodeGrantAccessTokenLifespan field.

func (*OAuth2Client) SetAuthorizationCodeGrantAccessTokenLifespanNil ¶

func (o *OAuth2Client) SetAuthorizationCodeGrantAccessTokenLifespanNil()

SetAuthorizationCodeGrantAccessTokenLifespanNil sets the value for AuthorizationCodeGrantAccessTokenLifespan to be an explicit nil

func (*OAuth2Client) SetAuthorizationCodeGrantIdTokenLifespan ¶

func (o *OAuth2Client) SetAuthorizationCodeGrantIdTokenLifespan(v string)

SetAuthorizationCodeGrantIdTokenLifespan gets a reference to the given NullableString and assigns it to the AuthorizationCodeGrantIdTokenLifespan field.

func (*OAuth2Client) SetAuthorizationCodeGrantIdTokenLifespanNil ¶

func (o *OAuth2Client) SetAuthorizationCodeGrantIdTokenLifespanNil()

SetAuthorizationCodeGrantIdTokenLifespanNil sets the value for AuthorizationCodeGrantIdTokenLifespan to be an explicit nil

func (*OAuth2Client) SetAuthorizationCodeGrantRefreshTokenLifespan ¶

func (o *OAuth2Client) SetAuthorizationCodeGrantRefreshTokenLifespan(v string)

SetAuthorizationCodeGrantRefreshTokenLifespan gets a reference to the given NullableString and assigns it to the AuthorizationCodeGrantRefreshTokenLifespan field.

func (*OAuth2Client) SetAuthorizationCodeGrantRefreshTokenLifespanNil ¶

func (o *OAuth2Client) SetAuthorizationCodeGrantRefreshTokenLifespanNil()

SetAuthorizationCodeGrantRefreshTokenLifespanNil sets the value for AuthorizationCodeGrantRefreshTokenLifespan to be an explicit nil

func (*OAuth2Client) SetBackchannelLogoutSessionRequired ¶

func (o *OAuth2Client) SetBackchannelLogoutSessionRequired(v bool)

SetBackchannelLogoutSessionRequired gets a reference to the given bool and assigns it to the BackchannelLogoutSessionRequired field.

func (*OAuth2Client) SetBackchannelLogoutUri ¶

func (o *OAuth2Client) SetBackchannelLogoutUri(v string)

SetBackchannelLogoutUri gets a reference to the given string and assigns it to the BackchannelLogoutUri field.

func (*OAuth2Client) SetClientCredentialsGrantAccessTokenLifespan ¶

func (o *OAuth2Client) SetClientCredentialsGrantAccessTokenLifespan(v string)

SetClientCredentialsGrantAccessTokenLifespan gets a reference to the given NullableString and assigns it to the ClientCredentialsGrantAccessTokenLifespan field.

func (*OAuth2Client) SetClientCredentialsGrantAccessTokenLifespanNil ¶

func (o *OAuth2Client) SetClientCredentialsGrantAccessTokenLifespanNil()

SetClientCredentialsGrantAccessTokenLifespanNil sets the value for ClientCredentialsGrantAccessTokenLifespan to be an explicit nil

func (*OAuth2Client) SetClientId ¶

func (o *OAuth2Client) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*OAuth2Client) SetClientName ¶

func (o *OAuth2Client) SetClientName(v string)

SetClientName gets a reference to the given string and assigns it to the ClientName field.

func (*OAuth2Client) SetClientSecret ¶

func (o *OAuth2Client) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*OAuth2Client) SetClientSecretExpiresAt ¶

func (o *OAuth2Client) SetClientSecretExpiresAt(v int64)

SetClientSecretExpiresAt gets a reference to the given int64 and assigns it to the ClientSecretExpiresAt field.

func (*OAuth2Client) SetClientUri ¶

func (o *OAuth2Client) SetClientUri(v string)

SetClientUri gets a reference to the given string and assigns it to the ClientUri field.

func (*OAuth2Client) SetContacts ¶

func (o *OAuth2Client) SetContacts(v []string)

SetContacts gets a reference to the given []string and assigns it to the Contacts field.

func (*OAuth2Client) SetCreatedAt ¶

func (o *OAuth2Client) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*OAuth2Client) SetFrontchannelLogoutSessionRequired ¶

func (o *OAuth2Client) SetFrontchannelLogoutSessionRequired(v bool)

SetFrontchannelLogoutSessionRequired gets a reference to the given bool and assigns it to the FrontchannelLogoutSessionRequired field.

func (*OAuth2Client) SetFrontchannelLogoutUri ¶

func (o *OAuth2Client) SetFrontchannelLogoutUri(v string)

SetFrontchannelLogoutUri gets a reference to the given string and assigns it to the FrontchannelLogoutUri field.

func (*OAuth2Client) SetGrantTypes ¶

func (o *OAuth2Client) SetGrantTypes(v []string)

SetGrantTypes gets a reference to the given []string and assigns it to the GrantTypes field.

func (*OAuth2Client) SetImplicitGrantAccessTokenLifespan ¶

func (o *OAuth2Client) SetImplicitGrantAccessTokenLifespan(v string)

SetImplicitGrantAccessTokenLifespan gets a reference to the given NullableString and assigns it to the ImplicitGrantAccessTokenLifespan field.

func (*OAuth2Client) SetImplicitGrantAccessTokenLifespanNil ¶

func (o *OAuth2Client) SetImplicitGrantAccessTokenLifespanNil()

SetImplicitGrantAccessTokenLifespanNil sets the value for ImplicitGrantAccessTokenLifespan to be an explicit nil

func (*OAuth2Client) SetImplicitGrantIdTokenLifespan ¶

func (o *OAuth2Client) SetImplicitGrantIdTokenLifespan(v string)

SetImplicitGrantIdTokenLifespan gets a reference to the given NullableString and assigns it to the ImplicitGrantIdTokenLifespan field.

func (*OAuth2Client) SetImplicitGrantIdTokenLifespanNil ¶

func (o *OAuth2Client) SetImplicitGrantIdTokenLifespanNil()

SetImplicitGrantIdTokenLifespanNil sets the value for ImplicitGrantIdTokenLifespan to be an explicit nil

func (*OAuth2Client) SetJwks ¶

func (o *OAuth2Client) SetJwks(v interface{})

SetJwks gets a reference to the given interface{} and assigns it to the Jwks field.

func (*OAuth2Client) SetJwksUri ¶

func (o *OAuth2Client) SetJwksUri(v string)

SetJwksUri gets a reference to the given string and assigns it to the JwksUri field.

func (*OAuth2Client) SetJwtBearerGrantAccessTokenLifespan ¶

func (o *OAuth2Client) SetJwtBearerGrantAccessTokenLifespan(v string)

SetJwtBearerGrantAccessTokenLifespan gets a reference to the given NullableString and assigns it to the JwtBearerGrantAccessTokenLifespan field.

func (*OAuth2Client) SetJwtBearerGrantAccessTokenLifespanNil ¶

func (o *OAuth2Client) SetJwtBearerGrantAccessTokenLifespanNil()

SetJwtBearerGrantAccessTokenLifespanNil sets the value for JwtBearerGrantAccessTokenLifespan to be an explicit nil

func (*OAuth2Client) SetLogoUri ¶

func (o *OAuth2Client) SetLogoUri(v string)

SetLogoUri gets a reference to the given string and assigns it to the LogoUri field.

func (*OAuth2Client) SetMetadata ¶

func (o *OAuth2Client) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*OAuth2Client) SetOwner ¶

func (o *OAuth2Client) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*OAuth2Client) SetPolicyUri ¶

func (o *OAuth2Client) SetPolicyUri(v string)

SetPolicyUri gets a reference to the given string and assigns it to the PolicyUri field.

func (*OAuth2Client) SetPostLogoutRedirectUris ¶

func (o *OAuth2Client) SetPostLogoutRedirectUris(v []string)

SetPostLogoutRedirectUris gets a reference to the given []string and assigns it to the PostLogoutRedirectUris field.

func (*OAuth2Client) SetRedirectUris ¶

func (o *OAuth2Client) SetRedirectUris(v []string)

SetRedirectUris gets a reference to the given []string and assigns it to the RedirectUris field.

func (*OAuth2Client) SetRefreshTokenGrantAccessTokenLifespan ¶

func (o *OAuth2Client) SetRefreshTokenGrantAccessTokenLifespan(v string)

SetRefreshTokenGrantAccessTokenLifespan gets a reference to the given NullableString and assigns it to the RefreshTokenGrantAccessTokenLifespan field.

func (*OAuth2Client) SetRefreshTokenGrantAccessTokenLifespanNil ¶

func (o *OAuth2Client) SetRefreshTokenGrantAccessTokenLifespanNil()

SetRefreshTokenGrantAccessTokenLifespanNil sets the value for RefreshTokenGrantAccessTokenLifespan to be an explicit nil

func (*OAuth2Client) SetRefreshTokenGrantIdTokenLifespan ¶

func (o *OAuth2Client) SetRefreshTokenGrantIdTokenLifespan(v string)

SetRefreshTokenGrantIdTokenLifespan gets a reference to the given NullableString and assigns it to the RefreshTokenGrantIdTokenLifespan field.

func (*OAuth2Client) SetRefreshTokenGrantIdTokenLifespanNil ¶

func (o *OAuth2Client) SetRefreshTokenGrantIdTokenLifespanNil()

SetRefreshTokenGrantIdTokenLifespanNil sets the value for RefreshTokenGrantIdTokenLifespan to be an explicit nil

func (*OAuth2Client) SetRefreshTokenGrantRefreshTokenLifespan ¶

func (o *OAuth2Client) SetRefreshTokenGrantRefreshTokenLifespan(v string)

SetRefreshTokenGrantRefreshTokenLifespan gets a reference to the given NullableString and assigns it to the RefreshTokenGrantRefreshTokenLifespan field.

func (*OAuth2Client) SetRefreshTokenGrantRefreshTokenLifespanNil ¶

func (o *OAuth2Client) SetRefreshTokenGrantRefreshTokenLifespanNil()

SetRefreshTokenGrantRefreshTokenLifespanNil sets the value for RefreshTokenGrantRefreshTokenLifespan to be an explicit nil

func (*OAuth2Client) SetRegistrationAccessToken ¶

func (o *OAuth2Client) SetRegistrationAccessToken(v string)

SetRegistrationAccessToken gets a reference to the given string and assigns it to the RegistrationAccessToken field.

func (*OAuth2Client) SetRegistrationClientUri ¶

func (o *OAuth2Client) SetRegistrationClientUri(v string)

SetRegistrationClientUri gets a reference to the given string and assigns it to the RegistrationClientUri field.

func (*OAuth2Client) SetRequestObjectSigningAlg ¶

func (o *OAuth2Client) SetRequestObjectSigningAlg(v string)

SetRequestObjectSigningAlg gets a reference to the given string and assigns it to the RequestObjectSigningAlg field.

func (*OAuth2Client) SetRequestUris ¶

func (o *OAuth2Client) SetRequestUris(v []string)

SetRequestUris gets a reference to the given []string and assigns it to the RequestUris field.

func (*OAuth2Client) SetResponseTypes ¶

func (o *OAuth2Client) SetResponseTypes(v []string)

SetResponseTypes gets a reference to the given []string and assigns it to the ResponseTypes field.

func (*OAuth2Client) SetScope ¶

func (o *OAuth2Client) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*OAuth2Client) SetSectorIdentifierUri ¶

func (o *OAuth2Client) SetSectorIdentifierUri(v string)

SetSectorIdentifierUri gets a reference to the given string and assigns it to the SectorIdentifierUri field.

func (*OAuth2Client) SetSkipConsent ¶

func (o *OAuth2Client) SetSkipConsent(v bool)

SetSkipConsent gets a reference to the given bool and assigns it to the SkipConsent field.

func (*OAuth2Client) SetSubjectType ¶

func (o *OAuth2Client) SetSubjectType(v string)

SetSubjectType gets a reference to the given string and assigns it to the SubjectType field.

func (*OAuth2Client) SetTokenEndpointAuthMethod ¶

func (o *OAuth2Client) SetTokenEndpointAuthMethod(v string)

SetTokenEndpointAuthMethod gets a reference to the given string and assigns it to the TokenEndpointAuthMethod field.

func (*OAuth2Client) SetTokenEndpointAuthSigningAlg ¶

func (o *OAuth2Client) SetTokenEndpointAuthSigningAlg(v string)

SetTokenEndpointAuthSigningAlg gets a reference to the given string and assigns it to the TokenEndpointAuthSigningAlg field.

func (*OAuth2Client) SetTosUri ¶

func (o *OAuth2Client) SetTosUri(v string)

SetTosUri gets a reference to the given string and assigns it to the TosUri field.

func (*OAuth2Client) SetUpdatedAt ¶

func (o *OAuth2Client) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*OAuth2Client) SetUserinfoSignedResponseAlg ¶

func (o *OAuth2Client) SetUserinfoSignedResponseAlg(v string)

SetUserinfoSignedResponseAlg gets a reference to the given string and assigns it to the UserinfoSignedResponseAlg field.

func (OAuth2Client) ToMap ¶

func (o OAuth2Client) ToMap() (map[string]interface{}, error)

func (*OAuth2Client) UnmarshalJSON ¶

func (o *OAuth2Client) UnmarshalJSON(bytes []byte) (err error)

func (*OAuth2Client) UnsetAuthorizationCodeGrantAccessTokenLifespan ¶

func (o *OAuth2Client) UnsetAuthorizationCodeGrantAccessTokenLifespan()

UnsetAuthorizationCodeGrantAccessTokenLifespan ensures that no value is present for AuthorizationCodeGrantAccessTokenLifespan, not even an explicit nil

func (*OAuth2Client) UnsetAuthorizationCodeGrantIdTokenLifespan ¶

func (o *OAuth2Client) UnsetAuthorizationCodeGrantIdTokenLifespan()

UnsetAuthorizationCodeGrantIdTokenLifespan ensures that no value is present for AuthorizationCodeGrantIdTokenLifespan, not even an explicit nil

func (*OAuth2Client) UnsetAuthorizationCodeGrantRefreshTokenLifespan ¶

func (o *OAuth2Client) UnsetAuthorizationCodeGrantRefreshTokenLifespan()

UnsetAuthorizationCodeGrantRefreshTokenLifespan ensures that no value is present for AuthorizationCodeGrantRefreshTokenLifespan, not even an explicit nil

func (*OAuth2Client) UnsetClientCredentialsGrantAccessTokenLifespan ¶

func (o *OAuth2Client) UnsetClientCredentialsGrantAccessTokenLifespan()

UnsetClientCredentialsGrantAccessTokenLifespan ensures that no value is present for ClientCredentialsGrantAccessTokenLifespan, not even an explicit nil

func (*OAuth2Client) UnsetImplicitGrantAccessTokenLifespan ¶

func (o *OAuth2Client) UnsetImplicitGrantAccessTokenLifespan()

UnsetImplicitGrantAccessTokenLifespan ensures that no value is present for ImplicitGrantAccessTokenLifespan, not even an explicit nil

func (*OAuth2Client) UnsetImplicitGrantIdTokenLifespan ¶

func (o *OAuth2Client) UnsetImplicitGrantIdTokenLifespan()

UnsetImplicitGrantIdTokenLifespan ensures that no value is present for ImplicitGrantIdTokenLifespan, not even an explicit nil

func (*OAuth2Client) UnsetJwtBearerGrantAccessTokenLifespan ¶

func (o *OAuth2Client) UnsetJwtBearerGrantAccessTokenLifespan()

UnsetJwtBearerGrantAccessTokenLifespan ensures that no value is present for JwtBearerGrantAccessTokenLifespan, not even an explicit nil

func (*OAuth2Client) UnsetRefreshTokenGrantAccessTokenLifespan ¶

func (o *OAuth2Client) UnsetRefreshTokenGrantAccessTokenLifespan()

UnsetRefreshTokenGrantAccessTokenLifespan ensures that no value is present for RefreshTokenGrantAccessTokenLifespan, not even an explicit nil

func (*OAuth2Client) UnsetRefreshTokenGrantIdTokenLifespan ¶

func (o *OAuth2Client) UnsetRefreshTokenGrantIdTokenLifespan()

UnsetRefreshTokenGrantIdTokenLifespan ensures that no value is present for RefreshTokenGrantIdTokenLifespan, not even an explicit nil

func (*OAuth2Client) UnsetRefreshTokenGrantRefreshTokenLifespan ¶

func (o *OAuth2Client) UnsetRefreshTokenGrantRefreshTokenLifespan()

UnsetRefreshTokenGrantRefreshTokenLifespan ensures that no value is present for RefreshTokenGrantRefreshTokenLifespan, not even an explicit nil

type OAuth2ClientTokenLifespans ¶

type OAuth2ClientTokenLifespans struct {
	AuthorizationCodeGrantAccessTokenLifespan  NullableString `json:"authorization_code_grant_access_token_lifespan,omitempty"`
	AuthorizationCodeGrantIdTokenLifespan      NullableString `json:"authorization_code_grant_id_token_lifespan,omitempty"`
	AuthorizationCodeGrantRefreshTokenLifespan NullableString `json:"authorization_code_grant_refresh_token_lifespan,omitempty"`
	ClientCredentialsGrantAccessTokenLifespan  NullableString `json:"client_credentials_grant_access_token_lifespan,omitempty"`
	ImplicitGrantAccessTokenLifespan           NullableString `json:"implicit_grant_access_token_lifespan,omitempty"`
	ImplicitGrantIdTokenLifespan               NullableString `json:"implicit_grant_id_token_lifespan,omitempty"`
	JwtBearerGrantAccessTokenLifespan          NullableString `json:"jwt_bearer_grant_access_token_lifespan,omitempty"`
	RefreshTokenGrantAccessTokenLifespan       NullableString `json:"refresh_token_grant_access_token_lifespan,omitempty"`
	RefreshTokenGrantIdTokenLifespan           NullableString `json:"refresh_token_grant_id_token_lifespan,omitempty"`
	RefreshTokenGrantRefreshTokenLifespan      NullableString `json:"refresh_token_grant_refresh_token_lifespan,omitempty"`
	AdditionalProperties                       map[string]interface{}
}

OAuth2ClientTokenLifespans Lifespans of different token types issued for this OAuth 2.0 Client.

func NewOAuth2ClientTokenLifespans ¶

func NewOAuth2ClientTokenLifespans() *OAuth2ClientTokenLifespans

NewOAuth2ClientTokenLifespans instantiates a new OAuth2ClientTokenLifespans 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 NewOAuth2ClientTokenLifespansWithDefaults ¶

func NewOAuth2ClientTokenLifespansWithDefaults() *OAuth2ClientTokenLifespans

NewOAuth2ClientTokenLifespansWithDefaults instantiates a new OAuth2ClientTokenLifespans 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 (*OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantAccessTokenLifespan() string

GetAuthorizationCodeGrantAccessTokenLifespan returns the AuthorizationCodeGrantAccessTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantAccessTokenLifespanOk ¶

func (o *OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantAccessTokenLifespanOk() (*string, bool)

GetAuthorizationCodeGrantAccessTokenLifespanOk returns a tuple with the AuthorizationCodeGrantAccessTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantIdTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantIdTokenLifespan() string

GetAuthorizationCodeGrantIdTokenLifespan returns the AuthorizationCodeGrantIdTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantIdTokenLifespanOk ¶

func (o *OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantIdTokenLifespanOk() (*string, bool)

GetAuthorizationCodeGrantIdTokenLifespanOk returns a tuple with the AuthorizationCodeGrantIdTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantRefreshTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantRefreshTokenLifespan() string

GetAuthorizationCodeGrantRefreshTokenLifespan returns the AuthorizationCodeGrantRefreshTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantRefreshTokenLifespanOk ¶

func (o *OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantRefreshTokenLifespanOk() (*string, bool)

GetAuthorizationCodeGrantRefreshTokenLifespanOk returns a tuple with the AuthorizationCodeGrantRefreshTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2ClientTokenLifespans) GetClientCredentialsGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) GetClientCredentialsGrantAccessTokenLifespan() string

GetClientCredentialsGrantAccessTokenLifespan returns the ClientCredentialsGrantAccessTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2ClientTokenLifespans) GetClientCredentialsGrantAccessTokenLifespanOk ¶

func (o *OAuth2ClientTokenLifespans) GetClientCredentialsGrantAccessTokenLifespanOk() (*string, bool)

GetClientCredentialsGrantAccessTokenLifespanOk returns a tuple with the ClientCredentialsGrantAccessTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2ClientTokenLifespans) GetImplicitGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) GetImplicitGrantAccessTokenLifespan() string

GetImplicitGrantAccessTokenLifespan returns the ImplicitGrantAccessTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2ClientTokenLifespans) GetImplicitGrantAccessTokenLifespanOk ¶

func (o *OAuth2ClientTokenLifespans) GetImplicitGrantAccessTokenLifespanOk() (*string, bool)

GetImplicitGrantAccessTokenLifespanOk returns a tuple with the ImplicitGrantAccessTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2ClientTokenLifespans) GetImplicitGrantIdTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) GetImplicitGrantIdTokenLifespan() string

GetImplicitGrantIdTokenLifespan returns the ImplicitGrantIdTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2ClientTokenLifespans) GetImplicitGrantIdTokenLifespanOk ¶

func (o *OAuth2ClientTokenLifespans) GetImplicitGrantIdTokenLifespanOk() (*string, bool)

GetImplicitGrantIdTokenLifespanOk returns a tuple with the ImplicitGrantIdTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2ClientTokenLifespans) GetJwtBearerGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) GetJwtBearerGrantAccessTokenLifespan() string

GetJwtBearerGrantAccessTokenLifespan returns the JwtBearerGrantAccessTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2ClientTokenLifespans) GetJwtBearerGrantAccessTokenLifespanOk ¶

func (o *OAuth2ClientTokenLifespans) GetJwtBearerGrantAccessTokenLifespanOk() (*string, bool)

GetJwtBearerGrantAccessTokenLifespanOk returns a tuple with the JwtBearerGrantAccessTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2ClientTokenLifespans) GetRefreshTokenGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) GetRefreshTokenGrantAccessTokenLifespan() string

GetRefreshTokenGrantAccessTokenLifespan returns the RefreshTokenGrantAccessTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2ClientTokenLifespans) GetRefreshTokenGrantAccessTokenLifespanOk ¶

func (o *OAuth2ClientTokenLifespans) GetRefreshTokenGrantAccessTokenLifespanOk() (*string, bool)

GetRefreshTokenGrantAccessTokenLifespanOk returns a tuple with the RefreshTokenGrantAccessTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2ClientTokenLifespans) GetRefreshTokenGrantIdTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) GetRefreshTokenGrantIdTokenLifespan() string

GetRefreshTokenGrantIdTokenLifespan returns the RefreshTokenGrantIdTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2ClientTokenLifespans) GetRefreshTokenGrantIdTokenLifespanOk ¶

func (o *OAuth2ClientTokenLifespans) GetRefreshTokenGrantIdTokenLifespanOk() (*string, bool)

GetRefreshTokenGrantIdTokenLifespanOk returns a tuple with the RefreshTokenGrantIdTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2ClientTokenLifespans) GetRefreshTokenGrantRefreshTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) GetRefreshTokenGrantRefreshTokenLifespan() string

GetRefreshTokenGrantRefreshTokenLifespan returns the RefreshTokenGrantRefreshTokenLifespan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuth2ClientTokenLifespans) GetRefreshTokenGrantRefreshTokenLifespanOk ¶

func (o *OAuth2ClientTokenLifespans) GetRefreshTokenGrantRefreshTokenLifespanOk() (*string, bool)

GetRefreshTokenGrantRefreshTokenLifespanOk returns a tuple with the RefreshTokenGrantRefreshTokenLifespan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuth2ClientTokenLifespans) HasAuthorizationCodeGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) HasAuthorizationCodeGrantAccessTokenLifespan() bool

HasAuthorizationCodeGrantAccessTokenLifespan returns a boolean if a field has been set.

func (*OAuth2ClientTokenLifespans) HasAuthorizationCodeGrantIdTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) HasAuthorizationCodeGrantIdTokenLifespan() bool

HasAuthorizationCodeGrantIdTokenLifespan returns a boolean if a field has been set.

func (*OAuth2ClientTokenLifespans) HasAuthorizationCodeGrantRefreshTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) HasAuthorizationCodeGrantRefreshTokenLifespan() bool

HasAuthorizationCodeGrantRefreshTokenLifespan returns a boolean if a field has been set.

func (*OAuth2ClientTokenLifespans) HasClientCredentialsGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) HasClientCredentialsGrantAccessTokenLifespan() bool

HasClientCredentialsGrantAccessTokenLifespan returns a boolean if a field has been set.

func (*OAuth2ClientTokenLifespans) HasImplicitGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) HasImplicitGrantAccessTokenLifespan() bool

HasImplicitGrantAccessTokenLifespan returns a boolean if a field has been set.

func (*OAuth2ClientTokenLifespans) HasImplicitGrantIdTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) HasImplicitGrantIdTokenLifespan() bool

HasImplicitGrantIdTokenLifespan returns a boolean if a field has been set.

func (*OAuth2ClientTokenLifespans) HasJwtBearerGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) HasJwtBearerGrantAccessTokenLifespan() bool

HasJwtBearerGrantAccessTokenLifespan returns a boolean if a field has been set.

func (*OAuth2ClientTokenLifespans) HasRefreshTokenGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) HasRefreshTokenGrantAccessTokenLifespan() bool

HasRefreshTokenGrantAccessTokenLifespan returns a boolean if a field has been set.

func (*OAuth2ClientTokenLifespans) HasRefreshTokenGrantIdTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) HasRefreshTokenGrantIdTokenLifespan() bool

HasRefreshTokenGrantIdTokenLifespan returns a boolean if a field has been set.

func (*OAuth2ClientTokenLifespans) HasRefreshTokenGrantRefreshTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) HasRefreshTokenGrantRefreshTokenLifespan() bool

HasRefreshTokenGrantRefreshTokenLifespan returns a boolean if a field has been set.

func (OAuth2ClientTokenLifespans) MarshalJSON ¶

func (o OAuth2ClientTokenLifespans) MarshalJSON() ([]byte, error)

func (*OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantAccessTokenLifespan(v string)

SetAuthorizationCodeGrantAccessTokenLifespan gets a reference to the given NullableString and assigns it to the AuthorizationCodeGrantAccessTokenLifespan field.

func (*OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantAccessTokenLifespanNil ¶

func (o *OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantAccessTokenLifespanNil()

SetAuthorizationCodeGrantAccessTokenLifespanNil sets the value for AuthorizationCodeGrantAccessTokenLifespan to be an explicit nil

func (*OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantIdTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantIdTokenLifespan(v string)

SetAuthorizationCodeGrantIdTokenLifespan gets a reference to the given NullableString and assigns it to the AuthorizationCodeGrantIdTokenLifespan field.

func (*OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantIdTokenLifespanNil ¶

func (o *OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantIdTokenLifespanNil()

SetAuthorizationCodeGrantIdTokenLifespanNil sets the value for AuthorizationCodeGrantIdTokenLifespan to be an explicit nil

func (*OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantRefreshTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantRefreshTokenLifespan(v string)

SetAuthorizationCodeGrantRefreshTokenLifespan gets a reference to the given NullableString and assigns it to the AuthorizationCodeGrantRefreshTokenLifespan field.

func (*OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantRefreshTokenLifespanNil ¶

func (o *OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantRefreshTokenLifespanNil()

SetAuthorizationCodeGrantRefreshTokenLifespanNil sets the value for AuthorizationCodeGrantRefreshTokenLifespan to be an explicit nil

func (*OAuth2ClientTokenLifespans) SetClientCredentialsGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) SetClientCredentialsGrantAccessTokenLifespan(v string)

SetClientCredentialsGrantAccessTokenLifespan gets a reference to the given NullableString and assigns it to the ClientCredentialsGrantAccessTokenLifespan field.

func (*OAuth2ClientTokenLifespans) SetClientCredentialsGrantAccessTokenLifespanNil ¶

func (o *OAuth2ClientTokenLifespans) SetClientCredentialsGrantAccessTokenLifespanNil()

SetClientCredentialsGrantAccessTokenLifespanNil sets the value for ClientCredentialsGrantAccessTokenLifespan to be an explicit nil

func (*OAuth2ClientTokenLifespans) SetImplicitGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) SetImplicitGrantAccessTokenLifespan(v string)

SetImplicitGrantAccessTokenLifespan gets a reference to the given NullableString and assigns it to the ImplicitGrantAccessTokenLifespan field.

func (*OAuth2ClientTokenLifespans) SetImplicitGrantAccessTokenLifespanNil ¶

func (o *OAuth2ClientTokenLifespans) SetImplicitGrantAccessTokenLifespanNil()

SetImplicitGrantAccessTokenLifespanNil sets the value for ImplicitGrantAccessTokenLifespan to be an explicit nil

func (*OAuth2ClientTokenLifespans) SetImplicitGrantIdTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) SetImplicitGrantIdTokenLifespan(v string)

SetImplicitGrantIdTokenLifespan gets a reference to the given NullableString and assigns it to the ImplicitGrantIdTokenLifespan field.

func (*OAuth2ClientTokenLifespans) SetImplicitGrantIdTokenLifespanNil ¶

func (o *OAuth2ClientTokenLifespans) SetImplicitGrantIdTokenLifespanNil()

SetImplicitGrantIdTokenLifespanNil sets the value for ImplicitGrantIdTokenLifespan to be an explicit nil

func (*OAuth2ClientTokenLifespans) SetJwtBearerGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) SetJwtBearerGrantAccessTokenLifespan(v string)

SetJwtBearerGrantAccessTokenLifespan gets a reference to the given NullableString and assigns it to the JwtBearerGrantAccessTokenLifespan field.

func (*OAuth2ClientTokenLifespans) SetJwtBearerGrantAccessTokenLifespanNil ¶

func (o *OAuth2ClientTokenLifespans) SetJwtBearerGrantAccessTokenLifespanNil()

SetJwtBearerGrantAccessTokenLifespanNil sets the value for JwtBearerGrantAccessTokenLifespan to be an explicit nil

func (*OAuth2ClientTokenLifespans) SetRefreshTokenGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) SetRefreshTokenGrantAccessTokenLifespan(v string)

SetRefreshTokenGrantAccessTokenLifespan gets a reference to the given NullableString and assigns it to the RefreshTokenGrantAccessTokenLifespan field.

func (*OAuth2ClientTokenLifespans) SetRefreshTokenGrantAccessTokenLifespanNil ¶

func (o *OAuth2ClientTokenLifespans) SetRefreshTokenGrantAccessTokenLifespanNil()

SetRefreshTokenGrantAccessTokenLifespanNil sets the value for RefreshTokenGrantAccessTokenLifespan to be an explicit nil

func (*OAuth2ClientTokenLifespans) SetRefreshTokenGrantIdTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) SetRefreshTokenGrantIdTokenLifespan(v string)

SetRefreshTokenGrantIdTokenLifespan gets a reference to the given NullableString and assigns it to the RefreshTokenGrantIdTokenLifespan field.

func (*OAuth2ClientTokenLifespans) SetRefreshTokenGrantIdTokenLifespanNil ¶

func (o *OAuth2ClientTokenLifespans) SetRefreshTokenGrantIdTokenLifespanNil()

SetRefreshTokenGrantIdTokenLifespanNil sets the value for RefreshTokenGrantIdTokenLifespan to be an explicit nil

func (*OAuth2ClientTokenLifespans) SetRefreshTokenGrantRefreshTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) SetRefreshTokenGrantRefreshTokenLifespan(v string)

SetRefreshTokenGrantRefreshTokenLifespan gets a reference to the given NullableString and assigns it to the RefreshTokenGrantRefreshTokenLifespan field.

func (*OAuth2ClientTokenLifespans) SetRefreshTokenGrantRefreshTokenLifespanNil ¶

func (o *OAuth2ClientTokenLifespans) SetRefreshTokenGrantRefreshTokenLifespanNil()

SetRefreshTokenGrantRefreshTokenLifespanNil sets the value for RefreshTokenGrantRefreshTokenLifespan to be an explicit nil

func (OAuth2ClientTokenLifespans) ToMap ¶

func (o OAuth2ClientTokenLifespans) ToMap() (map[string]interface{}, error)

func (*OAuth2ClientTokenLifespans) UnmarshalJSON ¶

func (o *OAuth2ClientTokenLifespans) UnmarshalJSON(bytes []byte) (err error)

func (*OAuth2ClientTokenLifespans) UnsetAuthorizationCodeGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) UnsetAuthorizationCodeGrantAccessTokenLifespan()

UnsetAuthorizationCodeGrantAccessTokenLifespan ensures that no value is present for AuthorizationCodeGrantAccessTokenLifespan, not even an explicit nil

func (*OAuth2ClientTokenLifespans) UnsetAuthorizationCodeGrantIdTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) UnsetAuthorizationCodeGrantIdTokenLifespan()

UnsetAuthorizationCodeGrantIdTokenLifespan ensures that no value is present for AuthorizationCodeGrantIdTokenLifespan, not even an explicit nil

func (*OAuth2ClientTokenLifespans) UnsetAuthorizationCodeGrantRefreshTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) UnsetAuthorizationCodeGrantRefreshTokenLifespan()

UnsetAuthorizationCodeGrantRefreshTokenLifespan ensures that no value is present for AuthorizationCodeGrantRefreshTokenLifespan, not even an explicit nil

func (*OAuth2ClientTokenLifespans) UnsetClientCredentialsGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) UnsetClientCredentialsGrantAccessTokenLifespan()

UnsetClientCredentialsGrantAccessTokenLifespan ensures that no value is present for ClientCredentialsGrantAccessTokenLifespan, not even an explicit nil

func (*OAuth2ClientTokenLifespans) UnsetImplicitGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) UnsetImplicitGrantAccessTokenLifespan()

UnsetImplicitGrantAccessTokenLifespan ensures that no value is present for ImplicitGrantAccessTokenLifespan, not even an explicit nil

func (*OAuth2ClientTokenLifespans) UnsetImplicitGrantIdTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) UnsetImplicitGrantIdTokenLifespan()

UnsetImplicitGrantIdTokenLifespan ensures that no value is present for ImplicitGrantIdTokenLifespan, not even an explicit nil

func (*OAuth2ClientTokenLifespans) UnsetJwtBearerGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) UnsetJwtBearerGrantAccessTokenLifespan()

UnsetJwtBearerGrantAccessTokenLifespan ensures that no value is present for JwtBearerGrantAccessTokenLifespan, not even an explicit nil

func (*OAuth2ClientTokenLifespans) UnsetRefreshTokenGrantAccessTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) UnsetRefreshTokenGrantAccessTokenLifespan()

UnsetRefreshTokenGrantAccessTokenLifespan ensures that no value is present for RefreshTokenGrantAccessTokenLifespan, not even an explicit nil

func (*OAuth2ClientTokenLifespans) UnsetRefreshTokenGrantIdTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) UnsetRefreshTokenGrantIdTokenLifespan()

UnsetRefreshTokenGrantIdTokenLifespan ensures that no value is present for RefreshTokenGrantIdTokenLifespan, not even an explicit nil

func (*OAuth2ClientTokenLifespans) UnsetRefreshTokenGrantRefreshTokenLifespan ¶

func (o *OAuth2ClientTokenLifespans) UnsetRefreshTokenGrantRefreshTokenLifespan()

UnsetRefreshTokenGrantRefreshTokenLifespan ensures that no value is present for RefreshTokenGrantRefreshTokenLifespan, not even an explicit nil

type OAuth2ConsentRequest ¶

type OAuth2ConsentRequest struct {
	// ACR represents the Authentication AuthorizationContext Class Reference value for this authentication session. You can use it to express that, for example, a user authenticated using two factor authentication.
	Acr *string  `json:"acr,omitempty"`
	Amr []string `json:"amr,omitempty"`
	// ID is the identifier (\"authorization challenge\") of the consent authorization request. It is used to identify the session.
	Challenge string                 `json:"challenge"`
	Client    *OAuth2Client          `json:"client,omitempty"`
	Context   map[string]interface{} `json:"context,omitempty"`
	// LoginChallenge is the login challenge this consent challenge belongs to. It can be used to associate a login and consent request in the login & consent app.
	LoginChallenge *string `json:"login_challenge,omitempty"`
	// LoginSessionID is the login session ID. If the user-agent reuses a login session (via cookie / remember flag) this ID will remain the same. If the user-agent did not have an existing authentication session (e.g. remember is false) this will be a new random value. This value is used as the \"sid\" parameter in the ID Token and in OIDC Front-/Back- channel logout. It's value can generally be used to associate consecutive login requests by a certain user.
	LoginSessionId *string                                   `json:"login_session_id,omitempty"`
	OidcContext    *OAuth2ConsentRequestOpenIDConnectContext `json:"oidc_context,omitempty"`
	// RequestURL is the original OAuth 2.0 Authorization URL requested by the OAuth 2.0 client. It is the URL which initiates the OAuth 2.0 Authorization Code or OAuth 2.0 Implicit flow. This URL is typically not needed, but might come in handy if you want to deal with additional request parameters.
	RequestUrl                   *string  `json:"request_url,omitempty"`
	RequestedAccessTokenAudience []string `json:"requested_access_token_audience,omitempty"`
	RequestedScope               []string `json:"requested_scope,omitempty"`
	// Skip, if true, implies that the client has requested the same scopes from the same user previously. If true, you must not ask the user to grant the requested scopes. You must however either allow or deny the consent request using the usual API call.
	Skip *bool `json:"skip,omitempty"`
	// Subject is the user ID of the end-user that authenticated. Now, that end user needs to grant or deny the scope requested by the OAuth 2.0 client.
	Subject              *string `json:"subject,omitempty"`
	AdditionalProperties map[string]interface{}
}

OAuth2ConsentRequest struct for OAuth2ConsentRequest

func NewOAuth2ConsentRequest ¶

func NewOAuth2ConsentRequest(challenge string) *OAuth2ConsentRequest

NewOAuth2ConsentRequest instantiates a new OAuth2ConsentRequest 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 NewOAuth2ConsentRequestWithDefaults ¶

func NewOAuth2ConsentRequestWithDefaults() *OAuth2ConsentRequest

NewOAuth2ConsentRequestWithDefaults instantiates a new OAuth2ConsentRequest 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 (*OAuth2ConsentRequest) GetAcr ¶

func (o *OAuth2ConsentRequest) GetAcr() string

GetAcr returns the Acr field value if set, zero value otherwise.

func (*OAuth2ConsentRequest) GetAcrOk ¶

func (o *OAuth2ConsentRequest) GetAcrOk() (*string, bool)

GetAcrOk returns a tuple with the Acr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequest) GetAmr ¶

func (o *OAuth2ConsentRequest) GetAmr() []string

GetAmr returns the Amr field value if set, zero value otherwise.

func (*OAuth2ConsentRequest) GetAmrOk ¶

func (o *OAuth2ConsentRequest) GetAmrOk() ([]string, bool)

GetAmrOk returns a tuple with the Amr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequest) GetChallenge ¶

func (o *OAuth2ConsentRequest) GetChallenge() string

GetChallenge returns the Challenge field value

func (*OAuth2ConsentRequest) GetChallengeOk ¶

func (o *OAuth2ConsentRequest) GetChallengeOk() (*string, bool)

GetChallengeOk returns a tuple with the Challenge field value and a boolean to check if the value has been set.

func (*OAuth2ConsentRequest) GetClient ¶

func (o *OAuth2ConsentRequest) GetClient() OAuth2Client

GetClient returns the Client field value if set, zero value otherwise.

func (*OAuth2ConsentRequest) GetClientOk ¶

func (o *OAuth2ConsentRequest) GetClientOk() (*OAuth2Client, bool)

GetClientOk returns a tuple with the Client field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequest) GetContext ¶

func (o *OAuth2ConsentRequest) GetContext() map[string]interface{}

GetContext returns the Context field value if set, zero value otherwise.

func (*OAuth2ConsentRequest) GetContextOk ¶

func (o *OAuth2ConsentRequest) GetContextOk() (map[string]interface{}, bool)

GetContextOk returns a tuple with the Context field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequest) GetLoginChallenge ¶

func (o *OAuth2ConsentRequest) GetLoginChallenge() string

GetLoginChallenge returns the LoginChallenge field value if set, zero value otherwise.

func (*OAuth2ConsentRequest) GetLoginChallengeOk ¶

func (o *OAuth2ConsentRequest) GetLoginChallengeOk() (*string, bool)

GetLoginChallengeOk returns a tuple with the LoginChallenge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequest) GetLoginSessionId ¶

func (o *OAuth2ConsentRequest) GetLoginSessionId() string

GetLoginSessionId returns the LoginSessionId field value if set, zero value otherwise.

func (*OAuth2ConsentRequest) GetLoginSessionIdOk ¶

func (o *OAuth2ConsentRequest) GetLoginSessionIdOk() (*string, bool)

GetLoginSessionIdOk returns a tuple with the LoginSessionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequest) GetOidcContext ¶

GetOidcContext returns the OidcContext field value if set, zero value otherwise.

func (*OAuth2ConsentRequest) GetOidcContextOk ¶

GetOidcContextOk returns a tuple with the OidcContext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequest) GetRequestUrl ¶

func (o *OAuth2ConsentRequest) GetRequestUrl() string

GetRequestUrl returns the RequestUrl field value if set, zero value otherwise.

func (*OAuth2ConsentRequest) GetRequestUrlOk ¶

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

GetRequestUrlOk returns a tuple with the RequestUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequest) GetRequestedAccessTokenAudience ¶

func (o *OAuth2ConsentRequest) GetRequestedAccessTokenAudience() []string

GetRequestedAccessTokenAudience returns the RequestedAccessTokenAudience field value if set, zero value otherwise.

func (*OAuth2ConsentRequest) GetRequestedAccessTokenAudienceOk ¶

func (o *OAuth2ConsentRequest) GetRequestedAccessTokenAudienceOk() ([]string, bool)

GetRequestedAccessTokenAudienceOk returns a tuple with the RequestedAccessTokenAudience field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequest) GetRequestedScope ¶

func (o *OAuth2ConsentRequest) GetRequestedScope() []string

GetRequestedScope returns the RequestedScope field value if set, zero value otherwise.

func (*OAuth2ConsentRequest) GetRequestedScopeOk ¶

func (o *OAuth2ConsentRequest) GetRequestedScopeOk() ([]string, bool)

GetRequestedScopeOk returns a tuple with the RequestedScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequest) GetSkip ¶

func (o *OAuth2ConsentRequest) GetSkip() bool

GetSkip returns the Skip field value if set, zero value otherwise.

func (*OAuth2ConsentRequest) GetSkipOk ¶

func (o *OAuth2ConsentRequest) GetSkipOk() (*bool, bool)

GetSkipOk returns a tuple with the Skip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequest) GetSubject ¶

func (o *OAuth2ConsentRequest) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*OAuth2ConsentRequest) GetSubjectOk ¶

func (o *OAuth2ConsentRequest) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequest) HasAcr ¶

func (o *OAuth2ConsentRequest) HasAcr() bool

HasAcr returns a boolean if a field has been set.

func (*OAuth2ConsentRequest) HasAmr ¶

func (o *OAuth2ConsentRequest) HasAmr() bool

HasAmr returns a boolean if a field has been set.

func (*OAuth2ConsentRequest) HasClient ¶

func (o *OAuth2ConsentRequest) HasClient() bool

HasClient returns a boolean if a field has been set.

func (*OAuth2ConsentRequest) HasContext ¶

func (o *OAuth2ConsentRequest) HasContext() bool

HasContext returns a boolean if a field has been set.

func (*OAuth2ConsentRequest) HasLoginChallenge ¶

func (o *OAuth2ConsentRequest) HasLoginChallenge() bool

HasLoginChallenge returns a boolean if a field has been set.

func (*OAuth2ConsentRequest) HasLoginSessionId ¶

func (o *OAuth2ConsentRequest) HasLoginSessionId() bool

HasLoginSessionId returns a boolean if a field has been set.

func (*OAuth2ConsentRequest) HasOidcContext ¶

func (o *OAuth2ConsentRequest) HasOidcContext() bool

HasOidcContext returns a boolean if a field has been set.

func (*OAuth2ConsentRequest) HasRequestUrl ¶

func (o *OAuth2ConsentRequest) HasRequestUrl() bool

HasRequestUrl returns a boolean if a field has been set.

func (*OAuth2ConsentRequest) HasRequestedAccessTokenAudience ¶

func (o *OAuth2ConsentRequest) HasRequestedAccessTokenAudience() bool

HasRequestedAccessTokenAudience returns a boolean if a field has been set.

func (*OAuth2ConsentRequest) HasRequestedScope ¶

func (o *OAuth2ConsentRequest) HasRequestedScope() bool

HasRequestedScope returns a boolean if a field has been set.

func (*OAuth2ConsentRequest) HasSkip ¶

func (o *OAuth2ConsentRequest) HasSkip() bool

HasSkip returns a boolean if a field has been set.

func (*OAuth2ConsentRequest) HasSubject ¶

func (o *OAuth2ConsentRequest) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (OAuth2ConsentRequest) MarshalJSON ¶

func (o OAuth2ConsentRequest) MarshalJSON() ([]byte, error)

func (*OAuth2ConsentRequest) SetAcr ¶

func (o *OAuth2ConsentRequest) SetAcr(v string)

SetAcr gets a reference to the given string and assigns it to the Acr field.

func (*OAuth2ConsentRequest) SetAmr ¶

func (o *OAuth2ConsentRequest) SetAmr(v []string)

SetAmr gets a reference to the given []string and assigns it to the Amr field.

func (*OAuth2ConsentRequest) SetChallenge ¶

func (o *OAuth2ConsentRequest) SetChallenge(v string)

SetChallenge sets field value

func (*OAuth2ConsentRequest) SetClient ¶

func (o *OAuth2ConsentRequest) SetClient(v OAuth2Client)

SetClient gets a reference to the given OAuth2Client and assigns it to the Client field.

func (*OAuth2ConsentRequest) SetContext ¶

func (o *OAuth2ConsentRequest) SetContext(v map[string]interface{})

SetContext gets a reference to the given map[string]interface{} and assigns it to the Context field.

func (*OAuth2ConsentRequest) SetLoginChallenge ¶

func (o *OAuth2ConsentRequest) SetLoginChallenge(v string)

SetLoginChallenge gets a reference to the given string and assigns it to the LoginChallenge field.

func (*OAuth2ConsentRequest) SetLoginSessionId ¶

func (o *OAuth2ConsentRequest) SetLoginSessionId(v string)

SetLoginSessionId gets a reference to the given string and assigns it to the LoginSessionId field.

func (*OAuth2ConsentRequest) SetOidcContext ¶

SetOidcContext gets a reference to the given OAuth2ConsentRequestOpenIDConnectContext and assigns it to the OidcContext field.

func (*OAuth2ConsentRequest) SetRequestUrl ¶

func (o *OAuth2ConsentRequest) SetRequestUrl(v string)

SetRequestUrl gets a reference to the given string and assigns it to the RequestUrl field.

func (*OAuth2ConsentRequest) SetRequestedAccessTokenAudience ¶

func (o *OAuth2ConsentRequest) SetRequestedAccessTokenAudience(v []string)

SetRequestedAccessTokenAudience gets a reference to the given []string and assigns it to the RequestedAccessTokenAudience field.

func (*OAuth2ConsentRequest) SetRequestedScope ¶

func (o *OAuth2ConsentRequest) SetRequestedScope(v []string)

SetRequestedScope gets a reference to the given []string and assigns it to the RequestedScope field.

func (*OAuth2ConsentRequest) SetSkip ¶

func (o *OAuth2ConsentRequest) SetSkip(v bool)

SetSkip gets a reference to the given bool and assigns it to the Skip field.

func (*OAuth2ConsentRequest) SetSubject ¶

func (o *OAuth2ConsentRequest) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (OAuth2ConsentRequest) ToMap ¶

func (o OAuth2ConsentRequest) ToMap() (map[string]interface{}, error)

func (*OAuth2ConsentRequest) UnmarshalJSON ¶

func (o *OAuth2ConsentRequest) UnmarshalJSON(bytes []byte) (err error)

type OAuth2ConsentRequestOpenIDConnectContext ¶

type OAuth2ConsentRequestOpenIDConnectContext struct {
	// ACRValues is the Authentication AuthorizationContext Class Reference requested in the OAuth 2.0 Authorization request. It is a parameter defined by OpenID Connect and expresses which level of authentication (e.g. 2FA) is required.  OpenID Connect defines it as follows: > Requested Authentication AuthorizationContext Class Reference values. Space-separated string that specifies the acr values that the Authorization Server is being requested to use for processing this Authentication Request, with the values appearing in order of preference. The Authentication AuthorizationContext Class satisfied by the authentication performed is returned as the acr Claim Value, as specified in Section 2. The acr Claim is requested as a Voluntary Claim by this parameter.
	AcrValues []string `json:"acr_values,omitempty"`
	// Display is a string value that specifies how the Authorization Server displays the authentication and consent user interface pages to the End-User. The defined values are: page: The Authorization Server SHOULD display the authentication and consent UI consistent with a full User Agent page view. If the display parameter is not specified, this is the default display mode. popup: The Authorization Server SHOULD display the authentication and consent UI consistent with a popup User Agent window. The popup User Agent window should be of an appropriate size for a login-focused dialog and should not obscure the entire window that it is popping up over. touch: The Authorization Server SHOULD display the authentication and consent UI consistent with a device that leverages a touch interface. wap: The Authorization Server SHOULD display the authentication and consent UI consistent with a \"feature phone\" type display.  The Authorization Server MAY also attempt to detect the capabilities of the User Agent and present an appropriate display.
	Display *string `json:"display,omitempty"`
	// IDTokenHintClaims are the claims of the ID Token previously issued by the Authorization Server being passed as a hint about the End-User's current or past authenticated session with the Client.
	IdTokenHintClaims map[string]interface{} `json:"id_token_hint_claims,omitempty"`
	// LoginHint hints about the login identifier the End-User might use to log in (if necessary). This hint can be used by an RP if it first asks the End-User for their e-mail address (or other identifier) and then wants to pass that value as a hint to the discovered authorization service. This value MAY also be a phone number in the format specified for the phone_number Claim. The use of this parameter is optional.
	LoginHint *string `json:"login_hint,omitempty"`
	// UILocales is the End-User'id preferred languages and scripts for the user interface, represented as a space-separated list of BCP47 [RFC5646] language tag values, ordered by preference. For instance, the value \"fr-CA fr en\" represents a preference for French as spoken in Canada, then French (without a region designation), followed by English (without a region designation). An error SHOULD NOT result if some or all of the requested locales are not supported by the OpenID Provider.
	UiLocales            []string `json:"ui_locales,omitempty"`
	AdditionalProperties map[string]interface{}
}

OAuth2ConsentRequestOpenIDConnectContext struct for OAuth2ConsentRequestOpenIDConnectContext

func NewOAuth2ConsentRequestOpenIDConnectContext ¶

func NewOAuth2ConsentRequestOpenIDConnectContext() *OAuth2ConsentRequestOpenIDConnectContext

NewOAuth2ConsentRequestOpenIDConnectContext instantiates a new OAuth2ConsentRequestOpenIDConnectContext 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 NewOAuth2ConsentRequestOpenIDConnectContextWithDefaults ¶

func NewOAuth2ConsentRequestOpenIDConnectContextWithDefaults() *OAuth2ConsentRequestOpenIDConnectContext

NewOAuth2ConsentRequestOpenIDConnectContextWithDefaults instantiates a new OAuth2ConsentRequestOpenIDConnectContext 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 (*OAuth2ConsentRequestOpenIDConnectContext) GetAcrValues ¶

GetAcrValues returns the AcrValues field value if set, zero value otherwise.

func (*OAuth2ConsentRequestOpenIDConnectContext) GetAcrValuesOk ¶

func (o *OAuth2ConsentRequestOpenIDConnectContext) GetAcrValuesOk() ([]string, bool)

GetAcrValuesOk returns a tuple with the AcrValues field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequestOpenIDConnectContext) GetDisplay ¶

GetDisplay returns the Display field value if set, zero value otherwise.

func (*OAuth2ConsentRequestOpenIDConnectContext) GetDisplayOk ¶

GetDisplayOk returns a tuple with the Display field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequestOpenIDConnectContext) GetIdTokenHintClaims ¶

func (o *OAuth2ConsentRequestOpenIDConnectContext) GetIdTokenHintClaims() map[string]interface{}

GetIdTokenHintClaims returns the IdTokenHintClaims field value if set, zero value otherwise.

func (*OAuth2ConsentRequestOpenIDConnectContext) GetIdTokenHintClaimsOk ¶

func (o *OAuth2ConsentRequestOpenIDConnectContext) GetIdTokenHintClaimsOk() (map[string]interface{}, bool)

GetIdTokenHintClaimsOk returns a tuple with the IdTokenHintClaims field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequestOpenIDConnectContext) GetLoginHint ¶

GetLoginHint returns the LoginHint field value if set, zero value otherwise.

func (*OAuth2ConsentRequestOpenIDConnectContext) GetLoginHintOk ¶

func (o *OAuth2ConsentRequestOpenIDConnectContext) GetLoginHintOk() (*string, bool)

GetLoginHintOk returns a tuple with the LoginHint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequestOpenIDConnectContext) GetUiLocales ¶

GetUiLocales returns the UiLocales field value if set, zero value otherwise.

func (*OAuth2ConsentRequestOpenIDConnectContext) GetUiLocalesOk ¶

func (o *OAuth2ConsentRequestOpenIDConnectContext) GetUiLocalesOk() ([]string, bool)

GetUiLocalesOk returns a tuple with the UiLocales field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentRequestOpenIDConnectContext) HasAcrValues ¶

HasAcrValues returns a boolean if a field has been set.

func (*OAuth2ConsentRequestOpenIDConnectContext) HasDisplay ¶

HasDisplay returns a boolean if a field has been set.

func (*OAuth2ConsentRequestOpenIDConnectContext) HasIdTokenHintClaims ¶

func (o *OAuth2ConsentRequestOpenIDConnectContext) HasIdTokenHintClaims() bool

HasIdTokenHintClaims returns a boolean if a field has been set.

func (*OAuth2ConsentRequestOpenIDConnectContext) HasLoginHint ¶

HasLoginHint returns a boolean if a field has been set.

func (*OAuth2ConsentRequestOpenIDConnectContext) HasUiLocales ¶

HasUiLocales returns a boolean if a field has been set.

func (OAuth2ConsentRequestOpenIDConnectContext) MarshalJSON ¶

func (*OAuth2ConsentRequestOpenIDConnectContext) SetAcrValues ¶

func (o *OAuth2ConsentRequestOpenIDConnectContext) SetAcrValues(v []string)

SetAcrValues gets a reference to the given []string and assigns it to the AcrValues field.

func (*OAuth2ConsentRequestOpenIDConnectContext) SetDisplay ¶

SetDisplay gets a reference to the given string and assigns it to the Display field.

func (*OAuth2ConsentRequestOpenIDConnectContext) SetIdTokenHintClaims ¶

func (o *OAuth2ConsentRequestOpenIDConnectContext) SetIdTokenHintClaims(v map[string]interface{})

SetIdTokenHintClaims gets a reference to the given map[string]interface{} and assigns it to the IdTokenHintClaims field.

func (*OAuth2ConsentRequestOpenIDConnectContext) SetLoginHint ¶

SetLoginHint gets a reference to the given string and assigns it to the LoginHint field.

func (*OAuth2ConsentRequestOpenIDConnectContext) SetUiLocales ¶

func (o *OAuth2ConsentRequestOpenIDConnectContext) SetUiLocales(v []string)

SetUiLocales gets a reference to the given []string and assigns it to the UiLocales field.

func (OAuth2ConsentRequestOpenIDConnectContext) ToMap ¶

func (o OAuth2ConsentRequestOpenIDConnectContext) ToMap() (map[string]interface{}, error)

func (*OAuth2ConsentRequestOpenIDConnectContext) UnmarshalJSON ¶

func (o *OAuth2ConsentRequestOpenIDConnectContext) UnmarshalJSON(bytes []byte) (err error)

type OAuth2ConsentSession ¶

type OAuth2ConsentSession struct {
	ConsentRequest           *OAuth2ConsentRequest          `json:"consent_request,omitempty"`
	ExpiresAt                *OAuth2ConsentSessionExpiresAt `json:"expires_at,omitempty"`
	GrantAccessTokenAudience []string                       `json:"grant_access_token_audience,omitempty"`
	GrantScope               []string                       `json:"grant_scope,omitempty"`
	HandledAt                *time.Time                     `json:"handled_at,omitempty"`
	// Remember Consent  Remember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same client asks the same user for the same, or a subset of, scope.
	Remember *bool `json:"remember,omitempty"`
	// Remember Consent For  RememberFor sets how long the consent authorization should be remembered for in seconds. If set to `0`, the authorization will be remembered indefinitely.
	RememberFor          *int64                             `json:"remember_for,omitempty"`
	Session              *AcceptOAuth2ConsentRequestSession `json:"session,omitempty"`
	AdditionalProperties map[string]interface{}
}

OAuth2ConsentSession A completed OAuth 2.0 Consent Session.

func NewOAuth2ConsentSession ¶

func NewOAuth2ConsentSession() *OAuth2ConsentSession

NewOAuth2ConsentSession instantiates a new OAuth2ConsentSession 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 NewOAuth2ConsentSessionWithDefaults ¶

func NewOAuth2ConsentSessionWithDefaults() *OAuth2ConsentSession

NewOAuth2ConsentSessionWithDefaults instantiates a new OAuth2ConsentSession 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 (*OAuth2ConsentSession) GetConsentRequest ¶

func (o *OAuth2ConsentSession) GetConsentRequest() OAuth2ConsentRequest

GetConsentRequest returns the ConsentRequest field value if set, zero value otherwise.

func (*OAuth2ConsentSession) GetConsentRequestOk ¶

func (o *OAuth2ConsentSession) GetConsentRequestOk() (*OAuth2ConsentRequest, bool)

GetConsentRequestOk returns a tuple with the ConsentRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentSession) GetExpiresAt ¶

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*OAuth2ConsentSession) GetExpiresAtOk ¶

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentSession) GetGrantAccessTokenAudience ¶

func (o *OAuth2ConsentSession) GetGrantAccessTokenAudience() []string

GetGrantAccessTokenAudience returns the GrantAccessTokenAudience field value if set, zero value otherwise.

func (*OAuth2ConsentSession) GetGrantAccessTokenAudienceOk ¶

func (o *OAuth2ConsentSession) GetGrantAccessTokenAudienceOk() ([]string, bool)

GetGrantAccessTokenAudienceOk returns a tuple with the GrantAccessTokenAudience field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentSession) GetGrantScope ¶

func (o *OAuth2ConsentSession) GetGrantScope() []string

GetGrantScope returns the GrantScope field value if set, zero value otherwise.

func (*OAuth2ConsentSession) GetGrantScopeOk ¶

func (o *OAuth2ConsentSession) GetGrantScopeOk() ([]string, bool)

GetGrantScopeOk returns a tuple with the GrantScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentSession) GetHandledAt ¶

func (o *OAuth2ConsentSession) GetHandledAt() time.Time

GetHandledAt returns the HandledAt field value if set, zero value otherwise.

func (*OAuth2ConsentSession) GetHandledAtOk ¶

func (o *OAuth2ConsentSession) GetHandledAtOk() (*time.Time, bool)

GetHandledAtOk returns a tuple with the HandledAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentSession) GetRemember ¶

func (o *OAuth2ConsentSession) GetRemember() bool

GetRemember returns the Remember field value if set, zero value otherwise.

func (*OAuth2ConsentSession) GetRememberFor ¶

func (o *OAuth2ConsentSession) GetRememberFor() int64

GetRememberFor returns the RememberFor field value if set, zero value otherwise.

func (*OAuth2ConsentSession) GetRememberForOk ¶

func (o *OAuth2ConsentSession) GetRememberForOk() (*int64, bool)

GetRememberForOk returns a tuple with the RememberFor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentSession) GetRememberOk ¶

func (o *OAuth2ConsentSession) GetRememberOk() (*bool, bool)

GetRememberOk returns a tuple with the Remember field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentSession) GetSession ¶

GetSession returns the Session field value if set, zero value otherwise.

func (*OAuth2ConsentSession) GetSessionOk ¶

GetSessionOk returns a tuple with the Session field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentSession) HasConsentRequest ¶

func (o *OAuth2ConsentSession) HasConsentRequest() bool

HasConsentRequest returns a boolean if a field has been set.

func (*OAuth2ConsentSession) HasExpiresAt ¶

func (o *OAuth2ConsentSession) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*OAuth2ConsentSession) HasGrantAccessTokenAudience ¶

func (o *OAuth2ConsentSession) HasGrantAccessTokenAudience() bool

HasGrantAccessTokenAudience returns a boolean if a field has been set.

func (*OAuth2ConsentSession) HasGrantScope ¶

func (o *OAuth2ConsentSession) HasGrantScope() bool

HasGrantScope returns a boolean if a field has been set.

func (*OAuth2ConsentSession) HasHandledAt ¶

func (o *OAuth2ConsentSession) HasHandledAt() bool

HasHandledAt returns a boolean if a field has been set.

func (*OAuth2ConsentSession) HasRemember ¶

func (o *OAuth2ConsentSession) HasRemember() bool

HasRemember returns a boolean if a field has been set.

func (*OAuth2ConsentSession) HasRememberFor ¶

func (o *OAuth2ConsentSession) HasRememberFor() bool

HasRememberFor returns a boolean if a field has been set.

func (*OAuth2ConsentSession) HasSession ¶

func (o *OAuth2ConsentSession) HasSession() bool

HasSession returns a boolean if a field has been set.

func (OAuth2ConsentSession) MarshalJSON ¶

func (o OAuth2ConsentSession) MarshalJSON() ([]byte, error)

func (*OAuth2ConsentSession) SetConsentRequest ¶

func (o *OAuth2ConsentSession) SetConsentRequest(v OAuth2ConsentRequest)

SetConsentRequest gets a reference to the given OAuth2ConsentRequest and assigns it to the ConsentRequest field.

func (*OAuth2ConsentSession) SetExpiresAt ¶

SetExpiresAt gets a reference to the given OAuth2ConsentSessionExpiresAt and assigns it to the ExpiresAt field.

func (*OAuth2ConsentSession) SetGrantAccessTokenAudience ¶

func (o *OAuth2ConsentSession) SetGrantAccessTokenAudience(v []string)

SetGrantAccessTokenAudience gets a reference to the given []string and assigns it to the GrantAccessTokenAudience field.

func (*OAuth2ConsentSession) SetGrantScope ¶

func (o *OAuth2ConsentSession) SetGrantScope(v []string)

SetGrantScope gets a reference to the given []string and assigns it to the GrantScope field.

func (*OAuth2ConsentSession) SetHandledAt ¶

func (o *OAuth2ConsentSession) SetHandledAt(v time.Time)

SetHandledAt gets a reference to the given time.Time and assigns it to the HandledAt field.

func (*OAuth2ConsentSession) SetRemember ¶

func (o *OAuth2ConsentSession) SetRemember(v bool)

SetRemember gets a reference to the given bool and assigns it to the Remember field.

func (*OAuth2ConsentSession) SetRememberFor ¶

func (o *OAuth2ConsentSession) SetRememberFor(v int64)

SetRememberFor gets a reference to the given int64 and assigns it to the RememberFor field.

func (*OAuth2ConsentSession) SetSession ¶

SetSession gets a reference to the given AcceptOAuth2ConsentRequestSession and assigns it to the Session field.

func (OAuth2ConsentSession) ToMap ¶

func (o OAuth2ConsentSession) ToMap() (map[string]interface{}, error)

func (*OAuth2ConsentSession) UnmarshalJSON ¶

func (o *OAuth2ConsentSession) UnmarshalJSON(bytes []byte) (err error)

type OAuth2ConsentSessionExpiresAt ¶

type OAuth2ConsentSessionExpiresAt struct {
	AccessToken          *time.Time `json:"access_token,omitempty"`
	AuthorizeCode        *time.Time `json:"authorize_code,omitempty"`
	IdToken              *time.Time `json:"id_token,omitempty"`
	ParContext           *time.Time `json:"par_context,omitempty"`
	RefreshToken         *time.Time `json:"refresh_token,omitempty"`
	AdditionalProperties map[string]interface{}
}

OAuth2ConsentSessionExpiresAt struct for OAuth2ConsentSessionExpiresAt

func NewOAuth2ConsentSessionExpiresAt ¶

func NewOAuth2ConsentSessionExpiresAt() *OAuth2ConsentSessionExpiresAt

NewOAuth2ConsentSessionExpiresAt instantiates a new OAuth2ConsentSessionExpiresAt 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 NewOAuth2ConsentSessionExpiresAtWithDefaults ¶

func NewOAuth2ConsentSessionExpiresAtWithDefaults() *OAuth2ConsentSessionExpiresAt

NewOAuth2ConsentSessionExpiresAtWithDefaults instantiates a new OAuth2ConsentSessionExpiresAt 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 (*OAuth2ConsentSessionExpiresAt) GetAccessToken ¶

func (o *OAuth2ConsentSessionExpiresAt) GetAccessToken() time.Time

GetAccessToken returns the AccessToken field value if set, zero value otherwise.

func (*OAuth2ConsentSessionExpiresAt) GetAccessTokenOk ¶

func (o *OAuth2ConsentSessionExpiresAt) GetAccessTokenOk() (*time.Time, bool)

GetAccessTokenOk returns a tuple with the AccessToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentSessionExpiresAt) GetAuthorizeCode ¶

func (o *OAuth2ConsentSessionExpiresAt) GetAuthorizeCode() time.Time

GetAuthorizeCode returns the AuthorizeCode field value if set, zero value otherwise.

func (*OAuth2ConsentSessionExpiresAt) GetAuthorizeCodeOk ¶

func (o *OAuth2ConsentSessionExpiresAt) GetAuthorizeCodeOk() (*time.Time, bool)

GetAuthorizeCodeOk returns a tuple with the AuthorizeCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentSessionExpiresAt) GetIdToken ¶

func (o *OAuth2ConsentSessionExpiresAt) GetIdToken() time.Time

GetIdToken returns the IdToken field value if set, zero value otherwise.

func (*OAuth2ConsentSessionExpiresAt) GetIdTokenOk ¶

func (o *OAuth2ConsentSessionExpiresAt) GetIdTokenOk() (*time.Time, bool)

GetIdTokenOk returns a tuple with the IdToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentSessionExpiresAt) GetParContext ¶

func (o *OAuth2ConsentSessionExpiresAt) GetParContext() time.Time

GetParContext returns the ParContext field value if set, zero value otherwise.

func (*OAuth2ConsentSessionExpiresAt) GetParContextOk ¶

func (o *OAuth2ConsentSessionExpiresAt) GetParContextOk() (*time.Time, bool)

GetParContextOk returns a tuple with the ParContext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentSessionExpiresAt) GetRefreshToken ¶

func (o *OAuth2ConsentSessionExpiresAt) GetRefreshToken() time.Time

GetRefreshToken returns the RefreshToken field value if set, zero value otherwise.

func (*OAuth2ConsentSessionExpiresAt) GetRefreshTokenOk ¶

func (o *OAuth2ConsentSessionExpiresAt) GetRefreshTokenOk() (*time.Time, bool)

GetRefreshTokenOk returns a tuple with the RefreshToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2ConsentSessionExpiresAt) HasAccessToken ¶

func (o *OAuth2ConsentSessionExpiresAt) HasAccessToken() bool

HasAccessToken returns a boolean if a field has been set.

func (*OAuth2ConsentSessionExpiresAt) HasAuthorizeCode ¶

func (o *OAuth2ConsentSessionExpiresAt) HasAuthorizeCode() bool

HasAuthorizeCode returns a boolean if a field has been set.

func (*OAuth2ConsentSessionExpiresAt) HasIdToken ¶

func (o *OAuth2ConsentSessionExpiresAt) HasIdToken() bool

HasIdToken returns a boolean if a field has been set.

func (*OAuth2ConsentSessionExpiresAt) HasParContext ¶

func (o *OAuth2ConsentSessionExpiresAt) HasParContext() bool

HasParContext returns a boolean if a field has been set.

func (*OAuth2ConsentSessionExpiresAt) HasRefreshToken ¶

func (o *OAuth2ConsentSessionExpiresAt) HasRefreshToken() bool

HasRefreshToken returns a boolean if a field has been set.

func (OAuth2ConsentSessionExpiresAt) MarshalJSON ¶

func (o OAuth2ConsentSessionExpiresAt) MarshalJSON() ([]byte, error)

func (*OAuth2ConsentSessionExpiresAt) SetAccessToken ¶

func (o *OAuth2ConsentSessionExpiresAt) SetAccessToken(v time.Time)

SetAccessToken gets a reference to the given time.Time and assigns it to the AccessToken field.

func (*OAuth2ConsentSessionExpiresAt) SetAuthorizeCode ¶

func (o *OAuth2ConsentSessionExpiresAt) SetAuthorizeCode(v time.Time)

SetAuthorizeCode gets a reference to the given time.Time and assigns it to the AuthorizeCode field.

func (*OAuth2ConsentSessionExpiresAt) SetIdToken ¶

func (o *OAuth2ConsentSessionExpiresAt) SetIdToken(v time.Time)

SetIdToken gets a reference to the given time.Time and assigns it to the IdToken field.

func (*OAuth2ConsentSessionExpiresAt) SetParContext ¶

func (o *OAuth2ConsentSessionExpiresAt) SetParContext(v time.Time)

SetParContext gets a reference to the given time.Time and assigns it to the ParContext field.

func (*OAuth2ConsentSessionExpiresAt) SetRefreshToken ¶

func (o *OAuth2ConsentSessionExpiresAt) SetRefreshToken(v time.Time)

SetRefreshToken gets a reference to the given time.Time and assigns it to the RefreshToken field.

func (OAuth2ConsentSessionExpiresAt) ToMap ¶

func (o OAuth2ConsentSessionExpiresAt) ToMap() (map[string]interface{}, error)

func (*OAuth2ConsentSessionExpiresAt) UnmarshalJSON ¶

func (o *OAuth2ConsentSessionExpiresAt) UnmarshalJSON(bytes []byte) (err error)

type OAuth2LoginRequest ¶

type OAuth2LoginRequest struct {
	// ID is the identifier (\"login challenge\") of the login request. It is used to identify the session.
	Challenge   string                                    `json:"challenge"`
	Client      OAuth2Client                              `json:"client"`
	OidcContext *OAuth2ConsentRequestOpenIDConnectContext `json:"oidc_context,omitempty"`
	// RequestURL is the original OAuth 2.0 Authorization URL requested by the OAuth 2.0 client. It is the URL which initiates the OAuth 2.0 Authorization Code or OAuth 2.0 Implicit flow. This URL is typically not needed, but might come in handy if you want to deal with additional request parameters.
	RequestUrl                   string   `json:"request_url"`
	RequestedAccessTokenAudience []string `json:"requested_access_token_audience,omitempty"`
	RequestedScope               []string `json:"requested_scope,omitempty"`
	// SessionID is the login session ID. If the user-agent reuses a login session (via cookie / remember flag) this ID will remain the same. If the user-agent did not have an existing authentication session (e.g. remember is false) this will be a new random value. This value is used as the \"sid\" parameter in the ID Token and in OIDC Front-/Back- channel logout. It's value can generally be used to associate consecutive login requests by a certain user.
	SessionId *string `json:"session_id,omitempty"`
	// Skip, if true, implies that the client has requested the same scopes from the same user previously. If true, you can skip asking the user to grant the requested scopes, and simply forward the user to the redirect URL.  This feature allows you to update / set session information.
	Skip bool `json:"skip"`
	// Subject is the user ID of the end-user that authenticated. Now, that end user needs to grant or deny the scope requested by the OAuth 2.0 client. If this value is set and `skip` is true, you MUST include this subject type when accepting the login request, or the request will fail.
	Subject              string `json:"subject"`
	AdditionalProperties map[string]interface{}
}

OAuth2LoginRequest struct for OAuth2LoginRequest

func NewOAuth2LoginRequest ¶

func NewOAuth2LoginRequest(challenge string, client OAuth2Client, requestUrl string, skip bool, subject string) *OAuth2LoginRequest

NewOAuth2LoginRequest instantiates a new OAuth2LoginRequest 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 NewOAuth2LoginRequestWithDefaults ¶

func NewOAuth2LoginRequestWithDefaults() *OAuth2LoginRequest

NewOAuth2LoginRequestWithDefaults instantiates a new OAuth2LoginRequest 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 (*OAuth2LoginRequest) GetChallenge ¶

func (o *OAuth2LoginRequest) GetChallenge() string

GetChallenge returns the Challenge field value

func (*OAuth2LoginRequest) GetChallengeOk ¶

func (o *OAuth2LoginRequest) GetChallengeOk() (*string, bool)

GetChallengeOk returns a tuple with the Challenge field value and a boolean to check if the value has been set.

func (*OAuth2LoginRequest) GetClient ¶

func (o *OAuth2LoginRequest) GetClient() OAuth2Client

GetClient returns the Client field value

func (*OAuth2LoginRequest) GetClientOk ¶

func (o *OAuth2LoginRequest) GetClientOk() (*OAuth2Client, bool)

GetClientOk returns a tuple with the Client field value and a boolean to check if the value has been set.

func (*OAuth2LoginRequest) GetOidcContext ¶

GetOidcContext returns the OidcContext field value if set, zero value otherwise.

func (*OAuth2LoginRequest) GetOidcContextOk ¶

GetOidcContextOk returns a tuple with the OidcContext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2LoginRequest) GetRequestUrl ¶

func (o *OAuth2LoginRequest) GetRequestUrl() string

GetRequestUrl returns the RequestUrl field value

func (*OAuth2LoginRequest) GetRequestUrlOk ¶

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

GetRequestUrlOk returns a tuple with the RequestUrl field value and a boolean to check if the value has been set.

func (*OAuth2LoginRequest) GetRequestedAccessTokenAudience ¶

func (o *OAuth2LoginRequest) GetRequestedAccessTokenAudience() []string

GetRequestedAccessTokenAudience returns the RequestedAccessTokenAudience field value if set, zero value otherwise.

func (*OAuth2LoginRequest) GetRequestedAccessTokenAudienceOk ¶

func (o *OAuth2LoginRequest) GetRequestedAccessTokenAudienceOk() ([]string, bool)

GetRequestedAccessTokenAudienceOk returns a tuple with the RequestedAccessTokenAudience field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2LoginRequest) GetRequestedScope ¶

func (o *OAuth2LoginRequest) GetRequestedScope() []string

GetRequestedScope returns the RequestedScope field value if set, zero value otherwise.

func (*OAuth2LoginRequest) GetRequestedScopeOk ¶

func (o *OAuth2LoginRequest) GetRequestedScopeOk() ([]string, bool)

GetRequestedScopeOk returns a tuple with the RequestedScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2LoginRequest) GetSessionId ¶

func (o *OAuth2LoginRequest) GetSessionId() string

GetSessionId returns the SessionId field value if set, zero value otherwise.

func (*OAuth2LoginRequest) GetSessionIdOk ¶

func (o *OAuth2LoginRequest) GetSessionIdOk() (*string, bool)

GetSessionIdOk returns a tuple with the SessionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2LoginRequest) GetSkip ¶

func (o *OAuth2LoginRequest) GetSkip() bool

GetSkip returns the Skip field value

func (*OAuth2LoginRequest) GetSkipOk ¶

func (o *OAuth2LoginRequest) GetSkipOk() (*bool, bool)

GetSkipOk returns a tuple with the Skip field value and a boolean to check if the value has been set.

func (*OAuth2LoginRequest) GetSubject ¶

func (o *OAuth2LoginRequest) GetSubject() string

GetSubject returns the Subject field value

func (*OAuth2LoginRequest) GetSubjectOk ¶

func (o *OAuth2LoginRequest) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*OAuth2LoginRequest) HasOidcContext ¶

func (o *OAuth2LoginRequest) HasOidcContext() bool

HasOidcContext returns a boolean if a field has been set.

func (*OAuth2LoginRequest) HasRequestedAccessTokenAudience ¶

func (o *OAuth2LoginRequest) HasRequestedAccessTokenAudience() bool

HasRequestedAccessTokenAudience returns a boolean if a field has been set.

func (*OAuth2LoginRequest) HasRequestedScope ¶

func (o *OAuth2LoginRequest) HasRequestedScope() bool

HasRequestedScope returns a boolean if a field has been set.

func (*OAuth2LoginRequest) HasSessionId ¶

func (o *OAuth2LoginRequest) HasSessionId() bool

HasSessionId returns a boolean if a field has been set.

func (OAuth2LoginRequest) MarshalJSON ¶

func (o OAuth2LoginRequest) MarshalJSON() ([]byte, error)

func (*OAuth2LoginRequest) SetChallenge ¶

func (o *OAuth2LoginRequest) SetChallenge(v string)

SetChallenge sets field value

func (*OAuth2LoginRequest) SetClient ¶

func (o *OAuth2LoginRequest) SetClient(v OAuth2Client)

SetClient sets field value

func (*OAuth2LoginRequest) SetOidcContext ¶

SetOidcContext gets a reference to the given OAuth2ConsentRequestOpenIDConnectContext and assigns it to the OidcContext field.

func (*OAuth2LoginRequest) SetRequestUrl ¶

func (o *OAuth2LoginRequest) SetRequestUrl(v string)

SetRequestUrl sets field value

func (*OAuth2LoginRequest) SetRequestedAccessTokenAudience ¶

func (o *OAuth2LoginRequest) SetRequestedAccessTokenAudience(v []string)

SetRequestedAccessTokenAudience gets a reference to the given []string and assigns it to the RequestedAccessTokenAudience field.

func (*OAuth2LoginRequest) SetRequestedScope ¶

func (o *OAuth2LoginRequest) SetRequestedScope(v []string)

SetRequestedScope gets a reference to the given []string and assigns it to the RequestedScope field.

func (*OAuth2LoginRequest) SetSessionId ¶

func (o *OAuth2LoginRequest) SetSessionId(v string)

SetSessionId gets a reference to the given string and assigns it to the SessionId field.

func (*OAuth2LoginRequest) SetSkip ¶

func (o *OAuth2LoginRequest) SetSkip(v bool)

SetSkip sets field value

func (*OAuth2LoginRequest) SetSubject ¶

func (o *OAuth2LoginRequest) SetSubject(v string)

SetSubject sets field value

func (OAuth2LoginRequest) ToMap ¶

func (o OAuth2LoginRequest) ToMap() (map[string]interface{}, error)

func (*OAuth2LoginRequest) UnmarshalJSON ¶

func (o *OAuth2LoginRequest) UnmarshalJSON(bytes []byte) (err error)

type OAuth2LogoutRequest ¶

type OAuth2LogoutRequest struct {
	// Challenge is the identifier (\"logout challenge\") of the logout authentication request. It is used to identify the session.
	Challenge *string       `json:"challenge,omitempty"`
	Client    *OAuth2Client `json:"client,omitempty"`
	// RequestURL is the original Logout URL requested.
	RequestUrl *string `json:"request_url,omitempty"`
	// RPInitiated is set to true if the request was initiated by a Relying Party (RP), also known as an OAuth 2.0 Client.
	RpInitiated *bool `json:"rp_initiated,omitempty"`
	// SessionID is the login session ID that was requested to log out.
	Sid *string `json:"sid,omitempty"`
	// Subject is the user for whom the logout was request.
	Subject              *string `json:"subject,omitempty"`
	AdditionalProperties map[string]interface{}
}

OAuth2LogoutRequest struct for OAuth2LogoutRequest

func NewOAuth2LogoutRequest ¶

func NewOAuth2LogoutRequest() *OAuth2LogoutRequest

NewOAuth2LogoutRequest instantiates a new OAuth2LogoutRequest 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 NewOAuth2LogoutRequestWithDefaults ¶

func NewOAuth2LogoutRequestWithDefaults() *OAuth2LogoutRequest

NewOAuth2LogoutRequestWithDefaults instantiates a new OAuth2LogoutRequest 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 (*OAuth2LogoutRequest) GetChallenge ¶

func (o *OAuth2LogoutRequest) GetChallenge() string

GetChallenge returns the Challenge field value if set, zero value otherwise.

func (*OAuth2LogoutRequest) GetChallengeOk ¶

func (o *OAuth2LogoutRequest) GetChallengeOk() (*string, bool)

GetChallengeOk returns a tuple with the Challenge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2LogoutRequest) GetClient ¶

func (o *OAuth2LogoutRequest) GetClient() OAuth2Client

GetClient returns the Client field value if set, zero value otherwise.

func (*OAuth2LogoutRequest) GetClientOk ¶

func (o *OAuth2LogoutRequest) GetClientOk() (*OAuth2Client, bool)

GetClientOk returns a tuple with the Client field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2LogoutRequest) GetRequestUrl ¶

func (o *OAuth2LogoutRequest) GetRequestUrl() string

GetRequestUrl returns the RequestUrl field value if set, zero value otherwise.

func (*OAuth2LogoutRequest) GetRequestUrlOk ¶

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

GetRequestUrlOk returns a tuple with the RequestUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2LogoutRequest) GetRpInitiated ¶

func (o *OAuth2LogoutRequest) GetRpInitiated() bool

GetRpInitiated returns the RpInitiated field value if set, zero value otherwise.

func (*OAuth2LogoutRequest) GetRpInitiatedOk ¶

func (o *OAuth2LogoutRequest) GetRpInitiatedOk() (*bool, bool)

GetRpInitiatedOk returns a tuple with the RpInitiated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2LogoutRequest) GetSid ¶

func (o *OAuth2LogoutRequest) GetSid() string

GetSid returns the Sid field value if set, zero value otherwise.

func (*OAuth2LogoutRequest) GetSidOk ¶

func (o *OAuth2LogoutRequest) GetSidOk() (*string, bool)

GetSidOk returns a tuple with the Sid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2LogoutRequest) GetSubject ¶

func (o *OAuth2LogoutRequest) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*OAuth2LogoutRequest) GetSubjectOk ¶

func (o *OAuth2LogoutRequest) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2LogoutRequest) HasChallenge ¶

func (o *OAuth2LogoutRequest) HasChallenge() bool

HasChallenge returns a boolean if a field has been set.

func (*OAuth2LogoutRequest) HasClient ¶

func (o *OAuth2LogoutRequest) HasClient() bool

HasClient returns a boolean if a field has been set.

func (*OAuth2LogoutRequest) HasRequestUrl ¶

func (o *OAuth2LogoutRequest) HasRequestUrl() bool

HasRequestUrl returns a boolean if a field has been set.

func (*OAuth2LogoutRequest) HasRpInitiated ¶

func (o *OAuth2LogoutRequest) HasRpInitiated() bool

HasRpInitiated returns a boolean if a field has been set.

func (*OAuth2LogoutRequest) HasSid ¶

func (o *OAuth2LogoutRequest) HasSid() bool

HasSid returns a boolean if a field has been set.

func (*OAuth2LogoutRequest) HasSubject ¶

func (o *OAuth2LogoutRequest) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (OAuth2LogoutRequest) MarshalJSON ¶

func (o OAuth2LogoutRequest) MarshalJSON() ([]byte, error)

func (*OAuth2LogoutRequest) SetChallenge ¶

func (o *OAuth2LogoutRequest) SetChallenge(v string)

SetChallenge gets a reference to the given string and assigns it to the Challenge field.

func (*OAuth2LogoutRequest) SetClient ¶

func (o *OAuth2LogoutRequest) SetClient(v OAuth2Client)

SetClient gets a reference to the given OAuth2Client and assigns it to the Client field.

func (*OAuth2LogoutRequest) SetRequestUrl ¶

func (o *OAuth2LogoutRequest) SetRequestUrl(v string)

SetRequestUrl gets a reference to the given string and assigns it to the RequestUrl field.

func (*OAuth2LogoutRequest) SetRpInitiated ¶

func (o *OAuth2LogoutRequest) SetRpInitiated(v bool)

SetRpInitiated gets a reference to the given bool and assigns it to the RpInitiated field.

func (*OAuth2LogoutRequest) SetSid ¶

func (o *OAuth2LogoutRequest) SetSid(v string)

SetSid gets a reference to the given string and assigns it to the Sid field.

func (*OAuth2LogoutRequest) SetSubject ¶

func (o *OAuth2LogoutRequest) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (OAuth2LogoutRequest) ToMap ¶

func (o OAuth2LogoutRequest) ToMap() (map[string]interface{}, error)

func (*OAuth2LogoutRequest) UnmarshalJSON ¶

func (o *OAuth2LogoutRequest) UnmarshalJSON(bytes []byte) (err error)

type OAuth2RedirectTo ¶

type OAuth2RedirectTo struct {
	// RedirectURL is the URL which you should redirect the user's browser to once the authentication process is completed.
	RedirectTo           string `json:"redirect_to"`
	AdditionalProperties map[string]interface{}
}

OAuth2RedirectTo Contains a redirect URL used to complete a login, consent, or logout request.

func NewOAuth2RedirectTo ¶

func NewOAuth2RedirectTo(redirectTo string) *OAuth2RedirectTo

NewOAuth2RedirectTo instantiates a new OAuth2RedirectTo 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 NewOAuth2RedirectToWithDefaults ¶

func NewOAuth2RedirectToWithDefaults() *OAuth2RedirectTo

NewOAuth2RedirectToWithDefaults instantiates a new OAuth2RedirectTo 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 (*OAuth2RedirectTo) GetRedirectTo ¶

func (o *OAuth2RedirectTo) GetRedirectTo() string

GetRedirectTo returns the RedirectTo field value

func (*OAuth2RedirectTo) GetRedirectToOk ¶

func (o *OAuth2RedirectTo) GetRedirectToOk() (*string, bool)

GetRedirectToOk returns a tuple with the RedirectTo field value and a boolean to check if the value has been set.

func (OAuth2RedirectTo) MarshalJSON ¶

func (o OAuth2RedirectTo) MarshalJSON() ([]byte, error)

func (*OAuth2RedirectTo) SetRedirectTo ¶

func (o *OAuth2RedirectTo) SetRedirectTo(v string)

SetRedirectTo sets field value

func (OAuth2RedirectTo) ToMap ¶

func (o OAuth2RedirectTo) ToMap() (map[string]interface{}, error)

func (*OAuth2RedirectTo) UnmarshalJSON ¶

func (o *OAuth2RedirectTo) UnmarshalJSON(bytes []byte) (err error)

type OAuth2TokenExchange ¶

type OAuth2TokenExchange struct {
	// The access token issued by the authorization server.
	AccessToken *string `json:"access_token,omitempty"`
	// The lifetime in seconds of the access token. For example, the value \"3600\" denotes that the access token will expire in one hour from the time the response was generated.
	ExpiresIn *int64 `json:"expires_in,omitempty"`
	// To retrieve a refresh token request the id_token scope.
	IdToken *string `json:"id_token,omitempty"`
	// The refresh token, which can be used to obtain new access tokens. To retrieve it add the scope \"offline\" to your access token request.
	RefreshToken *string `json:"refresh_token,omitempty"`
	// The scope of the access token
	Scope *string `json:"scope,omitempty"`
	// The type of the token issued
	TokenType            *string `json:"token_type,omitempty"`
	AdditionalProperties map[string]interface{}
}

OAuth2TokenExchange OAuth2 Token Exchange Result

func NewOAuth2TokenExchange ¶

func NewOAuth2TokenExchange() *OAuth2TokenExchange

NewOAuth2TokenExchange instantiates a new OAuth2TokenExchange 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 NewOAuth2TokenExchangeWithDefaults ¶

func NewOAuth2TokenExchangeWithDefaults() *OAuth2TokenExchange

NewOAuth2TokenExchangeWithDefaults instantiates a new OAuth2TokenExchange 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 (*OAuth2TokenExchange) GetAccessToken ¶

func (o *OAuth2TokenExchange) GetAccessToken() string

GetAccessToken returns the AccessToken field value if set, zero value otherwise.

func (*OAuth2TokenExchange) GetAccessTokenOk ¶

func (o *OAuth2TokenExchange) GetAccessTokenOk() (*string, bool)

GetAccessTokenOk returns a tuple with the AccessToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2TokenExchange) GetExpiresIn ¶

func (o *OAuth2TokenExchange) GetExpiresIn() int64

GetExpiresIn returns the ExpiresIn field value if set, zero value otherwise.

func (*OAuth2TokenExchange) GetExpiresInOk ¶

func (o *OAuth2TokenExchange) GetExpiresInOk() (*int64, bool)

GetExpiresInOk returns a tuple with the ExpiresIn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2TokenExchange) GetIdToken ¶

func (o *OAuth2TokenExchange) GetIdToken() string

GetIdToken returns the IdToken field value if set, zero value otherwise.

func (*OAuth2TokenExchange) GetIdTokenOk ¶

func (o *OAuth2TokenExchange) GetIdTokenOk() (*string, bool)

GetIdTokenOk returns a tuple with the IdToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2TokenExchange) GetRefreshToken ¶

func (o *OAuth2TokenExchange) GetRefreshToken() string

GetRefreshToken returns the RefreshToken field value if set, zero value otherwise.

func (*OAuth2TokenExchange) GetRefreshTokenOk ¶

func (o *OAuth2TokenExchange) GetRefreshTokenOk() (*string, bool)

GetRefreshTokenOk returns a tuple with the RefreshToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2TokenExchange) GetScope ¶

func (o *OAuth2TokenExchange) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*OAuth2TokenExchange) GetScopeOk ¶

func (o *OAuth2TokenExchange) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2TokenExchange) GetTokenType ¶

func (o *OAuth2TokenExchange) GetTokenType() string

GetTokenType returns the TokenType field value if set, zero value otherwise.

func (*OAuth2TokenExchange) GetTokenTypeOk ¶

func (o *OAuth2TokenExchange) GetTokenTypeOk() (*string, bool)

GetTokenTypeOk returns a tuple with the TokenType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuth2TokenExchange) HasAccessToken ¶

func (o *OAuth2TokenExchange) HasAccessToken() bool

HasAccessToken returns a boolean if a field has been set.

func (*OAuth2TokenExchange) HasExpiresIn ¶

func (o *OAuth2TokenExchange) HasExpiresIn() bool

HasExpiresIn returns a boolean if a field has been set.

func (*OAuth2TokenExchange) HasIdToken ¶

func (o *OAuth2TokenExchange) HasIdToken() bool

HasIdToken returns a boolean if a field has been set.

func (*OAuth2TokenExchange) HasRefreshToken ¶

func (o *OAuth2TokenExchange) HasRefreshToken() bool

HasRefreshToken returns a boolean if a field has been set.

func (*OAuth2TokenExchange) HasScope ¶

func (o *OAuth2TokenExchange) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*OAuth2TokenExchange) HasTokenType ¶

func (o *OAuth2TokenExchange) HasTokenType() bool

HasTokenType returns a boolean if a field has been set.

func (OAuth2TokenExchange) MarshalJSON ¶

func (o OAuth2TokenExchange) MarshalJSON() ([]byte, error)

func (*OAuth2TokenExchange) SetAccessToken ¶

func (o *OAuth2TokenExchange) SetAccessToken(v string)

SetAccessToken gets a reference to the given string and assigns it to the AccessToken field.

func (*OAuth2TokenExchange) SetExpiresIn ¶

func (o *OAuth2TokenExchange) SetExpiresIn(v int64)

SetExpiresIn gets a reference to the given int64 and assigns it to the ExpiresIn field.

func (*OAuth2TokenExchange) SetIdToken ¶

func (o *OAuth2TokenExchange) SetIdToken(v string)

SetIdToken gets a reference to the given string and assigns it to the IdToken field.

func (*OAuth2TokenExchange) SetRefreshToken ¶

func (o *OAuth2TokenExchange) SetRefreshToken(v string)

SetRefreshToken gets a reference to the given string and assigns it to the RefreshToken field.

func (*OAuth2TokenExchange) SetScope ¶

func (o *OAuth2TokenExchange) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*OAuth2TokenExchange) SetTokenType ¶

func (o *OAuth2TokenExchange) SetTokenType(v string)

SetTokenType gets a reference to the given string and assigns it to the TokenType field.

func (OAuth2TokenExchange) ToMap ¶

func (o OAuth2TokenExchange) ToMap() (map[string]interface{}, error)

func (*OAuth2TokenExchange) UnmarshalJSON ¶

func (o *OAuth2TokenExchange) UnmarshalJSON(bytes []byte) (err error)

type OidcAPI ¶

type OidcAPI interface {

	/*
		CreateOidcDynamicClient Register OAuth2 Client using OpenID Dynamic Client Registration

		This endpoint behaves like the administrative counterpart (`createOAuth2Client`) but is capable of facing the
	public internet directly and can be used in self-service. It implements the OpenID Connect
	Dynamic Client Registration Protocol. This feature needs to be enabled in the configuration. This endpoint
	is disabled by default. It can be enabled by an administrator.

	Please note that using this endpoint you are not able to choose the `client_secret` nor the `client_id` as those
	values will be server generated when specifying `token_endpoint_auth_method` as `client_secret_basic` or
	`client_secret_post`.

	The `client_secret` will be returned in the response and you will not be able to retrieve it later on.
	Write the secret down and keep it somewhere safe.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OidcAPICreateOidcDynamicClientRequest
	*/
	CreateOidcDynamicClient(ctx context.Context) OidcAPICreateOidcDynamicClientRequest

	// CreateOidcDynamicClientExecute executes the request
	//  @return OAuth2Client
	CreateOidcDynamicClientExecute(r OidcAPICreateOidcDynamicClientRequest) (*OAuth2Client, *http.Response, error)

	/*
		CreateVerifiableCredential Issues a Verifiable Credential

		This endpoint creates a verifiable credential that attests that the user
	authenticated with the provided access token owns a certain public/private key
	pair.

	More information can be found at
	https://openid.net/specs/openid-connect-userinfo-vc-1_0.html.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OidcAPICreateVerifiableCredentialRequest
	*/
	CreateVerifiableCredential(ctx context.Context) OidcAPICreateVerifiableCredentialRequest

	// CreateVerifiableCredentialExecute executes the request
	//  @return VerifiableCredentialResponse
	CreateVerifiableCredentialExecute(r OidcAPICreateVerifiableCredentialRequest) (*VerifiableCredentialResponse, *http.Response, error)

	/*
		DeleteOidcDynamicClient Delete OAuth 2.0 Client using the OpenID Dynamic Client Registration Management Protocol

		This endpoint behaves like the administrative counterpart (`deleteOAuth2Client`) but is capable of facing the
	public internet directly and can be used in self-service. It implements the OpenID Connect
	Dynamic Client Registration Protocol. This feature needs to be enabled in the configuration. This endpoint
	is disabled by default. It can be enabled by an administrator.

	To use this endpoint, you will need to present the client's authentication credentials. If the OAuth2 Client
	uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query.
	If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header.

	OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are
	generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the OAuth 2.0 Client.
		@return OidcAPIDeleteOidcDynamicClientRequest
	*/
	DeleteOidcDynamicClient(ctx context.Context, id string) OidcAPIDeleteOidcDynamicClientRequest

	// DeleteOidcDynamicClientExecute executes the request
	DeleteOidcDynamicClientExecute(r OidcAPIDeleteOidcDynamicClientRequest) (*http.Response, error)

	/*
		DiscoverOidcConfiguration OpenID Connect Discovery

		A mechanism for an OpenID Connect Relying Party to discover the End-User's OpenID Provider and obtain information needed to interact with it, including its OAuth 2.0 endpoint locations.

	Popular libraries for OpenID Connect clients include oidc-client-js (JavaScript), go-oidc (Golang), and others.
	For a full list of clients go here: https://openid.net/developers/certified/

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OidcAPIDiscoverOidcConfigurationRequest
	*/
	DiscoverOidcConfiguration(ctx context.Context) OidcAPIDiscoverOidcConfigurationRequest

	// DiscoverOidcConfigurationExecute executes the request
	//  @return OidcConfiguration
	DiscoverOidcConfigurationExecute(r OidcAPIDiscoverOidcConfigurationRequest) (*OidcConfiguration, *http.Response, error)

	/*
		GetOidcDynamicClient Get OAuth2 Client using OpenID Dynamic Client Registration

		This endpoint behaves like the administrative counterpart (`getOAuth2Client`) but is capable of facing the
	public internet directly and can be used in self-service. It implements the OpenID Connect
	Dynamic Client Registration Protocol.

	To use this endpoint, you will need to present the client's authentication credentials. If the OAuth2 Client
	uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query.
	If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the OAuth 2.0 Client.
		@return OidcAPIGetOidcDynamicClientRequest
	*/
	GetOidcDynamicClient(ctx context.Context, id string) OidcAPIGetOidcDynamicClientRequest

	// GetOidcDynamicClientExecute executes the request
	//  @return OAuth2Client
	GetOidcDynamicClientExecute(r OidcAPIGetOidcDynamicClientRequest) (*OAuth2Client, *http.Response, error)

	/*
		GetOidcUserInfo OpenID Connect Userinfo

		This endpoint returns the payload of the ID Token, including `session.id_token` values, of
	the provided OAuth 2.0 Access Token's consent request.

	In the case of authentication error, a WWW-Authenticate header might be set in the response
	with more information about the error. See [the spec](https://datatracker.ietf.org/doc/html/rfc6750#section-3)
	for more details about header format.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OidcAPIGetOidcUserInfoRequest
	*/
	GetOidcUserInfo(ctx context.Context) OidcAPIGetOidcUserInfoRequest

	// GetOidcUserInfoExecute executes the request
	//  @return OidcUserInfo
	GetOidcUserInfoExecute(r OidcAPIGetOidcUserInfoRequest) (*OidcUserInfo, *http.Response, error)

	/*
		RevokeOidcSession OpenID Connect Front- and Back-channel Enabled Logout

		This endpoint initiates and completes user logout at the Ory OAuth2 & OpenID provider and initiates OpenID Connect Front- / Back-channel logout:

	https://openid.net/specs/openid-connect-frontchannel-1_0.html
	https://openid.net/specs/openid-connect-backchannel-1_0.html

	Back-channel logout is performed asynchronously and does not affect logout flow.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return OidcAPIRevokeOidcSessionRequest
	*/
	RevokeOidcSession(ctx context.Context) OidcAPIRevokeOidcSessionRequest

	// RevokeOidcSessionExecute executes the request
	RevokeOidcSessionExecute(r OidcAPIRevokeOidcSessionRequest) (*http.Response, error)

	/*
		SetOidcDynamicClient Set OAuth2 Client using OpenID Dynamic Client Registration

		This endpoint behaves like the administrative counterpart (`setOAuth2Client`) but is capable of facing the
	public internet directly to be used by third parties. It implements the OpenID Connect
	Dynamic Client Registration Protocol.

	This feature is disabled per default. It can be enabled by a system administrator.

	If you pass `client_secret` the secret is used, otherwise the existing secret is used. If set, the secret is echoed in the response.
	It is not possible to retrieve it later on.

	To use this endpoint, you will need to present the client's authentication credentials. If the OAuth2 Client
	uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query.
	If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header.

	OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are
	generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id OAuth 2.0 Client ID
		@return OidcAPISetOidcDynamicClientRequest
	*/
	SetOidcDynamicClient(ctx context.Context, id string) OidcAPISetOidcDynamicClientRequest

	// SetOidcDynamicClientExecute executes the request
	//  @return OAuth2Client
	SetOidcDynamicClientExecute(r OidcAPISetOidcDynamicClientRequest) (*OAuth2Client, *http.Response, error)
}

type OidcAPICreateOidcDynamicClientRequest ¶

type OidcAPICreateOidcDynamicClientRequest struct {
	ApiService OidcAPI
	// contains filtered or unexported fields
}

func (OidcAPICreateOidcDynamicClientRequest) Execute ¶

func (OidcAPICreateOidcDynamicClientRequest) OAuth2Client ¶

Dynamic Client Registration Request Body

type OidcAPICreateVerifiableCredentialRequest ¶

type OidcAPICreateVerifiableCredentialRequest struct {
	ApiService OidcAPI
	// contains filtered or unexported fields
}

func (OidcAPICreateVerifiableCredentialRequest) CreateVerifiableCredentialRequestBody ¶

func (r OidcAPICreateVerifiableCredentialRequest) CreateVerifiableCredentialRequestBody(createVerifiableCredentialRequestBody CreateVerifiableCredentialRequestBody) OidcAPICreateVerifiableCredentialRequest

func (OidcAPICreateVerifiableCredentialRequest) Execute ¶

type OidcAPIDeleteOidcDynamicClientRequest ¶

type OidcAPIDeleteOidcDynamicClientRequest struct {
	ApiService OidcAPI
	// contains filtered or unexported fields
}

func (OidcAPIDeleteOidcDynamicClientRequest) Execute ¶

type OidcAPIDiscoverOidcConfigurationRequest ¶

type OidcAPIDiscoverOidcConfigurationRequest struct {
	ApiService OidcAPI
	// contains filtered or unexported fields
}

func (OidcAPIDiscoverOidcConfigurationRequest) Execute ¶

type OidcAPIGetOidcDynamicClientRequest ¶

type OidcAPIGetOidcDynamicClientRequest struct {
	ApiService OidcAPI
	// contains filtered or unexported fields
}

func (OidcAPIGetOidcDynamicClientRequest) Execute ¶

type OidcAPIGetOidcUserInfoRequest ¶

type OidcAPIGetOidcUserInfoRequest struct {
	ApiService OidcAPI
	// contains filtered or unexported fields
}

func (OidcAPIGetOidcUserInfoRequest) Execute ¶

type OidcAPIRevokeOidcSessionRequest ¶

type OidcAPIRevokeOidcSessionRequest struct {
	ApiService OidcAPI
	// contains filtered or unexported fields
}

func (OidcAPIRevokeOidcSessionRequest) Execute ¶

type OidcAPIService ¶

type OidcAPIService service

OidcAPIService OidcAPI service

func (*OidcAPIService) CreateOidcDynamicClient ¶

func (a *OidcAPIService) CreateOidcDynamicClient(ctx context.Context) OidcAPICreateOidcDynamicClientRequest

CreateOidcDynamicClient Register OAuth2 Client using OpenID Dynamic Client Registration

This endpoint behaves like the administrative counterpart (`createOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol. This feature needs to be enabled in the configuration. This endpoint is disabled by default. It can be enabled by an administrator.

Please note that using this endpoint you are not able to choose the `client_secret` nor the `client_id` as those values will be server generated when specifying `token_endpoint_auth_method` as `client_secret_basic` or `client_secret_post`.

The `client_secret` will be returned in the response and you will not be able to retrieve it later on. Write the secret down and keep it somewhere safe.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OidcAPICreateOidcDynamicClientRequest

func (*OidcAPIService) CreateOidcDynamicClientExecute ¶

func (a *OidcAPIService) CreateOidcDynamicClientExecute(r OidcAPICreateOidcDynamicClientRequest) (*OAuth2Client, *http.Response, error)

Execute executes the request

@return OAuth2Client

func (*OidcAPIService) CreateVerifiableCredential ¶

func (a *OidcAPIService) CreateVerifiableCredential(ctx context.Context) OidcAPICreateVerifiableCredentialRequest

CreateVerifiableCredential Issues a Verifiable Credential

This endpoint creates a verifiable credential that attests that the user authenticated with the provided access token owns a certain public/private key pair.

More information can be found at https://openid.net/specs/openid-connect-userinfo-vc-1_0.html.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OidcAPICreateVerifiableCredentialRequest

func (*OidcAPIService) CreateVerifiableCredentialExecute ¶

Execute executes the request

@return VerifiableCredentialResponse

func (*OidcAPIService) DeleteOidcDynamicClient ¶

func (a *OidcAPIService) DeleteOidcDynamicClient(ctx context.Context, id string) OidcAPIDeleteOidcDynamicClientRequest

DeleteOidcDynamicClient Delete OAuth 2.0 Client using the OpenID Dynamic Client Registration Management Protocol

This endpoint behaves like the administrative counterpart (`deleteOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol. This feature needs to be enabled in the configuration. This endpoint is disabled by default. It can be enabled by an administrator.

To use this endpoint, you will need to present the client's authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header.

OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the OAuth 2.0 Client.
@return OidcAPIDeleteOidcDynamicClientRequest

func (*OidcAPIService) DeleteOidcDynamicClientExecute ¶

func (a *OidcAPIService) DeleteOidcDynamicClientExecute(r OidcAPIDeleteOidcDynamicClientRequest) (*http.Response, error)

Execute executes the request

func (*OidcAPIService) DiscoverOidcConfiguration ¶

func (a *OidcAPIService) DiscoverOidcConfiguration(ctx context.Context) OidcAPIDiscoverOidcConfigurationRequest

DiscoverOidcConfiguration OpenID Connect Discovery

A mechanism for an OpenID Connect Relying Party to discover the End-User's OpenID Provider and obtain information needed to interact with it, including its OAuth 2.0 endpoint locations.

Popular libraries for OpenID Connect clients include oidc-client-js (JavaScript), go-oidc (Golang), and others. For a full list of clients go here: https://openid.net/developers/certified/

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OidcAPIDiscoverOidcConfigurationRequest

func (*OidcAPIService) DiscoverOidcConfigurationExecute ¶

func (a *OidcAPIService) DiscoverOidcConfigurationExecute(r OidcAPIDiscoverOidcConfigurationRequest) (*OidcConfiguration, *http.Response, error)

Execute executes the request

@return OidcConfiguration

func (*OidcAPIService) GetOidcDynamicClient ¶

func (a *OidcAPIService) GetOidcDynamicClient(ctx context.Context, id string) OidcAPIGetOidcDynamicClientRequest

GetOidcDynamicClient Get OAuth2 Client using OpenID Dynamic Client Registration

This endpoint behaves like the administrative counterpart (`getOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol.

To use this endpoint, you will need to present the client's authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the OAuth 2.0 Client.
@return OidcAPIGetOidcDynamicClientRequest

func (*OidcAPIService) GetOidcDynamicClientExecute ¶

func (a *OidcAPIService) GetOidcDynamicClientExecute(r OidcAPIGetOidcDynamicClientRequest) (*OAuth2Client, *http.Response, error)

Execute executes the request

@return OAuth2Client

func (*OidcAPIService) GetOidcUserInfo ¶

GetOidcUserInfo OpenID Connect Userinfo

This endpoint returns the payload of the ID Token, including `session.id_token` values, of the provided OAuth 2.0 Access Token's consent request.

In the case of authentication error, a WWW-Authenticate header might be set in the response with more information about the error. See [the spec](https://datatracker.ietf.org/doc/html/rfc6750#section-3) for more details about header format.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OidcAPIGetOidcUserInfoRequest

func (*OidcAPIService) GetOidcUserInfoExecute ¶

func (a *OidcAPIService) GetOidcUserInfoExecute(r OidcAPIGetOidcUserInfoRequest) (*OidcUserInfo, *http.Response, error)

Execute executes the request

@return OidcUserInfo

func (*OidcAPIService) RevokeOidcSession ¶

RevokeOidcSession OpenID Connect Front- and Back-channel Enabled Logout

This endpoint initiates and completes user logout at the Ory OAuth2 & OpenID provider and initiates OpenID Connect Front- / Back-channel logout:

https://openid.net/specs/openid-connect-frontchannel-1_0.html https://openid.net/specs/openid-connect-backchannel-1_0.html

Back-channel logout is performed asynchronously and does not affect logout flow.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return OidcAPIRevokeOidcSessionRequest

func (*OidcAPIService) RevokeOidcSessionExecute ¶

func (a *OidcAPIService) RevokeOidcSessionExecute(r OidcAPIRevokeOidcSessionRequest) (*http.Response, error)

Execute executes the request

func (*OidcAPIService) SetOidcDynamicClient ¶

func (a *OidcAPIService) SetOidcDynamicClient(ctx context.Context, id string) OidcAPISetOidcDynamicClientRequest

SetOidcDynamicClient Set OAuth2 Client using OpenID Dynamic Client Registration

This endpoint behaves like the administrative counterpart (`setOAuth2Client`) but is capable of facing the public internet directly to be used by third parties. It implements the OpenID Connect Dynamic Client Registration Protocol.

This feature is disabled per default. It can be enabled by a system administrator.

If you pass `client_secret` the secret is used, otherwise the existing secret is used. If set, the secret is echoed in the response. It is not possible to retrieve it later on.

To use this endpoint, you will need to present the client's authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header.

OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id OAuth 2.0 Client ID
@return OidcAPISetOidcDynamicClientRequest

func (*OidcAPIService) SetOidcDynamicClientExecute ¶

func (a *OidcAPIService) SetOidcDynamicClientExecute(r OidcAPISetOidcDynamicClientRequest) (*OAuth2Client, *http.Response, error)

Execute executes the request

@return OAuth2Client

type OidcAPISetOidcDynamicClientRequest ¶

type OidcAPISetOidcDynamicClientRequest struct {
	ApiService OidcAPI
	// contains filtered or unexported fields
}

func (OidcAPISetOidcDynamicClientRequest) Execute ¶

func (OidcAPISetOidcDynamicClientRequest) OAuth2Client ¶

OAuth 2.0 Client Request Body

type OidcConfiguration ¶

type OidcConfiguration struct {
	// OAuth 2.0 Authorization Endpoint URL
	AuthorizationEndpoint string `json:"authorization_endpoint"`
	// OpenID Connect Back-Channel Logout Session Required  Boolean value specifying whether the OP can pass a sid (session ID) Claim in the Logout Token to identify the RP session with the OP. If supported, the sid Claim is also included in ID Tokens issued by the OP
	BackchannelLogoutSessionSupported *bool `json:"backchannel_logout_session_supported,omitempty"`
	// OpenID Connect Back-Channel Logout Supported  Boolean value specifying whether the OP supports back-channel logout, with true indicating support.
	BackchannelLogoutSupported *bool `json:"backchannel_logout_supported,omitempty"`
	// OpenID Connect Claims Parameter Parameter Supported  Boolean value specifying whether the OP supports use of the claims parameter, with true indicating support.
	ClaimsParameterSupported *bool `json:"claims_parameter_supported,omitempty"`
	// OpenID Connect Supported Claims  JSON array containing a list of the Claim Names of the Claims that the OpenID Provider MAY be able to supply values for. Note that for privacy or other reasons, this might not be an exhaustive list.
	ClaimsSupported []string `json:"claims_supported,omitempty"`
	// OAuth 2.0 PKCE Supported Code Challenge Methods  JSON array containing a list of Proof Key for Code Exchange (PKCE) [RFC7636] code challenge methods supported by this authorization server.
	CodeChallengeMethodsSupported []string `json:"code_challenge_methods_supported,omitempty"`
	// OpenID Connect Verifiable Credentials Endpoint  Contains the URL of the Verifiable Credentials Endpoint.
	CredentialsEndpointDraft00 *string `json:"credentials_endpoint_draft_00,omitempty"`
	// OpenID Connect Verifiable Credentials Supported  JSON array containing a list of the Verifiable Credentials supported by this authorization server.
	CredentialsSupportedDraft00 []CredentialSupportedDraft00 `json:"credentials_supported_draft_00,omitempty"`
	// OpenID Connect End-Session Endpoint  URL at the OP to which an RP can perform a redirect to request that the End-User be logged out at the OP.
	EndSessionEndpoint *string `json:"end_session_endpoint,omitempty"`
	// OpenID Connect Front-Channel Logout Session Required  Boolean value specifying whether the OP can pass iss (issuer) and sid (session ID) query parameters to identify the RP session with the OP when the frontchannel_logout_uri is used. If supported, the sid Claim is also included in ID Tokens issued by the OP.
	FrontchannelLogoutSessionSupported *bool `json:"frontchannel_logout_session_supported,omitempty"`
	// OpenID Connect Front-Channel Logout Supported  Boolean value specifying whether the OP supports HTTP-based logout, with true indicating support.
	FrontchannelLogoutSupported *bool `json:"frontchannel_logout_supported,omitempty"`
	// OAuth 2.0 Supported Grant Types  JSON array containing a list of the OAuth 2.0 Grant Type values that this OP supports.
	GrantTypesSupported []string `json:"grant_types_supported,omitempty"`
	// OpenID Connect Default ID Token Signing Algorithms  Algorithm used to sign OpenID Connect ID Tokens.
	IdTokenSignedResponseAlg []string `json:"id_token_signed_response_alg"`
	// OpenID Connect Supported ID Token Signing Algorithms  JSON array containing a list of the JWS signing algorithms (alg values) supported by the OP for the ID Token to encode the Claims in a JWT.
	IdTokenSigningAlgValuesSupported []string `json:"id_token_signing_alg_values_supported"`
	// OpenID Connect Issuer URL  An URL using the https scheme with no query or fragment component that the OP asserts as its IssuerURL Identifier. If IssuerURL discovery is supported , this value MUST be identical to the issuer value returned by WebFinger. This also MUST be identical to the iss Claim value in ID Tokens issued from this IssuerURL.
	Issuer string `json:"issuer"`
	// OpenID Connect Well-Known JSON Web Keys URL  URL of the OP's JSON Web Key Set [JWK] document. This contains the signing key(s) the RP uses to validate signatures from the OP. The JWK Set MAY also contain the Server's encryption key(s), which are used by RPs to encrypt requests to the Server. When both signing and encryption keys are made available, a use (Key Use) parameter value is REQUIRED for all keys in the referenced JWK Set to indicate each key's intended usage. Although some algorithms allow the same key to be used for both signatures and encryption, doing so is NOT RECOMMENDED, as it is less secure. The JWK x5c parameter MAY be used to provide X.509 representations of keys provided. When used, the bare key values MUST still be present and MUST match those in the certificate.
	JwksUri string `json:"jwks_uri"`
	// OpenID Connect Dynamic Client Registration Endpoint URL
	RegistrationEndpoint *string `json:"registration_endpoint,omitempty"`
	// OpenID Connect Supported Request Object Signing Algorithms  JSON array containing a list of the JWS signing algorithms (alg values) supported by the OP for Request Objects, which are described in Section 6.1 of OpenID Connect Core 1.0 [OpenID.Core]. These algorithms are used both when the Request Object is passed by value (using the request parameter) and when it is passed by reference (using the request_uri parameter).
	RequestObjectSigningAlgValuesSupported []string `json:"request_object_signing_alg_values_supported,omitempty"`
	// OpenID Connect Request Parameter Supported  Boolean value specifying whether the OP supports use of the request parameter, with true indicating support.
	RequestParameterSupported *bool `json:"request_parameter_supported,omitempty"`
	// OpenID Connect Request URI Parameter Supported  Boolean value specifying whether the OP supports use of the request_uri parameter, with true indicating support.
	RequestUriParameterSupported *bool `json:"request_uri_parameter_supported,omitempty"`
	// OpenID Connect Requires Request URI Registration  Boolean value specifying whether the OP requires any request_uri values used to be pre-registered using the request_uris registration parameter.
	RequireRequestUriRegistration *bool `json:"require_request_uri_registration,omitempty"`
	// OAuth 2.0 Supported Response Modes  JSON array containing a list of the OAuth 2.0 response_mode values that this OP supports.
	ResponseModesSupported []string `json:"response_modes_supported,omitempty"`
	// OAuth 2.0 Supported Response Types  JSON array containing a list of the OAuth 2.0 response_type values that this OP supports. Dynamic OpenID Providers MUST support the code, id_token, and the token id_token Response Type values.
	ResponseTypesSupported []string `json:"response_types_supported"`
	// OAuth 2.0 Token Revocation URL  URL of the authorization server's OAuth 2.0 revocation endpoint.
	RevocationEndpoint *string `json:"revocation_endpoint,omitempty"`
	// OAuth 2.0 Supported Scope Values  JSON array containing a list of the OAuth 2.0 [RFC6749] scope values that this server supports. The server MUST support the openid scope value. Servers MAY choose not to advertise some supported scope values even when this parameter is used
	ScopesSupported []string `json:"scopes_supported,omitempty"`
	// OpenID Connect Supported Subject Types  JSON array containing a list of the Subject Identifier types that this OP supports. Valid types include pairwise and public.
	SubjectTypesSupported []string `json:"subject_types_supported"`
	// OAuth 2.0 Token Endpoint URL
	TokenEndpoint string `json:"token_endpoint"`
	// OAuth 2.0 Supported Client Authentication Methods  JSON array containing a list of Client Authentication methods supported by this Token Endpoint. The options are client_secret_post, client_secret_basic, client_secret_jwt, and private_key_jwt, as described in Section 9 of OpenID Connect Core 1.0
	TokenEndpointAuthMethodsSupported []string `json:"token_endpoint_auth_methods_supported,omitempty"`
	// OpenID Connect Userinfo URL  URL of the OP's UserInfo Endpoint.
	UserinfoEndpoint *string `json:"userinfo_endpoint,omitempty"`
	// OpenID Connect User Userinfo Signing Algorithm  Algorithm used to sign OpenID Connect Userinfo Responses.
	UserinfoSignedResponseAlg []string `json:"userinfo_signed_response_alg"`
	// OpenID Connect Supported Userinfo Signing Algorithm  JSON array containing a list of the JWS [JWS] signing algorithms (alg values) [JWA] supported by the UserInfo Endpoint to encode the Claims in a JWT [JWT].
	UserinfoSigningAlgValuesSupported []string `json:"userinfo_signing_alg_values_supported,omitempty"`
	AdditionalProperties              map[string]interface{}
}

OidcConfiguration Includes links to several endpoints (for example `/oauth2/token`) and exposes information on supported signature algorithms among others.

func NewOidcConfiguration ¶

func NewOidcConfiguration(authorizationEndpoint string, idTokenSignedResponseAlg []string, idTokenSigningAlgValuesSupported []string, issuer string, jwksUri string, responseTypesSupported []string, subjectTypesSupported []string, tokenEndpoint string, userinfoSignedResponseAlg []string) *OidcConfiguration

NewOidcConfiguration instantiates a new OidcConfiguration 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 NewOidcConfigurationWithDefaults ¶

func NewOidcConfigurationWithDefaults() *OidcConfiguration

NewOidcConfigurationWithDefaults instantiates a new OidcConfiguration 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 (*OidcConfiguration) GetAuthorizationEndpoint ¶

func (o *OidcConfiguration) GetAuthorizationEndpoint() string

GetAuthorizationEndpoint returns the AuthorizationEndpoint field value

func (*OidcConfiguration) GetAuthorizationEndpointOk ¶

func (o *OidcConfiguration) GetAuthorizationEndpointOk() (*string, bool)

GetAuthorizationEndpointOk returns a tuple with the AuthorizationEndpoint field value and a boolean to check if the value has been set.

func (*OidcConfiguration) GetBackchannelLogoutSessionSupported ¶

func (o *OidcConfiguration) GetBackchannelLogoutSessionSupported() bool

GetBackchannelLogoutSessionSupported returns the BackchannelLogoutSessionSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetBackchannelLogoutSessionSupportedOk ¶

func (o *OidcConfiguration) GetBackchannelLogoutSessionSupportedOk() (*bool, bool)

GetBackchannelLogoutSessionSupportedOk returns a tuple with the BackchannelLogoutSessionSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetBackchannelLogoutSupported ¶

func (o *OidcConfiguration) GetBackchannelLogoutSupported() bool

GetBackchannelLogoutSupported returns the BackchannelLogoutSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetBackchannelLogoutSupportedOk ¶

func (o *OidcConfiguration) GetBackchannelLogoutSupportedOk() (*bool, bool)

GetBackchannelLogoutSupportedOk returns a tuple with the BackchannelLogoutSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetClaimsParameterSupported ¶

func (o *OidcConfiguration) GetClaimsParameterSupported() bool

GetClaimsParameterSupported returns the ClaimsParameterSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetClaimsParameterSupportedOk ¶

func (o *OidcConfiguration) GetClaimsParameterSupportedOk() (*bool, bool)

GetClaimsParameterSupportedOk returns a tuple with the ClaimsParameterSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetClaimsSupported ¶

func (o *OidcConfiguration) GetClaimsSupported() []string

GetClaimsSupported returns the ClaimsSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetClaimsSupportedOk ¶

func (o *OidcConfiguration) GetClaimsSupportedOk() ([]string, bool)

GetClaimsSupportedOk returns a tuple with the ClaimsSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetCodeChallengeMethodsSupported ¶

func (o *OidcConfiguration) GetCodeChallengeMethodsSupported() []string

GetCodeChallengeMethodsSupported returns the CodeChallengeMethodsSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetCodeChallengeMethodsSupportedOk ¶

func (o *OidcConfiguration) GetCodeChallengeMethodsSupportedOk() ([]string, bool)

GetCodeChallengeMethodsSupportedOk returns a tuple with the CodeChallengeMethodsSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetCredentialsEndpointDraft00 ¶

func (o *OidcConfiguration) GetCredentialsEndpointDraft00() string

GetCredentialsEndpointDraft00 returns the CredentialsEndpointDraft00 field value if set, zero value otherwise.

func (*OidcConfiguration) GetCredentialsEndpointDraft00Ok ¶

func (o *OidcConfiguration) GetCredentialsEndpointDraft00Ok() (*string, bool)

GetCredentialsEndpointDraft00Ok returns a tuple with the CredentialsEndpointDraft00 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetCredentialsSupportedDraft00 ¶

func (o *OidcConfiguration) GetCredentialsSupportedDraft00() []CredentialSupportedDraft00

GetCredentialsSupportedDraft00 returns the CredentialsSupportedDraft00 field value if set, zero value otherwise.

func (*OidcConfiguration) GetCredentialsSupportedDraft00Ok ¶

func (o *OidcConfiguration) GetCredentialsSupportedDraft00Ok() ([]CredentialSupportedDraft00, bool)

GetCredentialsSupportedDraft00Ok returns a tuple with the CredentialsSupportedDraft00 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetEndSessionEndpoint ¶

func (o *OidcConfiguration) GetEndSessionEndpoint() string

GetEndSessionEndpoint returns the EndSessionEndpoint field value if set, zero value otherwise.

func (*OidcConfiguration) GetEndSessionEndpointOk ¶

func (o *OidcConfiguration) GetEndSessionEndpointOk() (*string, bool)

GetEndSessionEndpointOk returns a tuple with the EndSessionEndpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetFrontchannelLogoutSessionSupported ¶

func (o *OidcConfiguration) GetFrontchannelLogoutSessionSupported() bool

GetFrontchannelLogoutSessionSupported returns the FrontchannelLogoutSessionSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetFrontchannelLogoutSessionSupportedOk ¶

func (o *OidcConfiguration) GetFrontchannelLogoutSessionSupportedOk() (*bool, bool)

GetFrontchannelLogoutSessionSupportedOk returns a tuple with the FrontchannelLogoutSessionSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetFrontchannelLogoutSupported ¶

func (o *OidcConfiguration) GetFrontchannelLogoutSupported() bool

GetFrontchannelLogoutSupported returns the FrontchannelLogoutSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetFrontchannelLogoutSupportedOk ¶

func (o *OidcConfiguration) GetFrontchannelLogoutSupportedOk() (*bool, bool)

GetFrontchannelLogoutSupportedOk returns a tuple with the FrontchannelLogoutSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetGrantTypesSupported ¶

func (o *OidcConfiguration) GetGrantTypesSupported() []string

GetGrantTypesSupported returns the GrantTypesSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetGrantTypesSupportedOk ¶

func (o *OidcConfiguration) GetGrantTypesSupportedOk() ([]string, bool)

GetGrantTypesSupportedOk returns a tuple with the GrantTypesSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetIdTokenSignedResponseAlg ¶

func (o *OidcConfiguration) GetIdTokenSignedResponseAlg() []string

GetIdTokenSignedResponseAlg returns the IdTokenSignedResponseAlg field value

func (*OidcConfiguration) GetIdTokenSignedResponseAlgOk ¶

func (o *OidcConfiguration) GetIdTokenSignedResponseAlgOk() ([]string, bool)

GetIdTokenSignedResponseAlgOk returns a tuple with the IdTokenSignedResponseAlg field value and a boolean to check if the value has been set.

func (*OidcConfiguration) GetIdTokenSigningAlgValuesSupported ¶

func (o *OidcConfiguration) GetIdTokenSigningAlgValuesSupported() []string

GetIdTokenSigningAlgValuesSupported returns the IdTokenSigningAlgValuesSupported field value

func (*OidcConfiguration) GetIdTokenSigningAlgValuesSupportedOk ¶

func (o *OidcConfiguration) GetIdTokenSigningAlgValuesSupportedOk() ([]string, bool)

GetIdTokenSigningAlgValuesSupportedOk returns a tuple with the IdTokenSigningAlgValuesSupported field value and a boolean to check if the value has been set.

func (*OidcConfiguration) GetIssuer ¶

func (o *OidcConfiguration) GetIssuer() string

GetIssuer returns the Issuer field value

func (*OidcConfiguration) GetIssuerOk ¶

func (o *OidcConfiguration) GetIssuerOk() (*string, bool)

GetIssuerOk returns a tuple with the Issuer field value and a boolean to check if the value has been set.

func (*OidcConfiguration) GetJwksUri ¶

func (o *OidcConfiguration) GetJwksUri() string

GetJwksUri returns the JwksUri field value

func (*OidcConfiguration) GetJwksUriOk ¶

func (o *OidcConfiguration) GetJwksUriOk() (*string, bool)

GetJwksUriOk returns a tuple with the JwksUri field value and a boolean to check if the value has been set.

func (*OidcConfiguration) GetRegistrationEndpoint ¶

func (o *OidcConfiguration) GetRegistrationEndpoint() string

GetRegistrationEndpoint returns the RegistrationEndpoint field value if set, zero value otherwise.

func (*OidcConfiguration) GetRegistrationEndpointOk ¶

func (o *OidcConfiguration) GetRegistrationEndpointOk() (*string, bool)

GetRegistrationEndpointOk returns a tuple with the RegistrationEndpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetRequestObjectSigningAlgValuesSupported ¶

func (o *OidcConfiguration) GetRequestObjectSigningAlgValuesSupported() []string

GetRequestObjectSigningAlgValuesSupported returns the RequestObjectSigningAlgValuesSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetRequestObjectSigningAlgValuesSupportedOk ¶

func (o *OidcConfiguration) GetRequestObjectSigningAlgValuesSupportedOk() ([]string, bool)

GetRequestObjectSigningAlgValuesSupportedOk returns a tuple with the RequestObjectSigningAlgValuesSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetRequestParameterSupported ¶

func (o *OidcConfiguration) GetRequestParameterSupported() bool

GetRequestParameterSupported returns the RequestParameterSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetRequestParameterSupportedOk ¶

func (o *OidcConfiguration) GetRequestParameterSupportedOk() (*bool, bool)

GetRequestParameterSupportedOk returns a tuple with the RequestParameterSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetRequestUriParameterSupported ¶

func (o *OidcConfiguration) GetRequestUriParameterSupported() bool

GetRequestUriParameterSupported returns the RequestUriParameterSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetRequestUriParameterSupportedOk ¶

func (o *OidcConfiguration) GetRequestUriParameterSupportedOk() (*bool, bool)

GetRequestUriParameterSupportedOk returns a tuple with the RequestUriParameterSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetRequireRequestUriRegistration ¶

func (o *OidcConfiguration) GetRequireRequestUriRegistration() bool

GetRequireRequestUriRegistration returns the RequireRequestUriRegistration field value if set, zero value otherwise.

func (*OidcConfiguration) GetRequireRequestUriRegistrationOk ¶

func (o *OidcConfiguration) GetRequireRequestUriRegistrationOk() (*bool, bool)

GetRequireRequestUriRegistrationOk returns a tuple with the RequireRequestUriRegistration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetResponseModesSupported ¶

func (o *OidcConfiguration) GetResponseModesSupported() []string

GetResponseModesSupported returns the ResponseModesSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetResponseModesSupportedOk ¶

func (o *OidcConfiguration) GetResponseModesSupportedOk() ([]string, bool)

GetResponseModesSupportedOk returns a tuple with the ResponseModesSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetResponseTypesSupported ¶

func (o *OidcConfiguration) GetResponseTypesSupported() []string

GetResponseTypesSupported returns the ResponseTypesSupported field value

func (*OidcConfiguration) GetResponseTypesSupportedOk ¶

func (o *OidcConfiguration) GetResponseTypesSupportedOk() ([]string, bool)

GetResponseTypesSupportedOk returns a tuple with the ResponseTypesSupported field value and a boolean to check if the value has been set.

func (*OidcConfiguration) GetRevocationEndpoint ¶

func (o *OidcConfiguration) GetRevocationEndpoint() string

GetRevocationEndpoint returns the RevocationEndpoint field value if set, zero value otherwise.

func (*OidcConfiguration) GetRevocationEndpointOk ¶

func (o *OidcConfiguration) GetRevocationEndpointOk() (*string, bool)

GetRevocationEndpointOk returns a tuple with the RevocationEndpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetScopesSupported ¶

func (o *OidcConfiguration) GetScopesSupported() []string

GetScopesSupported returns the ScopesSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetScopesSupportedOk ¶

func (o *OidcConfiguration) GetScopesSupportedOk() ([]string, bool)

GetScopesSupportedOk returns a tuple with the ScopesSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetSubjectTypesSupported ¶

func (o *OidcConfiguration) GetSubjectTypesSupported() []string

GetSubjectTypesSupported returns the SubjectTypesSupported field value

func (*OidcConfiguration) GetSubjectTypesSupportedOk ¶

func (o *OidcConfiguration) GetSubjectTypesSupportedOk() ([]string, bool)

GetSubjectTypesSupportedOk returns a tuple with the SubjectTypesSupported field value and a boolean to check if the value has been set.

func (*OidcConfiguration) GetTokenEndpoint ¶

func (o *OidcConfiguration) GetTokenEndpoint() string

GetTokenEndpoint returns the TokenEndpoint field value

func (*OidcConfiguration) GetTokenEndpointAuthMethodsSupported ¶

func (o *OidcConfiguration) GetTokenEndpointAuthMethodsSupported() []string

GetTokenEndpointAuthMethodsSupported returns the TokenEndpointAuthMethodsSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetTokenEndpointAuthMethodsSupportedOk ¶

func (o *OidcConfiguration) GetTokenEndpointAuthMethodsSupportedOk() ([]string, bool)

GetTokenEndpointAuthMethodsSupportedOk returns a tuple with the TokenEndpointAuthMethodsSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetTokenEndpointOk ¶

func (o *OidcConfiguration) GetTokenEndpointOk() (*string, bool)

GetTokenEndpointOk returns a tuple with the TokenEndpoint field value and a boolean to check if the value has been set.

func (*OidcConfiguration) GetUserinfoEndpoint ¶

func (o *OidcConfiguration) GetUserinfoEndpoint() string

GetUserinfoEndpoint returns the UserinfoEndpoint field value if set, zero value otherwise.

func (*OidcConfiguration) GetUserinfoEndpointOk ¶

func (o *OidcConfiguration) GetUserinfoEndpointOk() (*string, bool)

GetUserinfoEndpointOk returns a tuple with the UserinfoEndpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) GetUserinfoSignedResponseAlg ¶

func (o *OidcConfiguration) GetUserinfoSignedResponseAlg() []string

GetUserinfoSignedResponseAlg returns the UserinfoSignedResponseAlg field value

func (*OidcConfiguration) GetUserinfoSignedResponseAlgOk ¶

func (o *OidcConfiguration) GetUserinfoSignedResponseAlgOk() ([]string, bool)

GetUserinfoSignedResponseAlgOk returns a tuple with the UserinfoSignedResponseAlg field value and a boolean to check if the value has been set.

func (*OidcConfiguration) GetUserinfoSigningAlgValuesSupported ¶

func (o *OidcConfiguration) GetUserinfoSigningAlgValuesSupported() []string

GetUserinfoSigningAlgValuesSupported returns the UserinfoSigningAlgValuesSupported field value if set, zero value otherwise.

func (*OidcConfiguration) GetUserinfoSigningAlgValuesSupportedOk ¶

func (o *OidcConfiguration) GetUserinfoSigningAlgValuesSupportedOk() ([]string, bool)

GetUserinfoSigningAlgValuesSupportedOk returns a tuple with the UserinfoSigningAlgValuesSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcConfiguration) HasBackchannelLogoutSessionSupported ¶

func (o *OidcConfiguration) HasBackchannelLogoutSessionSupported() bool

HasBackchannelLogoutSessionSupported returns a boolean if a field has been set.

func (*OidcConfiguration) HasBackchannelLogoutSupported ¶

func (o *OidcConfiguration) HasBackchannelLogoutSupported() bool

HasBackchannelLogoutSupported returns a boolean if a field has been set.

func (*OidcConfiguration) HasClaimsParameterSupported ¶

func (o *OidcConfiguration) HasClaimsParameterSupported() bool

HasClaimsParameterSupported returns a boolean if a field has been set.

func (*OidcConfiguration) HasClaimsSupported ¶

func (o *OidcConfiguration) HasClaimsSupported() bool

HasClaimsSupported returns a boolean if a field has been set.

func (*OidcConfiguration) HasCodeChallengeMethodsSupported ¶

func (o *OidcConfiguration) HasCodeChallengeMethodsSupported() bool

HasCodeChallengeMethodsSupported returns a boolean if a field has been set.

func (*OidcConfiguration) HasCredentialsEndpointDraft00 ¶

func (o *OidcConfiguration) HasCredentialsEndpointDraft00() bool

HasCredentialsEndpointDraft00 returns a boolean if a field has been set.

func (*OidcConfiguration) HasCredentialsSupportedDraft00 ¶

func (o *OidcConfiguration) HasCredentialsSupportedDraft00() bool

HasCredentialsSupportedDraft00 returns a boolean if a field has been set.

func (*OidcConfiguration) HasEndSessionEndpoint ¶

func (o *OidcConfiguration) HasEndSessionEndpoint() bool

HasEndSessionEndpoint returns a boolean if a field has been set.

func (*OidcConfiguration) HasFrontchannelLogoutSessionSupported ¶

func (o *OidcConfiguration) HasFrontchannelLogoutSessionSupported() bool

HasFrontchannelLogoutSessionSupported returns a boolean if a field has been set.

func (*OidcConfiguration) HasFrontchannelLogoutSupported ¶

func (o *OidcConfiguration) HasFrontchannelLogoutSupported() bool

HasFrontchannelLogoutSupported returns a boolean if a field has been set.

func (*OidcConfiguration) HasGrantTypesSupported ¶

func (o *OidcConfiguration) HasGrantTypesSupported() bool

HasGrantTypesSupported returns a boolean if a field has been set.

func (*OidcConfiguration) HasRegistrationEndpoint ¶

func (o *OidcConfiguration) HasRegistrationEndpoint() bool

HasRegistrationEndpoint returns a boolean if a field has been set.

func (*OidcConfiguration) HasRequestObjectSigningAlgValuesSupported ¶

func (o *OidcConfiguration) HasRequestObjectSigningAlgValuesSupported() bool

HasRequestObjectSigningAlgValuesSupported returns a boolean if a field has been set.

func (*OidcConfiguration) HasRequestParameterSupported ¶

func (o *OidcConfiguration) HasRequestParameterSupported() bool

HasRequestParameterSupported returns a boolean if a field has been set.

func (*OidcConfiguration) HasRequestUriParameterSupported ¶

func (o *OidcConfiguration) HasRequestUriParameterSupported() bool

HasRequestUriParameterSupported returns a boolean if a field has been set.

func (*OidcConfiguration) HasRequireRequestUriRegistration ¶

func (o *OidcConfiguration) HasRequireRequestUriRegistration() bool

HasRequireRequestUriRegistration returns a boolean if a field has been set.

func (*OidcConfiguration) HasResponseModesSupported ¶

func (o *OidcConfiguration) HasResponseModesSupported() bool

HasResponseModesSupported returns a boolean if a field has been set.

func (*OidcConfiguration) HasRevocationEndpoint ¶

func (o *OidcConfiguration) HasRevocationEndpoint() bool

HasRevocationEndpoint returns a boolean if a field has been set.

func (*OidcConfiguration) HasScopesSupported ¶

func (o *OidcConfiguration) HasScopesSupported() bool

HasScopesSupported returns a boolean if a field has been set.

func (*OidcConfiguration) HasTokenEndpointAuthMethodsSupported ¶

func (o *OidcConfiguration) HasTokenEndpointAuthMethodsSupported() bool

HasTokenEndpointAuthMethodsSupported returns a boolean if a field has been set.

func (*OidcConfiguration) HasUserinfoEndpoint ¶

func (o *OidcConfiguration) HasUserinfoEndpoint() bool

HasUserinfoEndpoint returns a boolean if a field has been set.

func (*OidcConfiguration) HasUserinfoSigningAlgValuesSupported ¶

func (o *OidcConfiguration) HasUserinfoSigningAlgValuesSupported() bool

HasUserinfoSigningAlgValuesSupported returns a boolean if a field has been set.

func (OidcConfiguration) MarshalJSON ¶

func (o OidcConfiguration) MarshalJSON() ([]byte, error)

func (*OidcConfiguration) SetAuthorizationEndpoint ¶

func (o *OidcConfiguration) SetAuthorizationEndpoint(v string)

SetAuthorizationEndpoint sets field value

func (*OidcConfiguration) SetBackchannelLogoutSessionSupported ¶

func (o *OidcConfiguration) SetBackchannelLogoutSessionSupported(v bool)

SetBackchannelLogoutSessionSupported gets a reference to the given bool and assigns it to the BackchannelLogoutSessionSupported field.

func (*OidcConfiguration) SetBackchannelLogoutSupported ¶

func (o *OidcConfiguration) SetBackchannelLogoutSupported(v bool)

SetBackchannelLogoutSupported gets a reference to the given bool and assigns it to the BackchannelLogoutSupported field.

func (*OidcConfiguration) SetClaimsParameterSupported ¶

func (o *OidcConfiguration) SetClaimsParameterSupported(v bool)

SetClaimsParameterSupported gets a reference to the given bool and assigns it to the ClaimsParameterSupported field.

func (*OidcConfiguration) SetClaimsSupported ¶

func (o *OidcConfiguration) SetClaimsSupported(v []string)

SetClaimsSupported gets a reference to the given []string and assigns it to the ClaimsSupported field.

func (*OidcConfiguration) SetCodeChallengeMethodsSupported ¶

func (o *OidcConfiguration) SetCodeChallengeMethodsSupported(v []string)

SetCodeChallengeMethodsSupported gets a reference to the given []string and assigns it to the CodeChallengeMethodsSupported field.

func (*OidcConfiguration) SetCredentialsEndpointDraft00 ¶

func (o *OidcConfiguration) SetCredentialsEndpointDraft00(v string)

SetCredentialsEndpointDraft00 gets a reference to the given string and assigns it to the CredentialsEndpointDraft00 field.

func (*OidcConfiguration) SetCredentialsSupportedDraft00 ¶

func (o *OidcConfiguration) SetCredentialsSupportedDraft00(v []CredentialSupportedDraft00)

SetCredentialsSupportedDraft00 gets a reference to the given []CredentialSupportedDraft00 and assigns it to the CredentialsSupportedDraft00 field.

func (*OidcConfiguration) SetEndSessionEndpoint ¶

func (o *OidcConfiguration) SetEndSessionEndpoint(v string)

SetEndSessionEndpoint gets a reference to the given string and assigns it to the EndSessionEndpoint field.

func (*OidcConfiguration) SetFrontchannelLogoutSessionSupported ¶

func (o *OidcConfiguration) SetFrontchannelLogoutSessionSupported(v bool)

SetFrontchannelLogoutSessionSupported gets a reference to the given bool and assigns it to the FrontchannelLogoutSessionSupported field.

func (*OidcConfiguration) SetFrontchannelLogoutSupported ¶

func (o *OidcConfiguration) SetFrontchannelLogoutSupported(v bool)

SetFrontchannelLogoutSupported gets a reference to the given bool and assigns it to the FrontchannelLogoutSupported field.

func (*OidcConfiguration) SetGrantTypesSupported ¶

func (o *OidcConfiguration) SetGrantTypesSupported(v []string)

SetGrantTypesSupported gets a reference to the given []string and assigns it to the GrantTypesSupported field.

func (*OidcConfiguration) SetIdTokenSignedResponseAlg ¶

func (o *OidcConfiguration) SetIdTokenSignedResponseAlg(v []string)

SetIdTokenSignedResponseAlg sets field value

func (*OidcConfiguration) SetIdTokenSigningAlgValuesSupported ¶

func (o *OidcConfiguration) SetIdTokenSigningAlgValuesSupported(v []string)

SetIdTokenSigningAlgValuesSupported sets field value

func (*OidcConfiguration) SetIssuer ¶

func (o *OidcConfiguration) SetIssuer(v string)

SetIssuer sets field value

func (*OidcConfiguration) SetJwksUri ¶

func (o *OidcConfiguration) SetJwksUri(v string)

SetJwksUri sets field value

func (*OidcConfiguration) SetRegistrationEndpoint ¶

func (o *OidcConfiguration) SetRegistrationEndpoint(v string)

SetRegistrationEndpoint gets a reference to the given string and assigns it to the RegistrationEndpoint field.

func (*OidcConfiguration) SetRequestObjectSigningAlgValuesSupported ¶

func (o *OidcConfiguration) SetRequestObjectSigningAlgValuesSupported(v []string)

SetRequestObjectSigningAlgValuesSupported gets a reference to the given []string and assigns it to the RequestObjectSigningAlgValuesSupported field.

func (*OidcConfiguration) SetRequestParameterSupported ¶

func (o *OidcConfiguration) SetRequestParameterSupported(v bool)

SetRequestParameterSupported gets a reference to the given bool and assigns it to the RequestParameterSupported field.

func (*OidcConfiguration) SetRequestUriParameterSupported ¶

func (o *OidcConfiguration) SetRequestUriParameterSupported(v bool)

SetRequestUriParameterSupported gets a reference to the given bool and assigns it to the RequestUriParameterSupported field.

func (*OidcConfiguration) SetRequireRequestUriRegistration ¶

func (o *OidcConfiguration) SetRequireRequestUriRegistration(v bool)

SetRequireRequestUriRegistration gets a reference to the given bool and assigns it to the RequireRequestUriRegistration field.

func (*OidcConfiguration) SetResponseModesSupported ¶

func (o *OidcConfiguration) SetResponseModesSupported(v []string)

SetResponseModesSupported gets a reference to the given []string and assigns it to the ResponseModesSupported field.

func (*OidcConfiguration) SetResponseTypesSupported ¶

func (o *OidcConfiguration) SetResponseTypesSupported(v []string)

SetResponseTypesSupported sets field value

func (*OidcConfiguration) SetRevocationEndpoint ¶

func (o *OidcConfiguration) SetRevocationEndpoint(v string)

SetRevocationEndpoint gets a reference to the given string and assigns it to the RevocationEndpoint field.

func (*OidcConfiguration) SetScopesSupported ¶

func (o *OidcConfiguration) SetScopesSupported(v []string)

SetScopesSupported gets a reference to the given []string and assigns it to the ScopesSupported field.

func (*OidcConfiguration) SetSubjectTypesSupported ¶

func (o *OidcConfiguration) SetSubjectTypesSupported(v []string)

SetSubjectTypesSupported sets field value

func (*OidcConfiguration) SetTokenEndpoint ¶

func (o *OidcConfiguration) SetTokenEndpoint(v string)

SetTokenEndpoint sets field value

func (*OidcConfiguration) SetTokenEndpointAuthMethodsSupported ¶

func (o *OidcConfiguration) SetTokenEndpointAuthMethodsSupported(v []string)

SetTokenEndpointAuthMethodsSupported gets a reference to the given []string and assigns it to the TokenEndpointAuthMethodsSupported field.

func (*OidcConfiguration) SetUserinfoEndpoint ¶

func (o *OidcConfiguration) SetUserinfoEndpoint(v string)

SetUserinfoEndpoint gets a reference to the given string and assigns it to the UserinfoEndpoint field.

func (*OidcConfiguration) SetUserinfoSignedResponseAlg ¶

func (o *OidcConfiguration) SetUserinfoSignedResponseAlg(v []string)

SetUserinfoSignedResponseAlg sets field value

func (*OidcConfiguration) SetUserinfoSigningAlgValuesSupported ¶

func (o *OidcConfiguration) SetUserinfoSigningAlgValuesSupported(v []string)

SetUserinfoSigningAlgValuesSupported gets a reference to the given []string and assigns it to the UserinfoSigningAlgValuesSupported field.

func (OidcConfiguration) ToMap ¶

func (o OidcConfiguration) ToMap() (map[string]interface{}, error)

func (*OidcConfiguration) UnmarshalJSON ¶

func (o *OidcConfiguration) UnmarshalJSON(bytes []byte) (err error)

type OidcUserInfo ¶

type OidcUserInfo struct {
	// End-User's birthday, represented as an ISO 8601:2004 [ISO8601‑2004] YYYY-MM-DD format. The year MAY be 0000, indicating that it is omitted. To represent only the year, YYYY format is allowed. Note that depending on the underlying platform's date related function, providing just year can result in varying month and day, so the implementers need to take this factor into account to correctly process the dates.
	Birthdate *string `json:"birthdate,omitempty"`
	// End-User's preferred e-mail address. Its value MUST conform to the RFC 5322 [RFC5322] addr-spec syntax. The RP MUST NOT rely upon this value being unique, as discussed in Section 5.7.
	Email *string `json:"email,omitempty"`
	// True if the End-User's e-mail address has been verified; otherwise false. When this Claim Value is true, this means that the OP took affirmative steps to ensure that this e-mail address was controlled by the End-User at the time the verification was performed. The means by which an e-mail address is verified is context-specific, and dependent upon the trust framework or contractual agreements within which the parties are operating.
	EmailVerified *bool `json:"email_verified,omitempty"`
	// Surname(s) or last name(s) of the End-User. Note that in some cultures, people can have multiple family names or no family name; all can be present, with the names being separated by space characters.
	FamilyName *string `json:"family_name,omitempty"`
	// End-User's gender. Values defined by this specification are female and male. Other values MAY be used when neither of the defined values are applicable.
	Gender *string `json:"gender,omitempty"`
	// Given name(s) or first name(s) of the End-User. Note that in some cultures, people can have multiple given names; all can be present, with the names being separated by space characters.
	GivenName *string `json:"given_name,omitempty"`
	// End-User's locale, represented as a BCP47 [RFC5646] language tag. This is typically an ISO 639-1 Alpha-2 [ISO639‑1] language code in lowercase and an ISO 3166-1 Alpha-2 [ISO3166‑1] country code in uppercase, separated by a dash. For example, en-US or fr-CA. As a compatibility note, some implementations have used an underscore as the separator rather than a dash, for example, en_US; Relying Parties MAY choose to accept this locale syntax as well.
	Locale *string `json:"locale,omitempty"`
	// Middle name(s) of the End-User. Note that in some cultures, people can have multiple middle names; all can be present, with the names being separated by space characters. Also note that in some cultures, middle names are not used.
	MiddleName *string `json:"middle_name,omitempty"`
	// End-User's full name in displayable form including all name parts, possibly including titles and suffixes, ordered according to the End-User's locale and preferences.
	Name *string `json:"name,omitempty"`
	// Casual name of the End-User that may or may not be the same as the given_name. For instance, a nickname value of Mike might be returned alongside a given_name value of Michael.
	Nickname *string `json:"nickname,omitempty"`
	// End-User's preferred telephone number. E.164 [E.164] is RECOMMENDED as the format of this Claim, for example, +1 (425) 555-1212 or +56 (2) 687 2400. If the phone number contains an extension, it is RECOMMENDED that the extension be represented using the RFC 3966 [RFC3966] extension syntax, for example, +1 (604) 555-1234;ext=5678.
	PhoneNumber *string `json:"phone_number,omitempty"`
	// True if the End-User's phone number has been verified; otherwise false. When this Claim Value is true, this means that the OP took affirmative steps to ensure that this phone number was controlled by the End-User at the time the verification was performed. The means by which a phone number is verified is context-specific, and dependent upon the trust framework or contractual agreements within which the parties are operating. When true, the phone_number Claim MUST be in E.164 format and any extensions MUST be represented in RFC 3966 format.
	PhoneNumberVerified *bool `json:"phone_number_verified,omitempty"`
	// URL of the End-User's profile picture. This URL MUST refer to an image file (for example, a PNG, JPEG, or GIF image file), rather than to a Web page containing an image. Note that this URL SHOULD specifically reference a profile photo of the End-User suitable for displaying when describing the End-User, rather than an arbitrary photo taken by the End-User.
	Picture *string `json:"picture,omitempty"`
	// Non-unique shorthand name by which the End-User wishes to be referred to at the RP, such as janedoe or j.doe. This value MAY be any valid JSON string including special characters such as @, /, or whitespace.
	PreferredUsername *string `json:"preferred_username,omitempty"`
	// URL of the End-User's profile page. The contents of this Web page SHOULD be about the End-User.
	Profile *string `json:"profile,omitempty"`
	// Subject - Identifier for the End-User at the IssuerURL.
	Sub *string `json:"sub,omitempty"`
	// Time the End-User's information was last updated. Its value is a JSON number representing the number of seconds from 1970-01-01T0:0:0Z as measured in UTC until the date/time.
	UpdatedAt *int64 `json:"updated_at,omitempty"`
	// URL of the End-User's Web page or blog. This Web page SHOULD contain information published by the End-User or an organization that the End-User is affiliated with.
	Website *string `json:"website,omitempty"`
	// String from zoneinfo [zoneinfo] time zone database representing the End-User's time zone. For example, Europe/Paris or America/Los_Angeles.
	Zoneinfo             *string `json:"zoneinfo,omitempty"`
	AdditionalProperties map[string]interface{}
}

OidcUserInfo OpenID Connect Userinfo

func NewOidcUserInfo ¶

func NewOidcUserInfo() *OidcUserInfo

NewOidcUserInfo instantiates a new OidcUserInfo 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 NewOidcUserInfoWithDefaults ¶

func NewOidcUserInfoWithDefaults() *OidcUserInfo

NewOidcUserInfoWithDefaults instantiates a new OidcUserInfo 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 (*OidcUserInfo) GetBirthdate ¶

func (o *OidcUserInfo) GetBirthdate() string

GetBirthdate returns the Birthdate field value if set, zero value otherwise.

func (*OidcUserInfo) GetBirthdateOk ¶

func (o *OidcUserInfo) GetBirthdateOk() (*string, bool)

GetBirthdateOk returns a tuple with the Birthdate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetEmail ¶

func (o *OidcUserInfo) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*OidcUserInfo) GetEmailOk ¶

func (o *OidcUserInfo) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetEmailVerified ¶

func (o *OidcUserInfo) GetEmailVerified() bool

GetEmailVerified returns the EmailVerified field value if set, zero value otherwise.

func (*OidcUserInfo) GetEmailVerifiedOk ¶

func (o *OidcUserInfo) GetEmailVerifiedOk() (*bool, bool)

GetEmailVerifiedOk returns a tuple with the EmailVerified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetFamilyName ¶

func (o *OidcUserInfo) GetFamilyName() string

GetFamilyName returns the FamilyName field value if set, zero value otherwise.

func (*OidcUserInfo) GetFamilyNameOk ¶

func (o *OidcUserInfo) GetFamilyNameOk() (*string, bool)

GetFamilyNameOk returns a tuple with the FamilyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetGender ¶

func (o *OidcUserInfo) GetGender() string

GetGender returns the Gender field value if set, zero value otherwise.

func (*OidcUserInfo) GetGenderOk ¶

func (o *OidcUserInfo) GetGenderOk() (*string, bool)

GetGenderOk returns a tuple with the Gender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetGivenName ¶

func (o *OidcUserInfo) GetGivenName() string

GetGivenName returns the GivenName field value if set, zero value otherwise.

func (*OidcUserInfo) GetGivenNameOk ¶

func (o *OidcUserInfo) GetGivenNameOk() (*string, bool)

GetGivenNameOk returns a tuple with the GivenName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetLocale ¶

func (o *OidcUserInfo) GetLocale() string

GetLocale returns the Locale field value if set, zero value otherwise.

func (*OidcUserInfo) GetLocaleOk ¶

func (o *OidcUserInfo) GetLocaleOk() (*string, bool)

GetLocaleOk returns a tuple with the Locale field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetMiddleName ¶

func (o *OidcUserInfo) GetMiddleName() string

GetMiddleName returns the MiddleName field value if set, zero value otherwise.

func (*OidcUserInfo) GetMiddleNameOk ¶

func (o *OidcUserInfo) GetMiddleNameOk() (*string, bool)

GetMiddleNameOk returns a tuple with the MiddleName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetName ¶

func (o *OidcUserInfo) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*OidcUserInfo) GetNameOk ¶

func (o *OidcUserInfo) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetNickname ¶

func (o *OidcUserInfo) GetNickname() string

GetNickname returns the Nickname field value if set, zero value otherwise.

func (*OidcUserInfo) GetNicknameOk ¶

func (o *OidcUserInfo) GetNicknameOk() (*string, bool)

GetNicknameOk returns a tuple with the Nickname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetPhoneNumber ¶

func (o *OidcUserInfo) GetPhoneNumber() string

GetPhoneNumber returns the PhoneNumber field value if set, zero value otherwise.

func (*OidcUserInfo) GetPhoneNumberOk ¶

func (o *OidcUserInfo) GetPhoneNumberOk() (*string, bool)

GetPhoneNumberOk returns a tuple with the PhoneNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetPhoneNumberVerified ¶

func (o *OidcUserInfo) GetPhoneNumberVerified() bool

GetPhoneNumberVerified returns the PhoneNumberVerified field value if set, zero value otherwise.

func (*OidcUserInfo) GetPhoneNumberVerifiedOk ¶

func (o *OidcUserInfo) GetPhoneNumberVerifiedOk() (*bool, bool)

GetPhoneNumberVerifiedOk returns a tuple with the PhoneNumberVerified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetPicture ¶

func (o *OidcUserInfo) GetPicture() string

GetPicture returns the Picture field value if set, zero value otherwise.

func (*OidcUserInfo) GetPictureOk ¶

func (o *OidcUserInfo) GetPictureOk() (*string, bool)

GetPictureOk returns a tuple with the Picture field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetPreferredUsername ¶

func (o *OidcUserInfo) GetPreferredUsername() string

GetPreferredUsername returns the PreferredUsername field value if set, zero value otherwise.

func (*OidcUserInfo) GetPreferredUsernameOk ¶

func (o *OidcUserInfo) GetPreferredUsernameOk() (*string, bool)

GetPreferredUsernameOk returns a tuple with the PreferredUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetProfile ¶

func (o *OidcUserInfo) GetProfile() string

GetProfile returns the Profile field value if set, zero value otherwise.

func (*OidcUserInfo) GetProfileOk ¶

func (o *OidcUserInfo) GetProfileOk() (*string, bool)

GetProfileOk returns a tuple with the Profile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetSub ¶

func (o *OidcUserInfo) GetSub() string

GetSub returns the Sub field value if set, zero value otherwise.

func (*OidcUserInfo) GetSubOk ¶

func (o *OidcUserInfo) GetSubOk() (*string, bool)

GetSubOk returns a tuple with the Sub field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetUpdatedAt ¶

func (o *OidcUserInfo) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*OidcUserInfo) GetUpdatedAtOk ¶

func (o *OidcUserInfo) GetUpdatedAtOk() (*int64, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetWebsite ¶

func (o *OidcUserInfo) GetWebsite() string

GetWebsite returns the Website field value if set, zero value otherwise.

func (*OidcUserInfo) GetWebsiteOk ¶

func (o *OidcUserInfo) GetWebsiteOk() (*string, bool)

GetWebsiteOk returns a tuple with the Website field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) GetZoneinfo ¶

func (o *OidcUserInfo) GetZoneinfo() string

GetZoneinfo returns the Zoneinfo field value if set, zero value otherwise.

func (*OidcUserInfo) GetZoneinfoOk ¶

func (o *OidcUserInfo) GetZoneinfoOk() (*string, bool)

GetZoneinfoOk returns a tuple with the Zoneinfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OidcUserInfo) HasBirthdate ¶

func (o *OidcUserInfo) HasBirthdate() bool

HasBirthdate returns a boolean if a field has been set.

func (*OidcUserInfo) HasEmail ¶

func (o *OidcUserInfo) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*OidcUserInfo) HasEmailVerified ¶

func (o *OidcUserInfo) HasEmailVerified() bool

HasEmailVerified returns a boolean if a field has been set.

func (*OidcUserInfo) HasFamilyName ¶

func (o *OidcUserInfo) HasFamilyName() bool

HasFamilyName returns a boolean if a field has been set.

func (*OidcUserInfo) HasGender ¶

func (o *OidcUserInfo) HasGender() bool

HasGender returns a boolean if a field has been set.

func (*OidcUserInfo) HasGivenName ¶

func (o *OidcUserInfo) HasGivenName() bool

HasGivenName returns a boolean if a field has been set.

func (*OidcUserInfo) HasLocale ¶

func (o *OidcUserInfo) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*OidcUserInfo) HasMiddleName ¶

func (o *OidcUserInfo) HasMiddleName() bool

HasMiddleName returns a boolean if a field has been set.

func (*OidcUserInfo) HasName ¶

func (o *OidcUserInfo) HasName() bool

HasName returns a boolean if a field has been set.

func (*OidcUserInfo) HasNickname ¶

func (o *OidcUserInfo) HasNickname() bool

HasNickname returns a boolean if a field has been set.

func (*OidcUserInfo) HasPhoneNumber ¶

func (o *OidcUserInfo) HasPhoneNumber() bool

HasPhoneNumber returns a boolean if a field has been set.

func (*OidcUserInfo) HasPhoneNumberVerified ¶

func (o *OidcUserInfo) HasPhoneNumberVerified() bool

HasPhoneNumberVerified returns a boolean if a field has been set.

func (*OidcUserInfo) HasPicture ¶

func (o *OidcUserInfo) HasPicture() bool

HasPicture returns a boolean if a field has been set.

func (*OidcUserInfo) HasPreferredUsername ¶

func (o *OidcUserInfo) HasPreferredUsername() bool

HasPreferredUsername returns a boolean if a field has been set.

func (*OidcUserInfo) HasProfile ¶

func (o *OidcUserInfo) HasProfile() bool

HasProfile returns a boolean if a field has been set.

func (*OidcUserInfo) HasSub ¶

func (o *OidcUserInfo) HasSub() bool

HasSub returns a boolean if a field has been set.

func (*OidcUserInfo) HasUpdatedAt ¶

func (o *OidcUserInfo) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*OidcUserInfo) HasWebsite ¶

func (o *OidcUserInfo) HasWebsite() bool

HasWebsite returns a boolean if a field has been set.

func (*OidcUserInfo) HasZoneinfo ¶

func (o *OidcUserInfo) HasZoneinfo() bool

HasZoneinfo returns a boolean if a field has been set.

func (OidcUserInfo) MarshalJSON ¶

func (o OidcUserInfo) MarshalJSON() ([]byte, error)

func (*OidcUserInfo) SetBirthdate ¶

func (o *OidcUserInfo) SetBirthdate(v string)

SetBirthdate gets a reference to the given string and assigns it to the Birthdate field.

func (*OidcUserInfo) SetEmail ¶

func (o *OidcUserInfo) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*OidcUserInfo) SetEmailVerified ¶

func (o *OidcUserInfo) SetEmailVerified(v bool)

SetEmailVerified gets a reference to the given bool and assigns it to the EmailVerified field.

func (*OidcUserInfo) SetFamilyName ¶

func (o *OidcUserInfo) SetFamilyName(v string)

SetFamilyName gets a reference to the given string and assigns it to the FamilyName field.

func (*OidcUserInfo) SetGender ¶

func (o *OidcUserInfo) SetGender(v string)

SetGender gets a reference to the given string and assigns it to the Gender field.

func (*OidcUserInfo) SetGivenName ¶

func (o *OidcUserInfo) SetGivenName(v string)

SetGivenName gets a reference to the given string and assigns it to the GivenName field.

func (*OidcUserInfo) SetLocale ¶

func (o *OidcUserInfo) SetLocale(v string)

SetLocale gets a reference to the given string and assigns it to the Locale field.

func (*OidcUserInfo) SetMiddleName ¶

func (o *OidcUserInfo) SetMiddleName(v string)

SetMiddleName gets a reference to the given string and assigns it to the MiddleName field.

func (*OidcUserInfo) SetName ¶

func (o *OidcUserInfo) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*OidcUserInfo) SetNickname ¶

func (o *OidcUserInfo) SetNickname(v string)

SetNickname gets a reference to the given string and assigns it to the Nickname field.

func (*OidcUserInfo) SetPhoneNumber ¶

func (o *OidcUserInfo) SetPhoneNumber(v string)

SetPhoneNumber gets a reference to the given string and assigns it to the PhoneNumber field.

func (*OidcUserInfo) SetPhoneNumberVerified ¶

func (o *OidcUserInfo) SetPhoneNumberVerified(v bool)

SetPhoneNumberVerified gets a reference to the given bool and assigns it to the PhoneNumberVerified field.

func (*OidcUserInfo) SetPicture ¶

func (o *OidcUserInfo) SetPicture(v string)

SetPicture gets a reference to the given string and assigns it to the Picture field.

func (*OidcUserInfo) SetPreferredUsername ¶

func (o *OidcUserInfo) SetPreferredUsername(v string)

SetPreferredUsername gets a reference to the given string and assigns it to the PreferredUsername field.

func (*OidcUserInfo) SetProfile ¶

func (o *OidcUserInfo) SetProfile(v string)

SetProfile gets a reference to the given string and assigns it to the Profile field.

func (*OidcUserInfo) SetSub ¶

func (o *OidcUserInfo) SetSub(v string)

SetSub gets a reference to the given string and assigns it to the Sub field.

func (*OidcUserInfo) SetUpdatedAt ¶

func (o *OidcUserInfo) SetUpdatedAt(v int64)

SetUpdatedAt gets a reference to the given int64 and assigns it to the UpdatedAt field.

func (*OidcUserInfo) SetWebsite ¶

func (o *OidcUserInfo) SetWebsite(v string)

SetWebsite gets a reference to the given string and assigns it to the Website field.

func (*OidcUserInfo) SetZoneinfo ¶

func (o *OidcUserInfo) SetZoneinfo(v string)

SetZoneinfo gets a reference to the given string and assigns it to the Zoneinfo field.

func (OidcUserInfo) ToMap ¶

func (o OidcUserInfo) ToMap() (map[string]interface{}, error)

func (*OidcUserInfo) UnmarshalJSON ¶

func (o *OidcUserInfo) UnmarshalJSON(bytes []byte) (err error)

type Organization ¶

type Organization struct {
	// The organization's creation date.
	CreatedAt time.Time `json:"created_at"`
	Domains   []string  `json:"domains"`
	// The organization's ID.
	Id string `json:"id"`
	// The organization's human-readable label.
	Label string `json:"label"`
	// The project's ID.
	ProjectId string `json:"project_id"`
	// The last time the organization was updated.
	UpdatedAt            time.Time `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

Organization B2B SSO Organization

func NewOrganization ¶

func NewOrganization(createdAt time.Time, domains []string, id string, label string, projectId string, updatedAt time.Time) *Organization

NewOrganization instantiates a new Organization 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 NewOrganizationWithDefaults ¶

func NewOrganizationWithDefaults() *Organization

NewOrganizationWithDefaults instantiates a new Organization 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 (*Organization) GetCreatedAt ¶

func (o *Organization) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*Organization) GetCreatedAtOk ¶

func (o *Organization) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*Organization) GetDomains ¶

func (o *Organization) GetDomains() []string

GetDomains returns the Domains field value

func (*Organization) GetDomainsOk ¶

func (o *Organization) GetDomainsOk() ([]string, bool)

GetDomainsOk returns a tuple with the Domains field value and a boolean to check if the value has been set.

func (*Organization) GetId ¶

func (o *Organization) GetId() string

GetId returns the Id field value

func (*Organization) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Organization) GetLabel ¶

func (o *Organization) GetLabel() string

GetLabel returns the Label field value

func (*Organization) GetLabelOk ¶

func (o *Organization) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value and a boolean to check if the value has been set.

func (*Organization) GetProjectId ¶

func (o *Organization) GetProjectId() string

GetProjectId returns the ProjectId field value

func (*Organization) GetProjectIdOk ¶

func (o *Organization) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value and a boolean to check if the value has been set.

func (*Organization) GetUpdatedAt ¶

func (o *Organization) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*Organization) GetUpdatedAtOk ¶

func (o *Organization) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (Organization) MarshalJSON ¶

func (o Organization) MarshalJSON() ([]byte, error)

func (*Organization) SetCreatedAt ¶

func (o *Organization) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*Organization) SetDomains ¶

func (o *Organization) SetDomains(v []string)

SetDomains sets field value

func (*Organization) SetId ¶

func (o *Organization) SetId(v string)

SetId sets field value

func (*Organization) SetLabel ¶

func (o *Organization) SetLabel(v string)

SetLabel sets field value

func (*Organization) SetProjectId ¶

func (o *Organization) SetProjectId(v string)

SetProjectId sets field value

func (*Organization) SetUpdatedAt ¶

func (o *Organization) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (Organization) ToMap ¶

func (o Organization) ToMap() (map[string]interface{}, error)

func (*Organization) UnmarshalJSON ¶

func (o *Organization) UnmarshalJSON(bytes []byte) (err error)

type OrganizationBody ¶

type OrganizationBody struct {
	// Domains contains the list of organization's domains.
	Domains []string `json:"domains,omitempty"`
	// Label contains the organization's label.
	Label                *string `json:"label,omitempty"`
	AdditionalProperties map[string]interface{}
}

OrganizationBody Create B2B SSO Organization Request Body

func NewOrganizationBody ¶

func NewOrganizationBody() *OrganizationBody

NewOrganizationBody instantiates a new OrganizationBody 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 NewOrganizationBodyWithDefaults ¶

func NewOrganizationBodyWithDefaults() *OrganizationBody

NewOrganizationBodyWithDefaults instantiates a new OrganizationBody 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 (*OrganizationBody) GetDomains ¶

func (o *OrganizationBody) GetDomains() []string

GetDomains returns the Domains field value if set, zero value otherwise.

func (*OrganizationBody) GetDomainsOk ¶

func (o *OrganizationBody) GetDomainsOk() ([]string, bool)

GetDomainsOk returns a tuple with the Domains field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationBody) GetLabel ¶

func (o *OrganizationBody) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*OrganizationBody) GetLabelOk ¶

func (o *OrganizationBody) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationBody) HasDomains ¶

func (o *OrganizationBody) HasDomains() bool

HasDomains returns a boolean if a field has been set.

func (*OrganizationBody) HasLabel ¶

func (o *OrganizationBody) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (OrganizationBody) MarshalJSON ¶

func (o OrganizationBody) MarshalJSON() ([]byte, error)

func (*OrganizationBody) SetDomains ¶

func (o *OrganizationBody) SetDomains(v []string)

SetDomains gets a reference to the given []string and assigns it to the Domains field.

func (*OrganizationBody) SetLabel ¶

func (o *OrganizationBody) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (OrganizationBody) ToMap ¶

func (o OrganizationBody) ToMap() (map[string]interface{}, error)

func (*OrganizationBody) UnmarshalJSON ¶

func (o *OrganizationBody) UnmarshalJSON(bytes []byte) (err error)

type Pagination ¶

type Pagination struct {
	// Items per page  This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).
	PageSize *int64 `json:"page_size,omitempty"`
	// Next Page Token  The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).
	PageToken            *string `json:"page_token,omitempty"`
	AdditionalProperties map[string]interface{}
}

Pagination struct for Pagination

func NewPagination ¶

func NewPagination() *Pagination

NewPagination instantiates a new Pagination 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 NewPaginationWithDefaults ¶

func NewPaginationWithDefaults() *Pagination

NewPaginationWithDefaults instantiates a new Pagination 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 (*Pagination) GetPageSize ¶

func (o *Pagination) GetPageSize() int64

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*Pagination) GetPageSizeOk ¶

func (o *Pagination) GetPageSizeOk() (*int64, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Pagination) GetPageToken ¶

func (o *Pagination) GetPageToken() string

GetPageToken returns the PageToken field value if set, zero value otherwise.

func (*Pagination) GetPageTokenOk ¶

func (o *Pagination) GetPageTokenOk() (*string, bool)

GetPageTokenOk returns a tuple with the PageToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Pagination) HasPageSize ¶

func (o *Pagination) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*Pagination) HasPageToken ¶

func (o *Pagination) HasPageToken() bool

HasPageToken returns a boolean if a field has been set.

func (Pagination) MarshalJSON ¶

func (o Pagination) MarshalJSON() ([]byte, error)

func (*Pagination) SetPageSize ¶

func (o *Pagination) SetPageSize(v int64)

SetPageSize gets a reference to the given int64 and assigns it to the PageSize field.

func (*Pagination) SetPageToken ¶

func (o *Pagination) SetPageToken(v string)

SetPageToken gets a reference to the given string and assigns it to the PageToken field.

func (Pagination) ToMap ¶

func (o Pagination) ToMap() (map[string]interface{}, error)

func (*Pagination) UnmarshalJSON ¶

func (o *Pagination) UnmarshalJSON(bytes []byte) (err error)

type PaginationHeaders ¶

type PaginationHeaders struct {
	// The link header contains pagination links.  For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).  in: header
	Link *string `json:"link,omitempty"`
	// The total number of clients.  in: header
	XTotalCount          *string `json:"x-total-count,omitempty"`
	AdditionalProperties map[string]interface{}
}

PaginationHeaders struct for PaginationHeaders

func NewPaginationHeaders ¶

func NewPaginationHeaders() *PaginationHeaders

NewPaginationHeaders instantiates a new PaginationHeaders 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 NewPaginationHeadersWithDefaults ¶

func NewPaginationHeadersWithDefaults() *PaginationHeaders

NewPaginationHeadersWithDefaults instantiates a new PaginationHeaders 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 *PaginationHeaders) GetLink() string

GetLink returns the Link field value if set, zero value otherwise.

func (*PaginationHeaders) GetLinkOk ¶

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

GetLinkOk returns a tuple with the Link field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationHeaders) GetXTotalCount ¶

func (o *PaginationHeaders) GetXTotalCount() string

GetXTotalCount returns the XTotalCount field value if set, zero value otherwise.

func (*PaginationHeaders) GetXTotalCountOk ¶

func (o *PaginationHeaders) GetXTotalCountOk() (*string, bool)

GetXTotalCountOk returns a tuple with the XTotalCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *PaginationHeaders) HasLink() bool

HasLink returns a boolean if a field has been set.

func (*PaginationHeaders) HasXTotalCount ¶

func (o *PaginationHeaders) HasXTotalCount() bool

HasXTotalCount returns a boolean if a field has been set.

func (PaginationHeaders) MarshalJSON ¶

func (o PaginationHeaders) MarshalJSON() ([]byte, error)
func (o *PaginationHeaders) SetLink(v string)

SetLink gets a reference to the given string and assigns it to the Link field.

func (*PaginationHeaders) SetXTotalCount ¶

func (o *PaginationHeaders) SetXTotalCount(v string)

SetXTotalCount gets a reference to the given string and assigns it to the XTotalCount field.

func (PaginationHeaders) ToMap ¶

func (o PaginationHeaders) ToMap() (map[string]interface{}, error)

func (*PaginationHeaders) UnmarshalJSON ¶

func (o *PaginationHeaders) UnmarshalJSON(bytes []byte) (err error)

type ParseError ¶

type ParseError struct {
	End                  *SourcePosition `json:"end,omitempty"`
	Message              *string         `json:"message,omitempty"`
	Start                *SourcePosition `json:"start,omitempty"`
	AdditionalProperties map[string]interface{}
}

ParseError struct for ParseError

func NewParseError ¶

func NewParseError() *ParseError

NewParseError instantiates a new ParseError 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 NewParseErrorWithDefaults ¶

func NewParseErrorWithDefaults() *ParseError

NewParseErrorWithDefaults instantiates a new ParseError 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 (*ParseError) GetEnd ¶

func (o *ParseError) GetEnd() SourcePosition

GetEnd returns the End field value if set, zero value otherwise.

func (*ParseError) GetEndOk ¶

func (o *ParseError) GetEndOk() (*SourcePosition, bool)

GetEndOk returns a tuple with the End field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ParseError) GetMessage ¶

func (o *ParseError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ParseError) GetMessageOk ¶

func (o *ParseError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ParseError) GetStart ¶

func (o *ParseError) GetStart() SourcePosition

GetStart returns the Start field value if set, zero value otherwise.

func (*ParseError) GetStartOk ¶

func (o *ParseError) GetStartOk() (*SourcePosition, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ParseError) HasEnd ¶

func (o *ParseError) HasEnd() bool

HasEnd returns a boolean if a field has been set.

func (*ParseError) HasMessage ¶

func (o *ParseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ParseError) HasStart ¶

func (o *ParseError) HasStart() bool

HasStart returns a boolean if a field has been set.

func (ParseError) MarshalJSON ¶

func (o ParseError) MarshalJSON() ([]byte, error)

func (*ParseError) SetEnd ¶

func (o *ParseError) SetEnd(v SourcePosition)

SetEnd gets a reference to the given SourcePosition and assigns it to the End field.

func (*ParseError) SetMessage ¶

func (o *ParseError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ParseError) SetStart ¶

func (o *ParseError) SetStart(v SourcePosition)

SetStart gets a reference to the given SourcePosition and assigns it to the Start field.

func (ParseError) ToMap ¶

func (o ParseError) ToMap() (map[string]interface{}, error)

func (*ParseError) UnmarshalJSON ¶

func (o *ParseError) UnmarshalJSON(bytes []byte) (err error)

type PatchIdentitiesBody ¶

type PatchIdentitiesBody struct {
	// Identities holds the list of patches to apply  required
	Identities           []IdentityPatch `json:"identities,omitempty"`
	AdditionalProperties map[string]interface{}
}

PatchIdentitiesBody Patch Identities Body

func NewPatchIdentitiesBody ¶

func NewPatchIdentitiesBody() *PatchIdentitiesBody

NewPatchIdentitiesBody instantiates a new PatchIdentitiesBody 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 NewPatchIdentitiesBodyWithDefaults ¶

func NewPatchIdentitiesBodyWithDefaults() *PatchIdentitiesBody

NewPatchIdentitiesBodyWithDefaults instantiates a new PatchIdentitiesBody 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 (*PatchIdentitiesBody) GetIdentities ¶

func (o *PatchIdentitiesBody) GetIdentities() []IdentityPatch

GetIdentities returns the Identities field value if set, zero value otherwise.

func (*PatchIdentitiesBody) GetIdentitiesOk ¶

func (o *PatchIdentitiesBody) GetIdentitiesOk() ([]IdentityPatch, bool)

GetIdentitiesOk returns a tuple with the Identities field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PatchIdentitiesBody) HasIdentities ¶

func (o *PatchIdentitiesBody) HasIdentities() bool

HasIdentities returns a boolean if a field has been set.

func (PatchIdentitiesBody) MarshalJSON ¶

func (o PatchIdentitiesBody) MarshalJSON() ([]byte, error)

func (*PatchIdentitiesBody) SetIdentities ¶

func (o *PatchIdentitiesBody) SetIdentities(v []IdentityPatch)

SetIdentities gets a reference to the given []IdentityPatch and assigns it to the Identities field.

func (PatchIdentitiesBody) ToMap ¶

func (o PatchIdentitiesBody) ToMap() (map[string]interface{}, error)

func (*PatchIdentitiesBody) UnmarshalJSON ¶

func (o *PatchIdentitiesBody) UnmarshalJSON(bytes []byte) (err error)

type PerformNativeLogoutBody ¶

type PerformNativeLogoutBody struct {
	// The Session Token  Invalidate this session token.
	SessionToken         string `json:"session_token"`
	AdditionalProperties map[string]interface{}
}

PerformNativeLogoutBody Perform Native Logout Request Body

func NewPerformNativeLogoutBody ¶

func NewPerformNativeLogoutBody(sessionToken string) *PerformNativeLogoutBody

NewPerformNativeLogoutBody instantiates a new PerformNativeLogoutBody 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 NewPerformNativeLogoutBodyWithDefaults ¶

func NewPerformNativeLogoutBodyWithDefaults() *PerformNativeLogoutBody

NewPerformNativeLogoutBodyWithDefaults instantiates a new PerformNativeLogoutBody 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 (*PerformNativeLogoutBody) GetSessionToken ¶

func (o *PerformNativeLogoutBody) GetSessionToken() string

GetSessionToken returns the SessionToken field value

func (*PerformNativeLogoutBody) GetSessionTokenOk ¶

func (o *PerformNativeLogoutBody) GetSessionTokenOk() (*string, bool)

GetSessionTokenOk returns a tuple with the SessionToken field value and a boolean to check if the value has been set.

func (PerformNativeLogoutBody) MarshalJSON ¶

func (o PerformNativeLogoutBody) MarshalJSON() ([]byte, error)

func (*PerformNativeLogoutBody) SetSessionToken ¶

func (o *PerformNativeLogoutBody) SetSessionToken(v string)

SetSessionToken sets field value

func (PerformNativeLogoutBody) ToMap ¶

func (o PerformNativeLogoutBody) ToMap() (map[string]interface{}, error)

func (*PerformNativeLogoutBody) UnmarshalJSON ¶

func (o *PerformNativeLogoutBody) UnmarshalJSON(bytes []byte) (err error)

type PermissionAPI ¶

type PermissionAPI interface {

	/*
		CheckPermission Check a permission

		To learn how relationship tuples and the check works, head over to [the documentation](https://www.ory.sh/docs/keto/concepts/api-overview).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return PermissionAPICheckPermissionRequest
	*/
	CheckPermission(ctx context.Context) PermissionAPICheckPermissionRequest

	// CheckPermissionExecute executes the request
	//  @return CheckPermissionResult
	CheckPermissionExecute(r PermissionAPICheckPermissionRequest) (*CheckPermissionResult, *http.Response, error)

	/*
		CheckPermissionOrError Check a permission

		To learn how relationship tuples and the check works, head over to [the documentation](https://www.ory.sh/docs/keto/concepts/api-overview).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return PermissionAPICheckPermissionOrErrorRequest
	*/
	CheckPermissionOrError(ctx context.Context) PermissionAPICheckPermissionOrErrorRequest

	// CheckPermissionOrErrorExecute executes the request
	//  @return CheckPermissionResult
	CheckPermissionOrErrorExecute(r PermissionAPICheckPermissionOrErrorRequest) (*CheckPermissionResult, *http.Response, error)

	/*
		ExpandPermissions Expand a Relationship into permissions.

		Use this endpoint to expand a relationship tuple into permissions.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return PermissionAPIExpandPermissionsRequest
	*/
	ExpandPermissions(ctx context.Context) PermissionAPIExpandPermissionsRequest

	// ExpandPermissionsExecute executes the request
	//  @return ExpandedPermissionTree
	ExpandPermissionsExecute(r PermissionAPIExpandPermissionsRequest) (*ExpandedPermissionTree, *http.Response, error)

	/*
		PostCheckPermission Check a permission

		To learn how relationship tuples and the check works, head over to [the documentation](https://www.ory.sh/docs/keto/concepts/api-overview).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return PermissionAPIPostCheckPermissionRequest
	*/
	PostCheckPermission(ctx context.Context) PermissionAPIPostCheckPermissionRequest

	// PostCheckPermissionExecute executes the request
	//  @return CheckPermissionResult
	PostCheckPermissionExecute(r PermissionAPIPostCheckPermissionRequest) (*CheckPermissionResult, *http.Response, error)

	/*
		PostCheckPermissionOrError Check a permission

		To learn how relationship tuples and the check works, head over to [the documentation](https://www.ory.sh/docs/keto/concepts/api-overview).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return PermissionAPIPostCheckPermissionOrErrorRequest
	*/
	PostCheckPermissionOrError(ctx context.Context) PermissionAPIPostCheckPermissionOrErrorRequest

	// PostCheckPermissionOrErrorExecute executes the request
	//  @return CheckPermissionResult
	PostCheckPermissionOrErrorExecute(r PermissionAPIPostCheckPermissionOrErrorRequest) (*CheckPermissionResult, *http.Response, error)
}

type PermissionAPICheckPermissionOrErrorRequest ¶

type PermissionAPICheckPermissionOrErrorRequest struct {
	ApiService PermissionAPI
	// contains filtered or unexported fields
}

func (PermissionAPICheckPermissionOrErrorRequest) Execute ¶

func (PermissionAPICheckPermissionOrErrorRequest) MaxDepth ¶

func (PermissionAPICheckPermissionOrErrorRequest) Namespace ¶

Namespace of the Relationship

func (PermissionAPICheckPermissionOrErrorRequest) Object ¶

Object of the Relationship

func (PermissionAPICheckPermissionOrErrorRequest) Relation ¶

Relation of the Relationship

func (PermissionAPICheckPermissionOrErrorRequest) SubjectId ¶

SubjectID of the Relationship

func (PermissionAPICheckPermissionOrErrorRequest) SubjectSetNamespace ¶

Namespace of the Subject Set

func (PermissionAPICheckPermissionOrErrorRequest) SubjectSetObject ¶

Object of the Subject Set

func (PermissionAPICheckPermissionOrErrorRequest) SubjectSetRelation ¶

Relation of the Subject Set

type PermissionAPICheckPermissionRequest ¶

type PermissionAPICheckPermissionRequest struct {
	ApiService PermissionAPI
	// contains filtered or unexported fields
}

func (PermissionAPICheckPermissionRequest) Execute ¶

func (PermissionAPICheckPermissionRequest) MaxDepth ¶

func (PermissionAPICheckPermissionRequest) Namespace ¶

Namespace of the Relationship

func (PermissionAPICheckPermissionRequest) Object ¶

Object of the Relationship

func (PermissionAPICheckPermissionRequest) Relation ¶

Relation of the Relationship

func (PermissionAPICheckPermissionRequest) SubjectId ¶

SubjectID of the Relationship

func (PermissionAPICheckPermissionRequest) SubjectSetNamespace ¶

func (r PermissionAPICheckPermissionRequest) SubjectSetNamespace(subjectSetNamespace string) PermissionAPICheckPermissionRequest

Namespace of the Subject Set

func (PermissionAPICheckPermissionRequest) SubjectSetObject ¶

Object of the Subject Set

func (PermissionAPICheckPermissionRequest) SubjectSetRelation ¶

func (r PermissionAPICheckPermissionRequest) SubjectSetRelation(subjectSetRelation string) PermissionAPICheckPermissionRequest

Relation of the Subject Set

type PermissionAPIExpandPermissionsRequest ¶

type PermissionAPIExpandPermissionsRequest struct {
	ApiService PermissionAPI
	// contains filtered or unexported fields
}

func (PermissionAPIExpandPermissionsRequest) Execute ¶

func (PermissionAPIExpandPermissionsRequest) MaxDepth ¶

func (PermissionAPIExpandPermissionsRequest) Namespace ¶

Namespace of the Subject Set

func (PermissionAPIExpandPermissionsRequest) Object ¶

Object of the Subject Set

func (PermissionAPIExpandPermissionsRequest) Relation ¶

Relation of the Subject Set

type PermissionAPIPostCheckPermissionOrErrorRequest ¶

type PermissionAPIPostCheckPermissionOrErrorRequest struct {
	ApiService PermissionAPI
	// contains filtered or unexported fields
}

func (PermissionAPIPostCheckPermissionOrErrorRequest) Execute ¶

func (PermissionAPIPostCheckPermissionOrErrorRequest) MaxDepth ¶

nolint:deadcode,unused

func (PermissionAPIPostCheckPermissionOrErrorRequest) PostCheckPermissionOrErrorBody ¶

type PermissionAPIPostCheckPermissionRequest ¶

type PermissionAPIPostCheckPermissionRequest struct {
	ApiService PermissionAPI
	// contains filtered or unexported fields
}

func (PermissionAPIPostCheckPermissionRequest) Execute ¶

func (PermissionAPIPostCheckPermissionRequest) MaxDepth ¶

func (PermissionAPIPostCheckPermissionRequest) PostCheckPermissionBody ¶

type PermissionAPIService ¶

type PermissionAPIService service

PermissionAPIService PermissionAPI service

func (*PermissionAPIService) CheckPermission ¶

CheckPermission Check a permission

To learn how relationship tuples and the check works, head over to [the documentation](https://www.ory.sh/docs/keto/concepts/api-overview).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionAPICheckPermissionRequest

func (*PermissionAPIService) CheckPermissionExecute ¶

Execute executes the request

@return CheckPermissionResult

func (*PermissionAPIService) CheckPermissionOrError ¶

CheckPermissionOrError Check a permission

To learn how relationship tuples and the check works, head over to [the documentation](https://www.ory.sh/docs/keto/concepts/api-overview).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionAPICheckPermissionOrErrorRequest

func (*PermissionAPIService) CheckPermissionOrErrorExecute ¶

Execute executes the request

@return CheckPermissionResult

func (*PermissionAPIService) ExpandPermissions ¶

ExpandPermissions Expand a Relationship into permissions.

Use this endpoint to expand a relationship tuple into permissions.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionAPIExpandPermissionsRequest

func (*PermissionAPIService) ExpandPermissionsExecute ¶

Execute executes the request

@return ExpandedPermissionTree

func (*PermissionAPIService) PostCheckPermission ¶

PostCheckPermission Check a permission

To learn how relationship tuples and the check works, head over to [the documentation](https://www.ory.sh/docs/keto/concepts/api-overview).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionAPIPostCheckPermissionRequest

func (*PermissionAPIService) PostCheckPermissionExecute ¶

Execute executes the request

@return CheckPermissionResult

func (*PermissionAPIService) PostCheckPermissionOrError ¶

PostCheckPermissionOrError Check a permission

To learn how relationship tuples and the check works, head over to [the documentation](https://www.ory.sh/docs/keto/concepts/api-overview).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionAPIPostCheckPermissionOrErrorRequest

func (*PermissionAPIService) PostCheckPermissionOrErrorExecute ¶

Execute executes the request

@return CheckPermissionResult

type Plan ¶

type Plan struct {
	// Name is the name of the plan.
	Name string `json:"name"`
	// Version is the version of the plan. The combination of `name@version` must be unique.
	Version              int64 `json:"version"`
	AdditionalProperties map[string]interface{}
}

Plan struct for Plan

func NewPlan ¶

func NewPlan(name string, version int64) *Plan

NewPlan instantiates a new Plan 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 NewPlanWithDefaults ¶

func NewPlanWithDefaults() *Plan

NewPlanWithDefaults instantiates a new Plan 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 (*Plan) GetName ¶

func (o *Plan) GetName() string

GetName returns the Name field value

func (*Plan) GetNameOk ¶

func (o *Plan) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Plan) GetVersion ¶

func (o *Plan) GetVersion() int64

GetVersion returns the Version field value

func (*Plan) GetVersionOk ¶

func (o *Plan) GetVersionOk() (*int64, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set.

func (Plan) MarshalJSON ¶

func (o Plan) MarshalJSON() ([]byte, error)

func (*Plan) SetName ¶

func (o *Plan) SetName(v string)

SetName sets field value

func (*Plan) SetVersion ¶

func (o *Plan) SetVersion(v int64)

SetVersion sets field value

func (Plan) ToMap ¶

func (o Plan) ToMap() (map[string]interface{}, error)

func (*Plan) UnmarshalJSON ¶

func (o *Plan) UnmarshalJSON(bytes []byte) (err error)

type PlanDetails ¶

type PlanDetails struct {
	// BaseFeeMonthly is the monthly base fee for the plan.
	BaseFeeMonthly int64 `json:"base_fee_monthly"`
	// BaseFeeYearly is the yearly base fee for the plan.
	BaseFeeYearly int64 `json:"base_fee_yearly"`
	// Custom is true if the plan is custom. This means it will be hidden from the pricing page.
	Custom bool `json:"custom"`
	// Description is the description of the plan.
	Description string `json:"description"`
	// Features are the feature definitions included in the plan.
	Features map[string]GenericUsage `json:"features"`
	// Name is the name of the plan.
	Name string `json:"name"`
	// Version is the version of the plan. The combination of `name@version` must be unique.
	Version              int64 `json:"version"`
	AdditionalProperties map[string]interface{}
}

PlanDetails struct for PlanDetails

func NewPlanDetails ¶

func NewPlanDetails(baseFeeMonthly int64, baseFeeYearly int64, custom bool, description string, features map[string]GenericUsage, name string, version int64) *PlanDetails

NewPlanDetails instantiates a new PlanDetails 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 NewPlanDetailsWithDefaults ¶

func NewPlanDetailsWithDefaults() *PlanDetails

NewPlanDetailsWithDefaults instantiates a new PlanDetails 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 (*PlanDetails) GetBaseFeeMonthly ¶

func (o *PlanDetails) GetBaseFeeMonthly() int64

GetBaseFeeMonthly returns the BaseFeeMonthly field value

func (*PlanDetails) GetBaseFeeMonthlyOk ¶

func (o *PlanDetails) GetBaseFeeMonthlyOk() (*int64, bool)

GetBaseFeeMonthlyOk returns a tuple with the BaseFeeMonthly field value and a boolean to check if the value has been set.

func (*PlanDetails) GetBaseFeeYearly ¶

func (o *PlanDetails) GetBaseFeeYearly() int64

GetBaseFeeYearly returns the BaseFeeYearly field value

func (*PlanDetails) GetBaseFeeYearlyOk ¶

func (o *PlanDetails) GetBaseFeeYearlyOk() (*int64, bool)

GetBaseFeeYearlyOk returns a tuple with the BaseFeeYearly field value and a boolean to check if the value has been set.

func (*PlanDetails) GetCustom ¶

func (o *PlanDetails) GetCustom() bool

GetCustom returns the Custom field value

func (*PlanDetails) GetCustomOk ¶

func (o *PlanDetails) GetCustomOk() (*bool, bool)

GetCustomOk returns a tuple with the Custom field value and a boolean to check if the value has been set.

func (*PlanDetails) GetDescription ¶

func (o *PlanDetails) GetDescription() string

GetDescription returns the Description field value

func (*PlanDetails) GetDescriptionOk ¶

func (o *PlanDetails) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*PlanDetails) GetFeatures ¶

func (o *PlanDetails) GetFeatures() map[string]GenericUsage

GetFeatures returns the Features field value

func (*PlanDetails) GetFeaturesOk ¶

func (o *PlanDetails) GetFeaturesOk() (*map[string]GenericUsage, bool)

GetFeaturesOk returns a tuple with the Features field value and a boolean to check if the value has been set.

func (*PlanDetails) GetName ¶

func (o *PlanDetails) GetName() string

GetName returns the Name field value

func (*PlanDetails) GetNameOk ¶

func (o *PlanDetails) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*PlanDetails) GetVersion ¶

func (o *PlanDetails) GetVersion() int64

GetVersion returns the Version field value

func (*PlanDetails) GetVersionOk ¶

func (o *PlanDetails) GetVersionOk() (*int64, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set.

func (PlanDetails) MarshalJSON ¶

func (o PlanDetails) MarshalJSON() ([]byte, error)

func (*PlanDetails) SetBaseFeeMonthly ¶

func (o *PlanDetails) SetBaseFeeMonthly(v int64)

SetBaseFeeMonthly sets field value

func (*PlanDetails) SetBaseFeeYearly ¶

func (o *PlanDetails) SetBaseFeeYearly(v int64)

SetBaseFeeYearly sets field value

func (*PlanDetails) SetCustom ¶

func (o *PlanDetails) SetCustom(v bool)

SetCustom sets field value

func (*PlanDetails) SetDescription ¶

func (o *PlanDetails) SetDescription(v string)

SetDescription sets field value

func (*PlanDetails) SetFeatures ¶

func (o *PlanDetails) SetFeatures(v map[string]GenericUsage)

SetFeatures sets field value

func (*PlanDetails) SetName ¶

func (o *PlanDetails) SetName(v string)

SetName sets field value

func (*PlanDetails) SetVersion ¶

func (o *PlanDetails) SetVersion(v int64)

SetVersion sets field value

func (PlanDetails) ToMap ¶

func (o PlanDetails) ToMap() (map[string]interface{}, error)

func (*PlanDetails) UnmarshalJSON ¶

func (o *PlanDetails) UnmarshalJSON(bytes []byte) (err error)

type PostCheckPermissionBody ¶

type PostCheckPermissionBody struct {
	// Namespace to query
	Namespace *string `json:"namespace,omitempty"`
	// Object to query
	Object *string `json:"object,omitempty"`
	// Relation to query
	Relation *string `json:"relation,omitempty"`
	// SubjectID to query  Either SubjectSet or SubjectID can be provided.
	SubjectId            *string     `json:"subject_id,omitempty"`
	SubjectSet           *SubjectSet `json:"subject_set,omitempty"`
	AdditionalProperties map[string]interface{}
}

PostCheckPermissionBody Check Permission using Post Request Body

func NewPostCheckPermissionBody ¶

func NewPostCheckPermissionBody() *PostCheckPermissionBody

NewPostCheckPermissionBody instantiates a new PostCheckPermissionBody 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 NewPostCheckPermissionBodyWithDefaults ¶

func NewPostCheckPermissionBodyWithDefaults() *PostCheckPermissionBody

NewPostCheckPermissionBodyWithDefaults instantiates a new PostCheckPermissionBody 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 (*PostCheckPermissionBody) GetNamespace ¶

func (o *PostCheckPermissionBody) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*PostCheckPermissionBody) GetNamespaceOk ¶

func (o *PostCheckPermissionBody) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCheckPermissionBody) GetObject ¶

func (o *PostCheckPermissionBody) GetObject() string

GetObject returns the Object field value if set, zero value otherwise.

func (*PostCheckPermissionBody) GetObjectOk ¶

func (o *PostCheckPermissionBody) GetObjectOk() (*string, bool)

GetObjectOk returns a tuple with the Object field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCheckPermissionBody) GetRelation ¶

func (o *PostCheckPermissionBody) GetRelation() string

GetRelation returns the Relation field value if set, zero value otherwise.

func (*PostCheckPermissionBody) GetRelationOk ¶

func (o *PostCheckPermissionBody) GetRelationOk() (*string, bool)

GetRelationOk returns a tuple with the Relation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCheckPermissionBody) GetSubjectId ¶

func (o *PostCheckPermissionBody) GetSubjectId() string

GetSubjectId returns the SubjectId field value if set, zero value otherwise.

func (*PostCheckPermissionBody) GetSubjectIdOk ¶

func (o *PostCheckPermissionBody) GetSubjectIdOk() (*string, bool)

GetSubjectIdOk returns a tuple with the SubjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCheckPermissionBody) GetSubjectSet ¶

func (o *PostCheckPermissionBody) GetSubjectSet() SubjectSet

GetSubjectSet returns the SubjectSet field value if set, zero value otherwise.

func (*PostCheckPermissionBody) GetSubjectSetOk ¶

func (o *PostCheckPermissionBody) GetSubjectSetOk() (*SubjectSet, bool)

GetSubjectSetOk returns a tuple with the SubjectSet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCheckPermissionBody) HasNamespace ¶

func (o *PostCheckPermissionBody) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*PostCheckPermissionBody) HasObject ¶

func (o *PostCheckPermissionBody) HasObject() bool

HasObject returns a boolean if a field has been set.

func (*PostCheckPermissionBody) HasRelation ¶

func (o *PostCheckPermissionBody) HasRelation() bool

HasRelation returns a boolean if a field has been set.

func (*PostCheckPermissionBody) HasSubjectId ¶

func (o *PostCheckPermissionBody) HasSubjectId() bool

HasSubjectId returns a boolean if a field has been set.

func (*PostCheckPermissionBody) HasSubjectSet ¶

func (o *PostCheckPermissionBody) HasSubjectSet() bool

HasSubjectSet returns a boolean if a field has been set.

func (PostCheckPermissionBody) MarshalJSON ¶

func (o PostCheckPermissionBody) MarshalJSON() ([]byte, error)

func (*PostCheckPermissionBody) SetNamespace ¶

func (o *PostCheckPermissionBody) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*PostCheckPermissionBody) SetObject ¶

func (o *PostCheckPermissionBody) SetObject(v string)

SetObject gets a reference to the given string and assigns it to the Object field.

func (*PostCheckPermissionBody) SetRelation ¶

func (o *PostCheckPermissionBody) SetRelation(v string)

SetRelation gets a reference to the given string and assigns it to the Relation field.

func (*PostCheckPermissionBody) SetSubjectId ¶

func (o *PostCheckPermissionBody) SetSubjectId(v string)

SetSubjectId gets a reference to the given string and assigns it to the SubjectId field.

func (*PostCheckPermissionBody) SetSubjectSet ¶

func (o *PostCheckPermissionBody) SetSubjectSet(v SubjectSet)

SetSubjectSet gets a reference to the given SubjectSet and assigns it to the SubjectSet field.

func (PostCheckPermissionBody) ToMap ¶

func (o PostCheckPermissionBody) ToMap() (map[string]interface{}, error)

func (*PostCheckPermissionBody) UnmarshalJSON ¶

func (o *PostCheckPermissionBody) UnmarshalJSON(bytes []byte) (err error)

type PostCheckPermissionOrErrorBody ¶

type PostCheckPermissionOrErrorBody struct {
	// Namespace to query
	Namespace *string `json:"namespace,omitempty"`
	// Object to query
	Object *string `json:"object,omitempty"`
	// Relation to query
	Relation *string `json:"relation,omitempty"`
	// SubjectID to query  Either SubjectSet or SubjectID can be provided.
	SubjectId            *string     `json:"subject_id,omitempty"`
	SubjectSet           *SubjectSet `json:"subject_set,omitempty"`
	AdditionalProperties map[string]interface{}
}

PostCheckPermissionOrErrorBody Post Check Permission Or Error Body

func NewPostCheckPermissionOrErrorBody ¶

func NewPostCheckPermissionOrErrorBody() *PostCheckPermissionOrErrorBody

NewPostCheckPermissionOrErrorBody instantiates a new PostCheckPermissionOrErrorBody 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 NewPostCheckPermissionOrErrorBodyWithDefaults ¶

func NewPostCheckPermissionOrErrorBodyWithDefaults() *PostCheckPermissionOrErrorBody

NewPostCheckPermissionOrErrorBodyWithDefaults instantiates a new PostCheckPermissionOrErrorBody 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 (*PostCheckPermissionOrErrorBody) GetNamespace ¶

func (o *PostCheckPermissionOrErrorBody) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*PostCheckPermissionOrErrorBody) GetNamespaceOk ¶

func (o *PostCheckPermissionOrErrorBody) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCheckPermissionOrErrorBody) GetObject ¶

func (o *PostCheckPermissionOrErrorBody) GetObject() string

GetObject returns the Object field value if set, zero value otherwise.

func (*PostCheckPermissionOrErrorBody) GetObjectOk ¶

func (o *PostCheckPermissionOrErrorBody) GetObjectOk() (*string, bool)

GetObjectOk returns a tuple with the Object field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCheckPermissionOrErrorBody) GetRelation ¶

func (o *PostCheckPermissionOrErrorBody) GetRelation() string

GetRelation returns the Relation field value if set, zero value otherwise.

func (*PostCheckPermissionOrErrorBody) GetRelationOk ¶

func (o *PostCheckPermissionOrErrorBody) GetRelationOk() (*string, bool)

GetRelationOk returns a tuple with the Relation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCheckPermissionOrErrorBody) GetSubjectId ¶

func (o *PostCheckPermissionOrErrorBody) GetSubjectId() string

GetSubjectId returns the SubjectId field value if set, zero value otherwise.

func (*PostCheckPermissionOrErrorBody) GetSubjectIdOk ¶

func (o *PostCheckPermissionOrErrorBody) GetSubjectIdOk() (*string, bool)

GetSubjectIdOk returns a tuple with the SubjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCheckPermissionOrErrorBody) GetSubjectSet ¶

func (o *PostCheckPermissionOrErrorBody) GetSubjectSet() SubjectSet

GetSubjectSet returns the SubjectSet field value if set, zero value otherwise.

func (*PostCheckPermissionOrErrorBody) GetSubjectSetOk ¶

func (o *PostCheckPermissionOrErrorBody) GetSubjectSetOk() (*SubjectSet, bool)

GetSubjectSetOk returns a tuple with the SubjectSet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostCheckPermissionOrErrorBody) HasNamespace ¶

func (o *PostCheckPermissionOrErrorBody) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*PostCheckPermissionOrErrorBody) HasObject ¶

func (o *PostCheckPermissionOrErrorBody) HasObject() bool

HasObject returns a boolean if a field has been set.

func (*PostCheckPermissionOrErrorBody) HasRelation ¶

func (o *PostCheckPermissionOrErrorBody) HasRelation() bool

HasRelation returns a boolean if a field has been set.

func (*PostCheckPermissionOrErrorBody) HasSubjectId ¶

func (o *PostCheckPermissionOrErrorBody) HasSubjectId() bool

HasSubjectId returns a boolean if a field has been set.

func (*PostCheckPermissionOrErrorBody) HasSubjectSet ¶

func (o *PostCheckPermissionOrErrorBody) HasSubjectSet() bool

HasSubjectSet returns a boolean if a field has been set.

func (PostCheckPermissionOrErrorBody) MarshalJSON ¶

func (o PostCheckPermissionOrErrorBody) MarshalJSON() ([]byte, error)

func (*PostCheckPermissionOrErrorBody) SetNamespace ¶

func (o *PostCheckPermissionOrErrorBody) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*PostCheckPermissionOrErrorBody) SetObject ¶

func (o *PostCheckPermissionOrErrorBody) SetObject(v string)

SetObject gets a reference to the given string and assigns it to the Object field.

func (*PostCheckPermissionOrErrorBody) SetRelation ¶

func (o *PostCheckPermissionOrErrorBody) SetRelation(v string)

SetRelation gets a reference to the given string and assigns it to the Relation field.

func (*PostCheckPermissionOrErrorBody) SetSubjectId ¶

func (o *PostCheckPermissionOrErrorBody) SetSubjectId(v string)

SetSubjectId gets a reference to the given string and assigns it to the SubjectId field.

func (*PostCheckPermissionOrErrorBody) SetSubjectSet ¶

func (o *PostCheckPermissionOrErrorBody) SetSubjectSet(v SubjectSet)

SetSubjectSet gets a reference to the given SubjectSet and assigns it to the SubjectSet field.

func (PostCheckPermissionOrErrorBody) ToMap ¶

func (o PostCheckPermissionOrErrorBody) ToMap() (map[string]interface{}, error)

func (*PostCheckPermissionOrErrorBody) UnmarshalJSON ¶

func (o *PostCheckPermissionOrErrorBody) UnmarshalJSON(bytes []byte) (err error)

type Project ¶

type Project struct {
	CorsAdmin  *ProjectCors `json:"cors_admin,omitempty"`
	CorsPublic *ProjectCors `json:"cors_public,omitempty"`
	// The project's ID.
	Id string `json:"id"`
	// The name of the project.
	Name string `json:"name"`
	// The configuration revision ID.
	RevisionId string          `json:"revision_id"`
	Services   ProjectServices `json:"services"`
	// The project's slug
	Slug string `json:"slug"`
	// The state of the project. running Running halted Halted deleted Deleted
	State                string         `json:"state"`
	WorkspaceId          NullableString `json:"workspace_id,omitempty"`
	AdditionalProperties map[string]interface{}
}

Project struct for Project

func NewProject ¶

func NewProject(id string, name string, revisionId string, services ProjectServices, slug string, state string) *Project

NewProject instantiates a new Project 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 NewProjectWithDefaults ¶

func NewProjectWithDefaults() *Project

NewProjectWithDefaults instantiates a new Project 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 (*Project) GetCorsAdmin ¶

func (o *Project) GetCorsAdmin() ProjectCors

GetCorsAdmin returns the CorsAdmin field value if set, zero value otherwise.

func (*Project) GetCorsAdminOk ¶

func (o *Project) GetCorsAdminOk() (*ProjectCors, bool)

GetCorsAdminOk returns a tuple with the CorsAdmin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Project) GetCorsPublic ¶

func (o *Project) GetCorsPublic() ProjectCors

GetCorsPublic returns the CorsPublic field value if set, zero value otherwise.

func (*Project) GetCorsPublicOk ¶

func (o *Project) GetCorsPublicOk() (*ProjectCors, bool)

GetCorsPublicOk returns a tuple with the CorsPublic field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Project) GetId ¶

func (o *Project) GetId() string

GetId returns the Id field value

func (*Project) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Project) GetName ¶

func (o *Project) GetName() string

GetName returns the Name field value

func (*Project) GetNameOk ¶

func (o *Project) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Project) GetRevisionId ¶

func (o *Project) GetRevisionId() string

GetRevisionId returns the RevisionId field value

func (*Project) GetRevisionIdOk ¶

func (o *Project) GetRevisionIdOk() (*string, bool)

GetRevisionIdOk returns a tuple with the RevisionId field value and a boolean to check if the value has been set.

func (*Project) GetServices ¶

func (o *Project) GetServices() ProjectServices

GetServices returns the Services field value

func (*Project) GetServicesOk ¶

func (o *Project) GetServicesOk() (*ProjectServices, bool)

GetServicesOk returns a tuple with the Services field value and a boolean to check if the value has been set.

func (*Project) GetSlug ¶

func (o *Project) GetSlug() string

GetSlug returns the Slug field value

func (*Project) GetSlugOk ¶

func (o *Project) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value and a boolean to check if the value has been set.

func (*Project) GetState ¶

func (o *Project) GetState() string

GetState returns the State field value

func (*Project) GetStateOk ¶

func (o *Project) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*Project) GetWorkspaceId ¶

func (o *Project) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Project) GetWorkspaceIdOk ¶

func (o *Project) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Project) HasCorsAdmin ¶

func (o *Project) HasCorsAdmin() bool

HasCorsAdmin returns a boolean if a field has been set.

func (*Project) HasCorsPublic ¶

func (o *Project) HasCorsPublic() bool

HasCorsPublic returns a boolean if a field has been set.

func (*Project) HasWorkspaceId ¶

func (o *Project) HasWorkspaceId() bool

HasWorkspaceId returns a boolean if a field has been set.

func (Project) MarshalJSON ¶

func (o Project) MarshalJSON() ([]byte, error)

func (*Project) SetCorsAdmin ¶

func (o *Project) SetCorsAdmin(v ProjectCors)

SetCorsAdmin gets a reference to the given ProjectCors and assigns it to the CorsAdmin field.

func (*Project) SetCorsPublic ¶

func (o *Project) SetCorsPublic(v ProjectCors)

SetCorsPublic gets a reference to the given ProjectCors and assigns it to the CorsPublic field.

func (*Project) SetId ¶

func (o *Project) SetId(v string)

SetId sets field value

func (*Project) SetName ¶

func (o *Project) SetName(v string)

SetName sets field value

func (*Project) SetRevisionId ¶

func (o *Project) SetRevisionId(v string)

SetRevisionId sets field value

func (*Project) SetServices ¶

func (o *Project) SetServices(v ProjectServices)

SetServices sets field value

func (*Project) SetSlug ¶

func (o *Project) SetSlug(v string)

SetSlug sets field value

func (*Project) SetState ¶

func (o *Project) SetState(v string)

SetState sets field value

func (*Project) SetWorkspaceId ¶

func (o *Project) SetWorkspaceId(v string)

SetWorkspaceId gets a reference to the given NullableString and assigns it to the WorkspaceId field.

func (*Project) SetWorkspaceIdNil ¶

func (o *Project) SetWorkspaceIdNil()

SetWorkspaceIdNil sets the value for WorkspaceId to be an explicit nil

func (Project) ToMap ¶

func (o Project) ToMap() (map[string]interface{}, error)

func (*Project) UnmarshalJSON ¶

func (o *Project) UnmarshalJSON(bytes []byte) (err error)

func (*Project) UnsetWorkspaceId ¶

func (o *Project) UnsetWorkspaceId()

UnsetWorkspaceId ensures that no value is present for WorkspaceId, not even an explicit nil

type ProjectAPI ¶

type ProjectAPI interface {

	/*
		CreateOrganization Method for CreateOrganization

		Create a B2B SSO Organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID  The project's ID.
		@return ProjectAPICreateOrganizationRequest
	*/
	CreateOrganization(ctx context.Context, projectId string) ProjectAPICreateOrganizationRequest

	// CreateOrganizationExecute executes the request
	//  @return Organization
	CreateOrganizationExecute(r ProjectAPICreateOrganizationRequest) (*Organization, *http.Response, error)

	/*
		CreateProject Create a Project

		Creates a new project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ProjectAPICreateProjectRequest
	*/
	CreateProject(ctx context.Context) ProjectAPICreateProjectRequest

	// CreateProjectExecute executes the request
	//  @return Project
	CreateProjectExecute(r ProjectAPICreateProjectRequest) (*Project, *http.Response, error)

	/*
		CreateProjectApiKey Create project API token

		Create an API token for a project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param project The Project ID or Project slug
		@return ProjectAPICreateProjectApiKeyRequest
	*/
	CreateProjectApiKey(ctx context.Context, project string) ProjectAPICreateProjectApiKeyRequest

	// CreateProjectApiKeyExecute executes the request
	//  @return ProjectApiKey
	CreateProjectApiKeyExecute(r ProjectAPICreateProjectApiKeyRequest) (*ProjectApiKey, *http.Response, error)

	/*
		DeleteOrganization Delete a B2B SSO Organization for a project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID  The project's ID.
		@param organizationId Organization ID  The Organization's ID.
		@return ProjectAPIDeleteOrganizationRequest
	*/
	DeleteOrganization(ctx context.Context, projectId string, organizationId string) ProjectAPIDeleteOrganizationRequest

	// DeleteOrganizationExecute executes the request
	DeleteOrganizationExecute(r ProjectAPIDeleteOrganizationRequest) (*http.Response, error)

	/*
		DeleteProjectApiKey Delete project API token

		Deletes an API token and immediately removes it.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param project The Project ID or Project slug
		@param tokenId The Token ID
		@return ProjectAPIDeleteProjectApiKeyRequest
	*/
	DeleteProjectApiKey(ctx context.Context, project string, tokenId string) ProjectAPIDeleteProjectApiKeyRequest

	// DeleteProjectApiKeyExecute executes the request
	DeleteProjectApiKeyExecute(r ProjectAPIDeleteProjectApiKeyRequest) (*http.Response, error)

	/*
		GetActiveProjectInConsole Returns the Ory Network Project selected in the Ory Network Console

		Use this API to get your active project in the Ory Network Console UI.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ProjectAPIGetActiveProjectInConsoleRequest
	*/
	GetActiveProjectInConsole(ctx context.Context) ProjectAPIGetActiveProjectInConsoleRequest

	// GetActiveProjectInConsoleExecute executes the request
	//  @return ActiveProjectInConsole
	GetActiveProjectInConsoleExecute(r ProjectAPIGetActiveProjectInConsoleRequest) (*ActiveProjectInConsole, *http.Response, error)

	/*
		GetOrganization Returns a B2B SSO Organization for a project by it's ID.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID  The project's ID.
		@param organizationId Organization ID  The Organization's ID.
		@return ProjectAPIGetOrganizationRequest
	*/
	GetOrganization(ctx context.Context, projectId string, organizationId string) ProjectAPIGetOrganizationRequest

	// GetOrganizationExecute executes the request
	//  @return GetOrganizationResponse
	GetOrganizationExecute(r ProjectAPIGetOrganizationRequest) (*GetOrganizationResponse, *http.Response, error)

	/*
		GetProject Get a Project

		Get a projects you have access to by its ID.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID  The project's ID.
		@return ProjectAPIGetProjectRequest
	*/
	GetProject(ctx context.Context, projectId string) ProjectAPIGetProjectRequest

	// GetProjectExecute executes the request
	//  @return Project
	GetProjectExecute(r ProjectAPIGetProjectRequest) (*Project, *http.Response, error)

	/*
		GetProjectMembers Get all members associated with this project

		This endpoint requires the user to be a member of the project with the role `OWNER` or `DEVELOPER`.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param project
		@return ProjectAPIGetProjectMembersRequest
	*/
	GetProjectMembers(ctx context.Context, project string) ProjectAPIGetProjectMembersRequest

	// GetProjectMembersExecute executes the request
	//  @return []CloudAccount
	GetProjectMembersExecute(r ProjectAPIGetProjectMembersRequest) ([]CloudAccount, *http.Response, error)

	/*
		GetProjectMetrics Method for GetProjectMetrics

		Retrieves project metrics for the specified event type and time range

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID
		@return ProjectAPIGetProjectMetricsRequest
	*/
	GetProjectMetrics(ctx context.Context, projectId string) ProjectAPIGetProjectMetricsRequest

	// GetProjectMetricsExecute executes the request
	//  @return GetProjectMetricsResponse
	GetProjectMetricsExecute(r ProjectAPIGetProjectMetricsRequest) (*GetProjectMetricsResponse, *http.Response, error)

	/*
		ListOrganizations Method for ListOrganizations

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID  The project's ID.
		@return ProjectAPIListOrganizationsRequest
	*/
	ListOrganizations(ctx context.Context, projectId string) ProjectAPIListOrganizationsRequest

	// ListOrganizationsExecute executes the request
	//  @return ListOrganizationsResponse
	ListOrganizationsExecute(r ProjectAPIListOrganizationsRequest) (*ListOrganizationsResponse, *http.Response, error)

	/*
		ListProjectApiKeys List a project's API Tokens

		A list of all the project's API tokens.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param project The Project ID or Project slug
		@return ProjectAPIListProjectApiKeysRequest
	*/
	ListProjectApiKeys(ctx context.Context, project string) ProjectAPIListProjectApiKeysRequest

	// ListProjectApiKeysExecute executes the request
	//  @return []ProjectApiKey
	ListProjectApiKeysExecute(r ProjectAPIListProjectApiKeysRequest) ([]ProjectApiKey, *http.Response, error)

	/*
		ListProjects List All Projects

		Lists all projects you have access to.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ProjectAPIListProjectsRequest
	*/
	ListProjects(ctx context.Context) ProjectAPIListProjectsRequest

	// ListProjectsExecute executes the request
	//  @return []ProjectMetadata
	ListProjectsExecute(r ProjectAPIListProjectsRequest) ([]ProjectMetadata, *http.Response, error)

	/*
		PatchProject Patch an Ory Network Project Configuration

		Deprecated: Use the `patchProjectWithRevision` endpoint instead to specify the exact revision the patch was generated for.

	This endpoints allows you to patch individual Ory Network project configuration keys for
	Ory's services (identity, permission, ...). The configuration format is fully compatible
	with the open source projects for the respective services (e.g. Ory Kratos for Identity, Ory Keto for Permissions).

	This endpoint expects the `version` key to be set in the payload. If it is unset, it
	will try to import the config as if it is from the most recent version.

	If you have an older version of a configuration, you should set the version key in the payload!

	While this endpoint is able to process all configuration items related to features (e.g. password reset),
	it does not support operational configuration items (e.g. port, tracing, logging) otherwise available in the
	open source.

	For configuration items that can not be translated to the Ory Network, this endpoint will return a list of warnings
	to help you understand which parts of your config could not be processed.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID  The project's ID.
		@return ProjectAPIPatchProjectRequest
	*/
	PatchProject(ctx context.Context, projectId string) ProjectAPIPatchProjectRequest

	// PatchProjectExecute executes the request
	//  @return SuccessfulProjectUpdate
	PatchProjectExecute(r ProjectAPIPatchProjectRequest) (*SuccessfulProjectUpdate, *http.Response, error)

	/*
		PurgeProject Irrecoverably purge a project

		!! Use with extreme caution !!

	Using this API endpoint you can purge (completely delete) a project and its data.
	This action can not be undone and will delete ALL your data.

	!! Use with extreme caution !!

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID  The project's ID.
		@return ProjectAPIPurgeProjectRequest
	*/
	PurgeProject(ctx context.Context, projectId string) ProjectAPIPurgeProjectRequest

	// PurgeProjectExecute executes the request
	PurgeProjectExecute(r ProjectAPIPurgeProjectRequest) (*http.Response, error)

	/*
		RemoveProjectMember Remove a member associated with this project

		This also sets their invite status to `REMOVED`.
	This endpoint requires the user to be a member of the project with the role `OWNER`.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param project
		@param member
		@return ProjectAPIRemoveProjectMemberRequest
	*/
	RemoveProjectMember(ctx context.Context, project string, member string) ProjectAPIRemoveProjectMemberRequest

	// RemoveProjectMemberExecute executes the request
	RemoveProjectMemberExecute(r ProjectAPIRemoveProjectMemberRequest) (*http.Response, error)

	/*
		SetActiveProjectInConsole Sets the Ory Network Project active in the Ory Network Console

		Use this API to set your active project in the Ory Network Console UI.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ProjectAPISetActiveProjectInConsoleRequest
	*/
	SetActiveProjectInConsole(ctx context.Context) ProjectAPISetActiveProjectInConsoleRequest

	// SetActiveProjectInConsoleExecute executes the request
	SetActiveProjectInConsoleExecute(r ProjectAPISetActiveProjectInConsoleRequest) (*http.Response, error)

	/*
		SetProject Update an Ory Network Project Configuration

		This endpoints allows you to update the Ory Network project configuration for
	individual services (identity, permission, ...). The configuration is fully compatible
	with the open source projects for the respective services (e.g. Ory Kratos for Identity, Ory Keto for Permissions).

	This endpoint expects the `version` key to be set in the payload. If it is unset, it
	will try to import the config as if it is from the most recent version.

	If you have an older version of a configuration, you should set the version key in the payload!

	While this endpoint is able to process all configuration items related to features (e.g. password reset),
	it does not support operational configuration items (e.g. port, tracing, logging) otherwise available in the
	open source.

	For configuration items that can not be translated to the Ory Network, this endpoint will return a list of warnings
	to help you understand which parts of your config could not be processed.

	Be aware that updating any service's configuration will completely override your current configuration for that
	service!

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID  The project's ID.
		@return ProjectAPISetProjectRequest
	*/
	SetProject(ctx context.Context, projectId string) ProjectAPISetProjectRequest

	// SetProjectExecute executes the request
	//  @return SuccessfulProjectUpdate
	SetProjectExecute(r ProjectAPISetProjectRequest) (*SuccessfulProjectUpdate, *http.Response, error)

	/*
		UpdateOrganization Update a B2B SSO Organization for a project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId Project ID  The project's ID.
		@param organizationId Organization ID  The Organization's ID.
		@return ProjectAPIUpdateOrganizationRequest
	*/
	UpdateOrganization(ctx context.Context, projectId string, organizationId string) ProjectAPIUpdateOrganizationRequest

	// UpdateOrganizationExecute executes the request
	//  @return Organization
	UpdateOrganizationExecute(r ProjectAPIUpdateOrganizationRequest) (*Organization, *http.Response, error)
}

type ProjectAPICreateOrganizationRequest ¶

type ProjectAPICreateOrganizationRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPICreateOrganizationRequest) Execute ¶

func (ProjectAPICreateOrganizationRequest) OrganizationBody ¶

type ProjectAPICreateProjectApiKeyRequest ¶

type ProjectAPICreateProjectApiKeyRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPICreateProjectApiKeyRequest) CreateProjectApiKeyRequest ¶

func (r ProjectAPICreateProjectApiKeyRequest) CreateProjectApiKeyRequest(createProjectApiKeyRequest CreateProjectApiKeyRequest) ProjectAPICreateProjectApiKeyRequest

func (ProjectAPICreateProjectApiKeyRequest) Execute ¶

type ProjectAPICreateProjectRequest ¶

type ProjectAPICreateProjectRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPICreateProjectRequest) CreateProjectBody ¶

func (ProjectAPICreateProjectRequest) Execute ¶

type ProjectAPIDeleteOrganizationRequest ¶

type ProjectAPIDeleteOrganizationRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPIDeleteOrganizationRequest) Execute ¶

type ProjectAPIDeleteProjectApiKeyRequest ¶

type ProjectAPIDeleteProjectApiKeyRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPIDeleteProjectApiKeyRequest) Execute ¶

type ProjectAPIGetActiveProjectInConsoleRequest ¶

type ProjectAPIGetActiveProjectInConsoleRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPIGetActiveProjectInConsoleRequest) Execute ¶

type ProjectAPIGetOrganizationRequest ¶

type ProjectAPIGetOrganizationRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPIGetOrganizationRequest) Execute ¶

type ProjectAPIGetProjectMembersRequest ¶

type ProjectAPIGetProjectMembersRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPIGetProjectMembersRequest) Execute ¶

type ProjectAPIGetProjectMetricsRequest ¶

type ProjectAPIGetProjectMetricsRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPIGetProjectMetricsRequest) EventType ¶

The event type to query for

func (ProjectAPIGetProjectMetricsRequest) Execute ¶

func (ProjectAPIGetProjectMetricsRequest) From ¶

The start RFC3339 date of the time window

func (ProjectAPIGetProjectMetricsRequest) Resolution ¶

The resolution of the buckets The minimum resolution is 1 hour.

func (ProjectAPIGetProjectMetricsRequest) To ¶

The end RFC3339 date of the time window

type ProjectAPIGetProjectRequest ¶

type ProjectAPIGetProjectRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPIGetProjectRequest) Execute ¶

type ProjectAPIListOrganizationsRequest ¶

type ProjectAPIListOrganizationsRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPIListOrganizationsRequest) Execute ¶

type ProjectAPIListProjectApiKeysRequest ¶

type ProjectAPIListProjectApiKeysRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPIListProjectApiKeysRequest) Execute ¶

type ProjectAPIListProjectsRequest ¶

type ProjectAPIListProjectsRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPIListProjectsRequest) Execute ¶

type ProjectAPIPatchProjectRequest ¶

type ProjectAPIPatchProjectRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPIPatchProjectRequest) Execute ¶

func (ProjectAPIPatchProjectRequest) JsonPatch ¶

type ProjectAPIPurgeProjectRequest ¶

type ProjectAPIPurgeProjectRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPIPurgeProjectRequest) Execute ¶

type ProjectAPIRemoveProjectMemberRequest ¶

type ProjectAPIRemoveProjectMemberRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPIRemoveProjectMemberRequest) Execute ¶

type ProjectAPIService ¶

type ProjectAPIService service

ProjectAPIService ProjectAPI service

func (*ProjectAPIService) CreateOrganization ¶

func (a *ProjectAPIService) CreateOrganization(ctx context.Context, projectId string) ProjectAPICreateOrganizationRequest

CreateOrganization Method for CreateOrganization

Create a B2B SSO Organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID  The project's ID.
@return ProjectAPICreateOrganizationRequest

func (*ProjectAPIService) CreateOrganizationExecute ¶

Execute executes the request

@return Organization

func (*ProjectAPIService) CreateProject ¶

CreateProject Create a Project

Creates a new project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ProjectAPICreateProjectRequest

func (*ProjectAPIService) CreateProjectApiKey ¶

func (a *ProjectAPIService) CreateProjectApiKey(ctx context.Context, project string) ProjectAPICreateProjectApiKeyRequest

CreateProjectApiKey Create project API token

Create an API token for a project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param project The Project ID or Project slug
@return ProjectAPICreateProjectApiKeyRequest

func (*ProjectAPIService) CreateProjectApiKeyExecute ¶

Execute executes the request

@return ProjectApiKey

func (*ProjectAPIService) CreateProjectExecute ¶

Execute executes the request

@return Project

func (*ProjectAPIService) DeleteOrganization ¶

func (a *ProjectAPIService) DeleteOrganization(ctx context.Context, projectId string, organizationId string) ProjectAPIDeleteOrganizationRequest

DeleteOrganization Delete a B2B SSO Organization for a project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID  The project's ID.
@param organizationId Organization ID  The Organization's ID.
@return ProjectAPIDeleteOrganizationRequest

func (*ProjectAPIService) DeleteOrganizationExecute ¶

func (a *ProjectAPIService) DeleteOrganizationExecute(r ProjectAPIDeleteOrganizationRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) DeleteProjectApiKey ¶

func (a *ProjectAPIService) DeleteProjectApiKey(ctx context.Context, project string, tokenId string) ProjectAPIDeleteProjectApiKeyRequest

DeleteProjectApiKey Delete project API token

Deletes an API token and immediately removes it.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param project The Project ID or Project slug
@param tokenId The Token ID
@return ProjectAPIDeleteProjectApiKeyRequest

func (*ProjectAPIService) DeleteProjectApiKeyExecute ¶

func (a *ProjectAPIService) DeleteProjectApiKeyExecute(r ProjectAPIDeleteProjectApiKeyRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) GetActiveProjectInConsole ¶

GetActiveProjectInConsole Returns the Ory Network Project selected in the Ory Network Console

Use this API to get your active project in the Ory Network Console UI.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ProjectAPIGetActiveProjectInConsoleRequest

func (*ProjectAPIService) GetActiveProjectInConsoleExecute ¶

Execute executes the request

@return ActiveProjectInConsole

func (*ProjectAPIService) GetOrganization ¶

func (a *ProjectAPIService) GetOrganization(ctx context.Context, projectId string, organizationId string) ProjectAPIGetOrganizationRequest

GetOrganization Returns a B2B SSO Organization for a project by it's ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID  The project's ID.
@param organizationId Organization ID  The Organization's ID.
@return ProjectAPIGetOrganizationRequest

func (*ProjectAPIService) GetOrganizationExecute ¶

Execute executes the request

@return GetOrganizationResponse

func (*ProjectAPIService) GetProject ¶

func (a *ProjectAPIService) GetProject(ctx context.Context, projectId string) ProjectAPIGetProjectRequest

GetProject Get a Project

Get a projects you have access to by its ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID  The project's ID.
@return ProjectAPIGetProjectRequest

func (*ProjectAPIService) GetProjectExecute ¶

Execute executes the request

@return Project

func (*ProjectAPIService) GetProjectMembers ¶

func (a *ProjectAPIService) GetProjectMembers(ctx context.Context, project string) ProjectAPIGetProjectMembersRequest

GetProjectMembers Get all members associated with this project

This endpoint requires the user to be a member of the project with the role `OWNER` or `DEVELOPER`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param project
@return ProjectAPIGetProjectMembersRequest

func (*ProjectAPIService) GetProjectMembersExecute ¶

Execute executes the request

@return []CloudAccount

func (*ProjectAPIService) GetProjectMetrics ¶

func (a *ProjectAPIService) GetProjectMetrics(ctx context.Context, projectId string) ProjectAPIGetProjectMetricsRequest

GetProjectMetrics Method for GetProjectMetrics

Retrieves project metrics for the specified event type and time range

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID
@return ProjectAPIGetProjectMetricsRequest

func (*ProjectAPIService) GetProjectMetricsExecute ¶

Execute executes the request

@return GetProjectMetricsResponse

func (*ProjectAPIService) ListOrganizations ¶

func (a *ProjectAPIService) ListOrganizations(ctx context.Context, projectId string) ProjectAPIListOrganizationsRequest

ListOrganizations Method for ListOrganizations

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID  The project's ID.
@return ProjectAPIListOrganizationsRequest

func (*ProjectAPIService) ListOrganizationsExecute ¶

Execute executes the request

@return ListOrganizationsResponse

func (*ProjectAPIService) ListProjectApiKeys ¶

func (a *ProjectAPIService) ListProjectApiKeys(ctx context.Context, project string) ProjectAPIListProjectApiKeysRequest

ListProjectApiKeys List a project's API Tokens

A list of all the project's API tokens.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param project The Project ID or Project slug
@return ProjectAPIListProjectApiKeysRequest

func (*ProjectAPIService) ListProjectApiKeysExecute ¶

Execute executes the request

@return []ProjectApiKey

func (*ProjectAPIService) ListProjects ¶

ListProjects List All Projects

Lists all projects you have access to.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ProjectAPIListProjectsRequest

func (*ProjectAPIService) ListProjectsExecute ¶

Execute executes the request

@return []ProjectMetadata

func (*ProjectAPIService) PatchProject deprecated

func (a *ProjectAPIService) PatchProject(ctx context.Context, projectId string) ProjectAPIPatchProjectRequest

PatchProject Patch an Ory Network Project Configuration

Deprecated: Use the `patchProjectWithRevision` endpoint instead to specify the exact revision the patch was generated for.

This endpoints allows you to patch individual Ory Network project configuration keys for Ory's services (identity, permission, ...). The configuration format is fully compatible with the open source projects for the respective services (e.g. Ory Kratos for Identity, Ory Keto for Permissions).

This endpoint expects the `version` key to be set in the payload. If it is unset, it will try to import the config as if it is from the most recent version.

If you have an older version of a configuration, you should set the version key in the payload!

While this endpoint is able to process all configuration items related to features (e.g. password reset), it does not support operational configuration items (e.g. port, tracing, logging) otherwise available in the open source.

For configuration items that can not be translated to the Ory Network, this endpoint will return a list of warnings to help you understand which parts of your config could not be processed.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID  The project's ID.
@return ProjectAPIPatchProjectRequest

func (*ProjectAPIService) PatchProjectExecute ¶

Execute executes the request

@return SuccessfulProjectUpdate

func (*ProjectAPIService) PurgeProject ¶

func (a *ProjectAPIService) PurgeProject(ctx context.Context, projectId string) ProjectAPIPurgeProjectRequest

PurgeProject Irrecoverably purge a project

!! Use with extreme caution !!

Using this API endpoint you can purge (completely delete) a project and its data. This action can not be undone and will delete ALL your data.

!! Use with extreme caution !!

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID  The project's ID.
@return ProjectAPIPurgeProjectRequest

func (*ProjectAPIService) PurgeProjectExecute ¶

func (a *ProjectAPIService) PurgeProjectExecute(r ProjectAPIPurgeProjectRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) RemoveProjectMember ¶

func (a *ProjectAPIService) RemoveProjectMember(ctx context.Context, project string, member string) ProjectAPIRemoveProjectMemberRequest

RemoveProjectMember Remove a member associated with this project

This also sets their invite status to `REMOVED`. This endpoint requires the user to be a member of the project with the role `OWNER`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param project
@param member
@return ProjectAPIRemoveProjectMemberRequest

func (*ProjectAPIService) RemoveProjectMemberExecute ¶

func (a *ProjectAPIService) RemoveProjectMemberExecute(r ProjectAPIRemoveProjectMemberRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) SetActiveProjectInConsole ¶

SetActiveProjectInConsole Sets the Ory Network Project active in the Ory Network Console

Use this API to set your active project in the Ory Network Console UI.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ProjectAPISetActiveProjectInConsoleRequest

func (*ProjectAPIService) SetActiveProjectInConsoleExecute ¶

func (a *ProjectAPIService) SetActiveProjectInConsoleExecute(r ProjectAPISetActiveProjectInConsoleRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) SetProject ¶

func (a *ProjectAPIService) SetProject(ctx context.Context, projectId string) ProjectAPISetProjectRequest

SetProject Update an Ory Network Project Configuration

This endpoints allows you to update the Ory Network project configuration for individual services (identity, permission, ...). The configuration is fully compatible with the open source projects for the respective services (e.g. Ory Kratos for Identity, Ory Keto for Permissions).

This endpoint expects the `version` key to be set in the payload. If it is unset, it will try to import the config as if it is from the most recent version.

If you have an older version of a configuration, you should set the version key in the payload!

While this endpoint is able to process all configuration items related to features (e.g. password reset), it does not support operational configuration items (e.g. port, tracing, logging) otherwise available in the open source.

For configuration items that can not be translated to the Ory Network, this endpoint will return a list of warnings to help you understand which parts of your config could not be processed.

Be aware that updating any service's configuration will completely override your current configuration for that service!

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID  The project's ID.
@return ProjectAPISetProjectRequest

func (*ProjectAPIService) SetProjectExecute ¶

Execute executes the request

@return SuccessfulProjectUpdate

func (*ProjectAPIService) UpdateOrganization ¶

func (a *ProjectAPIService) UpdateOrganization(ctx context.Context, projectId string, organizationId string) ProjectAPIUpdateOrganizationRequest

UpdateOrganization Update a B2B SSO Organization for a project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Project ID  The project's ID.
@param organizationId Organization ID  The Organization's ID.
@return ProjectAPIUpdateOrganizationRequest

func (*ProjectAPIService) UpdateOrganizationExecute ¶

Execute executes the request

@return Organization

type ProjectAPISetActiveProjectInConsoleRequest ¶

type ProjectAPISetActiveProjectInConsoleRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPISetActiveProjectInConsoleRequest) Execute ¶

func (ProjectAPISetActiveProjectInConsoleRequest) SetActiveProjectInConsoleBody ¶

type ProjectAPISetProjectRequest ¶

type ProjectAPISetProjectRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPISetProjectRequest) Execute ¶

func (ProjectAPISetProjectRequest) SetProject ¶

type ProjectAPIUpdateOrganizationRequest ¶

type ProjectAPIUpdateOrganizationRequest struct {
	ApiService ProjectAPI
	// contains filtered or unexported fields
}

func (ProjectAPIUpdateOrganizationRequest) Execute ¶

func (ProjectAPIUpdateOrganizationRequest) OrganizationBody ¶

type ProjectApiKey ¶

type ProjectApiKey struct {
	// The token's creation date
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// The token's ID.
	Id string `json:"id"`
	// The Token's Name  Set this to help you remember, for example, where you use the token.
	Name string `json:"name"`
	// The token's owner
	OwnerId string `json:"owner_id"`
	// The Token's Project ID
	ProjectId *string `json:"project_id,omitempty"`
	// The token's last update date
	UpdatedAt *time.Time `json:"updated_at,omitempty"`
	// The token's value
	Value                *string `json:"value,omitempty"`
	AdditionalProperties map[string]interface{}
}

ProjectApiKey struct for ProjectApiKey

func NewProjectApiKey ¶

func NewProjectApiKey(id string, name string, ownerId string) *ProjectApiKey

NewProjectApiKey instantiates a new ProjectApiKey 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 NewProjectApiKeyWithDefaults ¶

func NewProjectApiKeyWithDefaults() *ProjectApiKey

NewProjectApiKeyWithDefaults instantiates a new ProjectApiKey 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 (*ProjectApiKey) GetCreatedAt ¶

func (o *ProjectApiKey) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*ProjectApiKey) GetCreatedAtOk ¶

func (o *ProjectApiKey) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectApiKey) GetId ¶

func (o *ProjectApiKey) GetId() string

GetId returns the Id field value

func (*ProjectApiKey) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ProjectApiKey) GetName ¶

func (o *ProjectApiKey) GetName() string

GetName returns the Name field value

func (*ProjectApiKey) GetNameOk ¶

func (o *ProjectApiKey) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ProjectApiKey) GetOwnerId ¶

func (o *ProjectApiKey) GetOwnerId() string

GetOwnerId returns the OwnerId field value

func (*ProjectApiKey) GetOwnerIdOk ¶

func (o *ProjectApiKey) GetOwnerIdOk() (*string, bool)

GetOwnerIdOk returns a tuple with the OwnerId field value and a boolean to check if the value has been set.

func (*ProjectApiKey) GetProjectId ¶

func (o *ProjectApiKey) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*ProjectApiKey) GetProjectIdOk ¶

func (o *ProjectApiKey) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectApiKey) GetUpdatedAt ¶

func (o *ProjectApiKey) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*ProjectApiKey) GetUpdatedAtOk ¶

func (o *ProjectApiKey) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectApiKey) GetValue ¶

func (o *ProjectApiKey) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ProjectApiKey) GetValueOk ¶

func (o *ProjectApiKey) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectApiKey) HasCreatedAt ¶

func (o *ProjectApiKey) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ProjectApiKey) HasProjectId ¶

func (o *ProjectApiKey) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*ProjectApiKey) HasUpdatedAt ¶

func (o *ProjectApiKey) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*ProjectApiKey) HasValue ¶

func (o *ProjectApiKey) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ProjectApiKey) MarshalJSON ¶

func (o ProjectApiKey) MarshalJSON() ([]byte, error)

func (*ProjectApiKey) SetCreatedAt ¶

func (o *ProjectApiKey) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*ProjectApiKey) SetId ¶

func (o *ProjectApiKey) SetId(v string)

SetId sets field value

func (*ProjectApiKey) SetName ¶

func (o *ProjectApiKey) SetName(v string)

SetName sets field value

func (*ProjectApiKey) SetOwnerId ¶

func (o *ProjectApiKey) SetOwnerId(v string)

SetOwnerId sets field value

func (*ProjectApiKey) SetProjectId ¶

func (o *ProjectApiKey) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*ProjectApiKey) SetUpdatedAt ¶

func (o *ProjectApiKey) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*ProjectApiKey) SetValue ¶

func (o *ProjectApiKey) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ProjectApiKey) ToMap ¶

func (o ProjectApiKey) ToMap() (map[string]interface{}, error)

func (*ProjectApiKey) UnmarshalJSON ¶

func (o *ProjectApiKey) UnmarshalJSON(bytes []byte) (err error)

type ProjectBranding ¶

type ProjectBranding struct {
	// The Customization Creation Date
	CreatedAt    time.Time            `json:"created_at"`
	DefaultTheme ProjectBrandingTheme `json:"default_theme"`
	// The customization ID.
	Id string `json:"id"`
	// The Project's ID this customization is associated with
	ProjectId string                 `json:"project_id"`
	Themes    []ProjectBrandingTheme `json:"themes"`
	// Last Time Branding was Updated
	UpdatedAt            time.Time `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

ProjectBranding struct for ProjectBranding

func NewProjectBranding ¶

func NewProjectBranding(createdAt time.Time, defaultTheme ProjectBrandingTheme, id string, projectId string, themes []ProjectBrandingTheme, updatedAt time.Time) *ProjectBranding

NewProjectBranding instantiates a new ProjectBranding 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 NewProjectBrandingWithDefaults ¶

func NewProjectBrandingWithDefaults() *ProjectBranding

NewProjectBrandingWithDefaults instantiates a new ProjectBranding 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 (*ProjectBranding) GetCreatedAt ¶

func (o *ProjectBranding) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*ProjectBranding) GetCreatedAtOk ¶

func (o *ProjectBranding) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*ProjectBranding) GetDefaultTheme ¶

func (o *ProjectBranding) GetDefaultTheme() ProjectBrandingTheme

GetDefaultTheme returns the DefaultTheme field value

func (*ProjectBranding) GetDefaultThemeOk ¶

func (o *ProjectBranding) GetDefaultThemeOk() (*ProjectBrandingTheme, bool)

GetDefaultThemeOk returns a tuple with the DefaultTheme field value and a boolean to check if the value has been set.

func (*ProjectBranding) GetId ¶

func (o *ProjectBranding) GetId() string

GetId returns the Id field value

func (*ProjectBranding) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ProjectBranding) GetProjectId ¶

func (o *ProjectBranding) GetProjectId() string

GetProjectId returns the ProjectId field value

func (*ProjectBranding) GetProjectIdOk ¶

func (o *ProjectBranding) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value and a boolean to check if the value has been set.

func (*ProjectBranding) GetThemes ¶

func (o *ProjectBranding) GetThemes() []ProjectBrandingTheme

GetThemes returns the Themes field value

func (*ProjectBranding) GetThemesOk ¶

func (o *ProjectBranding) GetThemesOk() ([]ProjectBrandingTheme, bool)

GetThemesOk returns a tuple with the Themes field value and a boolean to check if the value has been set.

func (*ProjectBranding) GetUpdatedAt ¶

func (o *ProjectBranding) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*ProjectBranding) GetUpdatedAtOk ¶

func (o *ProjectBranding) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (ProjectBranding) MarshalJSON ¶

func (o ProjectBranding) MarshalJSON() ([]byte, error)

func (*ProjectBranding) SetCreatedAt ¶

func (o *ProjectBranding) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*ProjectBranding) SetDefaultTheme ¶

func (o *ProjectBranding) SetDefaultTheme(v ProjectBrandingTheme)

SetDefaultTheme sets field value

func (*ProjectBranding) SetId ¶

func (o *ProjectBranding) SetId(v string)

SetId sets field value

func (*ProjectBranding) SetProjectId ¶

func (o *ProjectBranding) SetProjectId(v string)

SetProjectId sets field value

func (*ProjectBranding) SetThemes ¶

func (o *ProjectBranding) SetThemes(v []ProjectBrandingTheme)

SetThemes sets field value

func (*ProjectBranding) SetUpdatedAt ¶

func (o *ProjectBranding) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (ProjectBranding) ToMap ¶

func (o ProjectBranding) ToMap() (map[string]interface{}, error)

func (*ProjectBranding) UnmarshalJSON ¶

func (o *ProjectBranding) UnmarshalJSON(bytes []byte) (err error)

type ProjectBrandingColors ¶

type ProjectBrandingColors struct {
	// AccentDefaultColor is a hex color code used by the Ory Account Experience theme.
	AccentDefaultColor *string `json:"accent_default_color,omitempty"`
	// AccentDisabledColor is a hex color code used by the Ory Account Experience theme.
	AccentDisabledColor *string `json:"accent_disabled_color,omitempty"`
	// AccentEmphasisColor is a hex color code used by the Ory Account Experience theme.
	AccentEmphasisColor *string `json:"accent_emphasis_color,omitempty"`
	// AccentMutedColor is a hex color code used by the Ory Account Experience theme.
	AccentMutedColor *string `json:"accent_muted_color,omitempty"`
	// AccentSubtleColor is a hex color code used by the Ory Account Experience theme.
	AccentSubtleColor *string `json:"accent_subtle_color,omitempty"`
	// BackgroundCanvasColor is a hex color code used by the Ory Account Experience theme.
	BackgroundCanvasColor *string `json:"background_canvas_color,omitempty"`
	// BackgroundSubtleColor is a hex color code used by the Ory Account Experience theme.
	BackgroundSubtleColor *string `json:"background_subtle_color,omitempty"`
	// BackgroundSurfaceColor is a hex color code used by the Ory Account Experience theme.
	BackgroundSurfaceColor *string `json:"background_surface_color,omitempty"`
	// BorderDefaultColor is a hex color code used by the Ory Account Experience theme.
	BorderDefaultColor *string `json:"border_default_color,omitempty"`
	// ErrorDefaultColor is a hex color code used by the Ory Account Experience theme.
	ErrorDefaultColor *string `json:"error_default_color,omitempty"`
	// ErrorEmphasisColor is a hex color code used by the Ory Account Experience theme.
	ErrorEmphasisColor *string `json:"error_emphasis_color,omitempty"`
	// ErrorMutedColor is a hex color code used by the Ory Account Experience theme.
	ErrorMutedColor *string `json:"error_muted_color,omitempty"`
	// ErrorSubtleColor is a hex color code used by the Ory Account Experience theme.
	ErrorSubtleColor *string `json:"error_subtle_color,omitempty"`
	// ForegroundDefaultColor is a hex color code used by the Ory Account Experience theme.
	ForegroundDefaultColor *string `json:"foreground_default_color,omitempty"`
	// ForegroundDisabledColor is a hex color code used by the Ory Account Experience theme.
	ForegroundDisabledColor *string `json:"foreground_disabled_color,omitempty"`
	// ForegroundMutedColor is a hex color code used by the Ory Account Experience theme.
	ForegroundMutedColor *string `json:"foreground_muted_color,omitempty"`
	// ForegroundOnAccentColor is a hex color code used by the Ory Account Experience theme.
	ForegroundOnAccentColor *string `json:"foreground_on_accent_color,omitempty"`
	// ForegroundOnDarkColor is a hex color code used by the Ory Account Experience theme.
	ForegroundOnDarkColor *string `json:"foreground_on_dark_color,omitempty"`
	// ForegroundOnDisabledColor is a hex color code used by the Ory Account Experience theme.
	ForegroundOnDisabledColor *string `json:"foreground_on_disabled_color,omitempty"`
	// ForegroundSubtleColor is a hex color code used by the Ory Account Experience theme.
	ForegroundSubtleColor *string `json:"foreground_subtle_color,omitempty"`
	// InputBackgroundColor is a hex color code used by the Ory Account Experience theme.
	InputBackgroundColor *string `json:"input_background_color,omitempty"`
	// InputDisabledColor is a hex color code used by the Ory Account Experience theme.
	InputDisabledColor *string `json:"input_disabled_color,omitempty"`
	// InputPlaceholderColor is a hex color code used by the Ory Account Experience theme.
	InputPlaceholderColor *string `json:"input_placeholder_color,omitempty"`
	// InputTextColor is a hex color code used by the Ory Account Experience theme.
	InputTextColor *string `json:"input_text_color,omitempty"`
	// Primary color is an hsla color value used to derive the other colors from for the Ory Account Experience theme.
	PrimaryColor *string `json:"primary_color,omitempty"`
	// Secondary color is a hsla color code used to derive the other colors from for the Ory Account Experience theme.
	SecondaryColor *string `json:"secondary_color,omitempty"`
	// SuccessEmphasisColor is a hex color code used by the Ory Account Experience theme.
	SuccessEmphasisColor *string `json:"success_emphasis_color,omitempty"`
	// TextDefaultColor is a hex color code used by the Ory Account Experience theme.
	TextDefaultColor *string `json:"text_default_color,omitempty"`
	// TextDisabledColor is a hex color code used by the Ory Account Experience theme.
	TextDisabledColor    *string `json:"text_disabled_color,omitempty"`
	AdditionalProperties map[string]interface{}
}

ProjectBrandingColors struct for ProjectBrandingColors

func NewProjectBrandingColors ¶

func NewProjectBrandingColors() *ProjectBrandingColors

NewProjectBrandingColors instantiates a new ProjectBrandingColors 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 NewProjectBrandingColorsWithDefaults ¶

func NewProjectBrandingColorsWithDefaults() *ProjectBrandingColors

NewProjectBrandingColorsWithDefaults instantiates a new ProjectBrandingColors 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 (*ProjectBrandingColors) GetAccentDefaultColor ¶

func (o *ProjectBrandingColors) GetAccentDefaultColor() string

GetAccentDefaultColor returns the AccentDefaultColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetAccentDefaultColorOk ¶

func (o *ProjectBrandingColors) GetAccentDefaultColorOk() (*string, bool)

GetAccentDefaultColorOk returns a tuple with the AccentDefaultColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetAccentDisabledColor ¶

func (o *ProjectBrandingColors) GetAccentDisabledColor() string

GetAccentDisabledColor returns the AccentDisabledColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetAccentDisabledColorOk ¶

func (o *ProjectBrandingColors) GetAccentDisabledColorOk() (*string, bool)

GetAccentDisabledColorOk returns a tuple with the AccentDisabledColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetAccentEmphasisColor ¶

func (o *ProjectBrandingColors) GetAccentEmphasisColor() string

GetAccentEmphasisColor returns the AccentEmphasisColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetAccentEmphasisColorOk ¶

func (o *ProjectBrandingColors) GetAccentEmphasisColorOk() (*string, bool)

GetAccentEmphasisColorOk returns a tuple with the AccentEmphasisColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetAccentMutedColor ¶

func (o *ProjectBrandingColors) GetAccentMutedColor() string

GetAccentMutedColor returns the AccentMutedColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetAccentMutedColorOk ¶

func (o *ProjectBrandingColors) GetAccentMutedColorOk() (*string, bool)

GetAccentMutedColorOk returns a tuple with the AccentMutedColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetAccentSubtleColor ¶

func (o *ProjectBrandingColors) GetAccentSubtleColor() string

GetAccentSubtleColor returns the AccentSubtleColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetAccentSubtleColorOk ¶

func (o *ProjectBrandingColors) GetAccentSubtleColorOk() (*string, bool)

GetAccentSubtleColorOk returns a tuple with the AccentSubtleColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetBackgroundCanvasColor ¶

func (o *ProjectBrandingColors) GetBackgroundCanvasColor() string

GetBackgroundCanvasColor returns the BackgroundCanvasColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetBackgroundCanvasColorOk ¶

func (o *ProjectBrandingColors) GetBackgroundCanvasColorOk() (*string, bool)

GetBackgroundCanvasColorOk returns a tuple with the BackgroundCanvasColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetBackgroundSubtleColor ¶

func (o *ProjectBrandingColors) GetBackgroundSubtleColor() string

GetBackgroundSubtleColor returns the BackgroundSubtleColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetBackgroundSubtleColorOk ¶

func (o *ProjectBrandingColors) GetBackgroundSubtleColorOk() (*string, bool)

GetBackgroundSubtleColorOk returns a tuple with the BackgroundSubtleColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetBackgroundSurfaceColor ¶

func (o *ProjectBrandingColors) GetBackgroundSurfaceColor() string

GetBackgroundSurfaceColor returns the BackgroundSurfaceColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetBackgroundSurfaceColorOk ¶

func (o *ProjectBrandingColors) GetBackgroundSurfaceColorOk() (*string, bool)

GetBackgroundSurfaceColorOk returns a tuple with the BackgroundSurfaceColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetBorderDefaultColor ¶

func (o *ProjectBrandingColors) GetBorderDefaultColor() string

GetBorderDefaultColor returns the BorderDefaultColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetBorderDefaultColorOk ¶

func (o *ProjectBrandingColors) GetBorderDefaultColorOk() (*string, bool)

GetBorderDefaultColorOk returns a tuple with the BorderDefaultColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetErrorDefaultColor ¶

func (o *ProjectBrandingColors) GetErrorDefaultColor() string

GetErrorDefaultColor returns the ErrorDefaultColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetErrorDefaultColorOk ¶

func (o *ProjectBrandingColors) GetErrorDefaultColorOk() (*string, bool)

GetErrorDefaultColorOk returns a tuple with the ErrorDefaultColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetErrorEmphasisColor ¶

func (o *ProjectBrandingColors) GetErrorEmphasisColor() string

GetErrorEmphasisColor returns the ErrorEmphasisColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetErrorEmphasisColorOk ¶

func (o *ProjectBrandingColors) GetErrorEmphasisColorOk() (*string, bool)

GetErrorEmphasisColorOk returns a tuple with the ErrorEmphasisColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetErrorMutedColor ¶

func (o *ProjectBrandingColors) GetErrorMutedColor() string

GetErrorMutedColor returns the ErrorMutedColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetErrorMutedColorOk ¶

func (o *ProjectBrandingColors) GetErrorMutedColorOk() (*string, bool)

GetErrorMutedColorOk returns a tuple with the ErrorMutedColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetErrorSubtleColor ¶

func (o *ProjectBrandingColors) GetErrorSubtleColor() string

GetErrorSubtleColor returns the ErrorSubtleColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetErrorSubtleColorOk ¶

func (o *ProjectBrandingColors) GetErrorSubtleColorOk() (*string, bool)

GetErrorSubtleColorOk returns a tuple with the ErrorSubtleColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetForegroundDefaultColor ¶

func (o *ProjectBrandingColors) GetForegroundDefaultColor() string

GetForegroundDefaultColor returns the ForegroundDefaultColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetForegroundDefaultColorOk ¶

func (o *ProjectBrandingColors) GetForegroundDefaultColorOk() (*string, bool)

GetForegroundDefaultColorOk returns a tuple with the ForegroundDefaultColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetForegroundDisabledColor ¶

func (o *ProjectBrandingColors) GetForegroundDisabledColor() string

GetForegroundDisabledColor returns the ForegroundDisabledColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetForegroundDisabledColorOk ¶

func (o *ProjectBrandingColors) GetForegroundDisabledColorOk() (*string, bool)

GetForegroundDisabledColorOk returns a tuple with the ForegroundDisabledColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetForegroundMutedColor ¶

func (o *ProjectBrandingColors) GetForegroundMutedColor() string

GetForegroundMutedColor returns the ForegroundMutedColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetForegroundMutedColorOk ¶

func (o *ProjectBrandingColors) GetForegroundMutedColorOk() (*string, bool)

GetForegroundMutedColorOk returns a tuple with the ForegroundMutedColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetForegroundOnAccentColor ¶

func (o *ProjectBrandingColors) GetForegroundOnAccentColor() string

GetForegroundOnAccentColor returns the ForegroundOnAccentColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetForegroundOnAccentColorOk ¶

func (o *ProjectBrandingColors) GetForegroundOnAccentColorOk() (*string, bool)

GetForegroundOnAccentColorOk returns a tuple with the ForegroundOnAccentColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetForegroundOnDarkColor ¶

func (o *ProjectBrandingColors) GetForegroundOnDarkColor() string

GetForegroundOnDarkColor returns the ForegroundOnDarkColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetForegroundOnDarkColorOk ¶

func (o *ProjectBrandingColors) GetForegroundOnDarkColorOk() (*string, bool)

GetForegroundOnDarkColorOk returns a tuple with the ForegroundOnDarkColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetForegroundOnDisabledColor ¶

func (o *ProjectBrandingColors) GetForegroundOnDisabledColor() string

GetForegroundOnDisabledColor returns the ForegroundOnDisabledColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetForegroundOnDisabledColorOk ¶

func (o *ProjectBrandingColors) GetForegroundOnDisabledColorOk() (*string, bool)

GetForegroundOnDisabledColorOk returns a tuple with the ForegroundOnDisabledColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetForegroundSubtleColor ¶

func (o *ProjectBrandingColors) GetForegroundSubtleColor() string

GetForegroundSubtleColor returns the ForegroundSubtleColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetForegroundSubtleColorOk ¶

func (o *ProjectBrandingColors) GetForegroundSubtleColorOk() (*string, bool)

GetForegroundSubtleColorOk returns a tuple with the ForegroundSubtleColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetInputBackgroundColor ¶

func (o *ProjectBrandingColors) GetInputBackgroundColor() string

GetInputBackgroundColor returns the InputBackgroundColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetInputBackgroundColorOk ¶

func (o *ProjectBrandingColors) GetInputBackgroundColorOk() (*string, bool)

GetInputBackgroundColorOk returns a tuple with the InputBackgroundColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetInputDisabledColor ¶

func (o *ProjectBrandingColors) GetInputDisabledColor() string

GetInputDisabledColor returns the InputDisabledColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetInputDisabledColorOk ¶

func (o *ProjectBrandingColors) GetInputDisabledColorOk() (*string, bool)

GetInputDisabledColorOk returns a tuple with the InputDisabledColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetInputPlaceholderColor ¶

func (o *ProjectBrandingColors) GetInputPlaceholderColor() string

GetInputPlaceholderColor returns the InputPlaceholderColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetInputPlaceholderColorOk ¶

func (o *ProjectBrandingColors) GetInputPlaceholderColorOk() (*string, bool)

GetInputPlaceholderColorOk returns a tuple with the InputPlaceholderColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetInputTextColor ¶

func (o *ProjectBrandingColors) GetInputTextColor() string

GetInputTextColor returns the InputTextColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetInputTextColorOk ¶

func (o *ProjectBrandingColors) GetInputTextColorOk() (*string, bool)

GetInputTextColorOk returns a tuple with the InputTextColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetPrimaryColor ¶

func (o *ProjectBrandingColors) GetPrimaryColor() string

GetPrimaryColor returns the PrimaryColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetPrimaryColorOk ¶

func (o *ProjectBrandingColors) GetPrimaryColorOk() (*string, bool)

GetPrimaryColorOk returns a tuple with the PrimaryColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetSecondaryColor ¶

func (o *ProjectBrandingColors) GetSecondaryColor() string

GetSecondaryColor returns the SecondaryColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetSecondaryColorOk ¶

func (o *ProjectBrandingColors) GetSecondaryColorOk() (*string, bool)

GetSecondaryColorOk returns a tuple with the SecondaryColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetSuccessEmphasisColor ¶

func (o *ProjectBrandingColors) GetSuccessEmphasisColor() string

GetSuccessEmphasisColor returns the SuccessEmphasisColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetSuccessEmphasisColorOk ¶

func (o *ProjectBrandingColors) GetSuccessEmphasisColorOk() (*string, bool)

GetSuccessEmphasisColorOk returns a tuple with the SuccessEmphasisColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetTextDefaultColor ¶

func (o *ProjectBrandingColors) GetTextDefaultColor() string

GetTextDefaultColor returns the TextDefaultColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetTextDefaultColorOk ¶

func (o *ProjectBrandingColors) GetTextDefaultColorOk() (*string, bool)

GetTextDefaultColorOk returns a tuple with the TextDefaultColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) GetTextDisabledColor ¶

func (o *ProjectBrandingColors) GetTextDisabledColor() string

GetTextDisabledColor returns the TextDisabledColor field value if set, zero value otherwise.

func (*ProjectBrandingColors) GetTextDisabledColorOk ¶

func (o *ProjectBrandingColors) GetTextDisabledColorOk() (*string, bool)

GetTextDisabledColorOk returns a tuple with the TextDisabledColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingColors) HasAccentDefaultColor ¶

func (o *ProjectBrandingColors) HasAccentDefaultColor() bool

HasAccentDefaultColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasAccentDisabledColor ¶

func (o *ProjectBrandingColors) HasAccentDisabledColor() bool

HasAccentDisabledColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasAccentEmphasisColor ¶

func (o *ProjectBrandingColors) HasAccentEmphasisColor() bool

HasAccentEmphasisColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasAccentMutedColor ¶

func (o *ProjectBrandingColors) HasAccentMutedColor() bool

HasAccentMutedColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasAccentSubtleColor ¶

func (o *ProjectBrandingColors) HasAccentSubtleColor() bool

HasAccentSubtleColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasBackgroundCanvasColor ¶

func (o *ProjectBrandingColors) HasBackgroundCanvasColor() bool

HasBackgroundCanvasColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasBackgroundSubtleColor ¶

func (o *ProjectBrandingColors) HasBackgroundSubtleColor() bool

HasBackgroundSubtleColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasBackgroundSurfaceColor ¶

func (o *ProjectBrandingColors) HasBackgroundSurfaceColor() bool

HasBackgroundSurfaceColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasBorderDefaultColor ¶

func (o *ProjectBrandingColors) HasBorderDefaultColor() bool

HasBorderDefaultColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasErrorDefaultColor ¶

func (o *ProjectBrandingColors) HasErrorDefaultColor() bool

HasErrorDefaultColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasErrorEmphasisColor ¶

func (o *ProjectBrandingColors) HasErrorEmphasisColor() bool

HasErrorEmphasisColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasErrorMutedColor ¶

func (o *ProjectBrandingColors) HasErrorMutedColor() bool

HasErrorMutedColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasErrorSubtleColor ¶

func (o *ProjectBrandingColors) HasErrorSubtleColor() bool

HasErrorSubtleColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasForegroundDefaultColor ¶

func (o *ProjectBrandingColors) HasForegroundDefaultColor() bool

HasForegroundDefaultColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasForegroundDisabledColor ¶

func (o *ProjectBrandingColors) HasForegroundDisabledColor() bool

HasForegroundDisabledColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasForegroundMutedColor ¶

func (o *ProjectBrandingColors) HasForegroundMutedColor() bool

HasForegroundMutedColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasForegroundOnAccentColor ¶

func (o *ProjectBrandingColors) HasForegroundOnAccentColor() bool

HasForegroundOnAccentColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasForegroundOnDarkColor ¶

func (o *ProjectBrandingColors) HasForegroundOnDarkColor() bool

HasForegroundOnDarkColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasForegroundOnDisabledColor ¶

func (o *ProjectBrandingColors) HasForegroundOnDisabledColor() bool

HasForegroundOnDisabledColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasForegroundSubtleColor ¶

func (o *ProjectBrandingColors) HasForegroundSubtleColor() bool

HasForegroundSubtleColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasInputBackgroundColor ¶

func (o *ProjectBrandingColors) HasInputBackgroundColor() bool

HasInputBackgroundColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasInputDisabledColor ¶

func (o *ProjectBrandingColors) HasInputDisabledColor() bool

HasInputDisabledColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasInputPlaceholderColor ¶

func (o *ProjectBrandingColors) HasInputPlaceholderColor() bool

HasInputPlaceholderColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasInputTextColor ¶

func (o *ProjectBrandingColors) HasInputTextColor() bool

HasInputTextColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasPrimaryColor ¶

func (o *ProjectBrandingColors) HasPrimaryColor() bool

HasPrimaryColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasSecondaryColor ¶

func (o *ProjectBrandingColors) HasSecondaryColor() bool

HasSecondaryColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasSuccessEmphasisColor ¶

func (o *ProjectBrandingColors) HasSuccessEmphasisColor() bool

HasSuccessEmphasisColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasTextDefaultColor ¶

func (o *ProjectBrandingColors) HasTextDefaultColor() bool

HasTextDefaultColor returns a boolean if a field has been set.

func (*ProjectBrandingColors) HasTextDisabledColor ¶

func (o *ProjectBrandingColors) HasTextDisabledColor() bool

HasTextDisabledColor returns a boolean if a field has been set.

func (ProjectBrandingColors) MarshalJSON ¶

func (o ProjectBrandingColors) MarshalJSON() ([]byte, error)

func (*ProjectBrandingColors) SetAccentDefaultColor ¶

func (o *ProjectBrandingColors) SetAccentDefaultColor(v string)

SetAccentDefaultColor gets a reference to the given string and assigns it to the AccentDefaultColor field.

func (*ProjectBrandingColors) SetAccentDisabledColor ¶

func (o *ProjectBrandingColors) SetAccentDisabledColor(v string)

SetAccentDisabledColor gets a reference to the given string and assigns it to the AccentDisabledColor field.

func (*ProjectBrandingColors) SetAccentEmphasisColor ¶

func (o *ProjectBrandingColors) SetAccentEmphasisColor(v string)

SetAccentEmphasisColor gets a reference to the given string and assigns it to the AccentEmphasisColor field.

func (*ProjectBrandingColors) SetAccentMutedColor ¶

func (o *ProjectBrandingColors) SetAccentMutedColor(v string)

SetAccentMutedColor gets a reference to the given string and assigns it to the AccentMutedColor field.

func (*ProjectBrandingColors) SetAccentSubtleColor ¶

func (o *ProjectBrandingColors) SetAccentSubtleColor(v string)

SetAccentSubtleColor gets a reference to the given string and assigns it to the AccentSubtleColor field.

func (*ProjectBrandingColors) SetBackgroundCanvasColor ¶

func (o *ProjectBrandingColors) SetBackgroundCanvasColor(v string)

SetBackgroundCanvasColor gets a reference to the given string and assigns it to the BackgroundCanvasColor field.

func (*ProjectBrandingColors) SetBackgroundSubtleColor ¶

func (o *ProjectBrandingColors) SetBackgroundSubtleColor(v string)

SetBackgroundSubtleColor gets a reference to the given string and assigns it to the BackgroundSubtleColor field.

func (*ProjectBrandingColors) SetBackgroundSurfaceColor ¶

func (o *ProjectBrandingColors) SetBackgroundSurfaceColor(v string)

SetBackgroundSurfaceColor gets a reference to the given string and assigns it to the BackgroundSurfaceColor field.

func (*ProjectBrandingColors) SetBorderDefaultColor ¶

func (o *ProjectBrandingColors) SetBorderDefaultColor(v string)

SetBorderDefaultColor gets a reference to the given string and assigns it to the BorderDefaultColor field.

func (*ProjectBrandingColors) SetErrorDefaultColor ¶

func (o *ProjectBrandingColors) SetErrorDefaultColor(v string)

SetErrorDefaultColor gets a reference to the given string and assigns it to the ErrorDefaultColor field.

func (*ProjectBrandingColors) SetErrorEmphasisColor ¶

func (o *ProjectBrandingColors) SetErrorEmphasisColor(v string)

SetErrorEmphasisColor gets a reference to the given string and assigns it to the ErrorEmphasisColor field.

func (*ProjectBrandingColors) SetErrorMutedColor ¶

func (o *ProjectBrandingColors) SetErrorMutedColor(v string)

SetErrorMutedColor gets a reference to the given string and assigns it to the ErrorMutedColor field.

func (*ProjectBrandingColors) SetErrorSubtleColor ¶

func (o *ProjectBrandingColors) SetErrorSubtleColor(v string)

SetErrorSubtleColor gets a reference to the given string and assigns it to the ErrorSubtleColor field.

func (*ProjectBrandingColors) SetForegroundDefaultColor ¶

func (o *ProjectBrandingColors) SetForegroundDefaultColor(v string)

SetForegroundDefaultColor gets a reference to the given string and assigns it to the ForegroundDefaultColor field.

func (*ProjectBrandingColors) SetForegroundDisabledColor ¶

func (o *ProjectBrandingColors) SetForegroundDisabledColor(v string)

SetForegroundDisabledColor gets a reference to the given string and assigns it to the ForegroundDisabledColor field.

func (*ProjectBrandingColors) SetForegroundMutedColor ¶

func (o *ProjectBrandingColors) SetForegroundMutedColor(v string)

SetForegroundMutedColor gets a reference to the given string and assigns it to the ForegroundMutedColor field.

func (*ProjectBrandingColors) SetForegroundOnAccentColor ¶

func (o *ProjectBrandingColors) SetForegroundOnAccentColor(v string)

SetForegroundOnAccentColor gets a reference to the given string and assigns it to the ForegroundOnAccentColor field.

func (*ProjectBrandingColors) SetForegroundOnDarkColor ¶

func (o *ProjectBrandingColors) SetForegroundOnDarkColor(v string)

SetForegroundOnDarkColor gets a reference to the given string and assigns it to the ForegroundOnDarkColor field.

func (*ProjectBrandingColors) SetForegroundOnDisabledColor ¶

func (o *ProjectBrandingColors) SetForegroundOnDisabledColor(v string)

SetForegroundOnDisabledColor gets a reference to the given string and assigns it to the ForegroundOnDisabledColor field.

func (*ProjectBrandingColors) SetForegroundSubtleColor ¶

func (o *ProjectBrandingColors) SetForegroundSubtleColor(v string)

SetForegroundSubtleColor gets a reference to the given string and assigns it to the ForegroundSubtleColor field.

func (*ProjectBrandingColors) SetInputBackgroundColor ¶

func (o *ProjectBrandingColors) SetInputBackgroundColor(v string)

SetInputBackgroundColor gets a reference to the given string and assigns it to the InputBackgroundColor field.

func (*ProjectBrandingColors) SetInputDisabledColor ¶

func (o *ProjectBrandingColors) SetInputDisabledColor(v string)

SetInputDisabledColor gets a reference to the given string and assigns it to the InputDisabledColor field.

func (*ProjectBrandingColors) SetInputPlaceholderColor ¶

func (o *ProjectBrandingColors) SetInputPlaceholderColor(v string)

SetInputPlaceholderColor gets a reference to the given string and assigns it to the InputPlaceholderColor field.

func (*ProjectBrandingColors) SetInputTextColor ¶

func (o *ProjectBrandingColors) SetInputTextColor(v string)

SetInputTextColor gets a reference to the given string and assigns it to the InputTextColor field.

func (*ProjectBrandingColors) SetPrimaryColor ¶

func (o *ProjectBrandingColors) SetPrimaryColor(v string)

SetPrimaryColor gets a reference to the given string and assigns it to the PrimaryColor field.

func (*ProjectBrandingColors) SetSecondaryColor ¶

func (o *ProjectBrandingColors) SetSecondaryColor(v string)

SetSecondaryColor gets a reference to the given string and assigns it to the SecondaryColor field.

func (*ProjectBrandingColors) SetSuccessEmphasisColor ¶

func (o *ProjectBrandingColors) SetSuccessEmphasisColor(v string)

SetSuccessEmphasisColor gets a reference to the given string and assigns it to the SuccessEmphasisColor field.

func (*ProjectBrandingColors) SetTextDefaultColor ¶

func (o *ProjectBrandingColors) SetTextDefaultColor(v string)

SetTextDefaultColor gets a reference to the given string and assigns it to the TextDefaultColor field.

func (*ProjectBrandingColors) SetTextDisabledColor ¶

func (o *ProjectBrandingColors) SetTextDisabledColor(v string)

SetTextDisabledColor gets a reference to the given string and assigns it to the TextDisabledColor field.

func (ProjectBrandingColors) ToMap ¶

func (o ProjectBrandingColors) ToMap() (map[string]interface{}, error)

func (*ProjectBrandingColors) UnmarshalJSON ¶

func (o *ProjectBrandingColors) UnmarshalJSON(bytes []byte) (err error)

type ProjectBrandingTheme ¶

type ProjectBrandingTheme struct {
	// AccentDefaultColor is a hex color code used by the Ory Account Experience theme.
	AccentDefaultColor *string `json:"accent_default_color,omitempty"`
	// AccentDisabledColor is a hex color code used by the Ory Account Experience theme.
	AccentDisabledColor *string `json:"accent_disabled_color,omitempty"`
	// AccentEmphasisColor is a hex color code used by the Ory Account Experience theme.
	AccentEmphasisColor *string `json:"accent_emphasis_color,omitempty"`
	// AccentMutedColor is a hex color code used by the Ory Account Experience theme.
	AccentMutedColor *string `json:"accent_muted_color,omitempty"`
	// AccentSubtleColor is a hex color code used by the Ory Account Experience theme.
	AccentSubtleColor *string `json:"accent_subtle_color,omitempty"`
	// BackgroundCanvasColor is a hex color code used by the Ory Account Experience theme.
	BackgroundCanvasColor *string `json:"background_canvas_color,omitempty"`
	// BackgroundSubtleColor is a hex color code used by the Ory Account Experience theme.
	BackgroundSubtleColor *string `json:"background_subtle_color,omitempty"`
	// BackgroundSurfaceColor is a hex color code used by the Ory Account Experience theme.
	BackgroundSurfaceColor *string `json:"background_surface_color,omitempty"`
	// BorderDefaultColor is a hex color code used by the Ory Account Experience theme.
	BorderDefaultColor *string `json:"border_default_color,omitempty"`
	// The Customization Creation Date.
	CreatedAt time.Time `json:"created_at"`
	// ErrorDefaultColor is a hex color code used by the Ory Account Experience theme.
	ErrorDefaultColor *string `json:"error_default_color,omitempty"`
	// ErrorEmphasisColor is a hex color code used by the Ory Account Experience theme.
	ErrorEmphasisColor *string `json:"error_emphasis_color,omitempty"`
	// ErrorMutedColor is a hex color code used by the Ory Account Experience theme.
	ErrorMutedColor *string `json:"error_muted_color,omitempty"`
	// ErrorSubtleColor is a hex color code used by the Ory Account Experience theme.
	ErrorSubtleColor *string `json:"error_subtle_color,omitempty"`
	// Favicon Type The Favicon mime type.
	FaviconType *string `json:"favicon_type,omitempty"`
	// Favicon URL Favicon can be an https:// or base64:// URL. If the URL is not allowed, the favicon will be stored inside the Ory Network storage bucket.
	FaviconUrl *string `json:"favicon_url,omitempty"`
	// ForegroundDefaultColor is a hex color code used by the Ory Account Experience theme.
	ForegroundDefaultColor *string `json:"foreground_default_color,omitempty"`
	// ForegroundDisabledColor is a hex color code used by the Ory Account Experience theme.
	ForegroundDisabledColor *string `json:"foreground_disabled_color,omitempty"`
	// ForegroundMutedColor is a hex color code used by the Ory Account Experience theme.
	ForegroundMutedColor *string `json:"foreground_muted_color,omitempty"`
	// ForegroundOnAccentColor is a hex color code used by the Ory Account Experience theme.
	ForegroundOnAccentColor *string `json:"foreground_on_accent_color,omitempty"`
	// ForegroundOnDarkColor is a hex color code used by the Ory Account Experience theme.
	ForegroundOnDarkColor *string `json:"foreground_on_dark_color,omitempty"`
	// ForegroundOnDisabledColor is a hex color code used by the Ory Account Experience theme.
	ForegroundOnDisabledColor *string `json:"foreground_on_disabled_color,omitempty"`
	// ForegroundSubtleColor is a hex color code used by the Ory Account Experience theme.
	ForegroundSubtleColor *string `json:"foreground_subtle_color,omitempty"`
	// The customization theme ID.
	Id string `json:"id"`
	// InputBackgroundColor is a hex color code used by the Ory Account Experience theme.
	InputBackgroundColor *string `json:"input_background_color,omitempty"`
	// InputDisabledColor is a hex color code used by the Ory Account Experience theme.
	InputDisabledColor *string `json:"input_disabled_color,omitempty"`
	// InputPlaceholderColor is a hex color code used by the Ory Account Experience theme.
	InputPlaceholderColor *string `json:"input_placeholder_color,omitempty"`
	// InputTextColor is a hex color code used by the Ory Account Experience theme.
	InputTextColor *string `json:"input_text_color,omitempty"`
	// Logo Type The Logo mime type.
	LogoType *string `json:"logo_type,omitempty"`
	// Logo URL Logo can be an https:// or base64:// URL. If the URL is not allowed, the logo will be stored inside the Ory Network storage bucket.
	LogoUrl *string `json:"logo_url,omitempty"`
	// The customization theme name.
	Name string `json:"name"`
	// Primary color is an hsla color value used to derive the other colors from for the Ory Account Experience theme.
	PrimaryColor *string `json:"primary_color,omitempty"`
	// The ProjectBranding ID this customization is associated with.
	ProjectBrandingId string `json:"project_branding_id"`
	// Secondary color is a hsla color code used to derive the other colors from for the Ory Account Experience theme.
	SecondaryColor *string `json:"secondary_color,omitempty"`
	// SuccessEmphasisColor is a hex color code used by the Ory Account Experience theme.
	SuccessEmphasisColor *string `json:"success_emphasis_color,omitempty"`
	// TextDefaultColor is a hex color code used by the Ory Account Experience theme.
	TextDefaultColor *string `json:"text_default_color,omitempty"`
	// TextDisabledColor is a hex color code used by the Ory Account Experience theme.
	TextDisabledColor *string `json:"text_disabled_color,omitempty"`
	// Last Time Branding was Updated.
	UpdatedAt            time.Time `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

ProjectBrandingTheme struct for ProjectBrandingTheme

func NewProjectBrandingTheme ¶

func NewProjectBrandingTheme(createdAt time.Time, id string, name string, projectBrandingId string, updatedAt time.Time) *ProjectBrandingTheme

NewProjectBrandingTheme instantiates a new ProjectBrandingTheme 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 NewProjectBrandingThemeWithDefaults ¶

func NewProjectBrandingThemeWithDefaults() *ProjectBrandingTheme

NewProjectBrandingThemeWithDefaults instantiates a new ProjectBrandingTheme 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 (*ProjectBrandingTheme) GetAccentDefaultColor ¶

func (o *ProjectBrandingTheme) GetAccentDefaultColor() string

GetAccentDefaultColor returns the AccentDefaultColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetAccentDefaultColorOk ¶

func (o *ProjectBrandingTheme) GetAccentDefaultColorOk() (*string, bool)

GetAccentDefaultColorOk returns a tuple with the AccentDefaultColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetAccentDisabledColor ¶

func (o *ProjectBrandingTheme) GetAccentDisabledColor() string

GetAccentDisabledColor returns the AccentDisabledColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetAccentDisabledColorOk ¶

func (o *ProjectBrandingTheme) GetAccentDisabledColorOk() (*string, bool)

GetAccentDisabledColorOk returns a tuple with the AccentDisabledColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetAccentEmphasisColor ¶

func (o *ProjectBrandingTheme) GetAccentEmphasisColor() string

GetAccentEmphasisColor returns the AccentEmphasisColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetAccentEmphasisColorOk ¶

func (o *ProjectBrandingTheme) GetAccentEmphasisColorOk() (*string, bool)

GetAccentEmphasisColorOk returns a tuple with the AccentEmphasisColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetAccentMutedColor ¶

func (o *ProjectBrandingTheme) GetAccentMutedColor() string

GetAccentMutedColor returns the AccentMutedColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetAccentMutedColorOk ¶

func (o *ProjectBrandingTheme) GetAccentMutedColorOk() (*string, bool)

GetAccentMutedColorOk returns a tuple with the AccentMutedColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetAccentSubtleColor ¶

func (o *ProjectBrandingTheme) GetAccentSubtleColor() string

GetAccentSubtleColor returns the AccentSubtleColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetAccentSubtleColorOk ¶

func (o *ProjectBrandingTheme) GetAccentSubtleColorOk() (*string, bool)

GetAccentSubtleColorOk returns a tuple with the AccentSubtleColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetBackgroundCanvasColor ¶

func (o *ProjectBrandingTheme) GetBackgroundCanvasColor() string

GetBackgroundCanvasColor returns the BackgroundCanvasColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetBackgroundCanvasColorOk ¶

func (o *ProjectBrandingTheme) GetBackgroundCanvasColorOk() (*string, bool)

GetBackgroundCanvasColorOk returns a tuple with the BackgroundCanvasColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetBackgroundSubtleColor ¶

func (o *ProjectBrandingTheme) GetBackgroundSubtleColor() string

GetBackgroundSubtleColor returns the BackgroundSubtleColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetBackgroundSubtleColorOk ¶

func (o *ProjectBrandingTheme) GetBackgroundSubtleColorOk() (*string, bool)

GetBackgroundSubtleColorOk returns a tuple with the BackgroundSubtleColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetBackgroundSurfaceColor ¶

func (o *ProjectBrandingTheme) GetBackgroundSurfaceColor() string

GetBackgroundSurfaceColor returns the BackgroundSurfaceColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetBackgroundSurfaceColorOk ¶

func (o *ProjectBrandingTheme) GetBackgroundSurfaceColorOk() (*string, bool)

GetBackgroundSurfaceColorOk returns a tuple with the BackgroundSurfaceColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetBorderDefaultColor ¶

func (o *ProjectBrandingTheme) GetBorderDefaultColor() string

GetBorderDefaultColor returns the BorderDefaultColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetBorderDefaultColorOk ¶

func (o *ProjectBrandingTheme) GetBorderDefaultColorOk() (*string, bool)

GetBorderDefaultColorOk returns a tuple with the BorderDefaultColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetCreatedAt ¶

func (o *ProjectBrandingTheme) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*ProjectBrandingTheme) GetCreatedAtOk ¶

func (o *ProjectBrandingTheme) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetErrorDefaultColor ¶

func (o *ProjectBrandingTheme) GetErrorDefaultColor() string

GetErrorDefaultColor returns the ErrorDefaultColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetErrorDefaultColorOk ¶

func (o *ProjectBrandingTheme) GetErrorDefaultColorOk() (*string, bool)

GetErrorDefaultColorOk returns a tuple with the ErrorDefaultColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetErrorEmphasisColor ¶

func (o *ProjectBrandingTheme) GetErrorEmphasisColor() string

GetErrorEmphasisColor returns the ErrorEmphasisColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetErrorEmphasisColorOk ¶

func (o *ProjectBrandingTheme) GetErrorEmphasisColorOk() (*string, bool)

GetErrorEmphasisColorOk returns a tuple with the ErrorEmphasisColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetErrorMutedColor ¶

func (o *ProjectBrandingTheme) GetErrorMutedColor() string

GetErrorMutedColor returns the ErrorMutedColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetErrorMutedColorOk ¶

func (o *ProjectBrandingTheme) GetErrorMutedColorOk() (*string, bool)

GetErrorMutedColorOk returns a tuple with the ErrorMutedColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetErrorSubtleColor ¶

func (o *ProjectBrandingTheme) GetErrorSubtleColor() string

GetErrorSubtleColor returns the ErrorSubtleColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetErrorSubtleColorOk ¶

func (o *ProjectBrandingTheme) GetErrorSubtleColorOk() (*string, bool)

GetErrorSubtleColorOk returns a tuple with the ErrorSubtleColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetFaviconType ¶

func (o *ProjectBrandingTheme) GetFaviconType() string

GetFaviconType returns the FaviconType field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetFaviconTypeOk ¶

func (o *ProjectBrandingTheme) GetFaviconTypeOk() (*string, bool)

GetFaviconTypeOk returns a tuple with the FaviconType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetFaviconUrl ¶

func (o *ProjectBrandingTheme) GetFaviconUrl() string

GetFaviconUrl returns the FaviconUrl field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetFaviconUrlOk ¶

func (o *ProjectBrandingTheme) GetFaviconUrlOk() (*string, bool)

GetFaviconUrlOk returns a tuple with the FaviconUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetForegroundDefaultColor ¶

func (o *ProjectBrandingTheme) GetForegroundDefaultColor() string

GetForegroundDefaultColor returns the ForegroundDefaultColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetForegroundDefaultColorOk ¶

func (o *ProjectBrandingTheme) GetForegroundDefaultColorOk() (*string, bool)

GetForegroundDefaultColorOk returns a tuple with the ForegroundDefaultColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetForegroundDisabledColor ¶

func (o *ProjectBrandingTheme) GetForegroundDisabledColor() string

GetForegroundDisabledColor returns the ForegroundDisabledColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetForegroundDisabledColorOk ¶

func (o *ProjectBrandingTheme) GetForegroundDisabledColorOk() (*string, bool)

GetForegroundDisabledColorOk returns a tuple with the ForegroundDisabledColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetForegroundMutedColor ¶

func (o *ProjectBrandingTheme) GetForegroundMutedColor() string

GetForegroundMutedColor returns the ForegroundMutedColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetForegroundMutedColorOk ¶

func (o *ProjectBrandingTheme) GetForegroundMutedColorOk() (*string, bool)

GetForegroundMutedColorOk returns a tuple with the ForegroundMutedColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetForegroundOnAccentColor ¶

func (o *ProjectBrandingTheme) GetForegroundOnAccentColor() string

GetForegroundOnAccentColor returns the ForegroundOnAccentColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetForegroundOnAccentColorOk ¶

func (o *ProjectBrandingTheme) GetForegroundOnAccentColorOk() (*string, bool)

GetForegroundOnAccentColorOk returns a tuple with the ForegroundOnAccentColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetForegroundOnDarkColor ¶

func (o *ProjectBrandingTheme) GetForegroundOnDarkColor() string

GetForegroundOnDarkColor returns the ForegroundOnDarkColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetForegroundOnDarkColorOk ¶

func (o *ProjectBrandingTheme) GetForegroundOnDarkColorOk() (*string, bool)

GetForegroundOnDarkColorOk returns a tuple with the ForegroundOnDarkColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetForegroundOnDisabledColor ¶

func (o *ProjectBrandingTheme) GetForegroundOnDisabledColor() string

GetForegroundOnDisabledColor returns the ForegroundOnDisabledColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetForegroundOnDisabledColorOk ¶

func (o *ProjectBrandingTheme) GetForegroundOnDisabledColorOk() (*string, bool)

GetForegroundOnDisabledColorOk returns a tuple with the ForegroundOnDisabledColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetForegroundSubtleColor ¶

func (o *ProjectBrandingTheme) GetForegroundSubtleColor() string

GetForegroundSubtleColor returns the ForegroundSubtleColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetForegroundSubtleColorOk ¶

func (o *ProjectBrandingTheme) GetForegroundSubtleColorOk() (*string, bool)

GetForegroundSubtleColorOk returns a tuple with the ForegroundSubtleColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetId ¶

func (o *ProjectBrandingTheme) GetId() string

GetId returns the Id field value

func (*ProjectBrandingTheme) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetInputBackgroundColor ¶

func (o *ProjectBrandingTheme) GetInputBackgroundColor() string

GetInputBackgroundColor returns the InputBackgroundColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetInputBackgroundColorOk ¶

func (o *ProjectBrandingTheme) GetInputBackgroundColorOk() (*string, bool)

GetInputBackgroundColorOk returns a tuple with the InputBackgroundColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetInputDisabledColor ¶

func (o *ProjectBrandingTheme) GetInputDisabledColor() string

GetInputDisabledColor returns the InputDisabledColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetInputDisabledColorOk ¶

func (o *ProjectBrandingTheme) GetInputDisabledColorOk() (*string, bool)

GetInputDisabledColorOk returns a tuple with the InputDisabledColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetInputPlaceholderColor ¶

func (o *ProjectBrandingTheme) GetInputPlaceholderColor() string

GetInputPlaceholderColor returns the InputPlaceholderColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetInputPlaceholderColorOk ¶

func (o *ProjectBrandingTheme) GetInputPlaceholderColorOk() (*string, bool)

GetInputPlaceholderColorOk returns a tuple with the InputPlaceholderColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetInputTextColor ¶

func (o *ProjectBrandingTheme) GetInputTextColor() string

GetInputTextColor returns the InputTextColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetInputTextColorOk ¶

func (o *ProjectBrandingTheme) GetInputTextColorOk() (*string, bool)

GetInputTextColorOk returns a tuple with the InputTextColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetLogoType ¶

func (o *ProjectBrandingTheme) GetLogoType() string

GetLogoType returns the LogoType field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetLogoTypeOk ¶

func (o *ProjectBrandingTheme) GetLogoTypeOk() (*string, bool)

GetLogoTypeOk returns a tuple with the LogoType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetLogoUrl ¶

func (o *ProjectBrandingTheme) GetLogoUrl() string

GetLogoUrl returns the LogoUrl field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetLogoUrlOk ¶

func (o *ProjectBrandingTheme) GetLogoUrlOk() (*string, bool)

GetLogoUrlOk returns a tuple with the LogoUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetName ¶

func (o *ProjectBrandingTheme) GetName() string

GetName returns the Name field value

func (*ProjectBrandingTheme) GetNameOk ¶

func (o *ProjectBrandingTheme) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetPrimaryColor ¶

func (o *ProjectBrandingTheme) GetPrimaryColor() string

GetPrimaryColor returns the PrimaryColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetPrimaryColorOk ¶

func (o *ProjectBrandingTheme) GetPrimaryColorOk() (*string, bool)

GetPrimaryColorOk returns a tuple with the PrimaryColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetProjectBrandingId ¶

func (o *ProjectBrandingTheme) GetProjectBrandingId() string

GetProjectBrandingId returns the ProjectBrandingId field value

func (*ProjectBrandingTheme) GetProjectBrandingIdOk ¶

func (o *ProjectBrandingTheme) GetProjectBrandingIdOk() (*string, bool)

GetProjectBrandingIdOk returns a tuple with the ProjectBrandingId field value and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetSecondaryColor ¶

func (o *ProjectBrandingTheme) GetSecondaryColor() string

GetSecondaryColor returns the SecondaryColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetSecondaryColorOk ¶

func (o *ProjectBrandingTheme) GetSecondaryColorOk() (*string, bool)

GetSecondaryColorOk returns a tuple with the SecondaryColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetSuccessEmphasisColor ¶

func (o *ProjectBrandingTheme) GetSuccessEmphasisColor() string

GetSuccessEmphasisColor returns the SuccessEmphasisColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetSuccessEmphasisColorOk ¶

func (o *ProjectBrandingTheme) GetSuccessEmphasisColorOk() (*string, bool)

GetSuccessEmphasisColorOk returns a tuple with the SuccessEmphasisColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetTextDefaultColor ¶

func (o *ProjectBrandingTheme) GetTextDefaultColor() string

GetTextDefaultColor returns the TextDefaultColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetTextDefaultColorOk ¶

func (o *ProjectBrandingTheme) GetTextDefaultColorOk() (*string, bool)

GetTextDefaultColorOk returns a tuple with the TextDefaultColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetTextDisabledColor ¶

func (o *ProjectBrandingTheme) GetTextDisabledColor() string

GetTextDisabledColor returns the TextDisabledColor field value if set, zero value otherwise.

func (*ProjectBrandingTheme) GetTextDisabledColorOk ¶

func (o *ProjectBrandingTheme) GetTextDisabledColorOk() (*string, bool)

GetTextDisabledColorOk returns a tuple with the TextDisabledColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) GetUpdatedAt ¶

func (o *ProjectBrandingTheme) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*ProjectBrandingTheme) GetUpdatedAtOk ¶

func (o *ProjectBrandingTheme) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (*ProjectBrandingTheme) HasAccentDefaultColor ¶

func (o *ProjectBrandingTheme) HasAccentDefaultColor() bool

HasAccentDefaultColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasAccentDisabledColor ¶

func (o *ProjectBrandingTheme) HasAccentDisabledColor() bool

HasAccentDisabledColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasAccentEmphasisColor ¶

func (o *ProjectBrandingTheme) HasAccentEmphasisColor() bool

HasAccentEmphasisColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasAccentMutedColor ¶

func (o *ProjectBrandingTheme) HasAccentMutedColor() bool

HasAccentMutedColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasAccentSubtleColor ¶

func (o *ProjectBrandingTheme) HasAccentSubtleColor() bool

HasAccentSubtleColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasBackgroundCanvasColor ¶

func (o *ProjectBrandingTheme) HasBackgroundCanvasColor() bool

HasBackgroundCanvasColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasBackgroundSubtleColor ¶

func (o *ProjectBrandingTheme) HasBackgroundSubtleColor() bool

HasBackgroundSubtleColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasBackgroundSurfaceColor ¶

func (o *ProjectBrandingTheme) HasBackgroundSurfaceColor() bool

HasBackgroundSurfaceColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasBorderDefaultColor ¶

func (o *ProjectBrandingTheme) HasBorderDefaultColor() bool

HasBorderDefaultColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasErrorDefaultColor ¶

func (o *ProjectBrandingTheme) HasErrorDefaultColor() bool

HasErrorDefaultColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasErrorEmphasisColor ¶

func (o *ProjectBrandingTheme) HasErrorEmphasisColor() bool

HasErrorEmphasisColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasErrorMutedColor ¶

func (o *ProjectBrandingTheme) HasErrorMutedColor() bool

HasErrorMutedColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasErrorSubtleColor ¶

func (o *ProjectBrandingTheme) HasErrorSubtleColor() bool

HasErrorSubtleColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasFaviconType ¶

func (o *ProjectBrandingTheme) HasFaviconType() bool

HasFaviconType returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasFaviconUrl ¶

func (o *ProjectBrandingTheme) HasFaviconUrl() bool

HasFaviconUrl returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasForegroundDefaultColor ¶

func (o *ProjectBrandingTheme) HasForegroundDefaultColor() bool

HasForegroundDefaultColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasForegroundDisabledColor ¶

func (o *ProjectBrandingTheme) HasForegroundDisabledColor() bool

HasForegroundDisabledColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasForegroundMutedColor ¶

func (o *ProjectBrandingTheme) HasForegroundMutedColor() bool

HasForegroundMutedColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasForegroundOnAccentColor ¶

func (o *ProjectBrandingTheme) HasForegroundOnAccentColor() bool

HasForegroundOnAccentColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasForegroundOnDarkColor ¶

func (o *ProjectBrandingTheme) HasForegroundOnDarkColor() bool

HasForegroundOnDarkColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasForegroundOnDisabledColor ¶

func (o *ProjectBrandingTheme) HasForegroundOnDisabledColor() bool

HasForegroundOnDisabledColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasForegroundSubtleColor ¶

func (o *ProjectBrandingTheme) HasForegroundSubtleColor() bool

HasForegroundSubtleColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasInputBackgroundColor ¶

func (o *ProjectBrandingTheme) HasInputBackgroundColor() bool

HasInputBackgroundColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasInputDisabledColor ¶

func (o *ProjectBrandingTheme) HasInputDisabledColor() bool

HasInputDisabledColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasInputPlaceholderColor ¶

func (o *ProjectBrandingTheme) HasInputPlaceholderColor() bool

HasInputPlaceholderColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasInputTextColor ¶

func (o *ProjectBrandingTheme) HasInputTextColor() bool

HasInputTextColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasLogoType ¶

func (o *ProjectBrandingTheme) HasLogoType() bool

HasLogoType returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasLogoUrl ¶

func (o *ProjectBrandingTheme) HasLogoUrl() bool

HasLogoUrl returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasPrimaryColor ¶

func (o *ProjectBrandingTheme) HasPrimaryColor() bool

HasPrimaryColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasSecondaryColor ¶

func (o *ProjectBrandingTheme) HasSecondaryColor() bool

HasSecondaryColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasSuccessEmphasisColor ¶

func (o *ProjectBrandingTheme) HasSuccessEmphasisColor() bool

HasSuccessEmphasisColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasTextDefaultColor ¶

func (o *ProjectBrandingTheme) HasTextDefaultColor() bool

HasTextDefaultColor returns a boolean if a field has been set.

func (*ProjectBrandingTheme) HasTextDisabledColor ¶

func (o *ProjectBrandingTheme) HasTextDisabledColor() bool

HasTextDisabledColor returns a boolean if a field has been set.

func (ProjectBrandingTheme) MarshalJSON ¶

func (o ProjectBrandingTheme) MarshalJSON() ([]byte, error)

func (*ProjectBrandingTheme) SetAccentDefaultColor ¶

func (o *ProjectBrandingTheme) SetAccentDefaultColor(v string)

SetAccentDefaultColor gets a reference to the given string and assigns it to the AccentDefaultColor field.

func (*ProjectBrandingTheme) SetAccentDisabledColor ¶

func (o *ProjectBrandingTheme) SetAccentDisabledColor(v string)

SetAccentDisabledColor gets a reference to the given string and assigns it to the AccentDisabledColor field.

func (*ProjectBrandingTheme) SetAccentEmphasisColor ¶

func (o *ProjectBrandingTheme) SetAccentEmphasisColor(v string)

SetAccentEmphasisColor gets a reference to the given string and assigns it to the AccentEmphasisColor field.

func (*ProjectBrandingTheme) SetAccentMutedColor ¶

func (o *ProjectBrandingTheme) SetAccentMutedColor(v string)

SetAccentMutedColor gets a reference to the given string and assigns it to the AccentMutedColor field.

func (*ProjectBrandingTheme) SetAccentSubtleColor ¶

func (o *ProjectBrandingTheme) SetAccentSubtleColor(v string)

SetAccentSubtleColor gets a reference to the given string and assigns it to the AccentSubtleColor field.

func (*ProjectBrandingTheme) SetBackgroundCanvasColor ¶

func (o *ProjectBrandingTheme) SetBackgroundCanvasColor(v string)

SetBackgroundCanvasColor gets a reference to the given string and assigns it to the BackgroundCanvasColor field.

func (*ProjectBrandingTheme) SetBackgroundSubtleColor ¶

func (o *ProjectBrandingTheme) SetBackgroundSubtleColor(v string)

SetBackgroundSubtleColor gets a reference to the given string and assigns it to the BackgroundSubtleColor field.

func (*ProjectBrandingTheme) SetBackgroundSurfaceColor ¶

func (o *ProjectBrandingTheme) SetBackgroundSurfaceColor(v string)

SetBackgroundSurfaceColor gets a reference to the given string and assigns it to the BackgroundSurfaceColor field.

func (*ProjectBrandingTheme) SetBorderDefaultColor ¶

func (o *ProjectBrandingTheme) SetBorderDefaultColor(v string)

SetBorderDefaultColor gets a reference to the given string and assigns it to the BorderDefaultColor field.

func (*ProjectBrandingTheme) SetCreatedAt ¶

func (o *ProjectBrandingTheme) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*ProjectBrandingTheme) SetErrorDefaultColor ¶

func (o *ProjectBrandingTheme) SetErrorDefaultColor(v string)

SetErrorDefaultColor gets a reference to the given string and assigns it to the ErrorDefaultColor field.

func (*ProjectBrandingTheme) SetErrorEmphasisColor ¶

func (o *ProjectBrandingTheme) SetErrorEmphasisColor(v string)

SetErrorEmphasisColor gets a reference to the given string and assigns it to the ErrorEmphasisColor field.

func (*ProjectBrandingTheme) SetErrorMutedColor ¶

func (o *ProjectBrandingTheme) SetErrorMutedColor(v string)

SetErrorMutedColor gets a reference to the given string and assigns it to the ErrorMutedColor field.

func (*ProjectBrandingTheme) SetErrorSubtleColor ¶

func (o *ProjectBrandingTheme) SetErrorSubtleColor(v string)

SetErrorSubtleColor gets a reference to the given string and assigns it to the ErrorSubtleColor field.

func (*ProjectBrandingTheme) SetFaviconType ¶

func (o *ProjectBrandingTheme) SetFaviconType(v string)

SetFaviconType gets a reference to the given string and assigns it to the FaviconType field.

func (*ProjectBrandingTheme) SetFaviconUrl ¶

func (o *ProjectBrandingTheme) SetFaviconUrl(v string)

SetFaviconUrl gets a reference to the given string and assigns it to the FaviconUrl field.

func (*ProjectBrandingTheme) SetForegroundDefaultColor ¶

func (o *ProjectBrandingTheme) SetForegroundDefaultColor(v string)

SetForegroundDefaultColor gets a reference to the given string and assigns it to the ForegroundDefaultColor field.

func (*ProjectBrandingTheme) SetForegroundDisabledColor ¶

func (o *ProjectBrandingTheme) SetForegroundDisabledColor(v string)

SetForegroundDisabledColor gets a reference to the given string and assigns it to the ForegroundDisabledColor field.

func (*ProjectBrandingTheme) SetForegroundMutedColor ¶

func (o *ProjectBrandingTheme) SetForegroundMutedColor(v string)

SetForegroundMutedColor gets a reference to the given string and assigns it to the ForegroundMutedColor field.

func (*ProjectBrandingTheme) SetForegroundOnAccentColor ¶

func (o *ProjectBrandingTheme) SetForegroundOnAccentColor(v string)

SetForegroundOnAccentColor gets a reference to the given string and assigns it to the ForegroundOnAccentColor field.

func (*ProjectBrandingTheme) SetForegroundOnDarkColor ¶

func (o *ProjectBrandingTheme) SetForegroundOnDarkColor(v string)

SetForegroundOnDarkColor gets a reference to the given string and assigns it to the ForegroundOnDarkColor field.

func (*ProjectBrandingTheme) SetForegroundOnDisabledColor ¶

func (o *ProjectBrandingTheme) SetForegroundOnDisabledColor(v string)

SetForegroundOnDisabledColor gets a reference to the given string and assigns it to the ForegroundOnDisabledColor field.

func (*ProjectBrandingTheme) SetForegroundSubtleColor ¶

func (o *ProjectBrandingTheme) SetForegroundSubtleColor(v string)

SetForegroundSubtleColor gets a reference to the given string and assigns it to the ForegroundSubtleColor field.

func (*ProjectBrandingTheme) SetId ¶

func (o *ProjectBrandingTheme) SetId(v string)

SetId sets field value

func (*ProjectBrandingTheme) SetInputBackgroundColor ¶

func (o *ProjectBrandingTheme) SetInputBackgroundColor(v string)

SetInputBackgroundColor gets a reference to the given string and assigns it to the InputBackgroundColor field.

func (*ProjectBrandingTheme) SetInputDisabledColor ¶

func (o *ProjectBrandingTheme) SetInputDisabledColor(v string)

SetInputDisabledColor gets a reference to the given string and assigns it to the InputDisabledColor field.

func (*ProjectBrandingTheme) SetInputPlaceholderColor ¶

func (o *ProjectBrandingTheme) SetInputPlaceholderColor(v string)

SetInputPlaceholderColor gets a reference to the given string and assigns it to the InputPlaceholderColor field.

func (*ProjectBrandingTheme) SetInputTextColor ¶

func (o *ProjectBrandingTheme) SetInputTextColor(v string)

SetInputTextColor gets a reference to the given string and assigns it to the InputTextColor field.

func (*ProjectBrandingTheme) SetLogoType ¶

func (o *ProjectBrandingTheme) SetLogoType(v string)

SetLogoType gets a reference to the given string and assigns it to the LogoType field.

func (*ProjectBrandingTheme) SetLogoUrl ¶

func (o *ProjectBrandingTheme) SetLogoUrl(v string)

SetLogoUrl gets a reference to the given string and assigns it to the LogoUrl field.

func (*ProjectBrandingTheme) SetName ¶

func (o *ProjectBrandingTheme) SetName(v string)

SetName sets field value

func (*ProjectBrandingTheme) SetPrimaryColor ¶

func (o *ProjectBrandingTheme) SetPrimaryColor(v string)

SetPrimaryColor gets a reference to the given string and assigns it to the PrimaryColor field.

func (*ProjectBrandingTheme) SetProjectBrandingId ¶

func (o *ProjectBrandingTheme) SetProjectBrandingId(v string)

SetProjectBrandingId sets field value

func (*ProjectBrandingTheme) SetSecondaryColor ¶

func (o *ProjectBrandingTheme) SetSecondaryColor(v string)

SetSecondaryColor gets a reference to the given string and assigns it to the SecondaryColor field.

func (*ProjectBrandingTheme) SetSuccessEmphasisColor ¶

func (o *ProjectBrandingTheme) SetSuccessEmphasisColor(v string)

SetSuccessEmphasisColor gets a reference to the given string and assigns it to the SuccessEmphasisColor field.

func (*ProjectBrandingTheme) SetTextDefaultColor ¶

func (o *ProjectBrandingTheme) SetTextDefaultColor(v string)

SetTextDefaultColor gets a reference to the given string and assigns it to the TextDefaultColor field.

func (*ProjectBrandingTheme) SetTextDisabledColor ¶

func (o *ProjectBrandingTheme) SetTextDisabledColor(v string)

SetTextDisabledColor gets a reference to the given string and assigns it to the TextDisabledColor field.

func (*ProjectBrandingTheme) SetUpdatedAt ¶

func (o *ProjectBrandingTheme) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (ProjectBrandingTheme) ToMap ¶

func (o ProjectBrandingTheme) ToMap() (map[string]interface{}, error)

func (*ProjectBrandingTheme) UnmarshalJSON ¶

func (o *ProjectBrandingTheme) UnmarshalJSON(bytes []byte) (err error)

type ProjectCors ¶

type ProjectCors struct {
	// Whether CORS is enabled for this endpoint.
	Enabled *bool `json:"enabled,omitempty"`
	// The allowed origins. Use `*` to allow all origins. A wildcard can also be used in the subdomain, i.e. `https://_*.example.com` will allow all origins on all subdomains of `example.com`.
	Origins              []string `json:"origins,omitempty"`
	AdditionalProperties map[string]interface{}
}

ProjectCors struct for ProjectCors

func NewProjectCors ¶

func NewProjectCors() *ProjectCors

NewProjectCors instantiates a new ProjectCors 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 NewProjectCorsWithDefaults ¶

func NewProjectCorsWithDefaults() *ProjectCors

NewProjectCorsWithDefaults instantiates a new ProjectCors 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 (*ProjectCors) GetEnabled ¶

func (o *ProjectCors) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*ProjectCors) GetEnabledOk ¶

func (o *ProjectCors) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectCors) GetOrigins ¶

func (o *ProjectCors) GetOrigins() []string

GetOrigins returns the Origins field value if set, zero value otherwise.

func (*ProjectCors) GetOriginsOk ¶

func (o *ProjectCors) GetOriginsOk() ([]string, bool)

GetOriginsOk returns a tuple with the Origins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectCors) HasEnabled ¶

func (o *ProjectCors) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*ProjectCors) HasOrigins ¶

func (o *ProjectCors) HasOrigins() bool

HasOrigins returns a boolean if a field has been set.

func (ProjectCors) MarshalJSON ¶

func (o ProjectCors) MarshalJSON() ([]byte, error)

func (*ProjectCors) SetEnabled ¶

func (o *ProjectCors) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*ProjectCors) SetOrigins ¶

func (o *ProjectCors) SetOrigins(v []string)

SetOrigins gets a reference to the given []string and assigns it to the Origins field.

func (ProjectCors) ToMap ¶

func (o ProjectCors) ToMap() (map[string]interface{}, error)

func (*ProjectCors) UnmarshalJSON ¶

func (o *ProjectCors) UnmarshalJSON(bytes []byte) (err error)

type ProjectEventsDatapoint ¶

type ProjectEventsDatapoint struct {
	// Event attributes with details
	Attributes []Attribute `json:"attributes"`
	// Name of the event
	Name string `json:"name"`
	// Time of occurence
	Timestamp            time.Time `json:"timestamp"`
	AdditionalProperties map[string]interface{}
}

ProjectEventsDatapoint struct for ProjectEventsDatapoint

func NewProjectEventsDatapoint ¶

func NewProjectEventsDatapoint(attributes []Attribute, name string, timestamp time.Time) *ProjectEventsDatapoint

NewProjectEventsDatapoint instantiates a new ProjectEventsDatapoint 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 NewProjectEventsDatapointWithDefaults ¶

func NewProjectEventsDatapointWithDefaults() *ProjectEventsDatapoint

NewProjectEventsDatapointWithDefaults instantiates a new ProjectEventsDatapoint 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 (*ProjectEventsDatapoint) GetAttributes ¶

func (o *ProjectEventsDatapoint) GetAttributes() []Attribute

GetAttributes returns the Attributes field value

func (*ProjectEventsDatapoint) GetAttributesOk ¶

func (o *ProjectEventsDatapoint) GetAttributesOk() ([]Attribute, bool)

GetAttributesOk returns a tuple with the Attributes field value and a boolean to check if the value has been set.

func (*ProjectEventsDatapoint) GetName ¶

func (o *ProjectEventsDatapoint) GetName() string

GetName returns the Name field value

func (*ProjectEventsDatapoint) GetNameOk ¶

func (o *ProjectEventsDatapoint) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ProjectEventsDatapoint) GetTimestamp ¶

func (o *ProjectEventsDatapoint) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*ProjectEventsDatapoint) GetTimestampOk ¶

func (o *ProjectEventsDatapoint) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value and a boolean to check if the value has been set.

func (ProjectEventsDatapoint) MarshalJSON ¶

func (o ProjectEventsDatapoint) MarshalJSON() ([]byte, error)

func (*ProjectEventsDatapoint) SetAttributes ¶

func (o *ProjectEventsDatapoint) SetAttributes(v []Attribute)

SetAttributes sets field value

func (*ProjectEventsDatapoint) SetName ¶

func (o *ProjectEventsDatapoint) SetName(v string)

SetName sets field value

func (*ProjectEventsDatapoint) SetTimestamp ¶

func (o *ProjectEventsDatapoint) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (ProjectEventsDatapoint) ToMap ¶

func (o ProjectEventsDatapoint) ToMap() (map[string]interface{}, error)

func (*ProjectEventsDatapoint) UnmarshalJSON ¶

func (o *ProjectEventsDatapoint) UnmarshalJSON(bytes []byte) (err error)

type ProjectHost ¶

type ProjectHost struct {
	// The project's host.
	Host string `json:"host"`
	// The mapping's ID.
	Id string `json:"id"`
	// The Revision's Project ID
	ProjectId            string `json:"project_id"`
	AdditionalProperties map[string]interface{}
}

ProjectHost struct for ProjectHost

func NewProjectHost ¶

func NewProjectHost(host string, id string, projectId string) *ProjectHost

NewProjectHost instantiates a new ProjectHost 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 NewProjectHostWithDefaults ¶

func NewProjectHostWithDefaults() *ProjectHost

NewProjectHostWithDefaults instantiates a new ProjectHost 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 (*ProjectHost) GetHost ¶

func (o *ProjectHost) GetHost() string

GetHost returns the Host field value

func (*ProjectHost) GetHostOk ¶

func (o *ProjectHost) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value and a boolean to check if the value has been set.

func (*ProjectHost) GetId ¶

func (o *ProjectHost) GetId() string

GetId returns the Id field value

func (*ProjectHost) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ProjectHost) GetProjectId ¶

func (o *ProjectHost) GetProjectId() string

GetProjectId returns the ProjectId field value

func (*ProjectHost) GetProjectIdOk ¶

func (o *ProjectHost) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value and a boolean to check if the value has been set.

func (ProjectHost) MarshalJSON ¶

func (o ProjectHost) MarshalJSON() ([]byte, error)

func (*ProjectHost) SetHost ¶

func (o *ProjectHost) SetHost(v string)

SetHost sets field value

func (*ProjectHost) SetId ¶

func (o *ProjectHost) SetId(v string)

SetId sets field value

func (*ProjectHost) SetProjectId ¶

func (o *ProjectHost) SetProjectId(v string)

SetProjectId sets field value

func (ProjectHost) ToMap ¶

func (o ProjectHost) ToMap() (map[string]interface{}, error)

func (*ProjectHost) UnmarshalJSON ¶

func (o *ProjectHost) UnmarshalJSON(bytes []byte) (err error)

type ProjectMetadata ¶

type ProjectMetadata struct {
	// The Project's Creation Date
	CreatedAt time.Time `json:"created_at"`
	Hosts     []string  `json:"hosts"`
	// The project's ID.
	Id string `json:"id"`
	// The project's name if set
	Name string `json:"name"`
	// The project's slug
	Slug *string `json:"slug,omitempty"`
	// The state of the project. running Running halted Halted deleted Deleted
	State            string         `json:"state"`
	SubscriptionId   NullableString `json:"subscription_id,omitempty"`
	SubscriptionPlan NullableString `json:"subscription_plan,omitempty"`
	// Last Time Project was Updated
	UpdatedAt            time.Time      `json:"updated_at"`
	WorkspaceId          NullableString `json:"workspace_id,omitempty"`
	AdditionalProperties map[string]interface{}
}

ProjectMetadata struct for ProjectMetadata

func NewProjectMetadata ¶

func NewProjectMetadata(createdAt time.Time, hosts []string, id string, name string, state string, updatedAt time.Time) *ProjectMetadata

NewProjectMetadata instantiates a new ProjectMetadata 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 NewProjectMetadataWithDefaults ¶

func NewProjectMetadataWithDefaults() *ProjectMetadata

NewProjectMetadataWithDefaults instantiates a new ProjectMetadata 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 (*ProjectMetadata) GetCreatedAt ¶

func (o *ProjectMetadata) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*ProjectMetadata) GetCreatedAtOk ¶

func (o *ProjectMetadata) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*ProjectMetadata) GetHosts ¶

func (o *ProjectMetadata) GetHosts() []string

GetHosts returns the Hosts field value

func (*ProjectMetadata) GetHostsOk ¶

func (o *ProjectMetadata) GetHostsOk() ([]string, bool)

GetHostsOk returns a tuple with the Hosts field value and a boolean to check if the value has been set.

func (*ProjectMetadata) GetId ¶

func (o *ProjectMetadata) GetId() string

GetId returns the Id field value

func (*ProjectMetadata) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ProjectMetadata) GetName ¶

func (o *ProjectMetadata) GetName() string

GetName returns the Name field value

func (*ProjectMetadata) GetNameOk ¶

func (o *ProjectMetadata) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ProjectMetadata) GetSlug ¶

func (o *ProjectMetadata) GetSlug() string

GetSlug returns the Slug field value if set, zero value otherwise.

func (*ProjectMetadata) GetSlugOk ¶

func (o *ProjectMetadata) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMetadata) GetState ¶

func (o *ProjectMetadata) GetState() string

GetState returns the State field value

func (*ProjectMetadata) GetStateOk ¶

func (o *ProjectMetadata) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*ProjectMetadata) GetSubscriptionId ¶

func (o *ProjectMetadata) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProjectMetadata) GetSubscriptionIdOk ¶

func (o *ProjectMetadata) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProjectMetadata) GetSubscriptionPlan ¶

func (o *ProjectMetadata) GetSubscriptionPlan() string

GetSubscriptionPlan returns the SubscriptionPlan field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProjectMetadata) GetSubscriptionPlanOk ¶

func (o *ProjectMetadata) GetSubscriptionPlanOk() (*string, bool)

GetSubscriptionPlanOk returns a tuple with the SubscriptionPlan field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProjectMetadata) GetUpdatedAt ¶

func (o *ProjectMetadata) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*ProjectMetadata) GetUpdatedAtOk ¶

func (o *ProjectMetadata) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (*ProjectMetadata) GetWorkspaceId ¶

func (o *ProjectMetadata) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProjectMetadata) GetWorkspaceIdOk ¶

func (o *ProjectMetadata) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProjectMetadata) HasSlug ¶

func (o *ProjectMetadata) HasSlug() bool

HasSlug returns a boolean if a field has been set.

func (*ProjectMetadata) HasSubscriptionId ¶

func (o *ProjectMetadata) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*ProjectMetadata) HasSubscriptionPlan ¶

func (o *ProjectMetadata) HasSubscriptionPlan() bool

HasSubscriptionPlan returns a boolean if a field has been set.

func (*ProjectMetadata) HasWorkspaceId ¶

func (o *ProjectMetadata) HasWorkspaceId() bool

HasWorkspaceId returns a boolean if a field has been set.

func (ProjectMetadata) MarshalJSON ¶

func (o ProjectMetadata) MarshalJSON() ([]byte, error)

func (*ProjectMetadata) SetCreatedAt ¶

func (o *ProjectMetadata) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*ProjectMetadata) SetHosts ¶

func (o *ProjectMetadata) SetHosts(v []string)

SetHosts sets field value

func (*ProjectMetadata) SetId ¶

func (o *ProjectMetadata) SetId(v string)

SetId sets field value

func (*ProjectMetadata) SetName ¶

func (o *ProjectMetadata) SetName(v string)

SetName sets field value

func (*ProjectMetadata) SetSlug ¶

func (o *ProjectMetadata) SetSlug(v string)

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*ProjectMetadata) SetState ¶

func (o *ProjectMetadata) SetState(v string)

SetState sets field value

func (*ProjectMetadata) SetSubscriptionId ¶

func (o *ProjectMetadata) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given NullableString and assigns it to the SubscriptionId field.

func (*ProjectMetadata) SetSubscriptionIdNil ¶

func (o *ProjectMetadata) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (*ProjectMetadata) SetSubscriptionPlan ¶

func (o *ProjectMetadata) SetSubscriptionPlan(v string)

SetSubscriptionPlan gets a reference to the given NullableString and assigns it to the SubscriptionPlan field.

func (*ProjectMetadata) SetSubscriptionPlanNil ¶

func (o *ProjectMetadata) SetSubscriptionPlanNil()

SetSubscriptionPlanNil sets the value for SubscriptionPlan to be an explicit nil

func (*ProjectMetadata) SetUpdatedAt ¶

func (o *ProjectMetadata) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (*ProjectMetadata) SetWorkspaceId ¶

func (o *ProjectMetadata) SetWorkspaceId(v string)

SetWorkspaceId gets a reference to the given NullableString and assigns it to the WorkspaceId field.

func (*ProjectMetadata) SetWorkspaceIdNil ¶

func (o *ProjectMetadata) SetWorkspaceIdNil()

SetWorkspaceIdNil sets the value for WorkspaceId to be an explicit nil

func (ProjectMetadata) ToMap ¶

func (o ProjectMetadata) ToMap() (map[string]interface{}, error)

func (*ProjectMetadata) UnmarshalJSON ¶

func (o *ProjectMetadata) UnmarshalJSON(bytes []byte) (err error)

func (*ProjectMetadata) UnsetSubscriptionId ¶

func (o *ProjectMetadata) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

func (*ProjectMetadata) UnsetSubscriptionPlan ¶

func (o *ProjectMetadata) UnsetSubscriptionPlan()

UnsetSubscriptionPlan ensures that no value is present for SubscriptionPlan, not even an explicit nil

func (*ProjectMetadata) UnsetWorkspaceId ¶

func (o *ProjectMetadata) UnsetWorkspaceId()

UnsetWorkspaceId ensures that no value is present for WorkspaceId, not even an explicit nil

type ProjectServiceIdentity ¶

type ProjectServiceIdentity struct {
	Config               map[string]interface{} `json:"config"`
	AdditionalProperties map[string]interface{}
}

ProjectServiceIdentity struct for ProjectServiceIdentity

func NewProjectServiceIdentity ¶

func NewProjectServiceIdentity(config map[string]interface{}) *ProjectServiceIdentity

NewProjectServiceIdentity instantiates a new ProjectServiceIdentity 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 NewProjectServiceIdentityWithDefaults ¶

func NewProjectServiceIdentityWithDefaults() *ProjectServiceIdentity

NewProjectServiceIdentityWithDefaults instantiates a new ProjectServiceIdentity 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 (*ProjectServiceIdentity) GetConfig ¶

func (o *ProjectServiceIdentity) GetConfig() map[string]interface{}

GetConfig returns the Config field value

func (*ProjectServiceIdentity) GetConfigOk ¶

func (o *ProjectServiceIdentity) GetConfigOk() (map[string]interface{}, bool)

GetConfigOk returns a tuple with the Config field value and a boolean to check if the value has been set.

func (ProjectServiceIdentity) MarshalJSON ¶

func (o ProjectServiceIdentity) MarshalJSON() ([]byte, error)

func (*ProjectServiceIdentity) SetConfig ¶

func (o *ProjectServiceIdentity) SetConfig(v map[string]interface{})

SetConfig sets field value

func (ProjectServiceIdentity) ToMap ¶

func (o ProjectServiceIdentity) ToMap() (map[string]interface{}, error)

func (*ProjectServiceIdentity) UnmarshalJSON ¶

func (o *ProjectServiceIdentity) UnmarshalJSON(bytes []byte) (err error)

type ProjectServiceOAuth2 ¶

type ProjectServiceOAuth2 struct {
	Config               map[string]interface{} `json:"config"`
	AdditionalProperties map[string]interface{}
}

ProjectServiceOAuth2 struct for ProjectServiceOAuth2

func NewProjectServiceOAuth2 ¶

func NewProjectServiceOAuth2(config map[string]interface{}) *ProjectServiceOAuth2

NewProjectServiceOAuth2 instantiates a new ProjectServiceOAuth2 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 NewProjectServiceOAuth2WithDefaults ¶

func NewProjectServiceOAuth2WithDefaults() *ProjectServiceOAuth2

NewProjectServiceOAuth2WithDefaults instantiates a new ProjectServiceOAuth2 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 (*ProjectServiceOAuth2) GetConfig ¶

func (o *ProjectServiceOAuth2) GetConfig() map[string]interface{}

GetConfig returns the Config field value

func (*ProjectServiceOAuth2) GetConfigOk ¶

func (o *ProjectServiceOAuth2) GetConfigOk() (map[string]interface{}, bool)

GetConfigOk returns a tuple with the Config field value and a boolean to check if the value has been set.

func (ProjectServiceOAuth2) MarshalJSON ¶

func (o ProjectServiceOAuth2) MarshalJSON() ([]byte, error)

func (*ProjectServiceOAuth2) SetConfig ¶

func (o *ProjectServiceOAuth2) SetConfig(v map[string]interface{})

SetConfig sets field value

func (ProjectServiceOAuth2) ToMap ¶

func (o ProjectServiceOAuth2) ToMap() (map[string]interface{}, error)

func (*ProjectServiceOAuth2) UnmarshalJSON ¶

func (o *ProjectServiceOAuth2) UnmarshalJSON(bytes []byte) (err error)

type ProjectServicePermission ¶

type ProjectServicePermission struct {
	Config               map[string]interface{} `json:"config"`
	AdditionalProperties map[string]interface{}
}

ProjectServicePermission struct for ProjectServicePermission

func NewProjectServicePermission ¶

func NewProjectServicePermission(config map[string]interface{}) *ProjectServicePermission

NewProjectServicePermission instantiates a new ProjectServicePermission 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 NewProjectServicePermissionWithDefaults ¶

func NewProjectServicePermissionWithDefaults() *ProjectServicePermission

NewProjectServicePermissionWithDefaults instantiates a new ProjectServicePermission 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 (*ProjectServicePermission) GetConfig ¶

func (o *ProjectServicePermission) GetConfig() map[string]interface{}

GetConfig returns the Config field value

func (*ProjectServicePermission) GetConfigOk ¶

func (o *ProjectServicePermission) GetConfigOk() (map[string]interface{}, bool)

GetConfigOk returns a tuple with the Config field value and a boolean to check if the value has been set.

func (ProjectServicePermission) MarshalJSON ¶

func (o ProjectServicePermission) MarshalJSON() ([]byte, error)

func (*ProjectServicePermission) SetConfig ¶

func (o *ProjectServicePermission) SetConfig(v map[string]interface{})

SetConfig sets field value

func (ProjectServicePermission) ToMap ¶

func (o ProjectServicePermission) ToMap() (map[string]interface{}, error)

func (*ProjectServicePermission) UnmarshalJSON ¶

func (o *ProjectServicePermission) UnmarshalJSON(bytes []byte) (err error)

type ProjectServices ¶

type ProjectServices struct {
	Identity             *ProjectServiceIdentity   `json:"identity,omitempty"`
	Oauth2               *ProjectServiceOAuth2     `json:"oauth2,omitempty"`
	Permission           *ProjectServicePermission `json:"permission,omitempty"`
	AdditionalProperties map[string]interface{}
}

ProjectServices struct for ProjectServices

func NewProjectServices ¶

func NewProjectServices() *ProjectServices

NewProjectServices instantiates a new ProjectServices 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 NewProjectServicesWithDefaults ¶

func NewProjectServicesWithDefaults() *ProjectServices

NewProjectServicesWithDefaults instantiates a new ProjectServices 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 (*ProjectServices) GetIdentity ¶

func (o *ProjectServices) GetIdentity() ProjectServiceIdentity

GetIdentity returns the Identity field value if set, zero value otherwise.

func (*ProjectServices) GetIdentityOk ¶

func (o *ProjectServices) GetIdentityOk() (*ProjectServiceIdentity, bool)

GetIdentityOk returns a tuple with the Identity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectServices) GetOauth2 ¶

func (o *ProjectServices) GetOauth2() ProjectServiceOAuth2

GetOauth2 returns the Oauth2 field value if set, zero value otherwise.

func (*ProjectServices) GetOauth2Ok ¶

func (o *ProjectServices) GetOauth2Ok() (*ProjectServiceOAuth2, bool)

GetOauth2Ok returns a tuple with the Oauth2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectServices) GetPermission ¶

func (o *ProjectServices) GetPermission() ProjectServicePermission

GetPermission returns the Permission field value if set, zero value otherwise.

func (*ProjectServices) GetPermissionOk ¶

func (o *ProjectServices) GetPermissionOk() (*ProjectServicePermission, bool)

GetPermissionOk returns a tuple with the Permission field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectServices) HasIdentity ¶

func (o *ProjectServices) HasIdentity() bool

HasIdentity returns a boolean if a field has been set.

func (*ProjectServices) HasOauth2 ¶

func (o *ProjectServices) HasOauth2() bool

HasOauth2 returns a boolean if a field has been set.

func (*ProjectServices) HasPermission ¶

func (o *ProjectServices) HasPermission() bool

HasPermission returns a boolean if a field has been set.

func (ProjectServices) MarshalJSON ¶

func (o ProjectServices) MarshalJSON() ([]byte, error)

func (*ProjectServices) SetIdentity ¶

func (o *ProjectServices) SetIdentity(v ProjectServiceIdentity)

SetIdentity gets a reference to the given ProjectServiceIdentity and assigns it to the Identity field.

func (*ProjectServices) SetOauth2 ¶

func (o *ProjectServices) SetOauth2(v ProjectServiceOAuth2)

SetOauth2 gets a reference to the given ProjectServiceOAuth2 and assigns it to the Oauth2 field.

func (*ProjectServices) SetPermission ¶

func (o *ProjectServices) SetPermission(v ProjectServicePermission)

SetPermission gets a reference to the given ProjectServicePermission and assigns it to the Permission field.

func (ProjectServices) ToMap ¶

func (o ProjectServices) ToMap() (map[string]interface{}, error)

func (*ProjectServices) UnmarshalJSON ¶

func (o *ProjectServices) UnmarshalJSON(bytes []byte) (err error)

type QuotaUsage ¶

type QuotaUsage struct {
	// The additional price per unit in cents.
	AdditionalPrice int64 `json:"additional_price"`
	CanUseMore      bool  `json:"can_use_more"`
	//  region_eu RegionEU region_us RegionUS region_apac RegionAPAC region_global RegionGlobal production_projects ProductionProjects daily_active_users DailyActiveUsers custom_domains CustomDomains event_streams EventStreams sla SLA collaborator_seats CollaboratorSeats edge_cache EdgeCache branding_themes BrandingThemes zendesk_support ZendeskSupport project_metrics ProjectMetrics project_metrics_time_window ProjectMetricsTimeWindow project_metrics_events_history ProjectMetricsEventsHistory organizations Organizations rop_grant ResourceOwnerPasswordGrant rate_limit_tier RateLimitTier session_rate_limit_tier RateLimitTierSessions identities_list_rate_limit_tier RateLimitTierIdentitiesList
	Feature              string `json:"feature"`
	FeatureAvailable     bool   `json:"feature_available"`
	Included             int64  `json:"included"`
	Used                 int64  `json:"used"`
	AdditionalProperties map[string]interface{}
}

QuotaUsage struct for QuotaUsage

func NewQuotaUsage ¶

func NewQuotaUsage(additionalPrice int64, canUseMore bool, feature string, featureAvailable bool, included int64, used int64) *QuotaUsage

NewQuotaUsage instantiates a new QuotaUsage 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 NewQuotaUsageWithDefaults ¶

func NewQuotaUsageWithDefaults() *QuotaUsage

NewQuotaUsageWithDefaults instantiates a new QuotaUsage 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 (*QuotaUsage) GetAdditionalPrice ¶

func (o *QuotaUsage) GetAdditionalPrice() int64

GetAdditionalPrice returns the AdditionalPrice field value

func (*QuotaUsage) GetAdditionalPriceOk ¶

func (o *QuotaUsage) GetAdditionalPriceOk() (*int64, bool)

GetAdditionalPriceOk returns a tuple with the AdditionalPrice field value and a boolean to check if the value has been set.

func (*QuotaUsage) GetCanUseMore ¶

func (o *QuotaUsage) GetCanUseMore() bool

GetCanUseMore returns the CanUseMore field value

func (*QuotaUsage) GetCanUseMoreOk ¶

func (o *QuotaUsage) GetCanUseMoreOk() (*bool, bool)

GetCanUseMoreOk returns a tuple with the CanUseMore field value and a boolean to check if the value has been set.

func (*QuotaUsage) GetFeature ¶

func (o *QuotaUsage) GetFeature() string

GetFeature returns the Feature field value

func (*QuotaUsage) GetFeatureAvailable ¶

func (o *QuotaUsage) GetFeatureAvailable() bool

GetFeatureAvailable returns the FeatureAvailable field value

func (*QuotaUsage) GetFeatureAvailableOk ¶

func (o *QuotaUsage) GetFeatureAvailableOk() (*bool, bool)

GetFeatureAvailableOk returns a tuple with the FeatureAvailable field value and a boolean to check if the value has been set.

func (*QuotaUsage) GetFeatureOk ¶

func (o *QuotaUsage) GetFeatureOk() (*string, bool)

GetFeatureOk returns a tuple with the Feature field value and a boolean to check if the value has been set.

func (*QuotaUsage) GetIncluded ¶

func (o *QuotaUsage) GetIncluded() int64

GetIncluded returns the Included field value

func (*QuotaUsage) GetIncludedOk ¶

func (o *QuotaUsage) GetIncludedOk() (*int64, bool)

GetIncludedOk returns a tuple with the Included field value and a boolean to check if the value has been set.

func (*QuotaUsage) GetUsed ¶

func (o *QuotaUsage) GetUsed() int64

GetUsed returns the Used field value

func (*QuotaUsage) GetUsedOk ¶

func (o *QuotaUsage) GetUsedOk() (*int64, bool)

GetUsedOk returns a tuple with the Used field value and a boolean to check if the value has been set.

func (QuotaUsage) MarshalJSON ¶

func (o QuotaUsage) MarshalJSON() ([]byte, error)

func (*QuotaUsage) SetAdditionalPrice ¶

func (o *QuotaUsage) SetAdditionalPrice(v int64)

SetAdditionalPrice sets field value

func (*QuotaUsage) SetCanUseMore ¶

func (o *QuotaUsage) SetCanUseMore(v bool)

SetCanUseMore sets field value

func (*QuotaUsage) SetFeature ¶

func (o *QuotaUsage) SetFeature(v string)

SetFeature sets field value

func (*QuotaUsage) SetFeatureAvailable ¶

func (o *QuotaUsage) SetFeatureAvailable(v bool)

SetFeatureAvailable sets field value

func (*QuotaUsage) SetIncluded ¶

func (o *QuotaUsage) SetIncluded(v int64)

SetIncluded sets field value

func (*QuotaUsage) SetUsed ¶

func (o *QuotaUsage) SetUsed(v int64)

SetUsed sets field value

func (QuotaUsage) ToMap ¶

func (o QuotaUsage) ToMap() (map[string]interface{}, error)

func (*QuotaUsage) UnmarshalJSON ¶

func (o *QuotaUsage) UnmarshalJSON(bytes []byte) (err error)

type RFC6749ErrorJson ¶

type RFC6749ErrorJson struct {
	Error                *string `json:"error,omitempty"`
	ErrorDebug           *string `json:"error_debug,omitempty"`
	ErrorDescription     *string `json:"error_description,omitempty"`
	ErrorHint            *string `json:"error_hint,omitempty"`
	StatusCode           *int64  `json:"status_code,omitempty"`
	AdditionalProperties map[string]interface{}
}

RFC6749ErrorJson struct for RFC6749ErrorJson

func NewRFC6749ErrorJson ¶

func NewRFC6749ErrorJson() *RFC6749ErrorJson

NewRFC6749ErrorJson instantiates a new RFC6749ErrorJson 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 NewRFC6749ErrorJsonWithDefaults ¶

func NewRFC6749ErrorJsonWithDefaults() *RFC6749ErrorJson

NewRFC6749ErrorJsonWithDefaults instantiates a new RFC6749ErrorJson 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 (*RFC6749ErrorJson) GetError ¶

func (o *RFC6749ErrorJson) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*RFC6749ErrorJson) GetErrorDebug ¶

func (o *RFC6749ErrorJson) GetErrorDebug() string

GetErrorDebug returns the ErrorDebug field value if set, zero value otherwise.

func (*RFC6749ErrorJson) GetErrorDebugOk ¶

func (o *RFC6749ErrorJson) GetErrorDebugOk() (*string, bool)

GetErrorDebugOk returns a tuple with the ErrorDebug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RFC6749ErrorJson) GetErrorDescription ¶

func (o *RFC6749ErrorJson) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise.

func (*RFC6749ErrorJson) GetErrorDescriptionOk ¶

func (o *RFC6749ErrorJson) GetErrorDescriptionOk() (*string, bool)

GetErrorDescriptionOk returns a tuple with the ErrorDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RFC6749ErrorJson) GetErrorHint ¶

func (o *RFC6749ErrorJson) GetErrorHint() string

GetErrorHint returns the ErrorHint field value if set, zero value otherwise.

func (*RFC6749ErrorJson) GetErrorHintOk ¶

func (o *RFC6749ErrorJson) GetErrorHintOk() (*string, bool)

GetErrorHintOk returns a tuple with the ErrorHint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RFC6749ErrorJson) GetErrorOk ¶

func (o *RFC6749ErrorJson) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RFC6749ErrorJson) GetStatusCode ¶

func (o *RFC6749ErrorJson) GetStatusCode() int64

GetStatusCode returns the StatusCode field value if set, zero value otherwise.

func (*RFC6749ErrorJson) GetStatusCodeOk ¶

func (o *RFC6749ErrorJson) GetStatusCodeOk() (*int64, bool)

GetStatusCodeOk returns a tuple with the StatusCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RFC6749ErrorJson) HasError ¶

func (o *RFC6749ErrorJson) HasError() bool

HasError returns a boolean if a field has been set.

func (*RFC6749ErrorJson) HasErrorDebug ¶

func (o *RFC6749ErrorJson) HasErrorDebug() bool

HasErrorDebug returns a boolean if a field has been set.

func (*RFC6749ErrorJson) HasErrorDescription ¶

func (o *RFC6749ErrorJson) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*RFC6749ErrorJson) HasErrorHint ¶

func (o *RFC6749ErrorJson) HasErrorHint() bool

HasErrorHint returns a boolean if a field has been set.

func (*RFC6749ErrorJson) HasStatusCode ¶

func (o *RFC6749ErrorJson) HasStatusCode() bool

HasStatusCode returns a boolean if a field has been set.

func (RFC6749ErrorJson) MarshalJSON ¶

func (o RFC6749ErrorJson) MarshalJSON() ([]byte, error)

func (*RFC6749ErrorJson) SetError ¶

func (o *RFC6749ErrorJson) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*RFC6749ErrorJson) SetErrorDebug ¶

func (o *RFC6749ErrorJson) SetErrorDebug(v string)

SetErrorDebug gets a reference to the given string and assigns it to the ErrorDebug field.

func (*RFC6749ErrorJson) SetErrorDescription ¶

func (o *RFC6749ErrorJson) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given string and assigns it to the ErrorDescription field.

func (*RFC6749ErrorJson) SetErrorHint ¶

func (o *RFC6749ErrorJson) SetErrorHint(v string)

SetErrorHint gets a reference to the given string and assigns it to the ErrorHint field.

func (*RFC6749ErrorJson) SetStatusCode ¶

func (o *RFC6749ErrorJson) SetStatusCode(v int64)

SetStatusCode gets a reference to the given int64 and assigns it to the StatusCode field.

func (RFC6749ErrorJson) ToMap ¶

func (o RFC6749ErrorJson) ToMap() (map[string]interface{}, error)

func (*RFC6749ErrorJson) UnmarshalJSON ¶

func (o *RFC6749ErrorJson) UnmarshalJSON(bytes []byte) (err error)

type RecoveryCodeForIdentity ¶

type RecoveryCodeForIdentity struct {
	// Expires At is the timestamp of when the recovery flow expires  The timestamp when the recovery code expires.
	ExpiresAt *time.Time `json:"expires_at,omitempty"`
	// RecoveryCode is the code that can be used to recover the account
	RecoveryCode string `json:"recovery_code"`
	// RecoveryLink with flow  This link opens the recovery UI with an empty `code` field.
	RecoveryLink         string `json:"recovery_link"`
	AdditionalProperties map[string]interface{}
}

RecoveryCodeForIdentity Used when an administrator creates a recovery code for an identity.

func NewRecoveryCodeForIdentity ¶

func NewRecoveryCodeForIdentity(recoveryCode string, recoveryLink string) *RecoveryCodeForIdentity

NewRecoveryCodeForIdentity instantiates a new RecoveryCodeForIdentity 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 NewRecoveryCodeForIdentityWithDefaults ¶

func NewRecoveryCodeForIdentityWithDefaults() *RecoveryCodeForIdentity

NewRecoveryCodeForIdentityWithDefaults instantiates a new RecoveryCodeForIdentity 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 (*RecoveryCodeForIdentity) GetExpiresAt ¶

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

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*RecoveryCodeForIdentity) GetExpiresAtOk ¶

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

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecoveryCodeForIdentity) GetRecoveryCode ¶

func (o *RecoveryCodeForIdentity) GetRecoveryCode() string

GetRecoveryCode returns the RecoveryCode field value

func (*RecoveryCodeForIdentity) GetRecoveryCodeOk ¶

func (o *RecoveryCodeForIdentity) GetRecoveryCodeOk() (*string, bool)

GetRecoveryCodeOk returns a tuple with the RecoveryCode field value and a boolean to check if the value has been set.

func (o *RecoveryCodeForIdentity) GetRecoveryLink() string

GetRecoveryLink returns the RecoveryLink field value

func (*RecoveryCodeForIdentity) GetRecoveryLinkOk ¶

func (o *RecoveryCodeForIdentity) GetRecoveryLinkOk() (*string, bool)

GetRecoveryLinkOk returns a tuple with the RecoveryLink field value and a boolean to check if the value has been set.

func (*RecoveryCodeForIdentity) HasExpiresAt ¶

func (o *RecoveryCodeForIdentity) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (RecoveryCodeForIdentity) MarshalJSON ¶

func (o RecoveryCodeForIdentity) MarshalJSON() ([]byte, error)

func (*RecoveryCodeForIdentity) SetExpiresAt ¶

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

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*RecoveryCodeForIdentity) SetRecoveryCode ¶

func (o *RecoveryCodeForIdentity) SetRecoveryCode(v string)

SetRecoveryCode sets field value

func (o *RecoveryCodeForIdentity) SetRecoveryLink(v string)

SetRecoveryLink sets field value

func (RecoveryCodeForIdentity) ToMap ¶

func (o RecoveryCodeForIdentity) ToMap() (map[string]interface{}, error)

func (*RecoveryCodeForIdentity) UnmarshalJSON ¶

func (o *RecoveryCodeForIdentity) UnmarshalJSON(bytes []byte) (err error)

type RecoveryFlow ¶

type RecoveryFlow struct {
	// Active, if set, contains the recovery method that is being used. It is initially not set.
	Active *string `json:"active,omitempty"`
	// Contains possible actions that could follow this flow
	ContinueWith []ContinueWith `json:"continue_with,omitempty"`
	// ExpiresAt is the time (UTC) when the request expires. If the user still wishes to update the setting, a new request has to be initiated.
	ExpiresAt time.Time `json:"expires_at"`
	// ID represents the request's unique ID. When performing the recovery flow, this represents the id in the recovery ui's query parameter: http://<selfservice.flows.recovery.ui_url>?request=<id>
	Id string `json:"id"`
	// IssuedAt is the time (UTC) when the request occurred.
	IssuedAt time.Time `json:"issued_at"`
	// 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.
	RequestUrl string `json:"request_url"`
	// ReturnTo contains the requested return_to URL.
	ReturnTo *string `json:"return_to,omitempty"`
	// State represents the state of this request:  choose_method: ask the user to choose a method (e.g. recover account via email) sent_email: the email has been sent to the user passed_challenge: the request was successful and the recovery challenge was passed.
	State interface{} `json:"state"`
	// The flow type can either be `api` or `browser`.
	Type                 string      `json:"type"`
	Ui                   UiContainer `json:"ui"`
	AdditionalProperties map[string]interface{}
}

RecoveryFlow This request is used when an identity wants to recover their account. We recommend reading the [Account Recovery Documentation](../self-service/flows/password-reset-account-recovery)

func NewRecoveryFlow ¶

func NewRecoveryFlow(expiresAt time.Time, id string, issuedAt time.Time, requestUrl string, state interface{}, type_ string, ui UiContainer) *RecoveryFlow

NewRecoveryFlow instantiates a new RecoveryFlow 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 NewRecoveryFlowWithDefaults ¶

func NewRecoveryFlowWithDefaults() *RecoveryFlow

NewRecoveryFlowWithDefaults instantiates a new RecoveryFlow 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 (*RecoveryFlow) GetActive ¶

func (o *RecoveryFlow) GetActive() string

GetActive returns the Active field value if set, zero value otherwise.

func (*RecoveryFlow) GetActiveOk ¶

func (o *RecoveryFlow) GetActiveOk() (*string, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecoveryFlow) GetContinueWith ¶

func (o *RecoveryFlow) GetContinueWith() []ContinueWith

GetContinueWith returns the ContinueWith field value if set, zero value otherwise.

func (*RecoveryFlow) GetContinueWithOk ¶

func (o *RecoveryFlow) GetContinueWithOk() ([]ContinueWith, bool)

GetContinueWithOk returns a tuple with the ContinueWith field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecoveryFlow) GetExpiresAt ¶

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

GetExpiresAt returns the ExpiresAt field value

func (*RecoveryFlow) GetExpiresAtOk ¶

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

GetExpiresAtOk returns a tuple with the ExpiresAt field value and a boolean to check if the value has been set.

func (*RecoveryFlow) GetId ¶

func (o *RecoveryFlow) GetId() string

GetId returns the Id field value

func (*RecoveryFlow) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*RecoveryFlow) GetIssuedAt ¶

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

GetIssuedAt returns the IssuedAt field value

func (*RecoveryFlow) GetIssuedAtOk ¶

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

GetIssuedAtOk returns a tuple with the IssuedAt field value and a boolean to check if the value has been set.

func (*RecoveryFlow) GetRequestUrl ¶

func (o *RecoveryFlow) GetRequestUrl() string

GetRequestUrl returns the RequestUrl field value

func (*RecoveryFlow) GetRequestUrlOk ¶

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

GetRequestUrlOk returns a tuple with the RequestUrl field value and a boolean to check if the value has been set.

func (*RecoveryFlow) GetReturnTo ¶

func (o *RecoveryFlow) GetReturnTo() string

GetReturnTo returns the ReturnTo field value if set, zero value otherwise.

func (*RecoveryFlow) GetReturnToOk ¶

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

GetReturnToOk returns a tuple with the ReturnTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecoveryFlow) GetState ¶

func (o *RecoveryFlow) GetState() interface{}

GetState returns the State field value If the value is explicit nil, the zero value for interface{} will be returned

func (*RecoveryFlow) GetStateOk ¶

func (o *RecoveryFlow) GetStateOk() (*interface{}, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RecoveryFlow) GetType ¶

func (o *RecoveryFlow) GetType() string

GetType returns the Type field value

func (*RecoveryFlow) GetTypeOk ¶

func (o *RecoveryFlow) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*RecoveryFlow) GetUi ¶

func (o *RecoveryFlow) GetUi() UiContainer

GetUi returns the Ui field value

func (*RecoveryFlow) GetUiOk ¶

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

GetUiOk returns a tuple with the Ui field value and a boolean to check if the value has been set.

func (*RecoveryFlow) HasActive ¶

func (o *RecoveryFlow) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*RecoveryFlow) HasContinueWith ¶

func (o *RecoveryFlow) HasContinueWith() bool

HasContinueWith returns a boolean if a field has been set.

func (*RecoveryFlow) HasReturnTo ¶

func (o *RecoveryFlow) HasReturnTo() bool

HasReturnTo returns a boolean if a field has been set.

func (RecoveryFlow) MarshalJSON ¶

func (o RecoveryFlow) MarshalJSON() ([]byte, error)

func (*RecoveryFlow) SetActive ¶

func (o *RecoveryFlow) SetActive(v string)

SetActive gets a reference to the given string and assigns it to the Active field.

func (*RecoveryFlow) SetContinueWith ¶

func (o *RecoveryFlow) SetContinueWith(v []ContinueWith)

SetContinueWith gets a reference to the given []ContinueWith and assigns it to the ContinueWith field.

func (*RecoveryFlow) SetExpiresAt ¶

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

SetExpiresAt sets field value

func (*RecoveryFlow) SetId ¶

func (o *RecoveryFlow) SetId(v string)

SetId sets field value

func (*RecoveryFlow) SetIssuedAt ¶

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

SetIssuedAt sets field value

func (*RecoveryFlow) SetRequestUrl ¶

func (o *RecoveryFlow) SetRequestUrl(v string)

SetRequestUrl sets field value

func (*RecoveryFlow) SetReturnTo ¶

func (o *RecoveryFlow) SetReturnTo(v string)

SetReturnTo gets a reference to the given string and assigns it to the ReturnTo field.

func (*RecoveryFlow) SetState ¶

func (o *RecoveryFlow) SetState(v interface{})

SetState sets field value

func (*RecoveryFlow) SetType ¶

func (o *RecoveryFlow) SetType(v string)

SetType sets field value

func (*RecoveryFlow) SetUi ¶

func (o *RecoveryFlow) SetUi(v UiContainer)

SetUi sets field value

func (RecoveryFlow) ToMap ¶

func (o RecoveryFlow) ToMap() (map[string]interface{}, error)

func (*RecoveryFlow) UnmarshalJSON ¶

func (o *RecoveryFlow) UnmarshalJSON(bytes []byte) (err error)

type RecoveryFlowState ¶

type RecoveryFlowState string

RecoveryFlowState The state represents the state of the recovery flow. choose_method: ask the user to choose a method (e.g. recover account via email) sent_email: the email has been sent to the user passed_challenge: the request was successful and the recovery challenge was passed.

const (
	RECOVERYFLOWSTATE_CHOOSE_METHOD    RecoveryFlowState = "choose_method"
	RECOVERYFLOWSTATE_SENT_EMAIL       RecoveryFlowState = "sent_email"
	RECOVERYFLOWSTATE_PASSED_CHALLENGE RecoveryFlowState = "passed_challenge"
)

List of recoveryFlowState

func NewRecoveryFlowStateFromValue ¶

func NewRecoveryFlowStateFromValue(v string) (*RecoveryFlowState, error)

NewRecoveryFlowStateFromValue returns a pointer to a valid RecoveryFlowState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (RecoveryFlowState) IsValid ¶

func (v RecoveryFlowState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (RecoveryFlowState) Ptr ¶

Ptr returns reference to recoveryFlowState value

func (*RecoveryFlowState) UnmarshalJSON ¶

func (v *RecoveryFlowState) UnmarshalJSON(src []byte) error

type RecoveryIdentityAddress ¶

type RecoveryIdentityAddress struct {
	// CreatedAt is a helper struct field for gobuffalo.pop.
	CreatedAt *time.Time `json:"created_at,omitempty"`
	Id        string     `json:"id"`
	// UpdatedAt is a helper struct field for gobuffalo.pop.
	UpdatedAt            *time.Time `json:"updated_at,omitempty"`
	Value                string     `json:"value"`
	Via                  string     `json:"via"`
	AdditionalProperties map[string]interface{}
}

RecoveryIdentityAddress struct for RecoveryIdentityAddress

func NewRecoveryIdentityAddress ¶

func NewRecoveryIdentityAddress(id string, value string, via string) *RecoveryIdentityAddress

NewRecoveryIdentityAddress instantiates a new RecoveryIdentityAddress 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 NewRecoveryIdentityAddressWithDefaults ¶

func NewRecoveryIdentityAddressWithDefaults() *RecoveryIdentityAddress

NewRecoveryIdentityAddressWithDefaults instantiates a new RecoveryIdentityAddress 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 (*RecoveryIdentityAddress) GetCreatedAt ¶

func (o *RecoveryIdentityAddress) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*RecoveryIdentityAddress) GetCreatedAtOk ¶

func (o *RecoveryIdentityAddress) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecoveryIdentityAddress) GetId ¶

func (o *RecoveryIdentityAddress) GetId() string

GetId returns the Id field value

func (*RecoveryIdentityAddress) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*RecoveryIdentityAddress) GetUpdatedAt ¶

func (o *RecoveryIdentityAddress) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*RecoveryIdentityAddress) GetUpdatedAtOk ¶

func (o *RecoveryIdentityAddress) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecoveryIdentityAddress) GetValue ¶

func (o *RecoveryIdentityAddress) GetValue() string

GetValue returns the Value field value

func (*RecoveryIdentityAddress) GetValueOk ¶

func (o *RecoveryIdentityAddress) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (*RecoveryIdentityAddress) GetVia ¶

func (o *RecoveryIdentityAddress) GetVia() string

GetVia returns the Via field value

func (*RecoveryIdentityAddress) GetViaOk ¶

func (o *RecoveryIdentityAddress) GetViaOk() (*string, bool)

GetViaOk returns a tuple with the Via field value and a boolean to check if the value has been set.

func (*RecoveryIdentityAddress) HasCreatedAt ¶

func (o *RecoveryIdentityAddress) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*RecoveryIdentityAddress) HasUpdatedAt ¶

func (o *RecoveryIdentityAddress) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (RecoveryIdentityAddress) MarshalJSON ¶

func (o RecoveryIdentityAddress) MarshalJSON() ([]byte, error)

func (*RecoveryIdentityAddress) SetCreatedAt ¶

func (o *RecoveryIdentityAddress) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*RecoveryIdentityAddress) SetId ¶

func (o *RecoveryIdentityAddress) SetId(v string)

SetId sets field value

func (*RecoveryIdentityAddress) SetUpdatedAt ¶

func (o *RecoveryIdentityAddress) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*RecoveryIdentityAddress) SetValue ¶

func (o *RecoveryIdentityAddress) SetValue(v string)

SetValue sets field value

func (*RecoveryIdentityAddress) SetVia ¶

func (o *RecoveryIdentityAddress) SetVia(v string)

SetVia sets field value

func (RecoveryIdentityAddress) ToMap ¶

func (o RecoveryIdentityAddress) ToMap() (map[string]interface{}, error)

func (*RecoveryIdentityAddress) UnmarshalJSON ¶

func (o *RecoveryIdentityAddress) UnmarshalJSON(bytes []byte) (err error)

type RecoveryLinkForIdentity ¶

type RecoveryLinkForIdentity struct {
	// Recovery Link Expires At  The timestamp when the recovery link expires.
	ExpiresAt *time.Time `json:"expires_at,omitempty"`
	// Recovery Link  This link can be used to recover the account.
	RecoveryLink         string `json:"recovery_link"`
	AdditionalProperties map[string]interface{}
}

RecoveryLinkForIdentity Used when an administrator creates a recovery link for an identity.

func NewRecoveryLinkForIdentity ¶

func NewRecoveryLinkForIdentity(recoveryLink string) *RecoveryLinkForIdentity

NewRecoveryLinkForIdentity instantiates a new RecoveryLinkForIdentity 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 NewRecoveryLinkForIdentityWithDefaults ¶

func NewRecoveryLinkForIdentityWithDefaults() *RecoveryLinkForIdentity

NewRecoveryLinkForIdentityWithDefaults instantiates a new RecoveryLinkForIdentity 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 (*RecoveryLinkForIdentity) GetExpiresAt ¶

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

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*RecoveryLinkForIdentity) GetExpiresAtOk ¶

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

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RecoveryLinkForIdentity) GetRecoveryLink() string

GetRecoveryLink returns the RecoveryLink field value

func (*RecoveryLinkForIdentity) GetRecoveryLinkOk ¶

func (o *RecoveryLinkForIdentity) GetRecoveryLinkOk() (*string, bool)

GetRecoveryLinkOk returns a tuple with the RecoveryLink field value and a boolean to check if the value has been set.

func (*RecoveryLinkForIdentity) HasExpiresAt ¶

func (o *RecoveryLinkForIdentity) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (RecoveryLinkForIdentity) MarshalJSON ¶

func (o RecoveryLinkForIdentity) MarshalJSON() ([]byte, error)

func (*RecoveryLinkForIdentity) SetExpiresAt ¶

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

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (o *RecoveryLinkForIdentity) SetRecoveryLink(v string)

SetRecoveryLink sets field value

func (RecoveryLinkForIdentity) ToMap ¶

func (o RecoveryLinkForIdentity) ToMap() (map[string]interface{}, error)

func (*RecoveryLinkForIdentity) UnmarshalJSON ¶

func (o *RecoveryLinkForIdentity) UnmarshalJSON(bytes []byte) (err error)

type RegistrationFlow ¶

type RegistrationFlow struct {
	Active *IdentityCredentialsType `json:"active,omitempty"`
	// ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated.
	ExpiresAt time.Time `json:"expires_at"`
	// ID represents the flow's unique ID. When performing the registration flow, this represents the id in the registration ui's query parameter: http://<selfservice.flows.registration.ui_url>/?flow=<id>
	Id string `json:"id"`
	// IssuedAt is the time (UTC) when the flow occurred.
	IssuedAt time.Time `json:"issued_at"`
	// Ory OAuth 2.0 Login Challenge.  This value is set using the `login_challenge` query parameter of the registration and login endpoints. If set will cooperate with Ory OAuth2 and OpenID to act as an OAuth2 server / OpenID Provider.
	Oauth2LoginChallenge *string             `json:"oauth2_login_challenge,omitempty"`
	Oauth2LoginRequest   *OAuth2LoginRequest `json:"oauth2_login_request,omitempty"`
	OrganizationId       NullableString      `json:"organization_id,omitempty"`
	// 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.
	RequestUrl string `json:"request_url"`
	// ReturnTo contains the requested return_to URL.
	ReturnTo *string `json:"return_to,omitempty"`
	// SessionTokenExchangeCode holds the secret code that the client can use to retrieve a session token after the flow has been completed. This is only set if the client has requested a session token exchange code, and if the flow is of type \"api\", and only on creating the flow.
	SessionTokenExchangeCode *string `json:"session_token_exchange_code,omitempty"`
	// State represents the state of this request:  choose_method: ask the user to choose a method (e.g. registration with email) sent_email: the email has been sent to the user passed_challenge: the request was successful and the registration challenge was passed.
	State interface{} `json:"state"`
	// TransientPayload is used to pass data from the registration to a webhook
	TransientPayload map[string]interface{} `json:"transient_payload,omitempty"`
	// The flow type can either be `api` or `browser`.
	Type                 string      `json:"type"`
	Ui                   UiContainer `json:"ui"`
	AdditionalProperties map[string]interface{}
}

RegistrationFlow struct for RegistrationFlow

func NewRegistrationFlow ¶

func NewRegistrationFlow(expiresAt time.Time, id string, issuedAt time.Time, requestUrl string, state interface{}, type_ string, ui UiContainer) *RegistrationFlow

NewRegistrationFlow instantiates a new RegistrationFlow 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 NewRegistrationFlowWithDefaults ¶

func NewRegistrationFlowWithDefaults() *RegistrationFlow

NewRegistrationFlowWithDefaults instantiates a new RegistrationFlow 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 (*RegistrationFlow) GetActive ¶

GetActive returns the Active field value if set, zero value otherwise.

func (*RegistrationFlow) GetActiveOk ¶

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

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegistrationFlow) GetExpiresAt ¶

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

GetExpiresAt returns the ExpiresAt field value

func (*RegistrationFlow) GetExpiresAtOk ¶

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

GetExpiresAtOk returns a tuple with the ExpiresAt field value and a boolean to check if the value has been set.

func (*RegistrationFlow) GetId ¶

func (o *RegistrationFlow) GetId() string

GetId returns the Id field value

func (*RegistrationFlow) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*RegistrationFlow) GetIssuedAt ¶

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

GetIssuedAt returns the IssuedAt field value

func (*RegistrationFlow) GetIssuedAtOk ¶

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

GetIssuedAtOk returns a tuple with the IssuedAt field value and a boolean to check if the value has been set.

func (*RegistrationFlow) GetOauth2LoginChallenge ¶

func (o *RegistrationFlow) GetOauth2LoginChallenge() string

GetOauth2LoginChallenge returns the Oauth2LoginChallenge field value if set, zero value otherwise.

func (*RegistrationFlow) GetOauth2LoginChallengeOk ¶

func (o *RegistrationFlow) GetOauth2LoginChallengeOk() (*string, bool)

GetOauth2LoginChallengeOk returns a tuple with the Oauth2LoginChallenge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegistrationFlow) GetOauth2LoginRequest ¶

func (o *RegistrationFlow) GetOauth2LoginRequest() OAuth2LoginRequest

GetOauth2LoginRequest returns the Oauth2LoginRequest field value if set, zero value otherwise.

func (*RegistrationFlow) GetOauth2LoginRequestOk ¶

func (o *RegistrationFlow) GetOauth2LoginRequestOk() (*OAuth2LoginRequest, bool)

GetOauth2LoginRequestOk returns a tuple with the Oauth2LoginRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegistrationFlow) GetOrganizationId ¶

func (o *RegistrationFlow) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RegistrationFlow) GetOrganizationIdOk ¶

func (o *RegistrationFlow) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegistrationFlow) GetRequestUrl ¶

func (o *RegistrationFlow) GetRequestUrl() string

GetRequestUrl returns the RequestUrl field value

func (*RegistrationFlow) GetRequestUrlOk ¶

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

GetRequestUrlOk returns a tuple with the RequestUrl field value and a boolean to check if the value has been set.

func (*RegistrationFlow) GetReturnTo ¶

func (o *RegistrationFlow) GetReturnTo() string

GetReturnTo returns the ReturnTo field value if set, zero value otherwise.

func (*RegistrationFlow) GetReturnToOk ¶

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

GetReturnToOk returns a tuple with the ReturnTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegistrationFlow) GetSessionTokenExchangeCode ¶

func (o *RegistrationFlow) GetSessionTokenExchangeCode() string

GetSessionTokenExchangeCode returns the SessionTokenExchangeCode field value if set, zero value otherwise.

func (*RegistrationFlow) GetSessionTokenExchangeCodeOk ¶

func (o *RegistrationFlow) GetSessionTokenExchangeCodeOk() (*string, bool)

GetSessionTokenExchangeCodeOk returns a tuple with the SessionTokenExchangeCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegistrationFlow) GetState ¶

func (o *RegistrationFlow) GetState() interface{}

GetState returns the State field value If the value is explicit nil, the zero value for interface{} will be returned

func (*RegistrationFlow) GetStateOk ¶

func (o *RegistrationFlow) GetStateOk() (*interface{}, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RegistrationFlow) GetTransientPayload ¶

func (o *RegistrationFlow) GetTransientPayload() map[string]interface{}

GetTransientPayload returns the TransientPayload field value if set, zero value otherwise.

func (*RegistrationFlow) GetTransientPayloadOk ¶

func (o *RegistrationFlow) GetTransientPayloadOk() (map[string]interface{}, bool)

GetTransientPayloadOk returns a tuple with the TransientPayload field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegistrationFlow) GetType ¶

func (o *RegistrationFlow) GetType() string

GetType returns the Type field value

func (*RegistrationFlow) GetTypeOk ¶

func (o *RegistrationFlow) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*RegistrationFlow) GetUi ¶

func (o *RegistrationFlow) GetUi() UiContainer

GetUi returns the Ui field value

func (*RegistrationFlow) GetUiOk ¶

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

GetUiOk returns a tuple with the Ui field value and a boolean to check if the value has been set.

func (*RegistrationFlow) HasActive ¶

func (o *RegistrationFlow) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*RegistrationFlow) HasOauth2LoginChallenge ¶

func (o *RegistrationFlow) HasOauth2LoginChallenge() bool

HasOauth2LoginChallenge returns a boolean if a field has been set.

func (*RegistrationFlow) HasOauth2LoginRequest ¶

func (o *RegistrationFlow) HasOauth2LoginRequest() bool

HasOauth2LoginRequest returns a boolean if a field has been set.

func (*RegistrationFlow) HasOrganizationId ¶

func (o *RegistrationFlow) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*RegistrationFlow) HasReturnTo ¶

func (o *RegistrationFlow) HasReturnTo() bool

HasReturnTo returns a boolean if a field has been set.

func (*RegistrationFlow) HasSessionTokenExchangeCode ¶

func (o *RegistrationFlow) HasSessionTokenExchangeCode() bool

HasSessionTokenExchangeCode returns a boolean if a field has been set.

func (*RegistrationFlow) HasTransientPayload ¶

func (o *RegistrationFlow) HasTransientPayload() bool

HasTransientPayload returns a boolean if a field has been set.

func (RegistrationFlow) MarshalJSON ¶

func (o RegistrationFlow) MarshalJSON() ([]byte, error)

func (*RegistrationFlow) SetActive ¶

func (o *RegistrationFlow) SetActive(v IdentityCredentialsType)

SetActive gets a reference to the given IdentityCredentialsType and assigns it to the Active field.

func (*RegistrationFlow) SetExpiresAt ¶

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

SetExpiresAt sets field value

func (*RegistrationFlow) SetId ¶

func (o *RegistrationFlow) SetId(v string)

SetId sets field value

func (*RegistrationFlow) SetIssuedAt ¶

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

SetIssuedAt sets field value

func (*RegistrationFlow) SetOauth2LoginChallenge ¶

func (o *RegistrationFlow) SetOauth2LoginChallenge(v string)

SetOauth2LoginChallenge gets a reference to the given string and assigns it to the Oauth2LoginChallenge field.

func (*RegistrationFlow) SetOauth2LoginRequest ¶

func (o *RegistrationFlow) SetOauth2LoginRequest(v OAuth2LoginRequest)

SetOauth2LoginRequest gets a reference to the given OAuth2LoginRequest and assigns it to the Oauth2LoginRequest field.

func (*RegistrationFlow) SetOrganizationId ¶

func (o *RegistrationFlow) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given NullableString and assigns it to the OrganizationId field.

func (*RegistrationFlow) SetOrganizationIdNil ¶

func (o *RegistrationFlow) SetOrganizationIdNil()

SetOrganizationIdNil sets the value for OrganizationId to be an explicit nil

func (*RegistrationFlow) SetRequestUrl ¶

func (o *RegistrationFlow) SetRequestUrl(v string)

SetRequestUrl sets field value

func (*RegistrationFlow) SetReturnTo ¶

func (o *RegistrationFlow) SetReturnTo(v string)

SetReturnTo gets a reference to the given string and assigns it to the ReturnTo field.

func (*RegistrationFlow) SetSessionTokenExchangeCode ¶

func (o *RegistrationFlow) SetSessionTokenExchangeCode(v string)

SetSessionTokenExchangeCode gets a reference to the given string and assigns it to the SessionTokenExchangeCode field.

func (*RegistrationFlow) SetState ¶

func (o *RegistrationFlow) SetState(v interface{})

SetState sets field value

func (*RegistrationFlow) SetTransientPayload ¶

func (o *RegistrationFlow) SetTransientPayload(v map[string]interface{})

SetTransientPayload gets a reference to the given map[string]interface{} and assigns it to the TransientPayload field.

func (*RegistrationFlow) SetType ¶

func (o *RegistrationFlow) SetType(v string)

SetType sets field value

func (*RegistrationFlow) SetUi ¶

func (o *RegistrationFlow) SetUi(v UiContainer)

SetUi sets field value

func (RegistrationFlow) ToMap ¶

func (o RegistrationFlow) ToMap() (map[string]interface{}, error)

func (*RegistrationFlow) UnmarshalJSON ¶

func (o *RegistrationFlow) UnmarshalJSON(bytes []byte) (err error)

func (*RegistrationFlow) UnsetOrganizationId ¶

func (o *RegistrationFlow) UnsetOrganizationId()

UnsetOrganizationId ensures that no value is present for OrganizationId, not even an explicit nil

type RegistrationFlowState ¶

type RegistrationFlowState string

RegistrationFlowState choose_method: ask the user to choose a method (e.g. registration with email) sent_email: the email has been sent to the user passed_challenge: the request was successful and the registration challenge was passed.

const (
	REGISTRATIONFLOWSTATE_CHOOSE_METHOD    RegistrationFlowState = "choose_method"
	REGISTRATIONFLOWSTATE_SENT_EMAIL       RegistrationFlowState = "sent_email"
	REGISTRATIONFLOWSTATE_PASSED_CHALLENGE RegistrationFlowState = "passed_challenge"
)

List of registrationFlowState

func NewRegistrationFlowStateFromValue ¶

func NewRegistrationFlowStateFromValue(v string) (*RegistrationFlowState, error)

NewRegistrationFlowStateFromValue returns a pointer to a valid RegistrationFlowState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (RegistrationFlowState) IsValid ¶

func (v RegistrationFlowState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (RegistrationFlowState) Ptr ¶

Ptr returns reference to registrationFlowState value

func (*RegistrationFlowState) UnmarshalJSON ¶

func (v *RegistrationFlowState) UnmarshalJSON(src []byte) error

type RejectOAuth2Request ¶

type RejectOAuth2Request struct {
	// The error should follow the OAuth2 error format (e.g. `invalid_request`, `login_required`).  Defaults to `request_denied`.
	Error *string `json:"error,omitempty"`
	// Debug contains information to help resolve the problem as a developer. Usually not exposed to the public but only in the server logs.
	ErrorDebug *string `json:"error_debug,omitempty"`
	// Description of the error in a human readable format.
	ErrorDescription *string `json:"error_description,omitempty"`
	// Hint to help resolve the error.
	ErrorHint *string `json:"error_hint,omitempty"`
	// Represents the HTTP status code of the error (e.g. 401 or 403)  Defaults to 400
	StatusCode           *int64 `json:"status_code,omitempty"`
	AdditionalProperties map[string]interface{}
}

RejectOAuth2Request struct for RejectOAuth2Request

func NewRejectOAuth2Request ¶

func NewRejectOAuth2Request() *RejectOAuth2Request

NewRejectOAuth2Request instantiates a new RejectOAuth2Request 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 NewRejectOAuth2RequestWithDefaults ¶

func NewRejectOAuth2RequestWithDefaults() *RejectOAuth2Request

NewRejectOAuth2RequestWithDefaults instantiates a new RejectOAuth2Request 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 (*RejectOAuth2Request) GetError ¶

func (o *RejectOAuth2Request) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*RejectOAuth2Request) GetErrorDebug ¶

func (o *RejectOAuth2Request) GetErrorDebug() string

GetErrorDebug returns the ErrorDebug field value if set, zero value otherwise.

func (*RejectOAuth2Request) GetErrorDebugOk ¶

func (o *RejectOAuth2Request) GetErrorDebugOk() (*string, bool)

GetErrorDebugOk returns a tuple with the ErrorDebug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RejectOAuth2Request) GetErrorDescription ¶

func (o *RejectOAuth2Request) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise.

func (*RejectOAuth2Request) GetErrorDescriptionOk ¶

func (o *RejectOAuth2Request) GetErrorDescriptionOk() (*string, bool)

GetErrorDescriptionOk returns a tuple with the ErrorDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RejectOAuth2Request) GetErrorHint ¶

func (o *RejectOAuth2Request) GetErrorHint() string

GetErrorHint returns the ErrorHint field value if set, zero value otherwise.

func (*RejectOAuth2Request) GetErrorHintOk ¶

func (o *RejectOAuth2Request) GetErrorHintOk() (*string, bool)

GetErrorHintOk returns a tuple with the ErrorHint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RejectOAuth2Request) GetErrorOk ¶

func (o *RejectOAuth2Request) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RejectOAuth2Request) GetStatusCode ¶

func (o *RejectOAuth2Request) GetStatusCode() int64

GetStatusCode returns the StatusCode field value if set, zero value otherwise.

func (*RejectOAuth2Request) GetStatusCodeOk ¶

func (o *RejectOAuth2Request) GetStatusCodeOk() (*int64, bool)

GetStatusCodeOk returns a tuple with the StatusCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RejectOAuth2Request) HasError ¶

func (o *RejectOAuth2Request) HasError() bool

HasError returns a boolean if a field has been set.

func (*RejectOAuth2Request) HasErrorDebug ¶

func (o *RejectOAuth2Request) HasErrorDebug() bool

HasErrorDebug returns a boolean if a field has been set.

func (*RejectOAuth2Request) HasErrorDescription ¶

func (o *RejectOAuth2Request) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*RejectOAuth2Request) HasErrorHint ¶

func (o *RejectOAuth2Request) HasErrorHint() bool

HasErrorHint returns a boolean if a field has been set.

func (*RejectOAuth2Request) HasStatusCode ¶

func (o *RejectOAuth2Request) HasStatusCode() bool

HasStatusCode returns a boolean if a field has been set.

func (RejectOAuth2Request) MarshalJSON ¶

func (o RejectOAuth2Request) MarshalJSON() ([]byte, error)

func (*RejectOAuth2Request) SetError ¶

func (o *RejectOAuth2Request) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*RejectOAuth2Request) SetErrorDebug ¶

func (o *RejectOAuth2Request) SetErrorDebug(v string)

SetErrorDebug gets a reference to the given string and assigns it to the ErrorDebug field.

func (*RejectOAuth2Request) SetErrorDescription ¶

func (o *RejectOAuth2Request) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given string and assigns it to the ErrorDescription field.

func (*RejectOAuth2Request) SetErrorHint ¶

func (o *RejectOAuth2Request) SetErrorHint(v string)

SetErrorHint gets a reference to the given string and assigns it to the ErrorHint field.

func (*RejectOAuth2Request) SetStatusCode ¶

func (o *RejectOAuth2Request) SetStatusCode(v int64)

SetStatusCode gets a reference to the given int64 and assigns it to the StatusCode field.

func (RejectOAuth2Request) ToMap ¶

func (o RejectOAuth2Request) ToMap() (map[string]interface{}, error)

func (*RejectOAuth2Request) UnmarshalJSON ¶

func (o *RejectOAuth2Request) UnmarshalJSON(bytes []byte) (err error)

type RelationQuery ¶

type RelationQuery struct {
	// Namespace to query
	Namespace *string `json:"namespace,omitempty"`
	// Object to query
	Object *string `json:"object,omitempty"`
	// Relation to query
	Relation *string `json:"relation,omitempty"`
	// SubjectID to query  Either SubjectSet or SubjectID can be provided.
	SubjectId            *string     `json:"subject_id,omitempty"`
	SubjectSet           *SubjectSet `json:"subject_set,omitempty"`
	AdditionalProperties map[string]interface{}
}

RelationQuery Relation Query

func NewRelationQuery ¶

func NewRelationQuery() *RelationQuery

NewRelationQuery instantiates a new RelationQuery 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 NewRelationQueryWithDefaults ¶

func NewRelationQueryWithDefaults() *RelationQuery

NewRelationQueryWithDefaults instantiates a new RelationQuery 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 (*RelationQuery) GetNamespace ¶

func (o *RelationQuery) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*RelationQuery) GetNamespaceOk ¶

func (o *RelationQuery) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RelationQuery) GetObject ¶

func (o *RelationQuery) GetObject() string

GetObject returns the Object field value if set, zero value otherwise.

func (*RelationQuery) GetObjectOk ¶

func (o *RelationQuery) GetObjectOk() (*string, bool)

GetObjectOk returns a tuple with the Object field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RelationQuery) GetRelation ¶

func (o *RelationQuery) GetRelation() string

GetRelation returns the Relation field value if set, zero value otherwise.

func (*RelationQuery) GetRelationOk ¶

func (o *RelationQuery) GetRelationOk() (*string, bool)

GetRelationOk returns a tuple with the Relation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RelationQuery) GetSubjectId ¶

func (o *RelationQuery) GetSubjectId() string

GetSubjectId returns the SubjectId field value if set, zero value otherwise.

func (*RelationQuery) GetSubjectIdOk ¶

func (o *RelationQuery) GetSubjectIdOk() (*string, bool)

GetSubjectIdOk returns a tuple with the SubjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RelationQuery) GetSubjectSet ¶

func (o *RelationQuery) GetSubjectSet() SubjectSet

GetSubjectSet returns the SubjectSet field value if set, zero value otherwise.

func (*RelationQuery) GetSubjectSetOk ¶

func (o *RelationQuery) GetSubjectSetOk() (*SubjectSet, bool)

GetSubjectSetOk returns a tuple with the SubjectSet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RelationQuery) HasNamespace ¶

func (o *RelationQuery) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*RelationQuery) HasObject ¶

func (o *RelationQuery) HasObject() bool

HasObject returns a boolean if a field has been set.

func (*RelationQuery) HasRelation ¶

func (o *RelationQuery) HasRelation() bool

HasRelation returns a boolean if a field has been set.

func (*RelationQuery) HasSubjectId ¶

func (o *RelationQuery) HasSubjectId() bool

HasSubjectId returns a boolean if a field has been set.

func (*RelationQuery) HasSubjectSet ¶

func (o *RelationQuery) HasSubjectSet() bool

HasSubjectSet returns a boolean if a field has been set.

func (RelationQuery) MarshalJSON ¶

func (o RelationQuery) MarshalJSON() ([]byte, error)

func (*RelationQuery) SetNamespace ¶

func (o *RelationQuery) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*RelationQuery) SetObject ¶

func (o *RelationQuery) SetObject(v string)

SetObject gets a reference to the given string and assigns it to the Object field.

func (*RelationQuery) SetRelation ¶

func (o *RelationQuery) SetRelation(v string)

SetRelation gets a reference to the given string and assigns it to the Relation field.

func (*RelationQuery) SetSubjectId ¶

func (o *RelationQuery) SetSubjectId(v string)

SetSubjectId gets a reference to the given string and assigns it to the SubjectId field.

func (*RelationQuery) SetSubjectSet ¶

func (o *RelationQuery) SetSubjectSet(v SubjectSet)

SetSubjectSet gets a reference to the given SubjectSet and assigns it to the SubjectSet field.

func (RelationQuery) ToMap ¶

func (o RelationQuery) ToMap() (map[string]interface{}, error)

func (*RelationQuery) UnmarshalJSON ¶

func (o *RelationQuery) UnmarshalJSON(bytes []byte) (err error)

type Relationship ¶

type Relationship struct {
	// Namespace of the Relation Tuple
	Namespace string `json:"namespace"`
	// Object of the Relation Tuple
	Object string `json:"object"`
	// Relation of the Relation Tuple
	Relation string `json:"relation"`
	// SubjectID of the Relation Tuple  Either SubjectSet or SubjectID can be provided.
	SubjectId            *string     `json:"subject_id,omitempty"`
	SubjectSet           *SubjectSet `json:"subject_set,omitempty"`
	AdditionalProperties map[string]interface{}
}

Relationship Relationship

func NewRelationship ¶

func NewRelationship(namespace string, object string, relation string) *Relationship

NewRelationship instantiates a new Relationship 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 NewRelationshipWithDefaults ¶

func NewRelationshipWithDefaults() *Relationship

NewRelationshipWithDefaults instantiates a new Relationship 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 (*Relationship) GetNamespace ¶

func (o *Relationship) GetNamespace() string

GetNamespace returns the Namespace field value

func (*Relationship) GetNamespaceOk ¶

func (o *Relationship) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value and a boolean to check if the value has been set.

func (*Relationship) GetObject ¶

func (o *Relationship) GetObject() string

GetObject returns the Object field value

func (*Relationship) GetObjectOk ¶

func (o *Relationship) GetObjectOk() (*string, bool)

GetObjectOk returns a tuple with the Object field value and a boolean to check if the value has been set.

func (*Relationship) GetRelation ¶

func (o *Relationship) GetRelation() string

GetRelation returns the Relation field value

func (*Relationship) GetRelationOk ¶

func (o *Relationship) GetRelationOk() (*string, bool)

GetRelationOk returns a tuple with the Relation field value and a boolean to check if the value has been set.

func (*Relationship) GetSubjectId ¶

func (o *Relationship) GetSubjectId() string

GetSubjectId returns the SubjectId field value if set, zero value otherwise.

func (*Relationship) GetSubjectIdOk ¶

func (o *Relationship) GetSubjectIdOk() (*string, bool)

GetSubjectIdOk returns a tuple with the SubjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Relationship) GetSubjectSet ¶

func (o *Relationship) GetSubjectSet() SubjectSet

GetSubjectSet returns the SubjectSet field value if set, zero value otherwise.

func (*Relationship) GetSubjectSetOk ¶

func (o *Relationship) GetSubjectSetOk() (*SubjectSet, bool)

GetSubjectSetOk returns a tuple with the SubjectSet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Relationship) HasSubjectId ¶

func (o *Relationship) HasSubjectId() bool

HasSubjectId returns a boolean if a field has been set.

func (*Relationship) HasSubjectSet ¶

func (o *Relationship) HasSubjectSet() bool

HasSubjectSet returns a boolean if a field has been set.

func (Relationship) MarshalJSON ¶

func (o Relationship) MarshalJSON() ([]byte, error)

func (*Relationship) SetNamespace ¶

func (o *Relationship) SetNamespace(v string)

SetNamespace sets field value

func (*Relationship) SetObject ¶

func (o *Relationship) SetObject(v string)

SetObject sets field value

func (*Relationship) SetRelation ¶

func (o *Relationship) SetRelation(v string)

SetRelation sets field value

func (*Relationship) SetSubjectId ¶

func (o *Relationship) SetSubjectId(v string)

SetSubjectId gets a reference to the given string and assigns it to the SubjectId field.

func (*Relationship) SetSubjectSet ¶

func (o *Relationship) SetSubjectSet(v SubjectSet)

SetSubjectSet gets a reference to the given SubjectSet and assigns it to the SubjectSet field.

func (Relationship) ToMap ¶

func (o Relationship) ToMap() (map[string]interface{}, error)

func (*Relationship) UnmarshalJSON ¶

func (o *Relationship) UnmarshalJSON(bytes []byte) (err error)

type RelationshipAPI ¶

type RelationshipAPI interface {

	/*
		CheckOplSyntax Check the syntax of an OPL file

		The OPL file is expected in the body of the request.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return RelationshipAPICheckOplSyntaxRequest
	*/
	CheckOplSyntax(ctx context.Context) RelationshipAPICheckOplSyntaxRequest

	// CheckOplSyntaxExecute executes the request
	//  @return CheckOplSyntaxResult
	CheckOplSyntaxExecute(r RelationshipAPICheckOplSyntaxRequest) (*CheckOplSyntaxResult, *http.Response, error)

	/*
		CreateRelationship Create a Relationship

		Use this endpoint to create a relationship.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return RelationshipAPICreateRelationshipRequest
	*/
	CreateRelationship(ctx context.Context) RelationshipAPICreateRelationshipRequest

	// CreateRelationshipExecute executes the request
	//  @return Relationship
	CreateRelationshipExecute(r RelationshipAPICreateRelationshipRequest) (*Relationship, *http.Response, error)

	/*
		DeleteRelationships Delete Relationships

		Use this endpoint to delete relationships

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return RelationshipAPIDeleteRelationshipsRequest
	*/
	DeleteRelationships(ctx context.Context) RelationshipAPIDeleteRelationshipsRequest

	// DeleteRelationshipsExecute executes the request
	DeleteRelationshipsExecute(r RelationshipAPIDeleteRelationshipsRequest) (*http.Response, error)

	/*
		GetRelationships Query relationships

		Get all relationships that match the query. Only the namespace field is required.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return RelationshipAPIGetRelationshipsRequest
	*/
	GetRelationships(ctx context.Context) RelationshipAPIGetRelationshipsRequest

	// GetRelationshipsExecute executes the request
	//  @return Relationships
	GetRelationshipsExecute(r RelationshipAPIGetRelationshipsRequest) (*Relationships, *http.Response, error)

	/*
		ListRelationshipNamespaces Query namespaces

		Get all namespaces

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return RelationshipAPIListRelationshipNamespacesRequest
	*/
	ListRelationshipNamespaces(ctx context.Context) RelationshipAPIListRelationshipNamespacesRequest

	// ListRelationshipNamespacesExecute executes the request
	//  @return RelationshipNamespaces
	ListRelationshipNamespacesExecute(r RelationshipAPIListRelationshipNamespacesRequest) (*RelationshipNamespaces, *http.Response, error)

	/*
		PatchRelationships Patch Multiple Relationships

		Use this endpoint to patch one or more relationships.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return RelationshipAPIPatchRelationshipsRequest
	*/
	PatchRelationships(ctx context.Context) RelationshipAPIPatchRelationshipsRequest

	// PatchRelationshipsExecute executes the request
	PatchRelationshipsExecute(r RelationshipAPIPatchRelationshipsRequest) (*http.Response, error)
}

type RelationshipAPICheckOplSyntaxRequest ¶

type RelationshipAPICheckOplSyntaxRequest struct {
	ApiService RelationshipAPI
	// contains filtered or unexported fields
}

func (RelationshipAPICheckOplSyntaxRequest) Body ¶

func (RelationshipAPICheckOplSyntaxRequest) Execute ¶

type RelationshipAPICreateRelationshipRequest ¶

type RelationshipAPICreateRelationshipRequest struct {
	ApiService RelationshipAPI
	// contains filtered or unexported fields
}

func (RelationshipAPICreateRelationshipRequest) CreateRelationshipBody ¶

func (RelationshipAPICreateRelationshipRequest) Execute ¶

type RelationshipAPIDeleteRelationshipsRequest ¶

type RelationshipAPIDeleteRelationshipsRequest struct {
	ApiService RelationshipAPI
	// contains filtered or unexported fields
}

func (RelationshipAPIDeleteRelationshipsRequest) Execute ¶

func (RelationshipAPIDeleteRelationshipsRequest) Namespace ¶

Namespace of the Relationship

func (RelationshipAPIDeleteRelationshipsRequest) Object ¶

Object of the Relationship

func (RelationshipAPIDeleteRelationshipsRequest) Relation ¶

Relation of the Relationship

func (RelationshipAPIDeleteRelationshipsRequest) SubjectId ¶

SubjectID of the Relationship

func (RelationshipAPIDeleteRelationshipsRequest) SubjectSetNamespace ¶

Namespace of the Subject Set

func (RelationshipAPIDeleteRelationshipsRequest) SubjectSetObject ¶

Object of the Subject Set

func (RelationshipAPIDeleteRelationshipsRequest) SubjectSetRelation ¶

Relation of the Subject Set

type RelationshipAPIGetRelationshipsRequest ¶

type RelationshipAPIGetRelationshipsRequest struct {
	ApiService RelationshipAPI
	// contains filtered or unexported fields
}

func (RelationshipAPIGetRelationshipsRequest) Execute ¶

func (RelationshipAPIGetRelationshipsRequest) Namespace ¶

Namespace of the Relationship

func (RelationshipAPIGetRelationshipsRequest) Object ¶

Object of the Relationship

func (RelationshipAPIGetRelationshipsRequest) PageSize ¶

func (RelationshipAPIGetRelationshipsRequest) PageToken ¶

func (RelationshipAPIGetRelationshipsRequest) Relation ¶

Relation of the Relationship

func (RelationshipAPIGetRelationshipsRequest) SubjectId ¶

SubjectID of the Relationship

func (RelationshipAPIGetRelationshipsRequest) SubjectSetNamespace ¶

Namespace of the Subject Set

func (RelationshipAPIGetRelationshipsRequest) SubjectSetObject ¶

Object of the Subject Set

func (RelationshipAPIGetRelationshipsRequest) SubjectSetRelation ¶

Relation of the Subject Set

type RelationshipAPIListRelationshipNamespacesRequest ¶

type RelationshipAPIListRelationshipNamespacesRequest struct {
	ApiService RelationshipAPI
	// contains filtered or unexported fields
}

func (RelationshipAPIListRelationshipNamespacesRequest) Execute ¶

type RelationshipAPIPatchRelationshipsRequest ¶

type RelationshipAPIPatchRelationshipsRequest struct {
	ApiService RelationshipAPI
	// contains filtered or unexported fields
}

func (RelationshipAPIPatchRelationshipsRequest) Execute ¶

func (RelationshipAPIPatchRelationshipsRequest) RelationshipPatch ¶

type RelationshipAPIService ¶

type RelationshipAPIService service

RelationshipAPIService RelationshipAPI service

func (*RelationshipAPIService) CheckOplSyntax ¶

CheckOplSyntax Check the syntax of an OPL file

The OPL file is expected in the body of the request.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return RelationshipAPICheckOplSyntaxRequest

func (*RelationshipAPIService) CheckOplSyntaxExecute ¶

Execute executes the request

@return CheckOplSyntaxResult

func (*RelationshipAPIService) CreateRelationship ¶

CreateRelationship Create a Relationship

Use this endpoint to create a relationship.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return RelationshipAPICreateRelationshipRequest

func (*RelationshipAPIService) CreateRelationshipExecute ¶

Execute executes the request

@return Relationship

func (*RelationshipAPIService) DeleteRelationships ¶

DeleteRelationships Delete Relationships

Use this endpoint to delete relationships

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return RelationshipAPIDeleteRelationshipsRequest

func (*RelationshipAPIService) DeleteRelationshipsExecute ¶

Execute executes the request

func (*RelationshipAPIService) GetRelationships ¶

GetRelationships Query relationships

Get all relationships that match the query. Only the namespace field is required.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return RelationshipAPIGetRelationshipsRequest

func (*RelationshipAPIService) GetRelationshipsExecute ¶

Execute executes the request

@return Relationships

func (*RelationshipAPIService) ListRelationshipNamespaces ¶

ListRelationshipNamespaces Query namespaces

Get all namespaces

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return RelationshipAPIListRelationshipNamespacesRequest

func (*RelationshipAPIService) ListRelationshipNamespacesExecute ¶

Execute executes the request

@return RelationshipNamespaces

func (*RelationshipAPIService) PatchRelationships ¶

PatchRelationships Patch Multiple Relationships

Use this endpoint to patch one or more relationships.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return RelationshipAPIPatchRelationshipsRequest

func (*RelationshipAPIService) PatchRelationshipsExecute ¶

Execute executes the request

type RelationshipNamespaces ¶

type RelationshipNamespaces struct {
	Namespaces           []Namespace `json:"namespaces,omitempty"`
	AdditionalProperties map[string]interface{}
}

RelationshipNamespaces Relationship Namespace List

func NewRelationshipNamespaces ¶

func NewRelationshipNamespaces() *RelationshipNamespaces

NewRelationshipNamespaces instantiates a new RelationshipNamespaces 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 NewRelationshipNamespacesWithDefaults ¶

func NewRelationshipNamespacesWithDefaults() *RelationshipNamespaces

NewRelationshipNamespacesWithDefaults instantiates a new RelationshipNamespaces 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 (*RelationshipNamespaces) GetNamespaces ¶

func (o *RelationshipNamespaces) GetNamespaces() []Namespace

GetNamespaces returns the Namespaces field value if set, zero value otherwise.

func (*RelationshipNamespaces) GetNamespacesOk ¶

func (o *RelationshipNamespaces) GetNamespacesOk() ([]Namespace, bool)

GetNamespacesOk returns a tuple with the Namespaces field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RelationshipNamespaces) HasNamespaces ¶

func (o *RelationshipNamespaces) HasNamespaces() bool

HasNamespaces returns a boolean if a field has been set.

func (RelationshipNamespaces) MarshalJSON ¶

func (o RelationshipNamespaces) MarshalJSON() ([]byte, error)

func (*RelationshipNamespaces) SetNamespaces ¶

func (o *RelationshipNamespaces) SetNamespaces(v []Namespace)

SetNamespaces gets a reference to the given []Namespace and assigns it to the Namespaces field.

func (RelationshipNamespaces) ToMap ¶

func (o RelationshipNamespaces) ToMap() (map[string]interface{}, error)

func (*RelationshipNamespaces) UnmarshalJSON ¶

func (o *RelationshipNamespaces) UnmarshalJSON(bytes []byte) (err error)

type RelationshipPatch ¶

type RelationshipPatch struct {
	Action               *string       `json:"action,omitempty"`
	RelationTuple        *Relationship `json:"relation_tuple,omitempty"`
	AdditionalProperties map[string]interface{}
}

RelationshipPatch Payload for patching a relationship

func NewRelationshipPatch ¶

func NewRelationshipPatch() *RelationshipPatch

NewRelationshipPatch instantiates a new RelationshipPatch 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 NewRelationshipPatchWithDefaults ¶

func NewRelationshipPatchWithDefaults() *RelationshipPatch

NewRelationshipPatchWithDefaults instantiates a new RelationshipPatch 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 (*RelationshipPatch) GetAction ¶

func (o *RelationshipPatch) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*RelationshipPatch) GetActionOk ¶

func (o *RelationshipPatch) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RelationshipPatch) GetRelationTuple ¶

func (o *RelationshipPatch) GetRelationTuple() Relationship

GetRelationTuple returns the RelationTuple field value if set, zero value otherwise.

func (*RelationshipPatch) GetRelationTupleOk ¶

func (o *RelationshipPatch) GetRelationTupleOk() (*Relationship, bool)

GetRelationTupleOk returns a tuple with the RelationTuple field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RelationshipPatch) HasAction ¶

func (o *RelationshipPatch) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*RelationshipPatch) HasRelationTuple ¶

func (o *RelationshipPatch) HasRelationTuple() bool

HasRelationTuple returns a boolean if a field has been set.

func (RelationshipPatch) MarshalJSON ¶

func (o RelationshipPatch) MarshalJSON() ([]byte, error)

func (*RelationshipPatch) SetAction ¶

func (o *RelationshipPatch) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*RelationshipPatch) SetRelationTuple ¶

func (o *RelationshipPatch) SetRelationTuple(v Relationship)

SetRelationTuple gets a reference to the given Relationship and assigns it to the RelationTuple field.

func (RelationshipPatch) ToMap ¶

func (o RelationshipPatch) ToMap() (map[string]interface{}, error)

func (*RelationshipPatch) UnmarshalJSON ¶

func (o *RelationshipPatch) UnmarshalJSON(bytes []byte) (err error)

type Relationships ¶

type Relationships struct {
	// The opaque token to provide in a subsequent request to get the next page. It is the empty string iff this is the last page.
	NextPageToken        *string        `json:"next_page_token,omitempty"`
	RelationTuples       []Relationship `json:"relation_tuples,omitempty"`
	AdditionalProperties map[string]interface{}
}

Relationships Paginated Relationship List

func NewRelationships ¶

func NewRelationships() *Relationships

NewRelationships instantiates a new Relationships 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 NewRelationshipsWithDefaults ¶

func NewRelationshipsWithDefaults() *Relationships

NewRelationshipsWithDefaults instantiates a new Relationships 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 (*Relationships) GetNextPageToken ¶

func (o *Relationships) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value if set, zero value otherwise.

func (*Relationships) GetNextPageTokenOk ¶

func (o *Relationships) GetNextPageTokenOk() (*string, bool)

GetNextPageTokenOk returns a tuple with the NextPageToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Relationships) GetRelationTuples ¶

func (o *Relationships) GetRelationTuples() []Relationship

GetRelationTuples returns the RelationTuples field value if set, zero value otherwise.

func (*Relationships) GetRelationTuplesOk ¶

func (o *Relationships) GetRelationTuplesOk() ([]Relationship, bool)

GetRelationTuplesOk returns a tuple with the RelationTuples field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Relationships) HasNextPageToken ¶

func (o *Relationships) HasNextPageToken() bool

HasNextPageToken returns a boolean if a field has been set.

func (*Relationships) HasRelationTuples ¶

func (o *Relationships) HasRelationTuples() bool

HasRelationTuples returns a boolean if a field has been set.

func (Relationships) MarshalJSON ¶

func (o Relationships) MarshalJSON() ([]byte, error)

func (*Relationships) SetNextPageToken ¶

func (o *Relationships) SetNextPageToken(v string)

SetNextPageToken gets a reference to the given string and assigns it to the NextPageToken field.

func (*Relationships) SetRelationTuples ¶

func (o *Relationships) SetRelationTuples(v []Relationship)

SetRelationTuples gets a reference to the given []Relationship and assigns it to the RelationTuples field.

func (Relationships) ToMap ¶

func (o Relationships) ToMap() (map[string]interface{}, error)

func (*Relationships) UnmarshalJSON ¶

func (o *Relationships) UnmarshalJSON(bytes []byte) (err error)

type SchemaPatch ¶

type SchemaPatch struct {
	// The json schema
	Data map[string]interface{} `json:"data"`
	// The user defined schema name
	Name                 string `json:"name"`
	AdditionalProperties map[string]interface{}
}

SchemaPatch struct for SchemaPatch

func NewSchemaPatch ¶

func NewSchemaPatch(data map[string]interface{}, name string) *SchemaPatch

NewSchemaPatch instantiates a new SchemaPatch 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 NewSchemaPatchWithDefaults ¶

func NewSchemaPatchWithDefaults() *SchemaPatch

NewSchemaPatchWithDefaults instantiates a new SchemaPatch 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 (*SchemaPatch) GetData ¶

func (o *SchemaPatch) GetData() map[string]interface{}

GetData returns the Data field value

func (*SchemaPatch) GetDataOk ¶

func (o *SchemaPatch) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*SchemaPatch) GetName ¶

func (o *SchemaPatch) GetName() string

GetName returns the Name field value

func (*SchemaPatch) GetNameOk ¶

func (o *SchemaPatch) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (SchemaPatch) MarshalJSON ¶

func (o SchemaPatch) MarshalJSON() ([]byte, error)

func (*SchemaPatch) SetData ¶

func (o *SchemaPatch) SetData(v map[string]interface{})

SetData sets field value

func (*SchemaPatch) SetName ¶

func (o *SchemaPatch) SetName(v string)

SetName sets field value

func (SchemaPatch) ToMap ¶

func (o SchemaPatch) ToMap() (map[string]interface{}, error)

func (*SchemaPatch) UnmarshalJSON ¶

func (o *SchemaPatch) UnmarshalJSON(bytes []byte) (err error)

type SelfServiceFlowExpiredError ¶

type SelfServiceFlowExpiredError struct {
	Error *GenericError `json:"error,omitempty"`
	// When the flow has expired
	ExpiredAt *time.Time `json:"expired_at,omitempty"`
	// A Duration represents the elapsed time between two instants as an int64 nanosecond count. The representation limits the largest representable duration to approximately 290 years.
	Since *int64 `json:"since,omitempty"`
	// The flow ID that should be used for the new flow as it contains the correct messages.
	UseFlowId            *string `json:"use_flow_id,omitempty"`
	AdditionalProperties map[string]interface{}
}

SelfServiceFlowExpiredError Is sent when a flow is expired

func NewSelfServiceFlowExpiredError ¶

func NewSelfServiceFlowExpiredError() *SelfServiceFlowExpiredError

NewSelfServiceFlowExpiredError instantiates a new SelfServiceFlowExpiredError 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 NewSelfServiceFlowExpiredErrorWithDefaults ¶

func NewSelfServiceFlowExpiredErrorWithDefaults() *SelfServiceFlowExpiredError

NewSelfServiceFlowExpiredErrorWithDefaults instantiates a new SelfServiceFlowExpiredError 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 (*SelfServiceFlowExpiredError) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*SelfServiceFlowExpiredError) GetErrorOk ¶

func (o *SelfServiceFlowExpiredError) GetErrorOk() (*GenericError, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SelfServiceFlowExpiredError) GetExpiredAt ¶

func (o *SelfServiceFlowExpiredError) GetExpiredAt() time.Time

GetExpiredAt returns the ExpiredAt field value if set, zero value otherwise.

func (*SelfServiceFlowExpiredError) GetExpiredAtOk ¶

func (o *SelfServiceFlowExpiredError) GetExpiredAtOk() (*time.Time, bool)

GetExpiredAtOk returns a tuple with the ExpiredAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SelfServiceFlowExpiredError) GetSince ¶

func (o *SelfServiceFlowExpiredError) GetSince() int64

GetSince returns the Since field value if set, zero value otherwise.

func (*SelfServiceFlowExpiredError) GetSinceOk ¶

func (o *SelfServiceFlowExpiredError) GetSinceOk() (*int64, bool)

GetSinceOk returns a tuple with the Since field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SelfServiceFlowExpiredError) GetUseFlowId ¶

func (o *SelfServiceFlowExpiredError) GetUseFlowId() string

GetUseFlowId returns the UseFlowId field value if set, zero value otherwise.

func (*SelfServiceFlowExpiredError) GetUseFlowIdOk ¶

func (o *SelfServiceFlowExpiredError) GetUseFlowIdOk() (*string, bool)

GetUseFlowIdOk returns a tuple with the UseFlowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SelfServiceFlowExpiredError) HasError ¶

func (o *SelfServiceFlowExpiredError) HasError() bool

HasError returns a boolean if a field has been set.

func (*SelfServiceFlowExpiredError) HasExpiredAt ¶

func (o *SelfServiceFlowExpiredError) HasExpiredAt() bool

HasExpiredAt returns a boolean if a field has been set.

func (*SelfServiceFlowExpiredError) HasSince ¶

func (o *SelfServiceFlowExpiredError) HasSince() bool

HasSince returns a boolean if a field has been set.

func (*SelfServiceFlowExpiredError) HasUseFlowId ¶

func (o *SelfServiceFlowExpiredError) HasUseFlowId() bool

HasUseFlowId returns a boolean if a field has been set.

func (SelfServiceFlowExpiredError) MarshalJSON ¶

func (o SelfServiceFlowExpiredError) MarshalJSON() ([]byte, error)

func (*SelfServiceFlowExpiredError) SetError ¶

SetError gets a reference to the given GenericError and assigns it to the Error field.

func (*SelfServiceFlowExpiredError) SetExpiredAt ¶

func (o *SelfServiceFlowExpiredError) SetExpiredAt(v time.Time)

SetExpiredAt gets a reference to the given time.Time and assigns it to the ExpiredAt field.

func (*SelfServiceFlowExpiredError) SetSince ¶

func (o *SelfServiceFlowExpiredError) SetSince(v int64)

SetSince gets a reference to the given int64 and assigns it to the Since field.

func (*SelfServiceFlowExpiredError) SetUseFlowId ¶

func (o *SelfServiceFlowExpiredError) SetUseFlowId(v string)

SetUseFlowId gets a reference to the given string and assigns it to the UseFlowId field.

func (SelfServiceFlowExpiredError) ToMap ¶

func (o SelfServiceFlowExpiredError) ToMap() (map[string]interface{}, error)

func (*SelfServiceFlowExpiredError) UnmarshalJSON ¶

func (o *SelfServiceFlowExpiredError) UnmarshalJSON(bytes []byte) (err error)

type ServerConfiguration ¶

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations ¶

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL ¶

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable ¶

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type Session ¶

type Session struct {
	// Active state. If false the session is no longer active.
	Active *bool `json:"active,omitempty"`
	// The Session Authentication Timestamp  When this session was authenticated at. If multi-factor authentication was used this is the time when the last factor was authenticated (e.g. the TOTP code challenge was completed).
	AuthenticatedAt *time.Time `json:"authenticated_at,omitempty"`
	// A list of authenticators which were used to authenticate the session.
	AuthenticationMethods       []SessionAuthenticationMethod `json:"authentication_methods,omitempty"`
	AuthenticatorAssuranceLevel *AuthenticatorAssuranceLevel  `json:"authenticator_assurance_level,omitempty"`
	// Devices has history of all endpoints where the session was used
	Devices []SessionDevice `json:"devices,omitempty"`
	// The Session Expiry  When this session expires at.
	ExpiresAt *time.Time `json:"expires_at,omitempty"`
	// Session ID
	Id       string    `json:"id"`
	Identity *Identity `json:"identity,omitempty"`
	// The Session Issuance Timestamp  When this session was issued at. Usually equal or close to `authenticated_at`.
	IssuedAt *time.Time `json:"issued_at,omitempty"`
	// Tokenized is the tokenized (e.g. JWT) version of the session.  It is only set when the `tokenize` query parameter was set to a valid tokenize template during calls to `/session/whoami`.
	Tokenized            *string `json:"tokenized,omitempty"`
	AdditionalProperties map[string]interface{}
}

Session A Session

func NewSession ¶

func NewSession(id string) *Session

NewSession instantiates a new Session 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 NewSessionWithDefaults ¶

func NewSessionWithDefaults() *Session

NewSessionWithDefaults instantiates a new Session 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 (*Session) GetActive ¶

func (o *Session) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*Session) GetActiveOk ¶

func (o *Session) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Session) GetAuthenticatedAt ¶

func (o *Session) GetAuthenticatedAt() time.Time

GetAuthenticatedAt returns the AuthenticatedAt field value if set, zero value otherwise.

func (*Session) GetAuthenticatedAtOk ¶

func (o *Session) GetAuthenticatedAtOk() (*time.Time, bool)

GetAuthenticatedAtOk returns a tuple with the AuthenticatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Session) GetAuthenticationMethods ¶

func (o *Session) GetAuthenticationMethods() []SessionAuthenticationMethod

GetAuthenticationMethods returns the AuthenticationMethods field value if set, zero value otherwise.

func (*Session) GetAuthenticationMethodsOk ¶

func (o *Session) GetAuthenticationMethodsOk() ([]SessionAuthenticationMethod, bool)

GetAuthenticationMethodsOk returns a tuple with the AuthenticationMethods field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Session) GetAuthenticatorAssuranceLevel ¶

func (o *Session) GetAuthenticatorAssuranceLevel() AuthenticatorAssuranceLevel

GetAuthenticatorAssuranceLevel returns the AuthenticatorAssuranceLevel field value if set, zero value otherwise.

func (*Session) GetAuthenticatorAssuranceLevelOk ¶

func (o *Session) GetAuthenticatorAssuranceLevelOk() (*AuthenticatorAssuranceLevel, bool)

GetAuthenticatorAssuranceLevelOk returns a tuple with the AuthenticatorAssuranceLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Session) GetDevices ¶

func (o *Session) GetDevices() []SessionDevice

GetDevices returns the Devices field value if set, zero value otherwise.

func (*Session) GetDevicesOk ¶

func (o *Session) GetDevicesOk() ([]SessionDevice, bool)

GetDevicesOk returns a tuple with the Devices field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Session) GetExpiresAt ¶

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

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*Session) GetExpiresAtOk ¶

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

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Session) GetId ¶

func (o *Session) GetId() string

GetId returns the Id field value

func (*Session) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Session) GetIdentity ¶

func (o *Session) GetIdentity() Identity

GetIdentity returns the Identity field value if set, zero value otherwise.

func (*Session) GetIdentityOk ¶

func (o *Session) GetIdentityOk() (*Identity, bool)

GetIdentityOk returns a tuple with the Identity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Session) GetIssuedAt ¶

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

GetIssuedAt returns the IssuedAt field value if set, zero value otherwise.

func (*Session) GetIssuedAtOk ¶

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

GetIssuedAtOk returns a tuple with the IssuedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Session) GetTokenized ¶

func (o *Session) GetTokenized() string

GetTokenized returns the Tokenized field value if set, zero value otherwise.

func (*Session) GetTokenizedOk ¶

func (o *Session) GetTokenizedOk() (*string, bool)

GetTokenizedOk returns a tuple with the Tokenized field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Session) HasActive ¶

func (o *Session) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*Session) HasAuthenticatedAt ¶

func (o *Session) HasAuthenticatedAt() bool

HasAuthenticatedAt returns a boolean if a field has been set.

func (*Session) HasAuthenticationMethods ¶

func (o *Session) HasAuthenticationMethods() bool

HasAuthenticationMethods returns a boolean if a field has been set.

func (*Session) HasAuthenticatorAssuranceLevel ¶

func (o *Session) HasAuthenticatorAssuranceLevel() bool

HasAuthenticatorAssuranceLevel returns a boolean if a field has been set.

func (*Session) HasDevices ¶

func (o *Session) HasDevices() bool

HasDevices returns a boolean if a field has been set.

func (*Session) HasExpiresAt ¶

func (o *Session) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*Session) HasIdentity ¶

func (o *Session) HasIdentity() bool

HasIdentity returns a boolean if a field has been set.

func (*Session) HasIssuedAt ¶

func (o *Session) HasIssuedAt() bool

HasIssuedAt returns a boolean if a field has been set.

func (*Session) HasTokenized ¶

func (o *Session) HasTokenized() bool

HasTokenized returns a boolean if a field has been set.

func (Session) MarshalJSON ¶

func (o Session) MarshalJSON() ([]byte, error)

func (*Session) SetActive ¶

func (o *Session) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*Session) SetAuthenticatedAt ¶

func (o *Session) SetAuthenticatedAt(v time.Time)

SetAuthenticatedAt gets a reference to the given time.Time and assigns it to the AuthenticatedAt field.

func (*Session) SetAuthenticationMethods ¶

func (o *Session) SetAuthenticationMethods(v []SessionAuthenticationMethod)

SetAuthenticationMethods gets a reference to the given []SessionAuthenticationMethod and assigns it to the AuthenticationMethods field.

func (*Session) SetAuthenticatorAssuranceLevel ¶

func (o *Session) SetAuthenticatorAssuranceLevel(v AuthenticatorAssuranceLevel)

SetAuthenticatorAssuranceLevel gets a reference to the given AuthenticatorAssuranceLevel and assigns it to the AuthenticatorAssuranceLevel field.

func (*Session) SetDevices ¶

func (o *Session) SetDevices(v []SessionDevice)

SetDevices gets a reference to the given []SessionDevice and assigns it to the Devices field.

func (*Session) SetExpiresAt ¶

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

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*Session) SetId ¶

func (o *Session) SetId(v string)

SetId sets field value

func (*Session) SetIdentity ¶

func (o *Session) SetIdentity(v Identity)

SetIdentity gets a reference to the given Identity and assigns it to the Identity field.

func (*Session) SetIssuedAt ¶

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

SetIssuedAt gets a reference to the given time.Time and assigns it to the IssuedAt field.

func (*Session) SetTokenized ¶

func (o *Session) SetTokenized(v string)

SetTokenized gets a reference to the given string and assigns it to the Tokenized field.

func (Session) ToMap ¶

func (o Session) ToMap() (map[string]interface{}, error)

func (*Session) UnmarshalJSON ¶

func (o *Session) UnmarshalJSON(bytes []byte) (err error)

type SessionActivityDatapoint ¶

type SessionActivityDatapoint struct {
	// Country of the events
	Country string `json:"country"`
	// Number of events that failed in the given timeframe
	Failed int64 `json:"failed"`
	// Number of events that succeeded in the given timeframe
	Succeeded            int64 `json:"succeeded"`
	AdditionalProperties map[string]interface{}
}

SessionActivityDatapoint struct for SessionActivityDatapoint

func NewSessionActivityDatapoint ¶

func NewSessionActivityDatapoint(country string, failed int64, succeeded int64) *SessionActivityDatapoint

NewSessionActivityDatapoint instantiates a new SessionActivityDatapoint 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 NewSessionActivityDatapointWithDefaults ¶

func NewSessionActivityDatapointWithDefaults() *SessionActivityDatapoint

NewSessionActivityDatapointWithDefaults instantiates a new SessionActivityDatapoint 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 (*SessionActivityDatapoint) GetCountry ¶

func (o *SessionActivityDatapoint) GetCountry() string

GetCountry returns the Country field value

func (*SessionActivityDatapoint) GetCountryOk ¶

func (o *SessionActivityDatapoint) GetCountryOk() (*string, bool)

GetCountryOk returns a tuple with the Country field value and a boolean to check if the value has been set.

func (*SessionActivityDatapoint) GetFailed ¶

func (o *SessionActivityDatapoint) GetFailed() int64

GetFailed returns the Failed field value

func (*SessionActivityDatapoint) GetFailedOk ¶

func (o *SessionActivityDatapoint) GetFailedOk() (*int64, bool)

GetFailedOk returns a tuple with the Failed field value and a boolean to check if the value has been set.

func (*SessionActivityDatapoint) GetSucceeded ¶

func (o *SessionActivityDatapoint) GetSucceeded() int64

GetSucceeded returns the Succeeded field value

func (*SessionActivityDatapoint) GetSucceededOk ¶

func (o *SessionActivityDatapoint) GetSucceededOk() (*int64, bool)

GetSucceededOk returns a tuple with the Succeeded field value and a boolean to check if the value has been set.

func (SessionActivityDatapoint) MarshalJSON ¶

func (o SessionActivityDatapoint) MarshalJSON() ([]byte, error)

func (*SessionActivityDatapoint) SetCountry ¶

func (o *SessionActivityDatapoint) SetCountry(v string)

SetCountry sets field value

func (*SessionActivityDatapoint) SetFailed ¶

func (o *SessionActivityDatapoint) SetFailed(v int64)

SetFailed sets field value

func (*SessionActivityDatapoint) SetSucceeded ¶

func (o *SessionActivityDatapoint) SetSucceeded(v int64)

SetSucceeded sets field value

func (SessionActivityDatapoint) ToMap ¶

func (o SessionActivityDatapoint) ToMap() (map[string]interface{}, error)

func (*SessionActivityDatapoint) UnmarshalJSON ¶

func (o *SessionActivityDatapoint) UnmarshalJSON(bytes []byte) (err error)

type SessionAuthenticationMethod ¶

type SessionAuthenticationMethod struct {
	Aal *AuthenticatorAssuranceLevel `json:"aal,omitempty"`
	// When the authentication challenge was completed.
	CompletedAt *time.Time `json:"completed_at,omitempty"`
	Method      *string    `json:"method,omitempty"`
	// The Organization id used for authentication
	Organization *string `json:"organization,omitempty"`
	// OIDC or SAML provider id used for authentication
	Provider             *string `json:"provider,omitempty"`
	AdditionalProperties map[string]interface{}
}

SessionAuthenticationMethod A singular authenticator used during authentication / login.

func NewSessionAuthenticationMethod ¶

func NewSessionAuthenticationMethod() *SessionAuthenticationMethod

NewSessionAuthenticationMethod instantiates a new SessionAuthenticationMethod 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 NewSessionAuthenticationMethodWithDefaults ¶

func NewSessionAuthenticationMethodWithDefaults() *SessionAuthenticationMethod

NewSessionAuthenticationMethodWithDefaults instantiates a new SessionAuthenticationMethod 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 (*SessionAuthenticationMethod) GetAal ¶

GetAal returns the Aal field value if set, zero value otherwise.

func (*SessionAuthenticationMethod) GetAalOk ¶

GetAalOk returns a tuple with the Aal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionAuthenticationMethod) GetCompletedAt ¶

func (o *SessionAuthenticationMethod) GetCompletedAt() time.Time

GetCompletedAt returns the CompletedAt field value if set, zero value otherwise.

func (*SessionAuthenticationMethod) GetCompletedAtOk ¶

func (o *SessionAuthenticationMethod) GetCompletedAtOk() (*time.Time, bool)

GetCompletedAtOk returns a tuple with the CompletedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionAuthenticationMethod) GetMethod ¶

func (o *SessionAuthenticationMethod) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise.

func (*SessionAuthenticationMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionAuthenticationMethod) GetOrganization ¶

func (o *SessionAuthenticationMethod) GetOrganization() string

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*SessionAuthenticationMethod) GetOrganizationOk ¶

func (o *SessionAuthenticationMethod) GetOrganizationOk() (*string, bool)

GetOrganizationOk returns a tuple with the Organization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionAuthenticationMethod) GetProvider ¶

func (o *SessionAuthenticationMethod) GetProvider() string

GetProvider returns the Provider field value if set, zero value otherwise.

func (*SessionAuthenticationMethod) GetProviderOk ¶

func (o *SessionAuthenticationMethod) GetProviderOk() (*string, bool)

GetProviderOk returns a tuple with the Provider field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionAuthenticationMethod) HasAal ¶

func (o *SessionAuthenticationMethod) HasAal() bool

HasAal returns a boolean if a field has been set.

func (*SessionAuthenticationMethod) HasCompletedAt ¶

func (o *SessionAuthenticationMethod) HasCompletedAt() bool

HasCompletedAt returns a boolean if a field has been set.

func (*SessionAuthenticationMethod) HasMethod ¶

func (o *SessionAuthenticationMethod) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*SessionAuthenticationMethod) HasOrganization ¶

func (o *SessionAuthenticationMethod) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (*SessionAuthenticationMethod) HasProvider ¶

func (o *SessionAuthenticationMethod) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (SessionAuthenticationMethod) MarshalJSON ¶

func (o SessionAuthenticationMethod) MarshalJSON() ([]byte, error)

func (*SessionAuthenticationMethod) SetAal ¶

SetAal gets a reference to the given AuthenticatorAssuranceLevel and assigns it to the Aal field.

func (*SessionAuthenticationMethod) SetCompletedAt ¶

func (o *SessionAuthenticationMethod) SetCompletedAt(v time.Time)

SetCompletedAt gets a reference to the given time.Time and assigns it to the CompletedAt field.

func (*SessionAuthenticationMethod) SetMethod ¶

func (o *SessionAuthenticationMethod) SetMethod(v string)

SetMethod gets a reference to the given string and assigns it to the Method field.

func (*SessionAuthenticationMethod) SetOrganization ¶

func (o *SessionAuthenticationMethod) SetOrganization(v string)

SetOrganization gets a reference to the given string and assigns it to the Organization field.

func (*SessionAuthenticationMethod) SetProvider ¶

func (o *SessionAuthenticationMethod) SetProvider(v string)

SetProvider gets a reference to the given string and assigns it to the Provider field.

func (SessionAuthenticationMethod) ToMap ¶

func (o SessionAuthenticationMethod) ToMap() (map[string]interface{}, error)

func (*SessionAuthenticationMethod) UnmarshalJSON ¶

func (o *SessionAuthenticationMethod) UnmarshalJSON(bytes []byte) (err error)

type SessionDevice ¶

type SessionDevice struct {
	// Device record ID
	Id string `json:"id"`
	// IPAddress of the client
	IpAddress *string `json:"ip_address,omitempty"`
	// Geo Location corresponding to the IP Address
	Location *string `json:"location,omitempty"`
	// UserAgent of the client
	UserAgent            *string `json:"user_agent,omitempty"`
	AdditionalProperties map[string]interface{}
}

SessionDevice Device corresponding to a Session

func NewSessionDevice ¶

func NewSessionDevice(id string) *SessionDevice

NewSessionDevice instantiates a new SessionDevice 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 NewSessionDeviceWithDefaults ¶

func NewSessionDeviceWithDefaults() *SessionDevice

NewSessionDeviceWithDefaults instantiates a new SessionDevice 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 (*SessionDevice) GetId ¶

func (o *SessionDevice) GetId() string

GetId returns the Id field value

func (*SessionDevice) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*SessionDevice) GetIpAddress ¶

func (o *SessionDevice) GetIpAddress() string

GetIpAddress returns the IpAddress field value if set, zero value otherwise.

func (*SessionDevice) GetIpAddressOk ¶

func (o *SessionDevice) GetIpAddressOk() (*string, bool)

GetIpAddressOk returns a tuple with the IpAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionDevice) GetLocation ¶

func (o *SessionDevice) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*SessionDevice) GetLocationOk ¶

func (o *SessionDevice) GetLocationOk() (*string, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionDevice) GetUserAgent ¶

func (o *SessionDevice) GetUserAgent() string

GetUserAgent returns the UserAgent field value if set, zero value otherwise.

func (*SessionDevice) GetUserAgentOk ¶

func (o *SessionDevice) GetUserAgentOk() (*string, bool)

GetUserAgentOk returns a tuple with the UserAgent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SessionDevice) HasIpAddress ¶

func (o *SessionDevice) HasIpAddress() bool

HasIpAddress returns a boolean if a field has been set.

func (*SessionDevice) HasLocation ¶

func (o *SessionDevice) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*SessionDevice) HasUserAgent ¶

func (o *SessionDevice) HasUserAgent() bool

HasUserAgent returns a boolean if a field has been set.

func (SessionDevice) MarshalJSON ¶

func (o SessionDevice) MarshalJSON() ([]byte, error)

func (*SessionDevice) SetId ¶

func (o *SessionDevice) SetId(v string)

SetId sets field value

func (*SessionDevice) SetIpAddress ¶

func (o *SessionDevice) SetIpAddress(v string)

SetIpAddress gets a reference to the given string and assigns it to the IpAddress field.

func (*SessionDevice) SetLocation ¶

func (o *SessionDevice) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*SessionDevice) SetUserAgent ¶

func (o *SessionDevice) SetUserAgent(v string)

SetUserAgent gets a reference to the given string and assigns it to the UserAgent field.

func (SessionDevice) ToMap ¶

func (o SessionDevice) ToMap() (map[string]interface{}, error)

func (*SessionDevice) UnmarshalJSON ¶

func (o *SessionDevice) UnmarshalJSON(bytes []byte) (err error)

type SetActiveProjectInConsoleBody ¶

type SetActiveProjectInConsoleBody struct {
	// Project ID  The Project ID you want to set active.  format: uuid
	ProjectId            string `json:"project_id"`
	AdditionalProperties map[string]interface{}
}

SetActiveProjectInConsoleBody Set active project in the Ory Network Console Request Body

func NewSetActiveProjectInConsoleBody ¶

func NewSetActiveProjectInConsoleBody(projectId string) *SetActiveProjectInConsoleBody

NewSetActiveProjectInConsoleBody instantiates a new SetActiveProjectInConsoleBody 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 NewSetActiveProjectInConsoleBodyWithDefaults ¶

func NewSetActiveProjectInConsoleBodyWithDefaults() *SetActiveProjectInConsoleBody

NewSetActiveProjectInConsoleBodyWithDefaults instantiates a new SetActiveProjectInConsoleBody 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 (*SetActiveProjectInConsoleBody) GetProjectId ¶

func (o *SetActiveProjectInConsoleBody) GetProjectId() string

GetProjectId returns the ProjectId field value

func (*SetActiveProjectInConsoleBody) GetProjectIdOk ¶

func (o *SetActiveProjectInConsoleBody) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value and a boolean to check if the value has been set.

func (SetActiveProjectInConsoleBody) MarshalJSON ¶

func (o SetActiveProjectInConsoleBody) MarshalJSON() ([]byte, error)

func (*SetActiveProjectInConsoleBody) SetProjectId ¶

func (o *SetActiveProjectInConsoleBody) SetProjectId(v string)

SetProjectId sets field value

func (SetActiveProjectInConsoleBody) ToMap ¶

func (o SetActiveProjectInConsoleBody) ToMap() (map[string]interface{}, error)

func (*SetActiveProjectInConsoleBody) UnmarshalJSON ¶

func (o *SetActiveProjectInConsoleBody) UnmarshalJSON(bytes []byte) (err error)

type SetCustomDomainBody ¶

type SetCustomDomainBody struct {
	// The domain where cookies will be set. Has to be a parent domain of the custom hostname to work.
	CookieDomain *string `json:"cookie_domain,omitempty"`
	// CORS Allowed origins for the custom hostname.
	CorsAllowedOrigins []string `json:"cors_allowed_origins,omitempty"`
	// CORS Enabled for the custom hostname.
	CorsEnabled *bool `json:"cors_enabled,omitempty"`
	// The custom UI base URL where the UI will be exposed.
	CustomUiBaseUrl *string `json:"custom_ui_base_url,omitempty"`
	// The custom hostname where the API will be exposed.
	Hostname             *string `json:"hostname,omitempty"`
	AdditionalProperties map[string]interface{}
}

SetCustomDomainBody Update Custom Hostname Body

func NewSetCustomDomainBody ¶

func NewSetCustomDomainBody() *SetCustomDomainBody

NewSetCustomDomainBody instantiates a new SetCustomDomainBody 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 NewSetCustomDomainBodyWithDefaults ¶

func NewSetCustomDomainBodyWithDefaults() *SetCustomDomainBody

NewSetCustomDomainBodyWithDefaults instantiates a new SetCustomDomainBody 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 (*SetCustomDomainBody) GetCookieDomain ¶

func (o *SetCustomDomainBody) GetCookieDomain() string

GetCookieDomain returns the CookieDomain field value if set, zero value otherwise.

func (*SetCustomDomainBody) GetCookieDomainOk ¶

func (o *SetCustomDomainBody) GetCookieDomainOk() (*string, bool)

GetCookieDomainOk returns a tuple with the CookieDomain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetCustomDomainBody) GetCorsAllowedOrigins ¶

func (o *SetCustomDomainBody) GetCorsAllowedOrigins() []string

GetCorsAllowedOrigins returns the CorsAllowedOrigins field value if set, zero value otherwise.

func (*SetCustomDomainBody) GetCorsAllowedOriginsOk ¶

func (o *SetCustomDomainBody) GetCorsAllowedOriginsOk() ([]string, bool)

GetCorsAllowedOriginsOk returns a tuple with the CorsAllowedOrigins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetCustomDomainBody) GetCorsEnabled ¶

func (o *SetCustomDomainBody) GetCorsEnabled() bool

GetCorsEnabled returns the CorsEnabled field value if set, zero value otherwise.

func (*SetCustomDomainBody) GetCorsEnabledOk ¶

func (o *SetCustomDomainBody) GetCorsEnabledOk() (*bool, bool)

GetCorsEnabledOk returns a tuple with the CorsEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetCustomDomainBody) GetCustomUiBaseUrl ¶

func (o *SetCustomDomainBody) GetCustomUiBaseUrl() string

GetCustomUiBaseUrl returns the CustomUiBaseUrl field value if set, zero value otherwise.

func (*SetCustomDomainBody) GetCustomUiBaseUrlOk ¶

func (o *SetCustomDomainBody) GetCustomUiBaseUrlOk() (*string, bool)

GetCustomUiBaseUrlOk returns a tuple with the CustomUiBaseUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetCustomDomainBody) GetHostname ¶

func (o *SetCustomDomainBody) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*SetCustomDomainBody) GetHostnameOk ¶

func (o *SetCustomDomainBody) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetCustomDomainBody) HasCookieDomain ¶

func (o *SetCustomDomainBody) HasCookieDomain() bool

HasCookieDomain returns a boolean if a field has been set.

func (*SetCustomDomainBody) HasCorsAllowedOrigins ¶

func (o *SetCustomDomainBody) HasCorsAllowedOrigins() bool

HasCorsAllowedOrigins returns a boolean if a field has been set.

func (*SetCustomDomainBody) HasCorsEnabled ¶

func (o *SetCustomDomainBody) HasCorsEnabled() bool

HasCorsEnabled returns a boolean if a field has been set.

func (*SetCustomDomainBody) HasCustomUiBaseUrl ¶

func (o *SetCustomDomainBody) HasCustomUiBaseUrl() bool

HasCustomUiBaseUrl returns a boolean if a field has been set.

func (*SetCustomDomainBody) HasHostname ¶

func (o *SetCustomDomainBody) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (SetCustomDomainBody) MarshalJSON ¶

func (o SetCustomDomainBody) MarshalJSON() ([]byte, error)

func (*SetCustomDomainBody) SetCookieDomain ¶

func (o *SetCustomDomainBody) SetCookieDomain(v string)

SetCookieDomain gets a reference to the given string and assigns it to the CookieDomain field.

func (*SetCustomDomainBody) SetCorsAllowedOrigins ¶

func (o *SetCustomDomainBody) SetCorsAllowedOrigins(v []string)

SetCorsAllowedOrigins gets a reference to the given []string and assigns it to the CorsAllowedOrigins field.

func (*SetCustomDomainBody) SetCorsEnabled ¶

func (o *SetCustomDomainBody) SetCorsEnabled(v bool)

SetCorsEnabled gets a reference to the given bool and assigns it to the CorsEnabled field.

func (*SetCustomDomainBody) SetCustomUiBaseUrl ¶

func (o *SetCustomDomainBody) SetCustomUiBaseUrl(v string)

SetCustomUiBaseUrl gets a reference to the given string and assigns it to the CustomUiBaseUrl field.

func (*SetCustomDomainBody) SetHostname ¶

func (o *SetCustomDomainBody) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (SetCustomDomainBody) ToMap ¶

func (o SetCustomDomainBody) ToMap() (map[string]interface{}, error)

func (*SetCustomDomainBody) UnmarshalJSON ¶

func (o *SetCustomDomainBody) UnmarshalJSON(bytes []byte) (err error)

type SetEventStreamBody ¶

type SetEventStreamBody struct {
	// The AWS IAM role ARN to assume when publishing to the SNS topic.
	RoleArn string `json:"role_arn"`
	// The AWS SNS topic ARN.
	TopicArn string `json:"topic_arn"`
	// The type of the event stream (AWS SNS, GCP Pub/Sub, etc).
	Type                 string `json:"type"`
	AdditionalProperties map[string]interface{}
}

SetEventStreamBody Update Event Stream Body

func NewSetEventStreamBody ¶

func NewSetEventStreamBody(roleArn string, topicArn string, type_ string) *SetEventStreamBody

NewSetEventStreamBody instantiates a new SetEventStreamBody 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 NewSetEventStreamBodyWithDefaults ¶

func NewSetEventStreamBodyWithDefaults() *SetEventStreamBody

NewSetEventStreamBodyWithDefaults instantiates a new SetEventStreamBody 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 (*SetEventStreamBody) GetRoleArn ¶

func (o *SetEventStreamBody) GetRoleArn() string

GetRoleArn returns the RoleArn field value

func (*SetEventStreamBody) GetRoleArnOk ¶

func (o *SetEventStreamBody) GetRoleArnOk() (*string, bool)

GetRoleArnOk returns a tuple with the RoleArn field value and a boolean to check if the value has been set.

func (*SetEventStreamBody) GetTopicArn ¶

func (o *SetEventStreamBody) GetTopicArn() string

GetTopicArn returns the TopicArn field value

func (*SetEventStreamBody) GetTopicArnOk ¶

func (o *SetEventStreamBody) GetTopicArnOk() (*string, bool)

GetTopicArnOk returns a tuple with the TopicArn field value and a boolean to check if the value has been set.

func (*SetEventStreamBody) GetType ¶

func (o *SetEventStreamBody) GetType() string

GetType returns the Type field value

func (*SetEventStreamBody) GetTypeOk ¶

func (o *SetEventStreamBody) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (SetEventStreamBody) MarshalJSON ¶

func (o SetEventStreamBody) MarshalJSON() ([]byte, error)

func (*SetEventStreamBody) SetRoleArn ¶

func (o *SetEventStreamBody) SetRoleArn(v string)

SetRoleArn sets field value

func (*SetEventStreamBody) SetTopicArn ¶

func (o *SetEventStreamBody) SetTopicArn(v string)

SetTopicArn sets field value

func (*SetEventStreamBody) SetType ¶

func (o *SetEventStreamBody) SetType(v string)

SetType sets field value

func (SetEventStreamBody) ToMap ¶

func (o SetEventStreamBody) ToMap() (map[string]interface{}, error)

func (*SetEventStreamBody) UnmarshalJSON ¶

func (o *SetEventStreamBody) UnmarshalJSON(bytes []byte) (err error)

type SetProject ¶

type SetProject struct {
	CorsAdmin  ProjectCors `json:"cors_admin"`
	CorsPublic ProjectCors `json:"cors_public"`
	// The name of the project.
	Name                 string          `json:"name"`
	Services             ProjectServices `json:"services"`
	AdditionalProperties map[string]interface{}
}

SetProject struct for SetProject

func NewSetProject ¶

func NewSetProject(corsAdmin ProjectCors, corsPublic ProjectCors, name string, services ProjectServices) *SetProject

NewSetProject instantiates a new SetProject 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 NewSetProjectWithDefaults ¶

func NewSetProjectWithDefaults() *SetProject

NewSetProjectWithDefaults instantiates a new SetProject 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 (*SetProject) GetCorsAdmin ¶

func (o *SetProject) GetCorsAdmin() ProjectCors

GetCorsAdmin returns the CorsAdmin field value

func (*SetProject) GetCorsAdminOk ¶

func (o *SetProject) GetCorsAdminOk() (*ProjectCors, bool)

GetCorsAdminOk returns a tuple with the CorsAdmin field value and a boolean to check if the value has been set.

func (*SetProject) GetCorsPublic ¶

func (o *SetProject) GetCorsPublic() ProjectCors

GetCorsPublic returns the CorsPublic field value

func (*SetProject) GetCorsPublicOk ¶

func (o *SetProject) GetCorsPublicOk() (*ProjectCors, bool)

GetCorsPublicOk returns a tuple with the CorsPublic field value and a boolean to check if the value has been set.

func (*SetProject) GetName ¶

func (o *SetProject) GetName() string

GetName returns the Name field value

func (*SetProject) GetNameOk ¶

func (o *SetProject) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SetProject) GetServices ¶

func (o *SetProject) GetServices() ProjectServices

GetServices returns the Services field value

func (*SetProject) GetServicesOk ¶

func (o *SetProject) GetServicesOk() (*ProjectServices, bool)

GetServicesOk returns a tuple with the Services field value and a boolean to check if the value has been set.

func (SetProject) MarshalJSON ¶

func (o SetProject) MarshalJSON() ([]byte, error)

func (*SetProject) SetCorsAdmin ¶

func (o *SetProject) SetCorsAdmin(v ProjectCors)

SetCorsAdmin sets field value

func (*SetProject) SetCorsPublic ¶

func (o *SetProject) SetCorsPublic(v ProjectCors)

SetCorsPublic sets field value

func (*SetProject) SetName ¶

func (o *SetProject) SetName(v string)

SetName sets field value

func (*SetProject) SetServices ¶

func (o *SetProject) SetServices(v ProjectServices)

SetServices sets field value

func (SetProject) ToMap ¶

func (o SetProject) ToMap() (map[string]interface{}, error)

func (*SetProject) UnmarshalJSON ¶

func (o *SetProject) UnmarshalJSON(bytes []byte) (err error)

type SetProjectBrandingThemeBody ¶

type SetProjectBrandingThemeBody struct {
	// Favicon Type
	FaviconType *string `json:"favicon_type,omitempty"`
	// Favicon URL
	FaviconUrl *string `json:"favicon_url,omitempty"`
	// Logo type
	LogoType *string `json:"logo_type,omitempty"`
	// Logo URL
	LogoUrl *string `json:"logo_url,omitempty"`
	// Branding name
	Name                 *string                `json:"name,omitempty"`
	Theme                *ProjectBrandingColors `json:"theme,omitempty"`
	AdditionalProperties map[string]interface{}
}

SetProjectBrandingThemeBody struct for SetProjectBrandingThemeBody

func NewSetProjectBrandingThemeBody ¶

func NewSetProjectBrandingThemeBody() *SetProjectBrandingThemeBody

NewSetProjectBrandingThemeBody instantiates a new SetProjectBrandingThemeBody 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 NewSetProjectBrandingThemeBodyWithDefaults ¶

func NewSetProjectBrandingThemeBodyWithDefaults() *SetProjectBrandingThemeBody

NewSetProjectBrandingThemeBodyWithDefaults instantiates a new SetProjectBrandingThemeBody 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 (*SetProjectBrandingThemeBody) GetFaviconType ¶

func (o *SetProjectBrandingThemeBody) GetFaviconType() string

GetFaviconType returns the FaviconType field value if set, zero value otherwise.

func (*SetProjectBrandingThemeBody) GetFaviconTypeOk ¶

func (o *SetProjectBrandingThemeBody) GetFaviconTypeOk() (*string, bool)

GetFaviconTypeOk returns a tuple with the FaviconType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetProjectBrandingThemeBody) GetFaviconUrl ¶

func (o *SetProjectBrandingThemeBody) GetFaviconUrl() string

GetFaviconUrl returns the FaviconUrl field value if set, zero value otherwise.

func (*SetProjectBrandingThemeBody) GetFaviconUrlOk ¶

func (o *SetProjectBrandingThemeBody) GetFaviconUrlOk() (*string, bool)

GetFaviconUrlOk returns a tuple with the FaviconUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetProjectBrandingThemeBody) GetLogoType ¶

func (o *SetProjectBrandingThemeBody) GetLogoType() string

GetLogoType returns the LogoType field value if set, zero value otherwise.

func (*SetProjectBrandingThemeBody) GetLogoTypeOk ¶

func (o *SetProjectBrandingThemeBody) GetLogoTypeOk() (*string, bool)

GetLogoTypeOk returns a tuple with the LogoType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetProjectBrandingThemeBody) GetLogoUrl ¶

func (o *SetProjectBrandingThemeBody) GetLogoUrl() string

GetLogoUrl returns the LogoUrl field value if set, zero value otherwise.

func (*SetProjectBrandingThemeBody) GetLogoUrlOk ¶

func (o *SetProjectBrandingThemeBody) GetLogoUrlOk() (*string, bool)

GetLogoUrlOk returns a tuple with the LogoUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetProjectBrandingThemeBody) GetName ¶

func (o *SetProjectBrandingThemeBody) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SetProjectBrandingThemeBody) GetNameOk ¶

func (o *SetProjectBrandingThemeBody) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetProjectBrandingThemeBody) GetTheme ¶

GetTheme returns the Theme field value if set, zero value otherwise.

func (*SetProjectBrandingThemeBody) GetThemeOk ¶

GetThemeOk returns a tuple with the Theme field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetProjectBrandingThemeBody) HasFaviconType ¶

func (o *SetProjectBrandingThemeBody) HasFaviconType() bool

HasFaviconType returns a boolean if a field has been set.

func (*SetProjectBrandingThemeBody) HasFaviconUrl ¶

func (o *SetProjectBrandingThemeBody) HasFaviconUrl() bool

HasFaviconUrl returns a boolean if a field has been set.

func (*SetProjectBrandingThemeBody) HasLogoType ¶

func (o *SetProjectBrandingThemeBody) HasLogoType() bool

HasLogoType returns a boolean if a field has been set.

func (*SetProjectBrandingThemeBody) HasLogoUrl ¶

func (o *SetProjectBrandingThemeBody) HasLogoUrl() bool

HasLogoUrl returns a boolean if a field has been set.

func (*SetProjectBrandingThemeBody) HasName ¶

func (o *SetProjectBrandingThemeBody) HasName() bool

HasName returns a boolean if a field has been set.

func (*SetProjectBrandingThemeBody) HasTheme ¶

func (o *SetProjectBrandingThemeBody) HasTheme() bool

HasTheme returns a boolean if a field has been set.

func (SetProjectBrandingThemeBody) MarshalJSON ¶

func (o SetProjectBrandingThemeBody) MarshalJSON() ([]byte, error)

func (*SetProjectBrandingThemeBody) SetFaviconType ¶

func (o *SetProjectBrandingThemeBody) SetFaviconType(v string)

SetFaviconType gets a reference to the given string and assigns it to the FaviconType field.

func (*SetProjectBrandingThemeBody) SetFaviconUrl ¶

func (o *SetProjectBrandingThemeBody) SetFaviconUrl(v string)

SetFaviconUrl gets a reference to the given string and assigns it to the FaviconUrl field.

func (*SetProjectBrandingThemeBody) SetLogoType ¶

func (o *SetProjectBrandingThemeBody) SetLogoType(v string)

SetLogoType gets a reference to the given string and assigns it to the LogoType field.

func (*SetProjectBrandingThemeBody) SetLogoUrl ¶

func (o *SetProjectBrandingThemeBody) SetLogoUrl(v string)

SetLogoUrl gets a reference to the given string and assigns it to the LogoUrl field.

func (*SetProjectBrandingThemeBody) SetName ¶

func (o *SetProjectBrandingThemeBody) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*SetProjectBrandingThemeBody) SetTheme ¶

SetTheme gets a reference to the given ProjectBrandingColors and assigns it to the Theme field.

func (SetProjectBrandingThemeBody) ToMap ¶

func (o SetProjectBrandingThemeBody) ToMap() (map[string]interface{}, error)

func (*SetProjectBrandingThemeBody) UnmarshalJSON ¶

func (o *SetProjectBrandingThemeBody) UnmarshalJSON(bytes []byte) (err error)

type SettingsFlow ¶

type SettingsFlow struct {
	// Active, if set, contains the registration method that is being used. It is initially not set.
	Active *string `json:"active,omitempty"`
	// Contains a list of actions, that could follow this flow  It can, for example, contain a reference to the verification flow, created as part of the user's registration.
	ContinueWith []ContinueWith `json:"continue_with,omitempty"`
	// ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to update the setting, a new flow has to be initiated.
	ExpiresAt time.Time `json:"expires_at"`
	// ID represents the flow's unique ID. When performing the settings flow, this represents the id in the settings ui's query parameter: http://<selfservice.flows.settings.ui_url>?flow=<id>
	Id       string   `json:"id"`
	Identity Identity `json:"identity"`
	// IssuedAt is the time (UTC) when the flow occurred.
	IssuedAt time.Time `json:"issued_at"`
	// 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.
	RequestUrl string `json:"request_url"`
	// ReturnTo contains the requested return_to URL.
	ReturnTo *string `json:"return_to,omitempty"`
	// State represents the state of this flow. It knows two states:  show_form: No user data has been collected, or it is invalid, and thus the form should be shown. success: Indicates that the settings flow has been updated successfully with the provided data. Done will stay true when repeatedly checking. If set to true, done will revert back to false only when a flow with invalid (e.g. \"please use a valid phone number\") data was sent.
	State interface{} `json:"state"`
	// The flow type can either be `api` or `browser`.
	Type                 string      `json:"type"`
	Ui                   UiContainer `json:"ui"`
	AdditionalProperties map[string]interface{}
}

SettingsFlow This flow is used when an identity wants to update settings (e.g. profile data, passwords, ...) in a selfservice manner. We recommend reading the [User Settings Documentation](../self-service/flows/user-settings)

func NewSettingsFlow ¶

func NewSettingsFlow(expiresAt time.Time, id string, identity Identity, issuedAt time.Time, requestUrl string, state interface{}, type_ string, ui UiContainer) *SettingsFlow

NewSettingsFlow instantiates a new SettingsFlow 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 NewSettingsFlowWithDefaults ¶

func NewSettingsFlowWithDefaults() *SettingsFlow

NewSettingsFlowWithDefaults instantiates a new SettingsFlow 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 (*SettingsFlow) GetActive ¶

func (o *SettingsFlow) GetActive() string

GetActive returns the Active field value if set, zero value otherwise.

func (*SettingsFlow) GetActiveOk ¶

func (o *SettingsFlow) GetActiveOk() (*string, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsFlow) GetContinueWith ¶

func (o *SettingsFlow) GetContinueWith() []ContinueWith

GetContinueWith returns the ContinueWith field value if set, zero value otherwise.

func (*SettingsFlow) GetContinueWithOk ¶

func (o *SettingsFlow) GetContinueWithOk() ([]ContinueWith, bool)

GetContinueWithOk returns a tuple with the ContinueWith field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsFlow) GetExpiresAt ¶

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

GetExpiresAt returns the ExpiresAt field value

func (*SettingsFlow) GetExpiresAtOk ¶

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

GetExpiresAtOk returns a tuple with the ExpiresAt field value and a boolean to check if the value has been set.

func (*SettingsFlow) GetId ¶

func (o *SettingsFlow) GetId() string

GetId returns the Id field value

func (*SettingsFlow) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*SettingsFlow) GetIdentity ¶

func (o *SettingsFlow) GetIdentity() Identity

GetIdentity returns the Identity field value

func (*SettingsFlow) GetIdentityOk ¶

func (o *SettingsFlow) GetIdentityOk() (*Identity, bool)

GetIdentityOk returns a tuple with the Identity field value and a boolean to check if the value has been set.

func (*SettingsFlow) GetIssuedAt ¶

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

GetIssuedAt returns the IssuedAt field value

func (*SettingsFlow) GetIssuedAtOk ¶

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

GetIssuedAtOk returns a tuple with the IssuedAt field value and a boolean to check if the value has been set.

func (*SettingsFlow) GetRequestUrl ¶

func (o *SettingsFlow) GetRequestUrl() string

GetRequestUrl returns the RequestUrl field value

func (*SettingsFlow) GetRequestUrlOk ¶

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

GetRequestUrlOk returns a tuple with the RequestUrl field value and a boolean to check if the value has been set.

func (*SettingsFlow) GetReturnTo ¶

func (o *SettingsFlow) GetReturnTo() string

GetReturnTo returns the ReturnTo field value if set, zero value otherwise.

func (*SettingsFlow) GetReturnToOk ¶

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

GetReturnToOk returns a tuple with the ReturnTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SettingsFlow) GetState ¶

func (o *SettingsFlow) GetState() interface{}

GetState returns the State field value If the value is explicit nil, the zero value for interface{} will be returned

func (*SettingsFlow) GetStateOk ¶

func (o *SettingsFlow) GetStateOk() (*interface{}, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SettingsFlow) GetType ¶

func (o *SettingsFlow) GetType() string

GetType returns the Type field value

func (*SettingsFlow) GetTypeOk ¶

func (o *SettingsFlow) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*SettingsFlow) GetUi ¶

func (o *SettingsFlow) GetUi() UiContainer

GetUi returns the Ui field value

func (*SettingsFlow) GetUiOk ¶

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

GetUiOk returns a tuple with the Ui field value and a boolean to check if the value has been set.

func (*SettingsFlow) HasActive ¶

func (o *SettingsFlow) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*SettingsFlow) HasContinueWith ¶

func (o *SettingsFlow) HasContinueWith() bool

HasContinueWith returns a boolean if a field has been set.

func (*SettingsFlow) HasReturnTo ¶

func (o *SettingsFlow) HasReturnTo() bool

HasReturnTo returns a boolean if a field has been set.

func (SettingsFlow) MarshalJSON ¶

func (o SettingsFlow) MarshalJSON() ([]byte, error)

func (*SettingsFlow) SetActive ¶

func (o *SettingsFlow) SetActive(v string)

SetActive gets a reference to the given string and assigns it to the Active field.

func (*SettingsFlow) SetContinueWith ¶

func (o *SettingsFlow) SetContinueWith(v []ContinueWith)

SetContinueWith gets a reference to the given []ContinueWith and assigns it to the ContinueWith field.

func (*SettingsFlow) SetExpiresAt ¶

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

SetExpiresAt sets field value

func (*SettingsFlow) SetId ¶

func (o *SettingsFlow) SetId(v string)

SetId sets field value

func (*SettingsFlow) SetIdentity ¶

func (o *SettingsFlow) SetIdentity(v Identity)

SetIdentity sets field value

func (*SettingsFlow) SetIssuedAt ¶

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

SetIssuedAt sets field value

func (*SettingsFlow) SetRequestUrl ¶

func (o *SettingsFlow) SetRequestUrl(v string)

SetRequestUrl sets field value

func (*SettingsFlow) SetReturnTo ¶

func (o *SettingsFlow) SetReturnTo(v string)

SetReturnTo gets a reference to the given string and assigns it to the ReturnTo field.

func (*SettingsFlow) SetState ¶

func (o *SettingsFlow) SetState(v interface{})

SetState sets field value

func (*SettingsFlow) SetType ¶

func (o *SettingsFlow) SetType(v string)

SetType sets field value

func (*SettingsFlow) SetUi ¶

func (o *SettingsFlow) SetUi(v UiContainer)

SetUi sets field value

func (SettingsFlow) ToMap ¶

func (o SettingsFlow) ToMap() (map[string]interface{}, error)

func (*SettingsFlow) UnmarshalJSON ¶

func (o *SettingsFlow) UnmarshalJSON(bytes []byte) (err error)

type SettingsFlowState ¶

type SettingsFlowState string

SettingsFlowState show_form: No user data has been collected, or it is invalid, and thus the form should be shown. success: Indicates that the settings flow has been updated successfully with the provided data. Done will stay true when repeatedly checking. If set to true, done will revert back to false only when a flow with invalid (e.g. \"please use a valid phone number\") data was sent.

const (
	SETTINGSFLOWSTATE_SHOW_FORM SettingsFlowState = "show_form"
	SETTINGSFLOWSTATE_SUCCESS   SettingsFlowState = "success"
)

List of settingsFlowState

func NewSettingsFlowStateFromValue ¶

func NewSettingsFlowStateFromValue(v string) (*SettingsFlowState, error)

NewSettingsFlowStateFromValue returns a pointer to a valid SettingsFlowState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SettingsFlowState) IsValid ¶

func (v SettingsFlowState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SettingsFlowState) Ptr ¶

Ptr returns reference to settingsFlowState value

func (*SettingsFlowState) UnmarshalJSON ¶

func (v *SettingsFlowState) UnmarshalJSON(src []byte) error

type SourcePosition ¶

type SourcePosition struct {
	Line                 *int64 `json:"Line,omitempty"`
	Column               *int64 `json:"column,omitempty"`
	AdditionalProperties map[string]interface{}
}

SourcePosition struct for SourcePosition

func NewSourcePosition ¶

func NewSourcePosition() *SourcePosition

NewSourcePosition instantiates a new SourcePosition 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 NewSourcePositionWithDefaults ¶

func NewSourcePositionWithDefaults() *SourcePosition

NewSourcePositionWithDefaults instantiates a new SourcePosition 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 (*SourcePosition) GetColumn ¶

func (o *SourcePosition) GetColumn() int64

GetColumn returns the Column field value if set, zero value otherwise.

func (*SourcePosition) GetColumnOk ¶

func (o *SourcePosition) GetColumnOk() (*int64, bool)

GetColumnOk returns a tuple with the Column field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourcePosition) GetLine ¶

func (o *SourcePosition) GetLine() int64

GetLine returns the Line field value if set, zero value otherwise.

func (*SourcePosition) GetLineOk ¶

func (o *SourcePosition) GetLineOk() (*int64, bool)

GetLineOk returns a tuple with the Line field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourcePosition) HasColumn ¶

func (o *SourcePosition) HasColumn() bool

HasColumn returns a boolean if a field has been set.

func (*SourcePosition) HasLine ¶

func (o *SourcePosition) HasLine() bool

HasLine returns a boolean if a field has been set.

func (SourcePosition) MarshalJSON ¶

func (o SourcePosition) MarshalJSON() ([]byte, error)

func (*SourcePosition) SetColumn ¶

func (o *SourcePosition) SetColumn(v int64)

SetColumn gets a reference to the given int64 and assigns it to the Column field.

func (*SourcePosition) SetLine ¶

func (o *SourcePosition) SetLine(v int64)

SetLine gets a reference to the given int64 and assigns it to the Line field.

func (SourcePosition) ToMap ¶

func (o SourcePosition) ToMap() (map[string]interface{}, error)

func (*SourcePosition) UnmarshalJSON ¶

func (o *SourcePosition) UnmarshalJSON(bytes []byte) (err error)

type StripeCustomer ¶

type StripeCustomer struct {
	Id                   *string `json:"id,omitempty"`
	AdditionalProperties map[string]interface{}
}

StripeCustomer struct for StripeCustomer

func NewStripeCustomer ¶

func NewStripeCustomer() *StripeCustomer

NewStripeCustomer instantiates a new StripeCustomer 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 NewStripeCustomerWithDefaults ¶

func NewStripeCustomerWithDefaults() *StripeCustomer

NewStripeCustomerWithDefaults instantiates a new StripeCustomer 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 (*StripeCustomer) GetId ¶

func (o *StripeCustomer) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*StripeCustomer) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StripeCustomer) HasId ¶

func (o *StripeCustomer) HasId() bool

HasId returns a boolean if a field has been set.

func (StripeCustomer) MarshalJSON ¶

func (o StripeCustomer) MarshalJSON() ([]byte, error)

func (*StripeCustomer) SetId ¶

func (o *StripeCustomer) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (StripeCustomer) ToMap ¶

func (o StripeCustomer) ToMap() (map[string]interface{}, error)

func (*StripeCustomer) UnmarshalJSON ¶

func (o *StripeCustomer) UnmarshalJSON(bytes []byte) (err error)

type SubjectSet ¶

type SubjectSet struct {
	// Namespace of the Subject Set
	Namespace string `json:"namespace"`
	// Object of the Subject Set
	Object string `json:"object"`
	// Relation of the Subject Set
	Relation             string `json:"relation"`
	AdditionalProperties map[string]interface{}
}

SubjectSet struct for SubjectSet

func NewSubjectSet ¶

func NewSubjectSet(namespace string, object string, relation string) *SubjectSet

NewSubjectSet instantiates a new SubjectSet 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 NewSubjectSetWithDefaults ¶

func NewSubjectSetWithDefaults() *SubjectSet

NewSubjectSetWithDefaults instantiates a new SubjectSet 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 (*SubjectSet) GetNamespace ¶

func (o *SubjectSet) GetNamespace() string

GetNamespace returns the Namespace field value

func (*SubjectSet) GetNamespaceOk ¶

func (o *SubjectSet) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value and a boolean to check if the value has been set.

func (*SubjectSet) GetObject ¶

func (o *SubjectSet) GetObject() string

GetObject returns the Object field value

func (*SubjectSet) GetObjectOk ¶

func (o *SubjectSet) GetObjectOk() (*string, bool)

GetObjectOk returns a tuple with the Object field value and a boolean to check if the value has been set.

func (*SubjectSet) GetRelation ¶

func (o *SubjectSet) GetRelation() string

GetRelation returns the Relation field value

func (*SubjectSet) GetRelationOk ¶

func (o *SubjectSet) GetRelationOk() (*string, bool)

GetRelationOk returns a tuple with the Relation field value and a boolean to check if the value has been set.

func (SubjectSet) MarshalJSON ¶

func (o SubjectSet) MarshalJSON() ([]byte, error)

func (*SubjectSet) SetNamespace ¶

func (o *SubjectSet) SetNamespace(v string)

SetNamespace sets field value

func (*SubjectSet) SetObject ¶

func (o *SubjectSet) SetObject(v string)

SetObject sets field value

func (*SubjectSet) SetRelation ¶

func (o *SubjectSet) SetRelation(v string)

SetRelation sets field value

func (SubjectSet) ToMap ¶

func (o SubjectSet) ToMap() (map[string]interface{}, error)

func (*SubjectSet) UnmarshalJSON ¶

func (o *SubjectSet) UnmarshalJSON(bytes []byte) (err error)

type Subscription ¶

type Subscription struct {
	CreatedAt time.Time `json:"created_at"`
	// The currency of the subscription. To change this, a new subscription must be created. usd USD eur Euro
	Currency string `json:"currency"`
	// The currently active interval of the subscription monthly Monthly yearly Yearly
	CurrentInterval string `json:"current_interval"`
	// The currently active plan of the subscription
	CurrentPlan string `json:"current_plan"`
	// The ID of the stripe customer
	CustomerId string `json:"customer_id"`
	// The ID of the subscription
	Id                      string         `json:"id"`
	IntervalChangesTo       NullableString `json:"interval_changes_to"`
	OngoingStripeCheckoutId NullableString `json:"ongoing_stripe_checkout_id,omitempty"`
	// Until when the subscription is payed
	PayedUntil    time.Time      `json:"payed_until"`
	PlanChangesAt *time.Time     `json:"plan_changes_at,omitempty"`
	PlanChangesTo NullableString `json:"plan_changes_to"`
	// For `collection_method=charge_automatically` a subscription moves into `incomplete` if the initial payment attempt fails. A subscription in this state can only have metadata and default_source updated. Once the first invoice is paid, the subscription moves into an `active` state. If the first invoice is not paid within 23 hours, the subscription transitions to `incomplete_expired`. This is a terminal state, the open invoice will be voided and no further invoices will be generated.  A subscription that is currently in a trial period is `trialing` and moves to `active` when the trial period is over.  If subscription `collection_method=charge_automatically`, it becomes `past_due` when payment is required but cannot be paid (due to failed payment or awaiting additional user actions). Once Stripe has exhausted all payment retry attempts, the subscription will become `canceled` or `unpaid` (depending on your subscriptions settings).  If subscription `collection_method=send_invoice` it becomes `past_due` when its invoice is not paid by the due date, and `canceled` or `unpaid` if it is still not paid by an additional deadline after that. Note that when a subscription has a status of `unpaid`, no subsequent invoices will be attempted (invoices will be created, but then immediately automatically closed). After receiving updated payment information from a customer, you may choose to reopen and pay their closed invoices.
	Status               string    `json:"status"`
	UpdatedAt            time.Time `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

Subscription struct for Subscription

func NewSubscription ¶

func NewSubscription(createdAt time.Time, currency string, currentInterval string, currentPlan string, customerId string, id string, intervalChangesTo NullableString, payedUntil time.Time, planChangesTo NullableString, status string, updatedAt time.Time) *Subscription

NewSubscription instantiates a new Subscription 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 NewSubscriptionWithDefaults ¶

func NewSubscriptionWithDefaults() *Subscription

NewSubscriptionWithDefaults instantiates a new Subscription 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 (*Subscription) GetCreatedAt ¶

func (o *Subscription) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*Subscription) GetCreatedAtOk ¶

func (o *Subscription) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*Subscription) GetCurrency ¶

func (o *Subscription) GetCurrency() string

GetCurrency returns the Currency field value

func (*Subscription) GetCurrencyOk ¶

func (o *Subscription) GetCurrencyOk() (*string, bool)

GetCurrencyOk returns a tuple with the Currency field value and a boolean to check if the value has been set.

func (*Subscription) GetCurrentInterval ¶

func (o *Subscription) GetCurrentInterval() string

GetCurrentInterval returns the CurrentInterval field value

func (*Subscription) GetCurrentIntervalOk ¶

func (o *Subscription) GetCurrentIntervalOk() (*string, bool)

GetCurrentIntervalOk returns a tuple with the CurrentInterval field value and a boolean to check if the value has been set.

func (*Subscription) GetCurrentPlan ¶

func (o *Subscription) GetCurrentPlan() string

GetCurrentPlan returns the CurrentPlan field value

func (*Subscription) GetCurrentPlanOk ¶

func (o *Subscription) GetCurrentPlanOk() (*string, bool)

GetCurrentPlanOk returns a tuple with the CurrentPlan field value and a boolean to check if the value has been set.

func (*Subscription) GetCustomerId ¶

func (o *Subscription) GetCustomerId() string

GetCustomerId returns the CustomerId field value

func (*Subscription) GetCustomerIdOk ¶

func (o *Subscription) GetCustomerIdOk() (*string, bool)

GetCustomerIdOk returns a tuple with the CustomerId field value and a boolean to check if the value has been set.

func (*Subscription) GetId ¶

func (o *Subscription) GetId() string

GetId returns the Id field value

func (*Subscription) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Subscription) GetIntervalChangesTo ¶

func (o *Subscription) GetIntervalChangesTo() string

GetIntervalChangesTo returns the IntervalChangesTo field value If the value is explicit nil, the zero value for string will be returned

func (*Subscription) GetIntervalChangesToOk ¶

func (o *Subscription) GetIntervalChangesToOk() (*string, bool)

GetIntervalChangesToOk returns a tuple with the IntervalChangesTo field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Subscription) GetOngoingStripeCheckoutId ¶

func (o *Subscription) GetOngoingStripeCheckoutId() string

GetOngoingStripeCheckoutId returns the OngoingStripeCheckoutId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Subscription) GetOngoingStripeCheckoutIdOk ¶

func (o *Subscription) GetOngoingStripeCheckoutIdOk() (*string, bool)

GetOngoingStripeCheckoutIdOk returns a tuple with the OngoingStripeCheckoutId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Subscription) GetPayedUntil ¶

func (o *Subscription) GetPayedUntil() time.Time

GetPayedUntil returns the PayedUntil field value

func (*Subscription) GetPayedUntilOk ¶

func (o *Subscription) GetPayedUntilOk() (*time.Time, bool)

GetPayedUntilOk returns a tuple with the PayedUntil field value and a boolean to check if the value has been set.

func (*Subscription) GetPlanChangesAt ¶

func (o *Subscription) GetPlanChangesAt() time.Time

GetPlanChangesAt returns the PlanChangesAt field value if set, zero value otherwise.

func (*Subscription) GetPlanChangesAtOk ¶

func (o *Subscription) GetPlanChangesAtOk() (*time.Time, bool)

GetPlanChangesAtOk returns a tuple with the PlanChangesAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetPlanChangesTo ¶

func (o *Subscription) GetPlanChangesTo() string

GetPlanChangesTo returns the PlanChangesTo field value If the value is explicit nil, the zero value for string will be returned

func (*Subscription) GetPlanChangesToOk ¶

func (o *Subscription) GetPlanChangesToOk() (*string, bool)

GetPlanChangesToOk returns a tuple with the PlanChangesTo field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Subscription) GetStatus ¶

func (o *Subscription) GetStatus() string

GetStatus returns the Status field value

func (*Subscription) GetStatusOk ¶

func (o *Subscription) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*Subscription) GetUpdatedAt ¶

func (o *Subscription) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*Subscription) GetUpdatedAtOk ¶

func (o *Subscription) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (*Subscription) HasOngoingStripeCheckoutId ¶

func (o *Subscription) HasOngoingStripeCheckoutId() bool

HasOngoingStripeCheckoutId returns a boolean if a field has been set.

func (*Subscription) HasPlanChangesAt ¶

func (o *Subscription) HasPlanChangesAt() bool

HasPlanChangesAt returns a boolean if a field has been set.

func (Subscription) MarshalJSON ¶

func (o Subscription) MarshalJSON() ([]byte, error)

func (*Subscription) SetCreatedAt ¶

func (o *Subscription) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*Subscription) SetCurrency ¶

func (o *Subscription) SetCurrency(v string)

SetCurrency sets field value

func (*Subscription) SetCurrentInterval ¶

func (o *Subscription) SetCurrentInterval(v string)

SetCurrentInterval sets field value

func (*Subscription) SetCurrentPlan ¶

func (o *Subscription) SetCurrentPlan(v string)

SetCurrentPlan sets field value

func (*Subscription) SetCustomerId ¶

func (o *Subscription) SetCustomerId(v string)

SetCustomerId sets field value

func (*Subscription) SetId ¶

func (o *Subscription) SetId(v string)

SetId sets field value

func (*Subscription) SetIntervalChangesTo ¶

func (o *Subscription) SetIntervalChangesTo(v string)

SetIntervalChangesTo sets field value

func (*Subscription) SetOngoingStripeCheckoutId ¶

func (o *Subscription) SetOngoingStripeCheckoutId(v string)

SetOngoingStripeCheckoutId gets a reference to the given NullableString and assigns it to the OngoingStripeCheckoutId field.

func (*Subscription) SetOngoingStripeCheckoutIdNil ¶

func (o *Subscription) SetOngoingStripeCheckoutIdNil()

SetOngoingStripeCheckoutIdNil sets the value for OngoingStripeCheckoutId to be an explicit nil

func (*Subscription) SetPayedUntil ¶

func (o *Subscription) SetPayedUntil(v time.Time)

SetPayedUntil sets field value

func (*Subscription) SetPlanChangesAt ¶

func (o *Subscription) SetPlanChangesAt(v time.Time)

SetPlanChangesAt gets a reference to the given time.Time and assigns it to the PlanChangesAt field.

func (*Subscription) SetPlanChangesTo ¶

func (o *Subscription) SetPlanChangesTo(v string)

SetPlanChangesTo sets field value

func (*Subscription) SetStatus ¶

func (o *Subscription) SetStatus(v string)

SetStatus sets field value

func (*Subscription) SetUpdatedAt ¶

func (o *Subscription) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (Subscription) ToMap ¶

func (o Subscription) ToMap() (map[string]interface{}, error)

func (*Subscription) UnmarshalJSON ¶

func (o *Subscription) UnmarshalJSON(bytes []byte) (err error)

func (*Subscription) UnsetOngoingStripeCheckoutId ¶

func (o *Subscription) UnsetOngoingStripeCheckoutId()

UnsetOngoingStripeCheckoutId ensures that no value is present for OngoingStripeCheckoutId, not even an explicit nil

type SuccessfulCodeExchangeResponse ¶

type SuccessfulCodeExchangeResponse struct {
	Session Session `json:"session"`
	// The Session Token  A session token is equivalent to a session cookie, but it can be sent in the HTTP Authorization Header:  Authorization: bearer ${session-token}  The session token is only issued for API flows, not for Browser flows!
	SessionToken         *string `json:"session_token,omitempty"`
	AdditionalProperties map[string]interface{}
}

SuccessfulCodeExchangeResponse The Response for Registration Flows via API

func NewSuccessfulCodeExchangeResponse ¶

func NewSuccessfulCodeExchangeResponse(session Session) *SuccessfulCodeExchangeResponse

NewSuccessfulCodeExchangeResponse instantiates a new SuccessfulCodeExchangeResponse 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 NewSuccessfulCodeExchangeResponseWithDefaults ¶

func NewSuccessfulCodeExchangeResponseWithDefaults() *SuccessfulCodeExchangeResponse

NewSuccessfulCodeExchangeResponseWithDefaults instantiates a new SuccessfulCodeExchangeResponse 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 (*SuccessfulCodeExchangeResponse) GetSession ¶

func (o *SuccessfulCodeExchangeResponse) GetSession() Session

GetSession returns the Session field value

func (*SuccessfulCodeExchangeResponse) GetSessionOk ¶

func (o *SuccessfulCodeExchangeResponse) GetSessionOk() (*Session, bool)

GetSessionOk returns a tuple with the Session field value and a boolean to check if the value has been set.

func (*SuccessfulCodeExchangeResponse) GetSessionToken ¶

func (o *SuccessfulCodeExchangeResponse) GetSessionToken() string

GetSessionToken returns the SessionToken field value if set, zero value otherwise.

func (*SuccessfulCodeExchangeResponse) GetSessionTokenOk ¶

func (o *SuccessfulCodeExchangeResponse) GetSessionTokenOk() (*string, bool)

GetSessionTokenOk returns a tuple with the SessionToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuccessfulCodeExchangeResponse) HasSessionToken ¶

func (o *SuccessfulCodeExchangeResponse) HasSessionToken() bool

HasSessionToken returns a boolean if a field has been set.

func (SuccessfulCodeExchangeResponse) MarshalJSON ¶

func (o SuccessfulCodeExchangeResponse) MarshalJSON() ([]byte, error)

func (*SuccessfulCodeExchangeResponse) SetSession ¶

func (o *SuccessfulCodeExchangeResponse) SetSession(v Session)

SetSession sets field value

func (*SuccessfulCodeExchangeResponse) SetSessionToken ¶

func (o *SuccessfulCodeExchangeResponse) SetSessionToken(v string)

SetSessionToken gets a reference to the given string and assigns it to the SessionToken field.

func (SuccessfulCodeExchangeResponse) ToMap ¶

func (o SuccessfulCodeExchangeResponse) ToMap() (map[string]interface{}, error)

func (*SuccessfulCodeExchangeResponse) UnmarshalJSON ¶

func (o *SuccessfulCodeExchangeResponse) UnmarshalJSON(bytes []byte) (err error)

type SuccessfulNativeLogin ¶

type SuccessfulNativeLogin struct {
	Session Session `json:"session"`
	// The Session Token  A session token is equivalent to a session cookie, but it can be sent in the HTTP Authorization Header:  Authorization: bearer ${session-token}  The session token is only issued for API flows, not for Browser flows!
	SessionToken         *string `json:"session_token,omitempty"`
	AdditionalProperties map[string]interface{}
}

SuccessfulNativeLogin The Response for Login Flows via API

func NewSuccessfulNativeLogin ¶

func NewSuccessfulNativeLogin(session Session) *SuccessfulNativeLogin

NewSuccessfulNativeLogin instantiates a new SuccessfulNativeLogin 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 NewSuccessfulNativeLoginWithDefaults ¶

func NewSuccessfulNativeLoginWithDefaults() *SuccessfulNativeLogin

NewSuccessfulNativeLoginWithDefaults instantiates a new SuccessfulNativeLogin 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 (*SuccessfulNativeLogin) GetSession ¶

func (o *SuccessfulNativeLogin) GetSession() Session

GetSession returns the Session field value

func (*SuccessfulNativeLogin) GetSessionOk ¶

func (o *SuccessfulNativeLogin) GetSessionOk() (*Session, bool)

GetSessionOk returns a tuple with the Session field value and a boolean to check if the value has been set.

func (*SuccessfulNativeLogin) GetSessionToken ¶

func (o *SuccessfulNativeLogin) GetSessionToken() string

GetSessionToken returns the SessionToken field value if set, zero value otherwise.

func (*SuccessfulNativeLogin) GetSessionTokenOk ¶

func (o *SuccessfulNativeLogin) GetSessionTokenOk() (*string, bool)

GetSessionTokenOk returns a tuple with the SessionToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuccessfulNativeLogin) HasSessionToken ¶

func (o *SuccessfulNativeLogin) HasSessionToken() bool

HasSessionToken returns a boolean if a field has been set.

func (SuccessfulNativeLogin) MarshalJSON ¶

func (o SuccessfulNativeLogin) MarshalJSON() ([]byte, error)

func (*SuccessfulNativeLogin) SetSession ¶

func (o *SuccessfulNativeLogin) SetSession(v Session)

SetSession sets field value

func (*SuccessfulNativeLogin) SetSessionToken ¶

func (o *SuccessfulNativeLogin) SetSessionToken(v string)

SetSessionToken gets a reference to the given string and assigns it to the SessionToken field.

func (SuccessfulNativeLogin) ToMap ¶

func (o SuccessfulNativeLogin) ToMap() (map[string]interface{}, error)

func (*SuccessfulNativeLogin) UnmarshalJSON ¶

func (o *SuccessfulNativeLogin) UnmarshalJSON(bytes []byte) (err error)

type SuccessfulNativeRegistration ¶

type SuccessfulNativeRegistration struct {
	// Contains a list of actions, that could follow this flow  It can, for example, this will contain a reference to the verification flow, created as part of the user's registration or the token of the session.
	ContinueWith []ContinueWith `json:"continue_with,omitempty"`
	Identity     Identity       `json:"identity"`
	Session      *Session       `json:"session,omitempty"`
	// The Session Token  This field is only set when the session hook is configured as a post-registration hook.  A session token is equivalent to a session cookie, but it can be sent in the HTTP Authorization Header:  Authorization: bearer ${session-token}  The session token is only issued for API flows, not for Browser flows!
	SessionToken         *string `json:"session_token,omitempty"`
	AdditionalProperties map[string]interface{}
}

SuccessfulNativeRegistration The Response for Registration Flows via API

func NewSuccessfulNativeRegistration ¶

func NewSuccessfulNativeRegistration(identity Identity) *SuccessfulNativeRegistration

NewSuccessfulNativeRegistration instantiates a new SuccessfulNativeRegistration 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 NewSuccessfulNativeRegistrationWithDefaults ¶

func NewSuccessfulNativeRegistrationWithDefaults() *SuccessfulNativeRegistration

NewSuccessfulNativeRegistrationWithDefaults instantiates a new SuccessfulNativeRegistration 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 (*SuccessfulNativeRegistration) GetContinueWith ¶

func (o *SuccessfulNativeRegistration) GetContinueWith() []ContinueWith

GetContinueWith returns the ContinueWith field value if set, zero value otherwise.

func (*SuccessfulNativeRegistration) GetContinueWithOk ¶

func (o *SuccessfulNativeRegistration) GetContinueWithOk() ([]ContinueWith, bool)

GetContinueWithOk returns a tuple with the ContinueWith field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuccessfulNativeRegistration) GetIdentity ¶

func (o *SuccessfulNativeRegistration) GetIdentity() Identity

GetIdentity returns the Identity field value

func (*SuccessfulNativeRegistration) GetIdentityOk ¶

func (o *SuccessfulNativeRegistration) GetIdentityOk() (*Identity, bool)

GetIdentityOk returns a tuple with the Identity field value and a boolean to check if the value has been set.

func (*SuccessfulNativeRegistration) GetSession ¶

func (o *SuccessfulNativeRegistration) GetSession() Session

GetSession returns the Session field value if set, zero value otherwise.

func (*SuccessfulNativeRegistration) GetSessionOk ¶

func (o *SuccessfulNativeRegistration) GetSessionOk() (*Session, bool)

GetSessionOk returns a tuple with the Session field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuccessfulNativeRegistration) GetSessionToken ¶

func (o *SuccessfulNativeRegistration) GetSessionToken() string

GetSessionToken returns the SessionToken field value if set, zero value otherwise.

func (*SuccessfulNativeRegistration) GetSessionTokenOk ¶

func (o *SuccessfulNativeRegistration) GetSessionTokenOk() (*string, bool)

GetSessionTokenOk returns a tuple with the SessionToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SuccessfulNativeRegistration) HasContinueWith ¶

func (o *SuccessfulNativeRegistration) HasContinueWith() bool

HasContinueWith returns a boolean if a field has been set.

func (*SuccessfulNativeRegistration) HasSession ¶

func (o *SuccessfulNativeRegistration) HasSession() bool

HasSession returns a boolean if a field has been set.

func (*SuccessfulNativeRegistration) HasSessionToken ¶

func (o *SuccessfulNativeRegistration) HasSessionToken() bool

HasSessionToken returns a boolean if a field has been set.

func (SuccessfulNativeRegistration) MarshalJSON ¶

func (o SuccessfulNativeRegistration) MarshalJSON() ([]byte, error)

func (*SuccessfulNativeRegistration) SetContinueWith ¶

func (o *SuccessfulNativeRegistration) SetContinueWith(v []ContinueWith)

SetContinueWith gets a reference to the given []ContinueWith and assigns it to the ContinueWith field.

func (*SuccessfulNativeRegistration) SetIdentity ¶

func (o *SuccessfulNativeRegistration) SetIdentity(v Identity)

SetIdentity sets field value

func (*SuccessfulNativeRegistration) SetSession ¶

func (o *SuccessfulNativeRegistration) SetSession(v Session)

SetSession gets a reference to the given Session and assigns it to the Session field.

func (*SuccessfulNativeRegistration) SetSessionToken ¶

func (o *SuccessfulNativeRegistration) SetSessionToken(v string)

SetSessionToken gets a reference to the given string and assigns it to the SessionToken field.

func (SuccessfulNativeRegistration) ToMap ¶

func (o SuccessfulNativeRegistration) ToMap() (map[string]interface{}, error)

func (*SuccessfulNativeRegistration) UnmarshalJSON ¶

func (o *SuccessfulNativeRegistration) UnmarshalJSON(bytes []byte) (err error)

type SuccessfulProjectUpdate ¶

type SuccessfulProjectUpdate struct {
	Project Project `json:"project"`
	// Import Warnings  Not all configuration items can be imported to the Ory Network. For example, setting the port does not make sense because the Ory Network provides the runtime and networking.  This field contains warnings where configuration keys were found but can not be imported. These keys will be ignored by the Ory Network. This field will help you understand why certain configuration keys might not be respected!
	Warnings             []Warning `json:"warnings"`
	AdditionalProperties map[string]interface{}
}

SuccessfulProjectUpdate struct for SuccessfulProjectUpdate

func NewSuccessfulProjectUpdate ¶

func NewSuccessfulProjectUpdate(project Project, warnings []Warning) *SuccessfulProjectUpdate

NewSuccessfulProjectUpdate instantiates a new SuccessfulProjectUpdate 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 NewSuccessfulProjectUpdateWithDefaults ¶

func NewSuccessfulProjectUpdateWithDefaults() *SuccessfulProjectUpdate

NewSuccessfulProjectUpdateWithDefaults instantiates a new SuccessfulProjectUpdate 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 (*SuccessfulProjectUpdate) GetProject ¶

func (o *SuccessfulProjectUpdate) GetProject() Project

GetProject returns the Project field value

func (*SuccessfulProjectUpdate) GetProjectOk ¶

func (o *SuccessfulProjectUpdate) GetProjectOk() (*Project, bool)

GetProjectOk returns a tuple with the Project field value and a boolean to check if the value has been set.

func (*SuccessfulProjectUpdate) GetWarnings ¶

func (o *SuccessfulProjectUpdate) GetWarnings() []Warning

GetWarnings returns the Warnings field value

func (*SuccessfulProjectUpdate) GetWarningsOk ¶

func (o *SuccessfulProjectUpdate) GetWarningsOk() ([]Warning, bool)

GetWarningsOk returns a tuple with the Warnings field value and a boolean to check if the value has been set.

func (SuccessfulProjectUpdate) MarshalJSON ¶

func (o SuccessfulProjectUpdate) MarshalJSON() ([]byte, error)

func (*SuccessfulProjectUpdate) SetProject ¶

func (o *SuccessfulProjectUpdate) SetProject(v Project)

SetProject sets field value

func (*SuccessfulProjectUpdate) SetWarnings ¶

func (o *SuccessfulProjectUpdate) SetWarnings(v []Warning)

SetWarnings sets field value

func (SuccessfulProjectUpdate) ToMap ¶

func (o SuccessfulProjectUpdate) ToMap() (map[string]interface{}, error)

func (*SuccessfulProjectUpdate) UnmarshalJSON ¶

func (o *SuccessfulProjectUpdate) UnmarshalJSON(bytes []byte) (err error)

type TokenPagination ¶

type TokenPagination struct {
	// Items per page  This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).
	PageSize *int64 `json:"page_size,omitempty"`
	// Next Page Token  The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).
	PageToken            *string `json:"page_token,omitempty"`
	AdditionalProperties map[string]interface{}
}

TokenPagination struct for TokenPagination

func NewTokenPagination ¶

func NewTokenPagination() *TokenPagination

NewTokenPagination instantiates a new TokenPagination 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 NewTokenPaginationWithDefaults ¶

func NewTokenPaginationWithDefaults() *TokenPagination

NewTokenPaginationWithDefaults instantiates a new TokenPagination 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 (*TokenPagination) GetPageSize ¶

func (o *TokenPagination) GetPageSize() int64

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*TokenPagination) GetPageSizeOk ¶

func (o *TokenPagination) GetPageSizeOk() (*int64, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenPagination) GetPageToken ¶

func (o *TokenPagination) GetPageToken() string

GetPageToken returns the PageToken field value if set, zero value otherwise.

func (*TokenPagination) GetPageTokenOk ¶

func (o *TokenPagination) GetPageTokenOk() (*string, bool)

GetPageTokenOk returns a tuple with the PageToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenPagination) HasPageSize ¶

func (o *TokenPagination) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*TokenPagination) HasPageToken ¶

func (o *TokenPagination) HasPageToken() bool

HasPageToken returns a boolean if a field has been set.

func (TokenPagination) MarshalJSON ¶

func (o TokenPagination) MarshalJSON() ([]byte, error)

func (*TokenPagination) SetPageSize ¶

func (o *TokenPagination) SetPageSize(v int64)

SetPageSize gets a reference to the given int64 and assigns it to the PageSize field.

func (*TokenPagination) SetPageToken ¶

func (o *TokenPagination) SetPageToken(v string)

SetPageToken gets a reference to the given string and assigns it to the PageToken field.

func (TokenPagination) ToMap ¶

func (o TokenPagination) ToMap() (map[string]interface{}, error)

func (*TokenPagination) UnmarshalJSON ¶

func (o *TokenPagination) UnmarshalJSON(bytes []byte) (err error)

type TokenPaginationHeaders ¶

type TokenPaginationHeaders struct {
	// The link header contains pagination links.  For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).  in: header
	Link *string `json:"link,omitempty"`
	// The total number of clients.  in: header
	XTotalCount          *string `json:"x-total-count,omitempty"`
	AdditionalProperties map[string]interface{}
}

TokenPaginationHeaders struct for TokenPaginationHeaders

func NewTokenPaginationHeaders ¶

func NewTokenPaginationHeaders() *TokenPaginationHeaders

NewTokenPaginationHeaders instantiates a new TokenPaginationHeaders 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 NewTokenPaginationHeadersWithDefaults ¶

func NewTokenPaginationHeadersWithDefaults() *TokenPaginationHeaders

NewTokenPaginationHeadersWithDefaults instantiates a new TokenPaginationHeaders 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 *TokenPaginationHeaders) GetLink() string

GetLink returns the Link field value if set, zero value otherwise.

func (*TokenPaginationHeaders) GetLinkOk ¶

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

GetLinkOk returns a tuple with the Link field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenPaginationHeaders) GetXTotalCount ¶

func (o *TokenPaginationHeaders) GetXTotalCount() string

GetXTotalCount returns the XTotalCount field value if set, zero value otherwise.

func (*TokenPaginationHeaders) GetXTotalCountOk ¶

func (o *TokenPaginationHeaders) GetXTotalCountOk() (*string, bool)

GetXTotalCountOk returns a tuple with the XTotalCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *TokenPaginationHeaders) HasLink() bool

HasLink returns a boolean if a field has been set.

func (*TokenPaginationHeaders) HasXTotalCount ¶

func (o *TokenPaginationHeaders) HasXTotalCount() bool

HasXTotalCount returns a boolean if a field has been set.

func (TokenPaginationHeaders) MarshalJSON ¶

func (o TokenPaginationHeaders) MarshalJSON() ([]byte, error)
func (o *TokenPaginationHeaders) SetLink(v string)

SetLink gets a reference to the given string and assigns it to the Link field.

func (*TokenPaginationHeaders) SetXTotalCount ¶

func (o *TokenPaginationHeaders) SetXTotalCount(v string)

SetXTotalCount gets a reference to the given string and assigns it to the XTotalCount field.

func (TokenPaginationHeaders) ToMap ¶

func (o TokenPaginationHeaders) ToMap() (map[string]interface{}, error)

func (*TokenPaginationHeaders) UnmarshalJSON ¶

func (o *TokenPaginationHeaders) UnmarshalJSON(bytes []byte) (err error)

type TokenPaginationRequestParameters ¶

type TokenPaginationRequestParameters struct {
	// Items per Page  This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).
	PageSize *int64 `json:"page_size,omitempty"`
	// Next Page Token  The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).
	PageToken            *string `json:"page_token,omitempty"`
	AdditionalProperties map[string]interface{}
}

TokenPaginationRequestParameters The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as: `<https://{project-slug}.projects.oryapis.com/admin/clients?page_size={limit}&page_token={offset}>; rel=\"{page}\"` For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func NewTokenPaginationRequestParameters ¶

func NewTokenPaginationRequestParameters() *TokenPaginationRequestParameters

NewTokenPaginationRequestParameters instantiates a new TokenPaginationRequestParameters 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 NewTokenPaginationRequestParametersWithDefaults ¶

func NewTokenPaginationRequestParametersWithDefaults() *TokenPaginationRequestParameters

NewTokenPaginationRequestParametersWithDefaults instantiates a new TokenPaginationRequestParameters 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 (*TokenPaginationRequestParameters) GetPageSize ¶

func (o *TokenPaginationRequestParameters) GetPageSize() int64

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*TokenPaginationRequestParameters) GetPageSizeOk ¶

func (o *TokenPaginationRequestParameters) GetPageSizeOk() (*int64, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenPaginationRequestParameters) GetPageToken ¶

func (o *TokenPaginationRequestParameters) GetPageToken() string

GetPageToken returns the PageToken field value if set, zero value otherwise.

func (*TokenPaginationRequestParameters) GetPageTokenOk ¶

func (o *TokenPaginationRequestParameters) GetPageTokenOk() (*string, bool)

GetPageTokenOk returns a tuple with the PageToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenPaginationRequestParameters) HasPageSize ¶

func (o *TokenPaginationRequestParameters) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*TokenPaginationRequestParameters) HasPageToken ¶

func (o *TokenPaginationRequestParameters) HasPageToken() bool

HasPageToken returns a boolean if a field has been set.

func (TokenPaginationRequestParameters) MarshalJSON ¶

func (o TokenPaginationRequestParameters) MarshalJSON() ([]byte, error)

func (*TokenPaginationRequestParameters) SetPageSize ¶

func (o *TokenPaginationRequestParameters) SetPageSize(v int64)

SetPageSize gets a reference to the given int64 and assigns it to the PageSize field.

func (*TokenPaginationRequestParameters) SetPageToken ¶

func (o *TokenPaginationRequestParameters) SetPageToken(v string)

SetPageToken gets a reference to the given string and assigns it to the PageToken field.

func (TokenPaginationRequestParameters) ToMap ¶

func (o TokenPaginationRequestParameters) ToMap() (map[string]interface{}, error)

func (*TokenPaginationRequestParameters) UnmarshalJSON ¶

func (o *TokenPaginationRequestParameters) UnmarshalJSON(bytes []byte) (err error)

type TokenPaginationResponseHeaders ¶

type TokenPaginationResponseHeaders struct {
	// The Link HTTP Header  The `Link` header contains a comma-delimited list of links to the following pages:  first: The first page of results. next: The next page of results. prev: The previous page of results. last: The last page of results.  Pages are omitted if they do not exist. For example, if there is no next page, the `next` link is omitted. Examples:  </clients?page_size=5&page_token=0>; rel=\"first\",</clients?page_size=5&page_token=15>; rel=\"next\",</clients?page_size=5&page_token=5>; rel=\"prev\",</clients?page_size=5&page_token=20>; rel=\"last\"
	Link *string `json:"link,omitempty"`
	// The X-Total-Count HTTP Header  The `X-Total-Count` header contains the total number of items in the collection.
	XTotalCount          *int64 `json:"x-total-count,omitempty"`
	AdditionalProperties map[string]interface{}
}

TokenPaginationResponseHeaders The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as: `<https://{project-slug}.projects.oryapis.com/admin/clients?page_size={limit}&page_token={offset}>; rel=\"{page}\"` For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).

func NewTokenPaginationResponseHeaders ¶

func NewTokenPaginationResponseHeaders() *TokenPaginationResponseHeaders

NewTokenPaginationResponseHeaders instantiates a new TokenPaginationResponseHeaders 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 NewTokenPaginationResponseHeadersWithDefaults ¶

func NewTokenPaginationResponseHeadersWithDefaults() *TokenPaginationResponseHeaders

NewTokenPaginationResponseHeadersWithDefaults instantiates a new TokenPaginationResponseHeaders 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

GetLink returns the Link field value if set, zero value otherwise.

func (*TokenPaginationResponseHeaders) GetLinkOk ¶

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

GetLinkOk returns a tuple with the Link field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TokenPaginationResponseHeaders) GetXTotalCount ¶

func (o *TokenPaginationResponseHeaders) GetXTotalCount() int64

GetXTotalCount returns the XTotalCount field value if set, zero value otherwise.

func (*TokenPaginationResponseHeaders) GetXTotalCountOk ¶

func (o *TokenPaginationResponseHeaders) GetXTotalCountOk() (*int64, bool)

GetXTotalCountOk returns a tuple with the XTotalCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *TokenPaginationResponseHeaders) HasLink() bool

HasLink returns a boolean if a field has been set.

func (*TokenPaginationResponseHeaders) HasXTotalCount ¶

func (o *TokenPaginationResponseHeaders) HasXTotalCount() bool

HasXTotalCount returns a boolean if a field has been set.

func (TokenPaginationResponseHeaders) MarshalJSON ¶

func (o TokenPaginationResponseHeaders) MarshalJSON() ([]byte, error)
func (o *TokenPaginationResponseHeaders) SetLink(v string)

SetLink gets a reference to the given string and assigns it to the Link field.

func (*TokenPaginationResponseHeaders) SetXTotalCount ¶

func (o *TokenPaginationResponseHeaders) SetXTotalCount(v int64)

SetXTotalCount gets a reference to the given int64 and assigns it to the XTotalCount field.

func (TokenPaginationResponseHeaders) ToMap ¶

func (o TokenPaginationResponseHeaders) ToMap() (map[string]interface{}, error)

func (*TokenPaginationResponseHeaders) UnmarshalJSON ¶

func (o *TokenPaginationResponseHeaders) UnmarshalJSON(bytes []byte) (err error)

type TrustOAuth2JwtGrantIssuer ¶

type TrustOAuth2JwtGrantIssuer struct {
	// The \"allow_any_subject\" indicates that the issuer is allowed to have any principal as the subject of the JWT.
	AllowAnySubject *bool `json:"allow_any_subject,omitempty"`
	// The \"expires_at\" indicates, when grant will expire, so we will reject assertion from \"issuer\" targeting \"subject\".
	ExpiresAt time.Time `json:"expires_at"`
	// The \"issuer\" identifies the principal that issued the JWT assertion (same as \"iss\" claim in JWT).
	Issuer string     `json:"issuer"`
	Jwk    JsonWebKey `json:"jwk"`
	// The \"scope\" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749])
	Scope []string `json:"scope"`
	// The \"subject\" identifies the principal that is the subject of the JWT.
	Subject              *string `json:"subject,omitempty"`
	AdditionalProperties map[string]interface{}
}

TrustOAuth2JwtGrantIssuer Trust OAuth2 JWT Bearer Grant Type Issuer Request Body

func NewTrustOAuth2JwtGrantIssuer ¶

func NewTrustOAuth2JwtGrantIssuer(expiresAt time.Time, issuer string, jwk JsonWebKey, scope []string) *TrustOAuth2JwtGrantIssuer

NewTrustOAuth2JwtGrantIssuer instantiates a new TrustOAuth2JwtGrantIssuer 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 NewTrustOAuth2JwtGrantIssuerWithDefaults ¶

func NewTrustOAuth2JwtGrantIssuerWithDefaults() *TrustOAuth2JwtGrantIssuer

NewTrustOAuth2JwtGrantIssuerWithDefaults instantiates a new TrustOAuth2JwtGrantIssuer 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 (*TrustOAuth2JwtGrantIssuer) GetAllowAnySubject ¶

func (o *TrustOAuth2JwtGrantIssuer) GetAllowAnySubject() bool

GetAllowAnySubject returns the AllowAnySubject field value if set, zero value otherwise.

func (*TrustOAuth2JwtGrantIssuer) GetAllowAnySubjectOk ¶

func (o *TrustOAuth2JwtGrantIssuer) GetAllowAnySubjectOk() (*bool, bool)

GetAllowAnySubjectOk returns a tuple with the AllowAnySubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustOAuth2JwtGrantIssuer) GetExpiresAt ¶

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

GetExpiresAt returns the ExpiresAt field value

func (*TrustOAuth2JwtGrantIssuer) GetExpiresAtOk ¶

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

GetExpiresAtOk returns a tuple with the ExpiresAt field value and a boolean to check if the value has been set.

func (*TrustOAuth2JwtGrantIssuer) GetIssuer ¶

func (o *TrustOAuth2JwtGrantIssuer) GetIssuer() string

GetIssuer returns the Issuer field value

func (*TrustOAuth2JwtGrantIssuer) GetIssuerOk ¶

func (o *TrustOAuth2JwtGrantIssuer) GetIssuerOk() (*string, bool)

GetIssuerOk returns a tuple with the Issuer field value and a boolean to check if the value has been set.

func (*TrustOAuth2JwtGrantIssuer) GetJwk ¶

GetJwk returns the Jwk field value

func (*TrustOAuth2JwtGrantIssuer) GetJwkOk ¶

func (o *TrustOAuth2JwtGrantIssuer) GetJwkOk() (*JsonWebKey, bool)

GetJwkOk returns a tuple with the Jwk field value and a boolean to check if the value has been set.

func (*TrustOAuth2JwtGrantIssuer) GetScope ¶

func (o *TrustOAuth2JwtGrantIssuer) GetScope() []string

GetScope returns the Scope field value

func (*TrustOAuth2JwtGrantIssuer) GetScopeOk ¶

func (o *TrustOAuth2JwtGrantIssuer) GetScopeOk() ([]string, bool)

GetScopeOk returns a tuple with the Scope field value and a boolean to check if the value has been set.

func (*TrustOAuth2JwtGrantIssuer) GetSubject ¶

func (o *TrustOAuth2JwtGrantIssuer) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*TrustOAuth2JwtGrantIssuer) GetSubjectOk ¶

func (o *TrustOAuth2JwtGrantIssuer) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustOAuth2JwtGrantIssuer) HasAllowAnySubject ¶

func (o *TrustOAuth2JwtGrantIssuer) HasAllowAnySubject() bool

HasAllowAnySubject returns a boolean if a field has been set.

func (*TrustOAuth2JwtGrantIssuer) HasSubject ¶

func (o *TrustOAuth2JwtGrantIssuer) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (TrustOAuth2JwtGrantIssuer) MarshalJSON ¶

func (o TrustOAuth2JwtGrantIssuer) MarshalJSON() ([]byte, error)

func (*TrustOAuth2JwtGrantIssuer) SetAllowAnySubject ¶

func (o *TrustOAuth2JwtGrantIssuer) SetAllowAnySubject(v bool)

SetAllowAnySubject gets a reference to the given bool and assigns it to the AllowAnySubject field.

func (*TrustOAuth2JwtGrantIssuer) SetExpiresAt ¶

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

SetExpiresAt sets field value

func (*TrustOAuth2JwtGrantIssuer) SetIssuer ¶

func (o *TrustOAuth2JwtGrantIssuer) SetIssuer(v string)

SetIssuer sets field value

func (*TrustOAuth2JwtGrantIssuer) SetJwk ¶

SetJwk sets field value

func (*TrustOAuth2JwtGrantIssuer) SetScope ¶

func (o *TrustOAuth2JwtGrantIssuer) SetScope(v []string)

SetScope sets field value

func (*TrustOAuth2JwtGrantIssuer) SetSubject ¶

func (o *TrustOAuth2JwtGrantIssuer) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (TrustOAuth2JwtGrantIssuer) ToMap ¶

func (o TrustOAuth2JwtGrantIssuer) ToMap() (map[string]interface{}, error)

func (*TrustOAuth2JwtGrantIssuer) UnmarshalJSON ¶

func (o *TrustOAuth2JwtGrantIssuer) UnmarshalJSON(bytes []byte) (err error)

type TrustedOAuth2JwtGrantIssuer ¶

type TrustedOAuth2JwtGrantIssuer struct {
	// The \"allow_any_subject\" indicates that the issuer is allowed to have any principal as the subject of the JWT.
	AllowAnySubject *bool `json:"allow_any_subject,omitempty"`
	// The \"created_at\" indicates, when grant was created.
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// The \"expires_at\" indicates, when grant will expire, so we will reject assertion from \"issuer\" targeting \"subject\".
	ExpiresAt *time.Time `json:"expires_at,omitempty"`
	Id        *string    `json:"id,omitempty"`
	// The \"issuer\" identifies the principal that issued the JWT assertion (same as \"iss\" claim in JWT).
	Issuer    *string                          `json:"issuer,omitempty"`
	PublicKey *TrustedOAuth2JwtGrantJsonWebKey `json:"public_key,omitempty"`
	// The \"scope\" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749])
	Scope []string `json:"scope,omitempty"`
	// The \"subject\" identifies the principal that is the subject of the JWT.
	Subject              *string `json:"subject,omitempty"`
	AdditionalProperties map[string]interface{}
}

TrustedOAuth2JwtGrantIssuer OAuth2 JWT Bearer Grant Type Issuer Trust Relationship

func NewTrustedOAuth2JwtGrantIssuer ¶

func NewTrustedOAuth2JwtGrantIssuer() *TrustedOAuth2JwtGrantIssuer

NewTrustedOAuth2JwtGrantIssuer instantiates a new TrustedOAuth2JwtGrantIssuer 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 NewTrustedOAuth2JwtGrantIssuerWithDefaults ¶

func NewTrustedOAuth2JwtGrantIssuerWithDefaults() *TrustedOAuth2JwtGrantIssuer

NewTrustedOAuth2JwtGrantIssuerWithDefaults instantiates a new TrustedOAuth2JwtGrantIssuer 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 (*TrustedOAuth2JwtGrantIssuer) GetAllowAnySubject ¶

func (o *TrustedOAuth2JwtGrantIssuer) GetAllowAnySubject() bool

GetAllowAnySubject returns the AllowAnySubject field value if set, zero value otherwise.

func (*TrustedOAuth2JwtGrantIssuer) GetAllowAnySubjectOk ¶

func (o *TrustedOAuth2JwtGrantIssuer) GetAllowAnySubjectOk() (*bool, bool)

GetAllowAnySubjectOk returns a tuple with the AllowAnySubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustedOAuth2JwtGrantIssuer) GetCreatedAt ¶

func (o *TrustedOAuth2JwtGrantIssuer) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*TrustedOAuth2JwtGrantIssuer) GetCreatedAtOk ¶

func (o *TrustedOAuth2JwtGrantIssuer) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustedOAuth2JwtGrantIssuer) GetExpiresAt ¶

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

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*TrustedOAuth2JwtGrantIssuer) GetExpiresAtOk ¶

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

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustedOAuth2JwtGrantIssuer) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*TrustedOAuth2JwtGrantIssuer) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustedOAuth2JwtGrantIssuer) GetIssuer ¶

func (o *TrustedOAuth2JwtGrantIssuer) GetIssuer() string

GetIssuer returns the Issuer field value if set, zero value otherwise.

func (*TrustedOAuth2JwtGrantIssuer) GetIssuerOk ¶

func (o *TrustedOAuth2JwtGrantIssuer) GetIssuerOk() (*string, bool)

GetIssuerOk returns a tuple with the Issuer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustedOAuth2JwtGrantIssuer) GetPublicKey ¶

GetPublicKey returns the PublicKey field value if set, zero value otherwise.

func (*TrustedOAuth2JwtGrantIssuer) GetPublicKeyOk ¶

GetPublicKeyOk returns a tuple with the PublicKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustedOAuth2JwtGrantIssuer) GetScope ¶

func (o *TrustedOAuth2JwtGrantIssuer) GetScope() []string

GetScope returns the Scope field value if set, zero value otherwise.

func (*TrustedOAuth2JwtGrantIssuer) GetScopeOk ¶

func (o *TrustedOAuth2JwtGrantIssuer) GetScopeOk() ([]string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustedOAuth2JwtGrantIssuer) GetSubject ¶

func (o *TrustedOAuth2JwtGrantIssuer) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*TrustedOAuth2JwtGrantIssuer) GetSubjectOk ¶

func (o *TrustedOAuth2JwtGrantIssuer) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustedOAuth2JwtGrantIssuer) HasAllowAnySubject ¶

func (o *TrustedOAuth2JwtGrantIssuer) HasAllowAnySubject() bool

HasAllowAnySubject returns a boolean if a field has been set.

func (*TrustedOAuth2JwtGrantIssuer) HasCreatedAt ¶

func (o *TrustedOAuth2JwtGrantIssuer) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*TrustedOAuth2JwtGrantIssuer) HasExpiresAt ¶

func (o *TrustedOAuth2JwtGrantIssuer) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*TrustedOAuth2JwtGrantIssuer) HasId ¶

func (o *TrustedOAuth2JwtGrantIssuer) HasId() bool

HasId returns a boolean if a field has been set.

func (*TrustedOAuth2JwtGrantIssuer) HasIssuer ¶

func (o *TrustedOAuth2JwtGrantIssuer) HasIssuer() bool

HasIssuer returns a boolean if a field has been set.

func (*TrustedOAuth2JwtGrantIssuer) HasPublicKey ¶

func (o *TrustedOAuth2JwtGrantIssuer) HasPublicKey() bool

HasPublicKey returns a boolean if a field has been set.

func (*TrustedOAuth2JwtGrantIssuer) HasScope ¶

func (o *TrustedOAuth2JwtGrantIssuer) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*TrustedOAuth2JwtGrantIssuer) HasSubject ¶

func (o *TrustedOAuth2JwtGrantIssuer) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (TrustedOAuth2JwtGrantIssuer) MarshalJSON ¶

func (o TrustedOAuth2JwtGrantIssuer) MarshalJSON() ([]byte, error)

func (*TrustedOAuth2JwtGrantIssuer) SetAllowAnySubject ¶

func (o *TrustedOAuth2JwtGrantIssuer) SetAllowAnySubject(v bool)

SetAllowAnySubject gets a reference to the given bool and assigns it to the AllowAnySubject field.

func (*TrustedOAuth2JwtGrantIssuer) SetCreatedAt ¶

func (o *TrustedOAuth2JwtGrantIssuer) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*TrustedOAuth2JwtGrantIssuer) SetExpiresAt ¶

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

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*TrustedOAuth2JwtGrantIssuer) SetId ¶

func (o *TrustedOAuth2JwtGrantIssuer) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TrustedOAuth2JwtGrantIssuer) SetIssuer ¶

func (o *TrustedOAuth2JwtGrantIssuer) SetIssuer(v string)

SetIssuer gets a reference to the given string and assigns it to the Issuer field.

func (*TrustedOAuth2JwtGrantIssuer) SetPublicKey ¶

SetPublicKey gets a reference to the given TrustedOAuth2JwtGrantJsonWebKey and assigns it to the PublicKey field.

func (*TrustedOAuth2JwtGrantIssuer) SetScope ¶

func (o *TrustedOAuth2JwtGrantIssuer) SetScope(v []string)

SetScope gets a reference to the given []string and assigns it to the Scope field.

func (*TrustedOAuth2JwtGrantIssuer) SetSubject ¶

func (o *TrustedOAuth2JwtGrantIssuer) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (TrustedOAuth2JwtGrantIssuer) ToMap ¶

func (o TrustedOAuth2JwtGrantIssuer) ToMap() (map[string]interface{}, error)

func (*TrustedOAuth2JwtGrantIssuer) UnmarshalJSON ¶

func (o *TrustedOAuth2JwtGrantIssuer) UnmarshalJSON(bytes []byte) (err error)

type TrustedOAuth2JwtGrantJsonWebKey ¶

type TrustedOAuth2JwtGrantJsonWebKey struct {
	// The \"key_id\" is key unique identifier (same as kid header in jws/jwt).
	Kid *string `json:"kid,omitempty"`
	// The \"set\" is basically a name for a group(set) of keys. Will be the same as \"issuer\" in grant.
	Set                  *string `json:"set,omitempty"`
	AdditionalProperties map[string]interface{}
}

TrustedOAuth2JwtGrantJsonWebKey OAuth2 JWT Bearer Grant Type Issuer Trusted JSON Web Key

func NewTrustedOAuth2JwtGrantJsonWebKey ¶

func NewTrustedOAuth2JwtGrantJsonWebKey() *TrustedOAuth2JwtGrantJsonWebKey

NewTrustedOAuth2JwtGrantJsonWebKey instantiates a new TrustedOAuth2JwtGrantJsonWebKey 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 NewTrustedOAuth2JwtGrantJsonWebKeyWithDefaults ¶

func NewTrustedOAuth2JwtGrantJsonWebKeyWithDefaults() *TrustedOAuth2JwtGrantJsonWebKey

NewTrustedOAuth2JwtGrantJsonWebKeyWithDefaults instantiates a new TrustedOAuth2JwtGrantJsonWebKey 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 (*TrustedOAuth2JwtGrantJsonWebKey) GetKid ¶

GetKid returns the Kid field value if set, zero value otherwise.

func (*TrustedOAuth2JwtGrantJsonWebKey) GetKidOk ¶

func (o *TrustedOAuth2JwtGrantJsonWebKey) GetKidOk() (*string, bool)

GetKidOk returns a tuple with the Kid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustedOAuth2JwtGrantJsonWebKey) GetSet ¶

GetSet returns the Set field value if set, zero value otherwise.

func (*TrustedOAuth2JwtGrantJsonWebKey) GetSetOk ¶

func (o *TrustedOAuth2JwtGrantJsonWebKey) GetSetOk() (*string, bool)

GetSetOk returns a tuple with the Set field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustedOAuth2JwtGrantJsonWebKey) HasKid ¶

HasKid returns a boolean if a field has been set.

func (*TrustedOAuth2JwtGrantJsonWebKey) HasSet ¶

HasSet returns a boolean if a field has been set.

func (TrustedOAuth2JwtGrantJsonWebKey) MarshalJSON ¶

func (o TrustedOAuth2JwtGrantJsonWebKey) MarshalJSON() ([]byte, error)

func (*TrustedOAuth2JwtGrantJsonWebKey) SetKid ¶

SetKid gets a reference to the given string and assigns it to the Kid field.

func (*TrustedOAuth2JwtGrantJsonWebKey) SetSet ¶

SetSet gets a reference to the given string and assigns it to the Set field.

func (TrustedOAuth2JwtGrantJsonWebKey) ToMap ¶

func (o TrustedOAuth2JwtGrantJsonWebKey) ToMap() (map[string]interface{}, error)

func (*TrustedOAuth2JwtGrantJsonWebKey) UnmarshalJSON ¶

func (o *TrustedOAuth2JwtGrantJsonWebKey) UnmarshalJSON(bytes []byte) (err error)

type UiContainer ¶

type UiContainer struct {
	// Action should be used as the form action URL `<form action=\"{{ .Action }}\" method=\"post\">`.
	Action   string   `json:"action"`
	Messages []UiText `json:"messages,omitempty"`
	// Method is the form method (e.g. POST)
	Method               string   `json:"method"`
	Nodes                []UiNode `json:"nodes"`
	AdditionalProperties map[string]interface{}
}

UiContainer Container represents a HTML Form. The container can work with both HTTP Form and JSON requests

func NewUiContainer ¶

func NewUiContainer(action string, method string, nodes []UiNode) *UiContainer

NewUiContainer instantiates a new UiContainer 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 NewUiContainerWithDefaults ¶

func NewUiContainerWithDefaults() *UiContainer

NewUiContainerWithDefaults instantiates a new UiContainer 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 (*UiContainer) GetAction ¶

func (o *UiContainer) GetAction() string

GetAction returns the Action field value

func (*UiContainer) GetActionOk ¶

func (o *UiContainer) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value and a boolean to check if the value has been set.

func (*UiContainer) GetMessages ¶

func (o *UiContainer) GetMessages() []UiText

GetMessages returns the Messages field value if set, zero value otherwise.

func (*UiContainer) GetMessagesOk ¶

func (o *UiContainer) GetMessagesOk() ([]UiText, bool)

GetMessagesOk returns a tuple with the Messages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UiContainer) GetMethod ¶

func (o *UiContainer) GetMethod() string

GetMethod returns the Method field value

func (*UiContainer) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UiContainer) GetNodes ¶

func (o *UiContainer) GetNodes() []UiNode

GetNodes returns the Nodes field value

func (*UiContainer) GetNodesOk ¶

func (o *UiContainer) GetNodesOk() ([]UiNode, bool)

GetNodesOk returns a tuple with the Nodes field value and a boolean to check if the value has been set.

func (*UiContainer) HasMessages ¶

func (o *UiContainer) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (UiContainer) MarshalJSON ¶

func (o UiContainer) MarshalJSON() ([]byte, error)

func (*UiContainer) SetAction ¶

func (o *UiContainer) SetAction(v string)

SetAction sets field value

func (*UiContainer) SetMessages ¶

func (o *UiContainer) SetMessages(v []UiText)

SetMessages gets a reference to the given []UiText and assigns it to the Messages field.

func (*UiContainer) SetMethod ¶

func (o *UiContainer) SetMethod(v string)

SetMethod sets field value

func (*UiContainer) SetNodes ¶

func (o *UiContainer) SetNodes(v []UiNode)

SetNodes sets field value

func (UiContainer) ToMap ¶

func (o UiContainer) ToMap() (map[string]interface{}, error)

func (*UiContainer) UnmarshalJSON ¶

func (o *UiContainer) UnmarshalJSON(bytes []byte) (err error)

type UiNode ¶

type UiNode struct {
	Attributes UiNodeAttributes `json:"attributes"`
	// Group specifies which group (e.g. password authenticator) this node belongs to. default DefaultGroup password PasswordGroup oidc OpenIDConnectGroup profile ProfileGroup link LinkGroup code CodeGroup totp TOTPGroup lookup_secret LookupGroup webauthn WebAuthnGroup
	Group    string     `json:"group"`
	Messages []UiText   `json:"messages"`
	Meta     UiNodeMeta `json:"meta"`
	// The node's type text Text input Input img Image a Anchor script Script
	Type                 string `json:"type"`
	AdditionalProperties map[string]interface{}
}

UiNode Nodes are represented as HTML elements or their native UI equivalents. For example, a node can be an `<img>` tag, or an `<input element>` but also `some plain text`.

func NewUiNode ¶

func NewUiNode(attributes UiNodeAttributes, group string, messages []UiText, meta UiNodeMeta, type_ string) *UiNode

NewUiNode instantiates a new UiNode 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 NewUiNodeWithDefaults ¶

func NewUiNodeWithDefaults() *UiNode

NewUiNodeWithDefaults instantiates a new UiNode 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 (*UiNode) GetAttributes ¶

func (o *UiNode) GetAttributes() UiNodeAttributes

GetAttributes returns the Attributes field value

func (*UiNode) GetAttributesOk ¶

func (o *UiNode) GetAttributesOk() (*UiNodeAttributes, bool)

GetAttributesOk returns a tuple with the Attributes field value and a boolean to check if the value has been set.

func (*UiNode) GetGroup ¶

func (o *UiNode) GetGroup() string

GetGroup returns the Group field value

func (*UiNode) GetGroupOk ¶

func (o *UiNode) GetGroupOk() (*string, bool)

GetGroupOk returns a tuple with the Group field value and a boolean to check if the value has been set.

func (*UiNode) GetMessages ¶

func (o *UiNode) GetMessages() []UiText

GetMessages returns the Messages field value

func (*UiNode) GetMessagesOk ¶

func (o *UiNode) GetMessagesOk() ([]UiText, bool)

GetMessagesOk returns a tuple with the Messages field value and a boolean to check if the value has been set.

func (*UiNode) GetMeta ¶

func (o *UiNode) GetMeta() UiNodeMeta

GetMeta returns the Meta field value

func (*UiNode) GetMetaOk ¶

func (o *UiNode) GetMetaOk() (*UiNodeMeta, bool)

GetMetaOk returns a tuple with the Meta field value and a boolean to check if the value has been set.

func (*UiNode) GetType ¶

func (o *UiNode) GetType() string

GetType returns the Type field value

func (*UiNode) GetTypeOk ¶

func (o *UiNode) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (UiNode) MarshalJSON ¶

func (o UiNode) MarshalJSON() ([]byte, error)

func (*UiNode) SetAttributes ¶

func (o *UiNode) SetAttributes(v UiNodeAttributes)

SetAttributes sets field value

func (*UiNode) SetGroup ¶

func (o *UiNode) SetGroup(v string)

SetGroup sets field value

func (*UiNode) SetMessages ¶

func (o *UiNode) SetMessages(v []UiText)

SetMessages sets field value

func (*UiNode) SetMeta ¶

func (o *UiNode) SetMeta(v UiNodeMeta)

SetMeta sets field value

func (*UiNode) SetType ¶

func (o *UiNode) SetType(v string)

SetType sets field value

func (UiNode) ToMap ¶

func (o UiNode) ToMap() (map[string]interface{}, error)

func (*UiNode) UnmarshalJSON ¶

func (o *UiNode) UnmarshalJSON(bytes []byte) (err error)

type UiNodeAnchorAttributes ¶

type UiNodeAnchorAttributes struct {
	// The link's href (destination) URL.  format: uri
	Href string `json:"href"`
	// A unique identifier
	Id string `json:"id"`
	// NodeType represents this node's types. It is a mirror of `node.type` and is primarily used to allow compatibility with OpenAPI 3.0.  In this struct it technically always is \"a\".
	NodeType             string `json:"node_type"`
	Title                UiText `json:"title"`
	AdditionalProperties map[string]interface{}
}

UiNodeAnchorAttributes struct for UiNodeAnchorAttributes

func NewUiNodeAnchorAttributes ¶

func NewUiNodeAnchorAttributes(href string, id string, nodeType string, title UiText) *UiNodeAnchorAttributes

NewUiNodeAnchorAttributes instantiates a new UiNodeAnchorAttributes 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 NewUiNodeAnchorAttributesWithDefaults ¶

func NewUiNodeAnchorAttributesWithDefaults() *UiNodeAnchorAttributes

NewUiNodeAnchorAttributesWithDefaults instantiates a new UiNodeAnchorAttributes 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 (*UiNodeAnchorAttributes) GetHref ¶

func (o *UiNodeAnchorAttributes) GetHref() string

GetHref returns the Href field value

func (*UiNodeAnchorAttributes) GetHrefOk ¶

func (o *UiNodeAnchorAttributes) GetHrefOk() (*string, bool)

GetHrefOk returns a tuple with the Href field value and a boolean to check if the value has been set.

func (*UiNodeAnchorAttributes) GetId ¶

func (o *UiNodeAnchorAttributes) GetId() string

GetId returns the Id field value

func (*UiNodeAnchorAttributes) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*UiNodeAnchorAttributes) GetNodeType ¶

func (o *UiNodeAnchorAttributes) GetNodeType() string

GetNodeType returns the NodeType field value

func (*UiNodeAnchorAttributes) GetNodeTypeOk ¶

func (o *UiNodeAnchorAttributes) GetNodeTypeOk() (*string, bool)

GetNodeTypeOk returns a tuple with the NodeType field value and a boolean to check if the value has been set.

func (*UiNodeAnchorAttributes) GetTitle ¶

func (o *UiNodeAnchorAttributes) GetTitle() UiText

GetTitle returns the Title field value

func (*UiNodeAnchorAttributes) GetTitleOk ¶

func (o *UiNodeAnchorAttributes) GetTitleOk() (*UiText, bool)

GetTitleOk returns a tuple with the Title field value and a boolean to check if the value has been set.

func (UiNodeAnchorAttributes) MarshalJSON ¶

func (o UiNodeAnchorAttributes) MarshalJSON() ([]byte, error)

func (*UiNodeAnchorAttributes) SetHref ¶

func (o *UiNodeAnchorAttributes) SetHref(v string)

SetHref sets field value

func (*UiNodeAnchorAttributes) SetId ¶

func (o *UiNodeAnchorAttributes) SetId(v string)

SetId sets field value

func (*UiNodeAnchorAttributes) SetNodeType ¶

func (o *UiNodeAnchorAttributes) SetNodeType(v string)

SetNodeType sets field value

func (*UiNodeAnchorAttributes) SetTitle ¶

func (o *UiNodeAnchorAttributes) SetTitle(v UiText)

SetTitle sets field value

func (UiNodeAnchorAttributes) ToMap ¶

func (o UiNodeAnchorAttributes) ToMap() (map[string]interface{}, error)

func (*UiNodeAnchorAttributes) UnmarshalJSON ¶

func (o *UiNodeAnchorAttributes) UnmarshalJSON(bytes []byte) (err error)

type UiNodeAttributes ¶

type UiNodeAttributes struct {
	UiNodeAnchorAttributes *UiNodeAnchorAttributes
	UiNodeImageAttributes  *UiNodeImageAttributes
	UiNodeInputAttributes  *UiNodeInputAttributes
	UiNodeScriptAttributes *UiNodeScriptAttributes
	UiNodeTextAttributes   *UiNodeTextAttributes
}

UiNodeAttributes - struct for UiNodeAttributes

func UiNodeAnchorAttributesAsUiNodeAttributes ¶

func UiNodeAnchorAttributesAsUiNodeAttributes(v *UiNodeAnchorAttributes) UiNodeAttributes

UiNodeAnchorAttributesAsUiNodeAttributes is a convenience function that returns UiNodeAnchorAttributes wrapped in UiNodeAttributes

func UiNodeImageAttributesAsUiNodeAttributes ¶

func UiNodeImageAttributesAsUiNodeAttributes(v *UiNodeImageAttributes) UiNodeAttributes

UiNodeImageAttributesAsUiNodeAttributes is a convenience function that returns UiNodeImageAttributes wrapped in UiNodeAttributes

func UiNodeInputAttributesAsUiNodeAttributes ¶

func UiNodeInputAttributesAsUiNodeAttributes(v *UiNodeInputAttributes) UiNodeAttributes

UiNodeInputAttributesAsUiNodeAttributes is a convenience function that returns UiNodeInputAttributes wrapped in UiNodeAttributes

func UiNodeScriptAttributesAsUiNodeAttributes ¶

func UiNodeScriptAttributesAsUiNodeAttributes(v *UiNodeScriptAttributes) UiNodeAttributes

UiNodeScriptAttributesAsUiNodeAttributes is a convenience function that returns UiNodeScriptAttributes wrapped in UiNodeAttributes

func UiNodeTextAttributesAsUiNodeAttributes ¶

func UiNodeTextAttributesAsUiNodeAttributes(v *UiNodeTextAttributes) UiNodeAttributes

UiNodeTextAttributesAsUiNodeAttributes is a convenience function that returns UiNodeTextAttributes wrapped in UiNodeAttributes

func (*UiNodeAttributes) GetActualInstance ¶

func (obj *UiNodeAttributes) GetActualInstance() interface{}

Get the actual instance

func (UiNodeAttributes) MarshalJSON ¶

func (src UiNodeAttributes) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UiNodeAttributes) UnmarshalJSON ¶

func (dst *UiNodeAttributes) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type UiNodeImageAttributes ¶

type UiNodeImageAttributes struct {
	// Height of the image
	Height int64 `json:"height"`
	// A unique identifier
	Id string `json:"id"`
	// NodeType represents this node's types. It is a mirror of `node.type` and is primarily used to allow compatibility with OpenAPI 3.0.  In this struct it technically always is \"img\".
	NodeType string `json:"node_type"`
	// The image's source URL.  format: uri
	Src string `json:"src"`
	// Width of the image
	Width                int64 `json:"width"`
	AdditionalProperties map[string]interface{}
}

UiNodeImageAttributes struct for UiNodeImageAttributes

func NewUiNodeImageAttributes ¶

func NewUiNodeImageAttributes(height int64, id string, nodeType string, src string, width int64) *UiNodeImageAttributes

NewUiNodeImageAttributes instantiates a new UiNodeImageAttributes 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 NewUiNodeImageAttributesWithDefaults ¶

func NewUiNodeImageAttributesWithDefaults() *UiNodeImageAttributes

NewUiNodeImageAttributesWithDefaults instantiates a new UiNodeImageAttributes 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 (*UiNodeImageAttributes) GetHeight ¶

func (o *UiNodeImageAttributes) GetHeight() int64

GetHeight returns the Height field value

func (*UiNodeImageAttributes) GetHeightOk ¶

func (o *UiNodeImageAttributes) GetHeightOk() (*int64, bool)

GetHeightOk returns a tuple with the Height field value and a boolean to check if the value has been set.

func (*UiNodeImageAttributes) GetId ¶

func (o *UiNodeImageAttributes) GetId() string

GetId returns the Id field value

func (*UiNodeImageAttributes) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*UiNodeImageAttributes) GetNodeType ¶

func (o *UiNodeImageAttributes) GetNodeType() string

GetNodeType returns the NodeType field value

func (*UiNodeImageAttributes) GetNodeTypeOk ¶

func (o *UiNodeImageAttributes) GetNodeTypeOk() (*string, bool)

GetNodeTypeOk returns a tuple with the NodeType field value and a boolean to check if the value has been set.

func (*UiNodeImageAttributes) GetSrc ¶

func (o *UiNodeImageAttributes) GetSrc() string

GetSrc returns the Src field value

func (*UiNodeImageAttributes) GetSrcOk ¶

func (o *UiNodeImageAttributes) GetSrcOk() (*string, bool)

GetSrcOk returns a tuple with the Src field value and a boolean to check if the value has been set.

func (*UiNodeImageAttributes) GetWidth ¶

func (o *UiNodeImageAttributes) GetWidth() int64

GetWidth returns the Width field value

func (*UiNodeImageAttributes) GetWidthOk ¶

func (o *UiNodeImageAttributes) GetWidthOk() (*int64, bool)

GetWidthOk returns a tuple with the Width field value and a boolean to check if the value has been set.

func (UiNodeImageAttributes) MarshalJSON ¶

func (o UiNodeImageAttributes) MarshalJSON() ([]byte, error)

func (*UiNodeImageAttributes) SetHeight ¶

func (o *UiNodeImageAttributes) SetHeight(v int64)

SetHeight sets field value

func (*UiNodeImageAttributes) SetId ¶

func (o *UiNodeImageAttributes) SetId(v string)

SetId sets field value

func (*UiNodeImageAttributes) SetNodeType ¶

func (o *UiNodeImageAttributes) SetNodeType(v string)

SetNodeType sets field value

func (*UiNodeImageAttributes) SetSrc ¶

func (o *UiNodeImageAttributes) SetSrc(v string)

SetSrc sets field value

func (*UiNodeImageAttributes) SetWidth ¶

func (o *UiNodeImageAttributes) SetWidth(v int64)

SetWidth sets field value

func (UiNodeImageAttributes) ToMap ¶

func (o UiNodeImageAttributes) ToMap() (map[string]interface{}, error)

func (*UiNodeImageAttributes) UnmarshalJSON ¶

func (o *UiNodeImageAttributes) UnmarshalJSON(bytes []byte) (err error)

type UiNodeInputAttributes ¶

type UiNodeInputAttributes struct {
	// The autocomplete attribute for the input. email InputAttributeAutocompleteEmail tel InputAttributeAutocompleteTel url InputAttributeAutocompleteUrl current-password InputAttributeAutocompleteCurrentPassword new-password InputAttributeAutocompleteNewPassword one-time-code InputAttributeAutocompleteOneTimeCode
	Autocomplete *string `json:"autocomplete,omitempty"`
	// Sets the input's disabled field to true or false.
	Disabled bool    `json:"disabled"`
	Label    *UiText `json:"label,omitempty"`
	// The input's element name.
	Name string `json:"name"`
	// NodeType represents this node's types. It is a mirror of `node.type` and is primarily used to allow compatibility with OpenAPI 3.0.  In this struct it technically always is \"input\".
	NodeType string `json:"node_type"`
	// OnClick may contain javascript which should be executed on click. This is primarily used for WebAuthn.
	Onclick *string `json:"onclick,omitempty"`
	// The input's pattern.
	Pattern *string `json:"pattern,omitempty"`
	// Mark this input field as required.
	Required *bool `json:"required,omitempty"`
	// The input's element type. text InputAttributeTypeText password InputAttributeTypePassword number InputAttributeTypeNumber checkbox InputAttributeTypeCheckbox hidden InputAttributeTypeHidden email InputAttributeTypeEmail tel InputAttributeTypeTel submit InputAttributeTypeSubmit button InputAttributeTypeButton datetime-local InputAttributeTypeDateTimeLocal date InputAttributeTypeDate url InputAttributeTypeURI
	Type string `json:"type"`
	// The input's value.
	Value                interface{} `json:"value,omitempty"`
	AdditionalProperties map[string]interface{}
}

UiNodeInputAttributes InputAttributes represents the attributes of an input node

func NewUiNodeInputAttributes ¶

func NewUiNodeInputAttributes(disabled bool, name string, nodeType string, type_ string) *UiNodeInputAttributes

NewUiNodeInputAttributes instantiates a new UiNodeInputAttributes 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 NewUiNodeInputAttributesWithDefaults ¶

func NewUiNodeInputAttributesWithDefaults() *UiNodeInputAttributes

NewUiNodeInputAttributesWithDefaults instantiates a new UiNodeInputAttributes 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 (*UiNodeInputAttributes) GetAutocomplete ¶

func (o *UiNodeInputAttributes) GetAutocomplete() string

GetAutocomplete returns the Autocomplete field value if set, zero value otherwise.

func (*UiNodeInputAttributes) GetAutocompleteOk ¶

func (o *UiNodeInputAttributes) GetAutocompleteOk() (*string, bool)

GetAutocompleteOk returns a tuple with the Autocomplete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UiNodeInputAttributes) GetDisabled ¶

func (o *UiNodeInputAttributes) GetDisabled() bool

GetDisabled returns the Disabled field value

func (*UiNodeInputAttributes) GetDisabledOk ¶

func (o *UiNodeInputAttributes) GetDisabledOk() (*bool, bool)

GetDisabledOk returns a tuple with the Disabled field value and a boolean to check if the value has been set.

func (*UiNodeInputAttributes) GetLabel ¶

func (o *UiNodeInputAttributes) GetLabel() UiText

GetLabel returns the Label field value if set, zero value otherwise.

func (*UiNodeInputAttributes) GetLabelOk ¶

func (o *UiNodeInputAttributes) GetLabelOk() (*UiText, bool)

GetLabelOk returns a tuple with the Label field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UiNodeInputAttributes) GetName ¶

func (o *UiNodeInputAttributes) GetName() string

GetName returns the Name field value

func (*UiNodeInputAttributes) GetNameOk ¶

func (o *UiNodeInputAttributes) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UiNodeInputAttributes) GetNodeType ¶

func (o *UiNodeInputAttributes) GetNodeType() string

GetNodeType returns the NodeType field value

func (*UiNodeInputAttributes) GetNodeTypeOk ¶

func (o *UiNodeInputAttributes) GetNodeTypeOk() (*string, bool)

GetNodeTypeOk returns a tuple with the NodeType field value and a boolean to check if the value has been set.

func (*UiNodeInputAttributes) GetOnclick ¶

func (o *UiNodeInputAttributes) GetOnclick() string

GetOnclick returns the Onclick field value if set, zero value otherwise.

func (*UiNodeInputAttributes) GetOnclickOk ¶

func (o *UiNodeInputAttributes) GetOnclickOk() (*string, bool)

GetOnclickOk returns a tuple with the Onclick field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UiNodeInputAttributes) GetPattern ¶

func (o *UiNodeInputAttributes) GetPattern() string

GetPattern returns the Pattern field value if set, zero value otherwise.

func (*UiNodeInputAttributes) GetPatternOk ¶

func (o *UiNodeInputAttributes) GetPatternOk() (*string, bool)

GetPatternOk returns a tuple with the Pattern field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UiNodeInputAttributes) GetRequired ¶

func (o *UiNodeInputAttributes) GetRequired() bool

GetRequired returns the Required field value if set, zero value otherwise.

func (*UiNodeInputAttributes) GetRequiredOk ¶

func (o *UiNodeInputAttributes) GetRequiredOk() (*bool, bool)

GetRequiredOk returns a tuple with the Required field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UiNodeInputAttributes) GetType ¶

func (o *UiNodeInputAttributes) GetType() string

GetType returns the Type field value

func (*UiNodeInputAttributes) GetTypeOk ¶

func (o *UiNodeInputAttributes) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*UiNodeInputAttributes) GetValue ¶

func (o *UiNodeInputAttributes) GetValue() interface{}

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UiNodeInputAttributes) GetValueOk ¶

func (o *UiNodeInputAttributes) GetValueOk() (*interface{}, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UiNodeInputAttributes) HasAutocomplete ¶

func (o *UiNodeInputAttributes) HasAutocomplete() bool

HasAutocomplete returns a boolean if a field has been set.

func (*UiNodeInputAttributes) HasLabel ¶

func (o *UiNodeInputAttributes) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*UiNodeInputAttributes) HasOnclick ¶

func (o *UiNodeInputAttributes) HasOnclick() bool

HasOnclick returns a boolean if a field has been set.

func (*UiNodeInputAttributes) HasPattern ¶

func (o *UiNodeInputAttributes) HasPattern() bool

HasPattern returns a boolean if a field has been set.

func (*UiNodeInputAttributes) HasRequired ¶

func (o *UiNodeInputAttributes) HasRequired() bool

HasRequired returns a boolean if a field has been set.

func (*UiNodeInputAttributes) HasValue ¶

func (o *UiNodeInputAttributes) HasValue() bool

HasValue returns a boolean if a field has been set.

func (UiNodeInputAttributes) MarshalJSON ¶

func (o UiNodeInputAttributes) MarshalJSON() ([]byte, error)

func (*UiNodeInputAttributes) SetAutocomplete ¶

func (o *UiNodeInputAttributes) SetAutocomplete(v string)

SetAutocomplete gets a reference to the given string and assigns it to the Autocomplete field.

func (*UiNodeInputAttributes) SetDisabled ¶

func (o *UiNodeInputAttributes) SetDisabled(v bool)

SetDisabled sets field value

func (*UiNodeInputAttributes) SetLabel ¶

func (o *UiNodeInputAttributes) SetLabel(v UiText)

SetLabel gets a reference to the given UiText and assigns it to the Label field.

func (*UiNodeInputAttributes) SetName ¶

func (o *UiNodeInputAttributes) SetName(v string)

SetName sets field value

func (*UiNodeInputAttributes) SetNodeType ¶

func (o *UiNodeInputAttributes) SetNodeType(v string)

SetNodeType sets field value

func (*UiNodeInputAttributes) SetOnclick ¶

func (o *UiNodeInputAttributes) SetOnclick(v string)

SetOnclick gets a reference to the given string and assigns it to the Onclick field.

func (*UiNodeInputAttributes) SetPattern ¶

func (o *UiNodeInputAttributes) SetPattern(v string)

SetPattern gets a reference to the given string and assigns it to the Pattern field.

func (*UiNodeInputAttributes) SetRequired ¶

func (o *UiNodeInputAttributes) SetRequired(v bool)

SetRequired gets a reference to the given bool and assigns it to the Required field.

func (*UiNodeInputAttributes) SetType ¶

func (o *UiNodeInputAttributes) SetType(v string)

SetType sets field value

func (*UiNodeInputAttributes) SetValue ¶

func (o *UiNodeInputAttributes) SetValue(v interface{})

SetValue gets a reference to the given interface{} and assigns it to the Value field.

func (UiNodeInputAttributes) ToMap ¶

func (o UiNodeInputAttributes) ToMap() (map[string]interface{}, error)

func (*UiNodeInputAttributes) UnmarshalJSON ¶

func (o *UiNodeInputAttributes) UnmarshalJSON(bytes []byte) (err error)

type UiNodeMeta ¶

type UiNodeMeta struct {
	Label                *UiText `json:"label,omitempty"`
	AdditionalProperties map[string]interface{}
}

UiNodeMeta This might include a label and other information that can optionally be used to render UIs.

func NewUiNodeMeta ¶

func NewUiNodeMeta() *UiNodeMeta

NewUiNodeMeta instantiates a new UiNodeMeta 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 NewUiNodeMetaWithDefaults ¶

func NewUiNodeMetaWithDefaults() *UiNodeMeta

NewUiNodeMetaWithDefaults instantiates a new UiNodeMeta 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 (*UiNodeMeta) GetLabel ¶

func (o *UiNodeMeta) GetLabel() UiText

GetLabel returns the Label field value if set, zero value otherwise.

func (*UiNodeMeta) GetLabelOk ¶

func (o *UiNodeMeta) GetLabelOk() (*UiText, bool)

GetLabelOk returns a tuple with the Label field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UiNodeMeta) HasLabel ¶

func (o *UiNodeMeta) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (UiNodeMeta) MarshalJSON ¶

func (o UiNodeMeta) MarshalJSON() ([]byte, error)

func (*UiNodeMeta) SetLabel ¶

func (o *UiNodeMeta) SetLabel(v UiText)

SetLabel gets a reference to the given UiText and assigns it to the Label field.

func (UiNodeMeta) ToMap ¶

func (o UiNodeMeta) ToMap() (map[string]interface{}, error)

func (*UiNodeMeta) UnmarshalJSON ¶

func (o *UiNodeMeta) UnmarshalJSON(bytes []byte) (err error)

type UiNodeScriptAttributes ¶

type UiNodeScriptAttributes struct {
	// The script async type
	Async bool `json:"async"`
	// The script cross origin policy
	Crossorigin string `json:"crossorigin"`
	// A unique identifier
	Id string `json:"id"`
	// The script's integrity hash
	Integrity string `json:"integrity"`
	// NodeType represents this node's types. It is a mirror of `node.type` and is primarily used to allow compatibility with OpenAPI 3.0. In this struct it technically always is \"script\".
	NodeType string `json:"node_type"`
	// Nonce for CSP  A nonce you may want to use to improve your Content Security Policy. You do not have to use this value but if you want to improve your CSP policies you may use it. You can also choose to use your own nonce value!
	Nonce string `json:"nonce"`
	// The script referrer policy
	Referrerpolicy string `json:"referrerpolicy"`
	// The script source
	Src string `json:"src"`
	// The script MIME type
	Type                 string `json:"type"`
	AdditionalProperties map[string]interface{}
}

UiNodeScriptAttributes struct for UiNodeScriptAttributes

func NewUiNodeScriptAttributes ¶

func NewUiNodeScriptAttributes(async bool, crossorigin string, id string, integrity string, nodeType string, nonce string, referrerpolicy string, src string, type_ string) *UiNodeScriptAttributes

NewUiNodeScriptAttributes instantiates a new UiNodeScriptAttributes 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 NewUiNodeScriptAttributesWithDefaults ¶

func NewUiNodeScriptAttributesWithDefaults() *UiNodeScriptAttributes

NewUiNodeScriptAttributesWithDefaults instantiates a new UiNodeScriptAttributes 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 (*UiNodeScriptAttributes) GetAsync ¶

func (o *UiNodeScriptAttributes) GetAsync() bool

GetAsync returns the Async field value

func (*UiNodeScriptAttributes) GetAsyncOk ¶

func (o *UiNodeScriptAttributes) GetAsyncOk() (*bool, bool)

GetAsyncOk returns a tuple with the Async field value and a boolean to check if the value has been set.

func (*UiNodeScriptAttributes) GetCrossorigin ¶

func (o *UiNodeScriptAttributes) GetCrossorigin() string

GetCrossorigin returns the Crossorigin field value

func (*UiNodeScriptAttributes) GetCrossoriginOk ¶

func (o *UiNodeScriptAttributes) GetCrossoriginOk() (*string, bool)

GetCrossoriginOk returns a tuple with the Crossorigin field value and a boolean to check if the value has been set.

func (*UiNodeScriptAttributes) GetId ¶

func (o *UiNodeScriptAttributes) GetId() string

GetId returns the Id field value

func (*UiNodeScriptAttributes) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*UiNodeScriptAttributes) GetIntegrity ¶

func (o *UiNodeScriptAttributes) GetIntegrity() string

GetIntegrity returns the Integrity field value

func (*UiNodeScriptAttributes) GetIntegrityOk ¶

func (o *UiNodeScriptAttributes) GetIntegrityOk() (*string, bool)

GetIntegrityOk returns a tuple with the Integrity field value and a boolean to check if the value has been set.

func (*UiNodeScriptAttributes) GetNodeType ¶

func (o *UiNodeScriptAttributes) GetNodeType() string

GetNodeType returns the NodeType field value

func (*UiNodeScriptAttributes) GetNodeTypeOk ¶

func (o *UiNodeScriptAttributes) GetNodeTypeOk() (*string, bool)

GetNodeTypeOk returns a tuple with the NodeType field value and a boolean to check if the value has been set.

func (*UiNodeScriptAttributes) GetNonce ¶

func (o *UiNodeScriptAttributes) GetNonce() string

GetNonce returns the Nonce field value

func (*UiNodeScriptAttributes) GetNonceOk ¶

func (o *UiNodeScriptAttributes) GetNonceOk() (*string, bool)

GetNonceOk returns a tuple with the Nonce field value and a boolean to check if the value has been set.

func (*UiNodeScriptAttributes) GetReferrerpolicy ¶

func (o *UiNodeScriptAttributes) GetReferrerpolicy() string

GetReferrerpolicy returns the Referrerpolicy field value

func (*UiNodeScriptAttributes) GetReferrerpolicyOk ¶

func (o *UiNodeScriptAttributes) GetReferrerpolicyOk() (*string, bool)

GetReferrerpolicyOk returns a tuple with the Referrerpolicy field value and a boolean to check if the value has been set.

func (*UiNodeScriptAttributes) GetSrc ¶

func (o *UiNodeScriptAttributes) GetSrc() string

GetSrc returns the Src field value

func (*UiNodeScriptAttributes) GetSrcOk ¶

func (o *UiNodeScriptAttributes) GetSrcOk() (*string, bool)

GetSrcOk returns a tuple with the Src field value and a boolean to check if the value has been set.

func (*UiNodeScriptAttributes) GetType ¶

func (o *UiNodeScriptAttributes) GetType() string

GetType returns the Type field value

func (*UiNodeScriptAttributes) GetTypeOk ¶

func (o *UiNodeScriptAttributes) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (UiNodeScriptAttributes) MarshalJSON ¶

func (o UiNodeScriptAttributes) MarshalJSON() ([]byte, error)

func (*UiNodeScriptAttributes) SetAsync ¶

func (o *UiNodeScriptAttributes) SetAsync(v bool)

SetAsync sets field value

func (*UiNodeScriptAttributes) SetCrossorigin ¶

func (o *UiNodeScriptAttributes) SetCrossorigin(v string)

SetCrossorigin sets field value

func (*UiNodeScriptAttributes) SetId ¶

func (o *UiNodeScriptAttributes) SetId(v string)

SetId sets field value

func (*UiNodeScriptAttributes) SetIntegrity ¶

func (o *UiNodeScriptAttributes) SetIntegrity(v string)

SetIntegrity sets field value

func (*UiNodeScriptAttributes) SetNodeType ¶

func (o *UiNodeScriptAttributes) SetNodeType(v string)

SetNodeType sets field value

func (*UiNodeScriptAttributes) SetNonce ¶

func (o *UiNodeScriptAttributes) SetNonce(v string)

SetNonce sets field value

func (*UiNodeScriptAttributes) SetReferrerpolicy ¶

func (o *UiNodeScriptAttributes) SetReferrerpolicy(v string)

SetReferrerpolicy sets field value

func (*UiNodeScriptAttributes) SetSrc ¶

func (o *UiNodeScriptAttributes) SetSrc(v string)

SetSrc sets field value

func (*UiNodeScriptAttributes) SetType ¶

func (o *UiNodeScriptAttributes) SetType(v string)

SetType sets field value

func (UiNodeScriptAttributes) ToMap ¶

func (o UiNodeScriptAttributes) ToMap() (map[string]interface{}, error)

func (*UiNodeScriptAttributes) UnmarshalJSON ¶

func (o *UiNodeScriptAttributes) UnmarshalJSON(bytes []byte) (err error)

type UiNodeTextAttributes ¶

type UiNodeTextAttributes struct {
	// A unique identifier
	Id string `json:"id"`
	// NodeType represents this node's types. It is a mirror of `node.type` and is primarily used to allow compatibility with OpenAPI 3.0.  In this struct it technically always is \"text\".
	NodeType             string `json:"node_type"`
	Text                 UiText `json:"text"`
	AdditionalProperties map[string]interface{}
}

UiNodeTextAttributes struct for UiNodeTextAttributes

func NewUiNodeTextAttributes ¶

func NewUiNodeTextAttributes(id string, nodeType string, text UiText) *UiNodeTextAttributes

NewUiNodeTextAttributes instantiates a new UiNodeTextAttributes 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 NewUiNodeTextAttributesWithDefaults ¶

func NewUiNodeTextAttributesWithDefaults() *UiNodeTextAttributes

NewUiNodeTextAttributesWithDefaults instantiates a new UiNodeTextAttributes 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 (*UiNodeTextAttributes) GetId ¶

func (o *UiNodeTextAttributes) GetId() string

GetId returns the Id field value

func (*UiNodeTextAttributes) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*UiNodeTextAttributes) GetNodeType ¶

func (o *UiNodeTextAttributes) GetNodeType() string

GetNodeType returns the NodeType field value

func (*UiNodeTextAttributes) GetNodeTypeOk ¶

func (o *UiNodeTextAttributes) GetNodeTypeOk() (*string, bool)

GetNodeTypeOk returns a tuple with the NodeType field value and a boolean to check if the value has been set.

func (*UiNodeTextAttributes) GetText ¶

func (o *UiNodeTextAttributes) GetText() UiText

GetText returns the Text field value

func (*UiNodeTextAttributes) GetTextOk ¶

func (o *UiNodeTextAttributes) GetTextOk() (*UiText, bool)

GetTextOk returns a tuple with the Text field value and a boolean to check if the value has been set.

func (UiNodeTextAttributes) MarshalJSON ¶

func (o UiNodeTextAttributes) MarshalJSON() ([]byte, error)

func (*UiNodeTextAttributes) SetId ¶

func (o *UiNodeTextAttributes) SetId(v string)

SetId sets field value

func (*UiNodeTextAttributes) SetNodeType ¶

func (o *UiNodeTextAttributes) SetNodeType(v string)

SetNodeType sets field value

func (*UiNodeTextAttributes) SetText ¶

func (o *UiNodeTextAttributes) SetText(v UiText)

SetText sets field value

func (UiNodeTextAttributes) ToMap ¶

func (o UiNodeTextAttributes) ToMap() (map[string]interface{}, error)

func (*UiNodeTextAttributes) UnmarshalJSON ¶

func (o *UiNodeTextAttributes) UnmarshalJSON(bytes []byte) (err error)

type UiText ¶

type UiText struct {
	// The message's context. Useful when customizing messages.
	Context map[string]interface{} `json:"context,omitempty"`
	Id      int64                  `json:"id"`
	// The message text. Written in american english.
	Text string `json:"text"`
	// The message type. info Info error Error success Success
	Type                 string `json:"type"`
	AdditionalProperties map[string]interface{}
}

UiText struct for UiText

func NewUiText ¶

func NewUiText(id int64, text string, type_ string) *UiText

NewUiText instantiates a new UiText 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 NewUiTextWithDefaults ¶

func NewUiTextWithDefaults() *UiText

NewUiTextWithDefaults instantiates a new UiText 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 (*UiText) GetContext ¶

func (o *UiText) GetContext() map[string]interface{}

GetContext returns the Context field value if set, zero value otherwise.

func (*UiText) GetContextOk ¶

func (o *UiText) GetContextOk() (map[string]interface{}, bool)

GetContextOk returns a tuple with the Context field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UiText) GetId ¶

func (o *UiText) GetId() int64

GetId returns the Id field value

func (*UiText) GetIdOk ¶

func (o *UiText) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*UiText) GetText ¶

func (o *UiText) GetText() string

GetText returns the Text field value

func (*UiText) GetTextOk ¶

func (o *UiText) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value and a boolean to check if the value has been set.

func (*UiText) GetType ¶

func (o *UiText) GetType() string

GetType returns the Type field value

func (*UiText) GetTypeOk ¶

func (o *UiText) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*UiText) HasContext ¶

func (o *UiText) HasContext() bool

HasContext returns a boolean if a field has been set.

func (UiText) MarshalJSON ¶

func (o UiText) MarshalJSON() ([]byte, error)

func (*UiText) SetContext ¶

func (o *UiText) SetContext(v map[string]interface{})

SetContext gets a reference to the given map[string]interface{} and assigns it to the Context field.

func (*UiText) SetId ¶

func (o *UiText) SetId(v int64)

SetId sets field value

func (*UiText) SetText ¶

func (o *UiText) SetText(v string)

SetText sets field value

func (*UiText) SetType ¶

func (o *UiText) SetType(v string)

SetType sets field value

func (UiText) ToMap ¶

func (o UiText) ToMap() (map[string]interface{}, error)

func (*UiText) UnmarshalJSON ¶

func (o *UiText) UnmarshalJSON(bytes []byte) (err error)

type UpdateIdentityBody ¶

type UpdateIdentityBody struct {
	Credentials *IdentityWithCredentials `json:"credentials,omitempty"`
	// Store metadata about the user which is only accessible through admin APIs such as `GET /admin/identities/<id>`.
	MetadataAdmin interface{} `json:"metadata_admin,omitempty"`
	// Store metadata about the identity which the identity itself can see when calling for example the session endpoint. Do not store sensitive information (e.g. credit score) about the identity in this field.
	MetadataPublic interface{} `json:"metadata_public,omitempty"`
	// SchemaID is the ID of the JSON Schema to be used for validating the identity's traits. If set will update the Identity's SchemaID.
	SchemaId string        `json:"schema_id"`
	State    IdentityState `json:"state"`
	// Traits represent an identity's traits. The identity is able to create, modify, and delete traits in a self-service manner. The input will always be validated against the JSON Schema defined in `schema_id`.
	Traits               map[string]interface{} `json:"traits"`
	AdditionalProperties map[string]interface{}
}

UpdateIdentityBody Update Identity Body

func NewUpdateIdentityBody ¶

func NewUpdateIdentityBody(schemaId string, state IdentityState, traits map[string]interface{}) *UpdateIdentityBody

NewUpdateIdentityBody instantiates a new UpdateIdentityBody 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 NewUpdateIdentityBodyWithDefaults ¶

func NewUpdateIdentityBodyWithDefaults() *UpdateIdentityBody

NewUpdateIdentityBodyWithDefaults instantiates a new UpdateIdentityBody 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 (*UpdateIdentityBody) GetCredentials ¶

func (o *UpdateIdentityBody) GetCredentials() IdentityWithCredentials

GetCredentials returns the Credentials field value if set, zero value otherwise.

func (*UpdateIdentityBody) GetCredentialsOk ¶

func (o *UpdateIdentityBody) GetCredentialsOk() (*IdentityWithCredentials, bool)

GetCredentialsOk returns a tuple with the Credentials field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateIdentityBody) GetMetadataAdmin ¶

func (o *UpdateIdentityBody) GetMetadataAdmin() interface{}

GetMetadataAdmin returns the MetadataAdmin field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateIdentityBody) GetMetadataAdminOk ¶

func (o *UpdateIdentityBody) GetMetadataAdminOk() (*interface{}, bool)

GetMetadataAdminOk returns a tuple with the MetadataAdmin field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateIdentityBody) GetMetadataPublic ¶

func (o *UpdateIdentityBody) GetMetadataPublic() interface{}

GetMetadataPublic returns the MetadataPublic field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateIdentityBody) GetMetadataPublicOk ¶

func (o *UpdateIdentityBody) GetMetadataPublicOk() (*interface{}, bool)

GetMetadataPublicOk returns a tuple with the MetadataPublic field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateIdentityBody) GetSchemaId ¶

func (o *UpdateIdentityBody) GetSchemaId() string

GetSchemaId returns the SchemaId field value

func (*UpdateIdentityBody) GetSchemaIdOk ¶

func (o *UpdateIdentityBody) GetSchemaIdOk() (*string, bool)

GetSchemaIdOk returns a tuple with the SchemaId field value and a boolean to check if the value has been set.

func (*UpdateIdentityBody) GetState ¶

func (o *UpdateIdentityBody) GetState() IdentityState

GetState returns the State field value

func (*UpdateIdentityBody) GetStateOk ¶

func (o *UpdateIdentityBody) GetStateOk() (*IdentityState, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*UpdateIdentityBody) GetTraits ¶

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

GetTraits returns the Traits field value

func (*UpdateIdentityBody) GetTraitsOk ¶

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

GetTraitsOk returns a tuple with the Traits field value and a boolean to check if the value has been set.

func (*UpdateIdentityBody) HasCredentials ¶

func (o *UpdateIdentityBody) HasCredentials() bool

HasCredentials returns a boolean if a field has been set.

func (*UpdateIdentityBody) HasMetadataAdmin ¶

func (o *UpdateIdentityBody) HasMetadataAdmin() bool

HasMetadataAdmin returns a boolean if a field has been set.

func (*UpdateIdentityBody) HasMetadataPublic ¶

func (o *UpdateIdentityBody) HasMetadataPublic() bool

HasMetadataPublic returns a boolean if a field has been set.

func (UpdateIdentityBody) MarshalJSON ¶

func (o UpdateIdentityBody) MarshalJSON() ([]byte, error)

func (*UpdateIdentityBody) SetCredentials ¶

func (o *UpdateIdentityBody) SetCredentials(v IdentityWithCredentials)

SetCredentials gets a reference to the given IdentityWithCredentials and assigns it to the Credentials field.

func (*UpdateIdentityBody) SetMetadataAdmin ¶

func (o *UpdateIdentityBody) SetMetadataAdmin(v interface{})

SetMetadataAdmin gets a reference to the given interface{} and assigns it to the MetadataAdmin field.

func (*UpdateIdentityBody) SetMetadataPublic ¶

func (o *UpdateIdentityBody) SetMetadataPublic(v interface{})

SetMetadataPublic gets a reference to the given interface{} and assigns it to the MetadataPublic field.

func (*UpdateIdentityBody) SetSchemaId ¶

func (o *UpdateIdentityBody) SetSchemaId(v string)

SetSchemaId sets field value

func (*UpdateIdentityBody) SetState ¶

func (o *UpdateIdentityBody) SetState(v IdentityState)

SetState sets field value

func (*UpdateIdentityBody) SetTraits ¶

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

SetTraits sets field value

func (UpdateIdentityBody) ToMap ¶

func (o UpdateIdentityBody) ToMap() (map[string]interface{}, error)

func (*UpdateIdentityBody) UnmarshalJSON ¶

func (o *UpdateIdentityBody) UnmarshalJSON(bytes []byte) (err error)

type UpdateLoginFlowBody ¶

type UpdateLoginFlowBody struct {
	UpdateLoginFlowWithCodeMethod         *UpdateLoginFlowWithCodeMethod
	UpdateLoginFlowWithLookupSecretMethod *UpdateLoginFlowWithLookupSecretMethod
	UpdateLoginFlowWithOidcMethod         *UpdateLoginFlowWithOidcMethod
	UpdateLoginFlowWithPasswordMethod     *UpdateLoginFlowWithPasswordMethod
	UpdateLoginFlowWithTotpMethod         *UpdateLoginFlowWithTotpMethod
	UpdateLoginFlowWithWebAuthnMethod     *UpdateLoginFlowWithWebAuthnMethod
}

UpdateLoginFlowBody - struct for UpdateLoginFlowBody

func UpdateLoginFlowWithCodeMethodAsUpdateLoginFlowBody ¶

func UpdateLoginFlowWithCodeMethodAsUpdateLoginFlowBody(v *UpdateLoginFlowWithCodeMethod) UpdateLoginFlowBody

UpdateLoginFlowWithCodeMethodAsUpdateLoginFlowBody is a convenience function that returns UpdateLoginFlowWithCodeMethod wrapped in UpdateLoginFlowBody

func UpdateLoginFlowWithLookupSecretMethodAsUpdateLoginFlowBody ¶

func UpdateLoginFlowWithLookupSecretMethodAsUpdateLoginFlowBody(v *UpdateLoginFlowWithLookupSecretMethod) UpdateLoginFlowBody

UpdateLoginFlowWithLookupSecretMethodAsUpdateLoginFlowBody is a convenience function that returns UpdateLoginFlowWithLookupSecretMethod wrapped in UpdateLoginFlowBody

func UpdateLoginFlowWithOidcMethodAsUpdateLoginFlowBody ¶

func UpdateLoginFlowWithOidcMethodAsUpdateLoginFlowBody(v *UpdateLoginFlowWithOidcMethod) UpdateLoginFlowBody

UpdateLoginFlowWithOidcMethodAsUpdateLoginFlowBody is a convenience function that returns UpdateLoginFlowWithOidcMethod wrapped in UpdateLoginFlowBody

func UpdateLoginFlowWithPasswordMethodAsUpdateLoginFlowBody ¶

func UpdateLoginFlowWithPasswordMethodAsUpdateLoginFlowBody(v *UpdateLoginFlowWithPasswordMethod) UpdateLoginFlowBody

UpdateLoginFlowWithPasswordMethodAsUpdateLoginFlowBody is a convenience function that returns UpdateLoginFlowWithPasswordMethod wrapped in UpdateLoginFlowBody

func UpdateLoginFlowWithTotpMethodAsUpdateLoginFlowBody ¶

func UpdateLoginFlowWithTotpMethodAsUpdateLoginFlowBody(v *UpdateLoginFlowWithTotpMethod) UpdateLoginFlowBody

UpdateLoginFlowWithTotpMethodAsUpdateLoginFlowBody is a convenience function that returns UpdateLoginFlowWithTotpMethod wrapped in UpdateLoginFlowBody

func UpdateLoginFlowWithWebAuthnMethodAsUpdateLoginFlowBody ¶

func UpdateLoginFlowWithWebAuthnMethodAsUpdateLoginFlowBody(v *UpdateLoginFlowWithWebAuthnMethod) UpdateLoginFlowBody

UpdateLoginFlowWithWebAuthnMethodAsUpdateLoginFlowBody is a convenience function that returns UpdateLoginFlowWithWebAuthnMethod wrapped in UpdateLoginFlowBody

func (*UpdateLoginFlowBody) GetActualInstance ¶

func (obj *UpdateLoginFlowBody) GetActualInstance() interface{}

Get the actual instance

func (UpdateLoginFlowBody) MarshalJSON ¶

func (src UpdateLoginFlowBody) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UpdateLoginFlowBody) UnmarshalJSON ¶

func (dst *UpdateLoginFlowBody) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type UpdateLoginFlowWithCodeMethod ¶

type UpdateLoginFlowWithCodeMethod struct {
	// Code is the 6 digits code sent to the user
	Code *string `json:"code,omitempty"`
	// CSRFToken is the anti-CSRF token
	CsrfToken string `json:"csrf_token"`
	// Identifier is the code identifier The identifier requires that the user has already completed the registration or settings with code flow.
	Identifier *string `json:"identifier,omitempty"`
	// Method should be set to \"code\" when logging in using the code strategy.
	Method string `json:"method"`
	// Resend is set when the user wants to resend the code
	Resend               *string `json:"resend,omitempty"`
	AdditionalProperties map[string]interface{}
}

UpdateLoginFlowWithCodeMethod Update Login flow using the code method

func NewUpdateLoginFlowWithCodeMethod ¶

func NewUpdateLoginFlowWithCodeMethod(csrfToken string, method string) *UpdateLoginFlowWithCodeMethod

NewUpdateLoginFlowWithCodeMethod instantiates a new UpdateLoginFlowWithCodeMethod 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 NewUpdateLoginFlowWithCodeMethodWithDefaults ¶

func NewUpdateLoginFlowWithCodeMethodWithDefaults() *UpdateLoginFlowWithCodeMethod

NewUpdateLoginFlowWithCodeMethodWithDefaults instantiates a new UpdateLoginFlowWithCodeMethod 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 (*UpdateLoginFlowWithCodeMethod) GetCode ¶

GetCode returns the Code field value if set, zero value otherwise.

func (*UpdateLoginFlowWithCodeMethod) GetCodeOk ¶

func (o *UpdateLoginFlowWithCodeMethod) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithCodeMethod) GetCsrfToken ¶

func (o *UpdateLoginFlowWithCodeMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value

func (*UpdateLoginFlowWithCodeMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithCodeMethod) GetIdentifier ¶

func (o *UpdateLoginFlowWithCodeMethod) GetIdentifier() string

GetIdentifier returns the Identifier field value if set, zero value otherwise.

func (*UpdateLoginFlowWithCodeMethod) GetIdentifierOk ¶

func (o *UpdateLoginFlowWithCodeMethod) GetIdentifierOk() (*string, bool)

GetIdentifierOk returns a tuple with the Identifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithCodeMethod) GetMethod ¶

func (o *UpdateLoginFlowWithCodeMethod) GetMethod() string

GetMethod returns the Method field value

func (*UpdateLoginFlowWithCodeMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithCodeMethod) GetResend ¶

func (o *UpdateLoginFlowWithCodeMethod) GetResend() string

GetResend returns the Resend field value if set, zero value otherwise.

func (*UpdateLoginFlowWithCodeMethod) GetResendOk ¶

func (o *UpdateLoginFlowWithCodeMethod) GetResendOk() (*string, bool)

GetResendOk returns a tuple with the Resend field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithCodeMethod) HasCode ¶

func (o *UpdateLoginFlowWithCodeMethod) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*UpdateLoginFlowWithCodeMethod) HasIdentifier ¶

func (o *UpdateLoginFlowWithCodeMethod) HasIdentifier() bool

HasIdentifier returns a boolean if a field has been set.

func (*UpdateLoginFlowWithCodeMethod) HasResend ¶

func (o *UpdateLoginFlowWithCodeMethod) HasResend() bool

HasResend returns a boolean if a field has been set.

func (UpdateLoginFlowWithCodeMethod) MarshalJSON ¶

func (o UpdateLoginFlowWithCodeMethod) MarshalJSON() ([]byte, error)

func (*UpdateLoginFlowWithCodeMethod) SetCode ¶

func (o *UpdateLoginFlowWithCodeMethod) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*UpdateLoginFlowWithCodeMethod) SetCsrfToken ¶

func (o *UpdateLoginFlowWithCodeMethod) SetCsrfToken(v string)

SetCsrfToken sets field value

func (*UpdateLoginFlowWithCodeMethod) SetIdentifier ¶

func (o *UpdateLoginFlowWithCodeMethod) SetIdentifier(v string)

SetIdentifier gets a reference to the given string and assigns it to the Identifier field.

func (*UpdateLoginFlowWithCodeMethod) SetMethod ¶

func (o *UpdateLoginFlowWithCodeMethod) SetMethod(v string)

SetMethod sets field value

func (*UpdateLoginFlowWithCodeMethod) SetResend ¶

func (o *UpdateLoginFlowWithCodeMethod) SetResend(v string)

SetResend gets a reference to the given string and assigns it to the Resend field.

func (UpdateLoginFlowWithCodeMethod) ToMap ¶

func (o UpdateLoginFlowWithCodeMethod) ToMap() (map[string]interface{}, error)

func (*UpdateLoginFlowWithCodeMethod) UnmarshalJSON ¶

func (o *UpdateLoginFlowWithCodeMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateLoginFlowWithLookupSecretMethod ¶

type UpdateLoginFlowWithLookupSecretMethod struct {
	// Sending the anti-csrf token is only required for browser login flows.
	CsrfToken *string `json:"csrf_token,omitempty"`
	// The lookup secret.
	LookupSecret string `json:"lookup_secret"`
	// Method should be set to \"lookup_secret\" when logging in using the lookup_secret strategy.
	Method               string `json:"method"`
	AdditionalProperties map[string]interface{}
}

UpdateLoginFlowWithLookupSecretMethod Update Login Flow with Lookup Secret Method

func NewUpdateLoginFlowWithLookupSecretMethod ¶

func NewUpdateLoginFlowWithLookupSecretMethod(lookupSecret string, method string) *UpdateLoginFlowWithLookupSecretMethod

NewUpdateLoginFlowWithLookupSecretMethod instantiates a new UpdateLoginFlowWithLookupSecretMethod 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 NewUpdateLoginFlowWithLookupSecretMethodWithDefaults ¶

func NewUpdateLoginFlowWithLookupSecretMethodWithDefaults() *UpdateLoginFlowWithLookupSecretMethod

NewUpdateLoginFlowWithLookupSecretMethodWithDefaults instantiates a new UpdateLoginFlowWithLookupSecretMethod 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 (*UpdateLoginFlowWithLookupSecretMethod) GetCsrfToken ¶

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateLoginFlowWithLookupSecretMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithLookupSecretMethod) GetLookupSecret ¶

func (o *UpdateLoginFlowWithLookupSecretMethod) GetLookupSecret() string

GetLookupSecret returns the LookupSecret field value

func (*UpdateLoginFlowWithLookupSecretMethod) GetLookupSecretOk ¶

func (o *UpdateLoginFlowWithLookupSecretMethod) GetLookupSecretOk() (*string, bool)

GetLookupSecretOk returns a tuple with the LookupSecret field value and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithLookupSecretMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateLoginFlowWithLookupSecretMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithLookupSecretMethod) HasCsrfToken ¶

func (o *UpdateLoginFlowWithLookupSecretMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (UpdateLoginFlowWithLookupSecretMethod) MarshalJSON ¶

func (o UpdateLoginFlowWithLookupSecretMethod) MarshalJSON() ([]byte, error)

func (*UpdateLoginFlowWithLookupSecretMethod) SetCsrfToken ¶

func (o *UpdateLoginFlowWithLookupSecretMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateLoginFlowWithLookupSecretMethod) SetLookupSecret ¶

func (o *UpdateLoginFlowWithLookupSecretMethod) SetLookupSecret(v string)

SetLookupSecret sets field value

func (*UpdateLoginFlowWithLookupSecretMethod) SetMethod ¶

SetMethod sets field value

func (UpdateLoginFlowWithLookupSecretMethod) ToMap ¶

func (o UpdateLoginFlowWithLookupSecretMethod) ToMap() (map[string]interface{}, error)

func (*UpdateLoginFlowWithLookupSecretMethod) UnmarshalJSON ¶

func (o *UpdateLoginFlowWithLookupSecretMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateLoginFlowWithOidcMethod ¶

type UpdateLoginFlowWithOidcMethod struct {
	// The CSRF Token
	CsrfToken *string `json:"csrf_token,omitempty"`
	// IDToken is an optional id token provided by an OIDC provider  If submitted, it is verified using the OIDC provider's public key set and the claims are used to populate the OIDC credentials of the identity. If the OIDC provider does not store additional claims (such as name, etc.) in the IDToken itself, you can use the `traits` field to populate the identity's traits. Note, that Apple only includes the users email in the IDToken.  Supported providers are Apple
	IdToken *string `json:"id_token,omitempty"`
	// IDTokenNonce is the nonce, used when generating the IDToken. If the provider supports nonce validation, the nonce will be validated against this value and required.
	IdTokenNonce *string `json:"id_token_nonce,omitempty"`
	// Method to use  This field must be set to `oidc` when using the oidc method.
	Method string `json:"method"`
	// The provider to register with
	Provider string `json:"provider"`
	// The identity traits. This is a placeholder for the registration flow.
	Traits map[string]interface{} `json:"traits,omitempty"`
	// UpstreamParameters are the parameters that are passed to the upstream identity provider.  These parameters are optional and depend on what the upstream identity provider supports. Supported parameters are: `login_hint` (string): The `login_hint` parameter suppresses the account chooser and either pre-fills the email box on the sign-in form, or selects the proper session. `hd` (string): The `hd` parameter limits the login/registration process to a Google Organization, e.g. `mycollege.edu`. `prompt` (string): The `prompt` specifies whether the Authorization Server prompts the End-User for reauthentication and consent, e.g. `select_account`.
	UpstreamParameters   map[string]interface{} `json:"upstream_parameters,omitempty"`
	AdditionalProperties map[string]interface{}
}

UpdateLoginFlowWithOidcMethod Update Login Flow with OpenID Connect Method

func NewUpdateLoginFlowWithOidcMethod ¶

func NewUpdateLoginFlowWithOidcMethod(method string, provider string) *UpdateLoginFlowWithOidcMethod

NewUpdateLoginFlowWithOidcMethod instantiates a new UpdateLoginFlowWithOidcMethod 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 NewUpdateLoginFlowWithOidcMethodWithDefaults ¶

func NewUpdateLoginFlowWithOidcMethodWithDefaults() *UpdateLoginFlowWithOidcMethod

NewUpdateLoginFlowWithOidcMethodWithDefaults instantiates a new UpdateLoginFlowWithOidcMethod 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 (*UpdateLoginFlowWithOidcMethod) GetCsrfToken ¶

func (o *UpdateLoginFlowWithOidcMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateLoginFlowWithOidcMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithOidcMethod) GetIdToken ¶

func (o *UpdateLoginFlowWithOidcMethod) GetIdToken() string

GetIdToken returns the IdToken field value if set, zero value otherwise.

func (*UpdateLoginFlowWithOidcMethod) GetIdTokenNonce ¶

func (o *UpdateLoginFlowWithOidcMethod) GetIdTokenNonce() string

GetIdTokenNonce returns the IdTokenNonce field value if set, zero value otherwise.

func (*UpdateLoginFlowWithOidcMethod) GetIdTokenNonceOk ¶

func (o *UpdateLoginFlowWithOidcMethod) GetIdTokenNonceOk() (*string, bool)

GetIdTokenNonceOk returns a tuple with the IdTokenNonce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithOidcMethod) GetIdTokenOk ¶

func (o *UpdateLoginFlowWithOidcMethod) GetIdTokenOk() (*string, bool)

GetIdTokenOk returns a tuple with the IdToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithOidcMethod) GetMethod ¶

func (o *UpdateLoginFlowWithOidcMethod) GetMethod() string

GetMethod returns the Method field value

func (*UpdateLoginFlowWithOidcMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithOidcMethod) GetProvider ¶

func (o *UpdateLoginFlowWithOidcMethod) GetProvider() string

GetProvider returns the Provider field value

func (*UpdateLoginFlowWithOidcMethod) GetProviderOk ¶

func (o *UpdateLoginFlowWithOidcMethod) GetProviderOk() (*string, bool)

GetProviderOk returns a tuple with the Provider field value and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithOidcMethod) GetTraits ¶

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

GetTraits returns the Traits field value if set, zero value otherwise.

func (*UpdateLoginFlowWithOidcMethod) GetTraitsOk ¶

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

GetTraitsOk returns a tuple with the Traits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithOidcMethod) GetUpstreamParameters ¶

func (o *UpdateLoginFlowWithOidcMethod) GetUpstreamParameters() map[string]interface{}

GetUpstreamParameters returns the UpstreamParameters field value if set, zero value otherwise.

func (*UpdateLoginFlowWithOidcMethod) GetUpstreamParametersOk ¶

func (o *UpdateLoginFlowWithOidcMethod) GetUpstreamParametersOk() (map[string]interface{}, bool)

GetUpstreamParametersOk returns a tuple with the UpstreamParameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithOidcMethod) HasCsrfToken ¶

func (o *UpdateLoginFlowWithOidcMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (*UpdateLoginFlowWithOidcMethod) HasIdToken ¶

func (o *UpdateLoginFlowWithOidcMethod) HasIdToken() bool

HasIdToken returns a boolean if a field has been set.

func (*UpdateLoginFlowWithOidcMethod) HasIdTokenNonce ¶

func (o *UpdateLoginFlowWithOidcMethod) HasIdTokenNonce() bool

HasIdTokenNonce returns a boolean if a field has been set.

func (*UpdateLoginFlowWithOidcMethod) HasTraits ¶

func (o *UpdateLoginFlowWithOidcMethod) HasTraits() bool

HasTraits returns a boolean if a field has been set.

func (*UpdateLoginFlowWithOidcMethod) HasUpstreamParameters ¶

func (o *UpdateLoginFlowWithOidcMethod) HasUpstreamParameters() bool

HasUpstreamParameters returns a boolean if a field has been set.

func (UpdateLoginFlowWithOidcMethod) MarshalJSON ¶

func (o UpdateLoginFlowWithOidcMethod) MarshalJSON() ([]byte, error)

func (*UpdateLoginFlowWithOidcMethod) SetCsrfToken ¶

func (o *UpdateLoginFlowWithOidcMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateLoginFlowWithOidcMethod) SetIdToken ¶

func (o *UpdateLoginFlowWithOidcMethod) SetIdToken(v string)

SetIdToken gets a reference to the given string and assigns it to the IdToken field.

func (*UpdateLoginFlowWithOidcMethod) SetIdTokenNonce ¶

func (o *UpdateLoginFlowWithOidcMethod) SetIdTokenNonce(v string)

SetIdTokenNonce gets a reference to the given string and assigns it to the IdTokenNonce field.

func (*UpdateLoginFlowWithOidcMethod) SetMethod ¶

func (o *UpdateLoginFlowWithOidcMethod) SetMethod(v string)

SetMethod sets field value

func (*UpdateLoginFlowWithOidcMethod) SetProvider ¶

func (o *UpdateLoginFlowWithOidcMethod) SetProvider(v string)

SetProvider sets field value

func (*UpdateLoginFlowWithOidcMethod) SetTraits ¶

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

SetTraits gets a reference to the given map[string]interface{} and assigns it to the Traits field.

func (*UpdateLoginFlowWithOidcMethod) SetUpstreamParameters ¶

func (o *UpdateLoginFlowWithOidcMethod) SetUpstreamParameters(v map[string]interface{})

SetUpstreamParameters gets a reference to the given map[string]interface{} and assigns it to the UpstreamParameters field.

func (UpdateLoginFlowWithOidcMethod) ToMap ¶

func (o UpdateLoginFlowWithOidcMethod) ToMap() (map[string]interface{}, error)

func (*UpdateLoginFlowWithOidcMethod) UnmarshalJSON ¶

func (o *UpdateLoginFlowWithOidcMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateLoginFlowWithPasswordMethod ¶

type UpdateLoginFlowWithPasswordMethod struct {
	// Sending the anti-csrf token is only required for browser login flows.
	CsrfToken *string `json:"csrf_token,omitempty"`
	// Identifier is the email or username of the user trying to log in.
	Identifier string `json:"identifier"`
	// Method should be set to \"password\" when logging in using the identifier and password strategy.
	Method string `json:"method"`
	// The user's password.
	Password string `json:"password"`
	// Identifier is the email or username of the user trying to log in. This field is deprecated!
	PasswordIdentifier   *string `json:"password_identifier,omitempty"`
	AdditionalProperties map[string]interface{}
}

UpdateLoginFlowWithPasswordMethod Update Login Flow with Password Method

func NewUpdateLoginFlowWithPasswordMethod ¶

func NewUpdateLoginFlowWithPasswordMethod(identifier string, method string, password string) *UpdateLoginFlowWithPasswordMethod

NewUpdateLoginFlowWithPasswordMethod instantiates a new UpdateLoginFlowWithPasswordMethod 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 NewUpdateLoginFlowWithPasswordMethodWithDefaults ¶

func NewUpdateLoginFlowWithPasswordMethodWithDefaults() *UpdateLoginFlowWithPasswordMethod

NewUpdateLoginFlowWithPasswordMethodWithDefaults instantiates a new UpdateLoginFlowWithPasswordMethod 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 (*UpdateLoginFlowWithPasswordMethod) GetCsrfToken ¶

func (o *UpdateLoginFlowWithPasswordMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateLoginFlowWithPasswordMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithPasswordMethod) GetIdentifier ¶

func (o *UpdateLoginFlowWithPasswordMethod) GetIdentifier() string

GetIdentifier returns the Identifier field value

func (*UpdateLoginFlowWithPasswordMethod) GetIdentifierOk ¶

func (o *UpdateLoginFlowWithPasswordMethod) GetIdentifierOk() (*string, bool)

GetIdentifierOk returns a tuple with the Identifier field value and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithPasswordMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateLoginFlowWithPasswordMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithPasswordMethod) GetPassword ¶

func (o *UpdateLoginFlowWithPasswordMethod) GetPassword() string

GetPassword returns the Password field value

func (*UpdateLoginFlowWithPasswordMethod) GetPasswordIdentifier ¶

func (o *UpdateLoginFlowWithPasswordMethod) GetPasswordIdentifier() string

GetPasswordIdentifier returns the PasswordIdentifier field value if set, zero value otherwise.

func (*UpdateLoginFlowWithPasswordMethod) GetPasswordIdentifierOk ¶

func (o *UpdateLoginFlowWithPasswordMethod) GetPasswordIdentifierOk() (*string, bool)

GetPasswordIdentifierOk returns a tuple with the PasswordIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithPasswordMethod) GetPasswordOk ¶

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

GetPasswordOk returns a tuple with the Password field value and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithPasswordMethod) HasCsrfToken ¶

func (o *UpdateLoginFlowWithPasswordMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (*UpdateLoginFlowWithPasswordMethod) HasPasswordIdentifier ¶

func (o *UpdateLoginFlowWithPasswordMethod) HasPasswordIdentifier() bool

HasPasswordIdentifier returns a boolean if a field has been set.

func (UpdateLoginFlowWithPasswordMethod) MarshalJSON ¶

func (o UpdateLoginFlowWithPasswordMethod) MarshalJSON() ([]byte, error)

func (*UpdateLoginFlowWithPasswordMethod) SetCsrfToken ¶

func (o *UpdateLoginFlowWithPasswordMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateLoginFlowWithPasswordMethod) SetIdentifier ¶

func (o *UpdateLoginFlowWithPasswordMethod) SetIdentifier(v string)

SetIdentifier sets field value

func (*UpdateLoginFlowWithPasswordMethod) SetMethod ¶

func (o *UpdateLoginFlowWithPasswordMethod) SetMethod(v string)

SetMethod sets field value

func (*UpdateLoginFlowWithPasswordMethod) SetPassword ¶

func (o *UpdateLoginFlowWithPasswordMethod) SetPassword(v string)

SetPassword sets field value

func (*UpdateLoginFlowWithPasswordMethod) SetPasswordIdentifier ¶

func (o *UpdateLoginFlowWithPasswordMethod) SetPasswordIdentifier(v string)

SetPasswordIdentifier gets a reference to the given string and assigns it to the PasswordIdentifier field.

func (UpdateLoginFlowWithPasswordMethod) ToMap ¶

func (o UpdateLoginFlowWithPasswordMethod) ToMap() (map[string]interface{}, error)

func (*UpdateLoginFlowWithPasswordMethod) UnmarshalJSON ¶

func (o *UpdateLoginFlowWithPasswordMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateLoginFlowWithTotpMethod ¶

type UpdateLoginFlowWithTotpMethod struct {
	// Sending the anti-csrf token is only required for browser login flows.
	CsrfToken *string `json:"csrf_token,omitempty"`
	// Method should be set to \"totp\" when logging in using the TOTP strategy.
	Method string `json:"method"`
	// The TOTP code.
	TotpCode             string `json:"totp_code"`
	AdditionalProperties map[string]interface{}
}

UpdateLoginFlowWithTotpMethod Update Login Flow with TOTP Method

func NewUpdateLoginFlowWithTotpMethod ¶

func NewUpdateLoginFlowWithTotpMethod(method string, totpCode string) *UpdateLoginFlowWithTotpMethod

NewUpdateLoginFlowWithTotpMethod instantiates a new UpdateLoginFlowWithTotpMethod 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 NewUpdateLoginFlowWithTotpMethodWithDefaults ¶

func NewUpdateLoginFlowWithTotpMethodWithDefaults() *UpdateLoginFlowWithTotpMethod

NewUpdateLoginFlowWithTotpMethodWithDefaults instantiates a new UpdateLoginFlowWithTotpMethod 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 (*UpdateLoginFlowWithTotpMethod) GetCsrfToken ¶

func (o *UpdateLoginFlowWithTotpMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateLoginFlowWithTotpMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithTotpMethod) GetMethod ¶

func (o *UpdateLoginFlowWithTotpMethod) GetMethod() string

GetMethod returns the Method field value

func (*UpdateLoginFlowWithTotpMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithTotpMethod) GetTotpCode ¶

func (o *UpdateLoginFlowWithTotpMethod) GetTotpCode() string

GetTotpCode returns the TotpCode field value

func (*UpdateLoginFlowWithTotpMethod) GetTotpCodeOk ¶

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

GetTotpCodeOk returns a tuple with the TotpCode field value and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithTotpMethod) HasCsrfToken ¶

func (o *UpdateLoginFlowWithTotpMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (UpdateLoginFlowWithTotpMethod) MarshalJSON ¶

func (o UpdateLoginFlowWithTotpMethod) MarshalJSON() ([]byte, error)

func (*UpdateLoginFlowWithTotpMethod) SetCsrfToken ¶

func (o *UpdateLoginFlowWithTotpMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateLoginFlowWithTotpMethod) SetMethod ¶

func (o *UpdateLoginFlowWithTotpMethod) SetMethod(v string)

SetMethod sets field value

func (*UpdateLoginFlowWithTotpMethod) SetTotpCode ¶

func (o *UpdateLoginFlowWithTotpMethod) SetTotpCode(v string)

SetTotpCode sets field value

func (UpdateLoginFlowWithTotpMethod) ToMap ¶

func (o UpdateLoginFlowWithTotpMethod) ToMap() (map[string]interface{}, error)

func (*UpdateLoginFlowWithTotpMethod) UnmarshalJSON ¶

func (o *UpdateLoginFlowWithTotpMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateLoginFlowWithWebAuthnMethod ¶

type UpdateLoginFlowWithWebAuthnMethod struct {
	// Sending the anti-csrf token is only required for browser login flows.
	CsrfToken *string `json:"csrf_token,omitempty"`
	// Identifier is the email or username of the user trying to log in.
	Identifier string `json:"identifier"`
	// Method should be set to \"webAuthn\" when logging in using the WebAuthn strategy.
	Method string `json:"method"`
	// Login a WebAuthn Security Key  This must contain the ID of the WebAuthN connection.
	WebauthnLogin        *string `json:"webauthn_login,omitempty"`
	AdditionalProperties map[string]interface{}
}

UpdateLoginFlowWithWebAuthnMethod Update Login Flow with WebAuthn Method

func NewUpdateLoginFlowWithWebAuthnMethod ¶

func NewUpdateLoginFlowWithWebAuthnMethod(identifier string, method string) *UpdateLoginFlowWithWebAuthnMethod

NewUpdateLoginFlowWithWebAuthnMethod instantiates a new UpdateLoginFlowWithWebAuthnMethod 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 NewUpdateLoginFlowWithWebAuthnMethodWithDefaults ¶

func NewUpdateLoginFlowWithWebAuthnMethodWithDefaults() *UpdateLoginFlowWithWebAuthnMethod

NewUpdateLoginFlowWithWebAuthnMethodWithDefaults instantiates a new UpdateLoginFlowWithWebAuthnMethod 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 (*UpdateLoginFlowWithWebAuthnMethod) GetCsrfToken ¶

func (o *UpdateLoginFlowWithWebAuthnMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateLoginFlowWithWebAuthnMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithWebAuthnMethod) GetIdentifier ¶

func (o *UpdateLoginFlowWithWebAuthnMethod) GetIdentifier() string

GetIdentifier returns the Identifier field value

func (*UpdateLoginFlowWithWebAuthnMethod) GetIdentifierOk ¶

func (o *UpdateLoginFlowWithWebAuthnMethod) GetIdentifierOk() (*string, bool)

GetIdentifierOk returns a tuple with the Identifier field value and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithWebAuthnMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateLoginFlowWithWebAuthnMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithWebAuthnMethod) GetWebauthnLogin ¶

func (o *UpdateLoginFlowWithWebAuthnMethod) GetWebauthnLogin() string

GetWebauthnLogin returns the WebauthnLogin field value if set, zero value otherwise.

func (*UpdateLoginFlowWithWebAuthnMethod) GetWebauthnLoginOk ¶

func (o *UpdateLoginFlowWithWebAuthnMethod) GetWebauthnLoginOk() (*string, bool)

GetWebauthnLoginOk returns a tuple with the WebauthnLogin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateLoginFlowWithWebAuthnMethod) HasCsrfToken ¶

func (o *UpdateLoginFlowWithWebAuthnMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (*UpdateLoginFlowWithWebAuthnMethod) HasWebauthnLogin ¶

func (o *UpdateLoginFlowWithWebAuthnMethod) HasWebauthnLogin() bool

HasWebauthnLogin returns a boolean if a field has been set.

func (UpdateLoginFlowWithWebAuthnMethod) MarshalJSON ¶

func (o UpdateLoginFlowWithWebAuthnMethod) MarshalJSON() ([]byte, error)

func (*UpdateLoginFlowWithWebAuthnMethod) SetCsrfToken ¶

func (o *UpdateLoginFlowWithWebAuthnMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateLoginFlowWithWebAuthnMethod) SetIdentifier ¶

func (o *UpdateLoginFlowWithWebAuthnMethod) SetIdentifier(v string)

SetIdentifier sets field value

func (*UpdateLoginFlowWithWebAuthnMethod) SetMethod ¶

func (o *UpdateLoginFlowWithWebAuthnMethod) SetMethod(v string)

SetMethod sets field value

func (*UpdateLoginFlowWithWebAuthnMethod) SetWebauthnLogin ¶

func (o *UpdateLoginFlowWithWebAuthnMethod) SetWebauthnLogin(v string)

SetWebauthnLogin gets a reference to the given string and assigns it to the WebauthnLogin field.

func (UpdateLoginFlowWithWebAuthnMethod) ToMap ¶

func (o UpdateLoginFlowWithWebAuthnMethod) ToMap() (map[string]interface{}, error)

func (*UpdateLoginFlowWithWebAuthnMethod) UnmarshalJSON ¶

func (o *UpdateLoginFlowWithWebAuthnMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateRecoveryFlowBody ¶

type UpdateRecoveryFlowBody struct {
	UpdateRecoveryFlowWithCodeMethod *UpdateRecoveryFlowWithCodeMethod
	UpdateRecoveryFlowWithLinkMethod *UpdateRecoveryFlowWithLinkMethod
}

UpdateRecoveryFlowBody - Update Recovery Flow Request Body

func UpdateRecoveryFlowWithCodeMethodAsUpdateRecoveryFlowBody ¶

func UpdateRecoveryFlowWithCodeMethodAsUpdateRecoveryFlowBody(v *UpdateRecoveryFlowWithCodeMethod) UpdateRecoveryFlowBody

UpdateRecoveryFlowWithCodeMethodAsUpdateRecoveryFlowBody is a convenience function that returns UpdateRecoveryFlowWithCodeMethod wrapped in UpdateRecoveryFlowBody

func UpdateRecoveryFlowWithLinkMethodAsUpdateRecoveryFlowBody ¶

func UpdateRecoveryFlowWithLinkMethodAsUpdateRecoveryFlowBody(v *UpdateRecoveryFlowWithLinkMethod) UpdateRecoveryFlowBody

UpdateRecoveryFlowWithLinkMethodAsUpdateRecoveryFlowBody is a convenience function that returns UpdateRecoveryFlowWithLinkMethod wrapped in UpdateRecoveryFlowBody

func (*UpdateRecoveryFlowBody) GetActualInstance ¶

func (obj *UpdateRecoveryFlowBody) GetActualInstance() interface{}

Get the actual instance

func (UpdateRecoveryFlowBody) MarshalJSON ¶

func (src UpdateRecoveryFlowBody) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UpdateRecoveryFlowBody) UnmarshalJSON ¶

func (dst *UpdateRecoveryFlowBody) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type UpdateRecoveryFlowWithCodeMethod ¶

type UpdateRecoveryFlowWithCodeMethod struct {
	// Code from the recovery email  If you want to submit a code, use this field, but make sure to _not_ include the email field, as well.
	Code *string `json:"code,omitempty"`
	// Sending the anti-csrf token is only required for browser login flows.
	CsrfToken *string `json:"csrf_token,omitempty"`
	// The email address of the account to recover  If the email belongs to a valid account, a recovery email will be sent.  If you want to notify the email address if the account does not exist, see the [notify_unknown_recipients flag](https://www.ory.sh/docs/kratos/self-service/flows/account-recovery-password-reset#attempted-recovery-notifications)  If a code was already sent, including this field in the payload will invalidate the sent code and re-send a new code.  format: email
	Email *string `json:"email,omitempty"`
	// Method is the method that should be used for this recovery flow  Allowed values are `link` and `code`. link RecoveryStrategyLink code RecoveryStrategyCode
	Method               string `json:"method"`
	AdditionalProperties map[string]interface{}
}

UpdateRecoveryFlowWithCodeMethod Update Recovery Flow with Code Method

func NewUpdateRecoveryFlowWithCodeMethod ¶

func NewUpdateRecoveryFlowWithCodeMethod(method string) *UpdateRecoveryFlowWithCodeMethod

NewUpdateRecoveryFlowWithCodeMethod instantiates a new UpdateRecoveryFlowWithCodeMethod 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 NewUpdateRecoveryFlowWithCodeMethodWithDefaults ¶

func NewUpdateRecoveryFlowWithCodeMethodWithDefaults() *UpdateRecoveryFlowWithCodeMethod

NewUpdateRecoveryFlowWithCodeMethodWithDefaults instantiates a new UpdateRecoveryFlowWithCodeMethod 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 (*UpdateRecoveryFlowWithCodeMethod) GetCode ¶

GetCode returns the Code field value if set, zero value otherwise.

func (*UpdateRecoveryFlowWithCodeMethod) GetCodeOk ¶

func (o *UpdateRecoveryFlowWithCodeMethod) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRecoveryFlowWithCodeMethod) GetCsrfToken ¶

func (o *UpdateRecoveryFlowWithCodeMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateRecoveryFlowWithCodeMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRecoveryFlowWithCodeMethod) GetEmail ¶

GetEmail returns the Email field value if set, zero value otherwise.

func (*UpdateRecoveryFlowWithCodeMethod) GetEmailOk ¶

func (o *UpdateRecoveryFlowWithCodeMethod) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRecoveryFlowWithCodeMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateRecoveryFlowWithCodeMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateRecoveryFlowWithCodeMethod) HasCode ¶

HasCode returns a boolean if a field has been set.

func (*UpdateRecoveryFlowWithCodeMethod) HasCsrfToken ¶

func (o *UpdateRecoveryFlowWithCodeMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (*UpdateRecoveryFlowWithCodeMethod) HasEmail ¶

func (o *UpdateRecoveryFlowWithCodeMethod) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (UpdateRecoveryFlowWithCodeMethod) MarshalJSON ¶

func (o UpdateRecoveryFlowWithCodeMethod) MarshalJSON() ([]byte, error)

func (*UpdateRecoveryFlowWithCodeMethod) SetCode ¶

SetCode gets a reference to the given string and assigns it to the Code field.

func (*UpdateRecoveryFlowWithCodeMethod) SetCsrfToken ¶

func (o *UpdateRecoveryFlowWithCodeMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateRecoveryFlowWithCodeMethod) SetEmail ¶

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*UpdateRecoveryFlowWithCodeMethod) SetMethod ¶

func (o *UpdateRecoveryFlowWithCodeMethod) SetMethod(v string)

SetMethod sets field value

func (UpdateRecoveryFlowWithCodeMethod) ToMap ¶

func (o UpdateRecoveryFlowWithCodeMethod) ToMap() (map[string]interface{}, error)

func (*UpdateRecoveryFlowWithCodeMethod) UnmarshalJSON ¶

func (o *UpdateRecoveryFlowWithCodeMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateRecoveryFlowWithLinkMethod ¶

type UpdateRecoveryFlowWithLinkMethod struct {
	// Sending the anti-csrf token is only required for browser login flows.
	CsrfToken *string `json:"csrf_token,omitempty"`
	// Email to Recover  Needs to be set when initiating the flow. If the email is a registered recovery email, a recovery link will be sent. If the email is not known, a email with details on what happened will be sent instead.  format: email
	Email string `json:"email"`
	// Method is the method that should be used for this recovery flow  Allowed values are `link` and `code` link RecoveryStrategyLink code RecoveryStrategyCode
	Method               string `json:"method"`
	AdditionalProperties map[string]interface{}
}

UpdateRecoveryFlowWithLinkMethod Update Recovery Flow with Link Method

func NewUpdateRecoveryFlowWithLinkMethod ¶

func NewUpdateRecoveryFlowWithLinkMethod(email string, method string) *UpdateRecoveryFlowWithLinkMethod

NewUpdateRecoveryFlowWithLinkMethod instantiates a new UpdateRecoveryFlowWithLinkMethod 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 NewUpdateRecoveryFlowWithLinkMethodWithDefaults ¶

func NewUpdateRecoveryFlowWithLinkMethodWithDefaults() *UpdateRecoveryFlowWithLinkMethod

NewUpdateRecoveryFlowWithLinkMethodWithDefaults instantiates a new UpdateRecoveryFlowWithLinkMethod 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 (*UpdateRecoveryFlowWithLinkMethod) GetCsrfToken ¶

func (o *UpdateRecoveryFlowWithLinkMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateRecoveryFlowWithLinkMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRecoveryFlowWithLinkMethod) GetEmail ¶

GetEmail returns the Email field value

func (*UpdateRecoveryFlowWithLinkMethod) GetEmailOk ¶

func (o *UpdateRecoveryFlowWithLinkMethod) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*UpdateRecoveryFlowWithLinkMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateRecoveryFlowWithLinkMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateRecoveryFlowWithLinkMethod) HasCsrfToken ¶

func (o *UpdateRecoveryFlowWithLinkMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (UpdateRecoveryFlowWithLinkMethod) MarshalJSON ¶

func (o UpdateRecoveryFlowWithLinkMethod) MarshalJSON() ([]byte, error)

func (*UpdateRecoveryFlowWithLinkMethod) SetCsrfToken ¶

func (o *UpdateRecoveryFlowWithLinkMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateRecoveryFlowWithLinkMethod) SetEmail ¶

SetEmail sets field value

func (*UpdateRecoveryFlowWithLinkMethod) SetMethod ¶

func (o *UpdateRecoveryFlowWithLinkMethod) SetMethod(v string)

SetMethod sets field value

func (UpdateRecoveryFlowWithLinkMethod) ToMap ¶

func (o UpdateRecoveryFlowWithLinkMethod) ToMap() (map[string]interface{}, error)

func (*UpdateRecoveryFlowWithLinkMethod) UnmarshalJSON ¶

func (o *UpdateRecoveryFlowWithLinkMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateRegistrationFlowBody ¶

type UpdateRegistrationFlowBody struct {
	UpdateRegistrationFlowWithCodeMethod     *UpdateRegistrationFlowWithCodeMethod
	UpdateRegistrationFlowWithOidcMethod     *UpdateRegistrationFlowWithOidcMethod
	UpdateRegistrationFlowWithPasswordMethod *UpdateRegistrationFlowWithPasswordMethod
	UpdateRegistrationFlowWithWebAuthnMethod *UpdateRegistrationFlowWithWebAuthnMethod
}

UpdateRegistrationFlowBody - Update Registration Request Body

func UpdateRegistrationFlowWithCodeMethodAsUpdateRegistrationFlowBody ¶

func UpdateRegistrationFlowWithCodeMethodAsUpdateRegistrationFlowBody(v *UpdateRegistrationFlowWithCodeMethod) UpdateRegistrationFlowBody

UpdateRegistrationFlowWithCodeMethodAsUpdateRegistrationFlowBody is a convenience function that returns UpdateRegistrationFlowWithCodeMethod wrapped in UpdateRegistrationFlowBody

func UpdateRegistrationFlowWithOidcMethodAsUpdateRegistrationFlowBody ¶

func UpdateRegistrationFlowWithOidcMethodAsUpdateRegistrationFlowBody(v *UpdateRegistrationFlowWithOidcMethod) UpdateRegistrationFlowBody

UpdateRegistrationFlowWithOidcMethodAsUpdateRegistrationFlowBody is a convenience function that returns UpdateRegistrationFlowWithOidcMethod wrapped in UpdateRegistrationFlowBody

func UpdateRegistrationFlowWithPasswordMethodAsUpdateRegistrationFlowBody ¶

func UpdateRegistrationFlowWithPasswordMethodAsUpdateRegistrationFlowBody(v *UpdateRegistrationFlowWithPasswordMethod) UpdateRegistrationFlowBody

UpdateRegistrationFlowWithPasswordMethodAsUpdateRegistrationFlowBody is a convenience function that returns UpdateRegistrationFlowWithPasswordMethod wrapped in UpdateRegistrationFlowBody

func UpdateRegistrationFlowWithWebAuthnMethodAsUpdateRegistrationFlowBody ¶

func UpdateRegistrationFlowWithWebAuthnMethodAsUpdateRegistrationFlowBody(v *UpdateRegistrationFlowWithWebAuthnMethod) UpdateRegistrationFlowBody

UpdateRegistrationFlowWithWebAuthnMethodAsUpdateRegistrationFlowBody is a convenience function that returns UpdateRegistrationFlowWithWebAuthnMethod wrapped in UpdateRegistrationFlowBody

func (*UpdateRegistrationFlowBody) GetActualInstance ¶

func (obj *UpdateRegistrationFlowBody) GetActualInstance() interface{}

Get the actual instance

func (UpdateRegistrationFlowBody) MarshalJSON ¶

func (src UpdateRegistrationFlowBody) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UpdateRegistrationFlowBody) UnmarshalJSON ¶

func (dst *UpdateRegistrationFlowBody) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type UpdateRegistrationFlowWithCodeMethod ¶

type UpdateRegistrationFlowWithCodeMethod struct {
	// The OTP Code sent to the user
	Code *string `json:"code,omitempty"`
	// The CSRF Token
	CsrfToken *string `json:"csrf_token,omitempty"`
	// Method to use  This field must be set to `code` when using the code method.
	Method string `json:"method"`
	// Resend restarts the flow with a new code
	Resend *string `json:"resend,omitempty"`
	// The identity's traits
	Traits map[string]interface{} `json:"traits"`
	// Transient data to pass along to any webhooks
	TransientPayload     map[string]interface{} `json:"transient_payload,omitempty"`
	AdditionalProperties map[string]interface{}
}

UpdateRegistrationFlowWithCodeMethod Update Registration Flow with Code Method

func NewUpdateRegistrationFlowWithCodeMethod ¶

func NewUpdateRegistrationFlowWithCodeMethod(method string, traits map[string]interface{}) *UpdateRegistrationFlowWithCodeMethod

NewUpdateRegistrationFlowWithCodeMethod instantiates a new UpdateRegistrationFlowWithCodeMethod 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 NewUpdateRegistrationFlowWithCodeMethodWithDefaults ¶

func NewUpdateRegistrationFlowWithCodeMethodWithDefaults() *UpdateRegistrationFlowWithCodeMethod

NewUpdateRegistrationFlowWithCodeMethodWithDefaults instantiates a new UpdateRegistrationFlowWithCodeMethod 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 (*UpdateRegistrationFlowWithCodeMethod) GetCode ¶

GetCode returns the Code field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithCodeMethod) GetCodeOk ¶

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithCodeMethod) GetCsrfToken ¶

func (o *UpdateRegistrationFlowWithCodeMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithCodeMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithCodeMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateRegistrationFlowWithCodeMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithCodeMethod) GetResend ¶

GetResend returns the Resend field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithCodeMethod) GetResendOk ¶

func (o *UpdateRegistrationFlowWithCodeMethod) GetResendOk() (*string, bool)

GetResendOk returns a tuple with the Resend field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithCodeMethod) GetTraits ¶

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

GetTraits returns the Traits field value

func (*UpdateRegistrationFlowWithCodeMethod) GetTraitsOk ¶

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

GetTraitsOk returns a tuple with the Traits field value and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithCodeMethod) GetTransientPayload ¶

func (o *UpdateRegistrationFlowWithCodeMethod) GetTransientPayload() map[string]interface{}

GetTransientPayload returns the TransientPayload field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithCodeMethod) GetTransientPayloadOk ¶

func (o *UpdateRegistrationFlowWithCodeMethod) GetTransientPayloadOk() (map[string]interface{}, bool)

GetTransientPayloadOk returns a tuple with the TransientPayload field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithCodeMethod) HasCode ¶

HasCode returns a boolean if a field has been set.

func (*UpdateRegistrationFlowWithCodeMethod) HasCsrfToken ¶

func (o *UpdateRegistrationFlowWithCodeMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (*UpdateRegistrationFlowWithCodeMethod) HasResend ¶

HasResend returns a boolean if a field has been set.

func (*UpdateRegistrationFlowWithCodeMethod) HasTransientPayload ¶

func (o *UpdateRegistrationFlowWithCodeMethod) HasTransientPayload() bool

HasTransientPayload returns a boolean if a field has been set.

func (UpdateRegistrationFlowWithCodeMethod) MarshalJSON ¶

func (o UpdateRegistrationFlowWithCodeMethod) MarshalJSON() ([]byte, error)

func (*UpdateRegistrationFlowWithCodeMethod) SetCode ¶

SetCode gets a reference to the given string and assigns it to the Code field.

func (*UpdateRegistrationFlowWithCodeMethod) SetCsrfToken ¶

func (o *UpdateRegistrationFlowWithCodeMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateRegistrationFlowWithCodeMethod) SetMethod ¶

SetMethod sets field value

func (*UpdateRegistrationFlowWithCodeMethod) SetResend ¶

SetResend gets a reference to the given string and assigns it to the Resend field.

func (*UpdateRegistrationFlowWithCodeMethod) SetTraits ¶

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

SetTraits sets field value

func (*UpdateRegistrationFlowWithCodeMethod) SetTransientPayload ¶

func (o *UpdateRegistrationFlowWithCodeMethod) SetTransientPayload(v map[string]interface{})

SetTransientPayload gets a reference to the given map[string]interface{} and assigns it to the TransientPayload field.

func (UpdateRegistrationFlowWithCodeMethod) ToMap ¶

func (o UpdateRegistrationFlowWithCodeMethod) ToMap() (map[string]interface{}, error)

func (*UpdateRegistrationFlowWithCodeMethod) UnmarshalJSON ¶

func (o *UpdateRegistrationFlowWithCodeMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateRegistrationFlowWithOidcMethod ¶

type UpdateRegistrationFlowWithOidcMethod struct {
	// The CSRF Token
	CsrfToken *string `json:"csrf_token,omitempty"`
	// IDToken is an optional id token provided by an OIDC provider  If submitted, it is verified using the OIDC provider's public key set and the claims are used to populate the OIDC credentials of the identity. If the OIDC provider does not store additional claims (such as name, etc.) in the IDToken itself, you can use the `traits` field to populate the identity's traits. Note, that Apple only includes the users email in the IDToken.  Supported providers are Apple
	IdToken *string `json:"id_token,omitempty"`
	// IDTokenNonce is the nonce, used when generating the IDToken. If the provider supports nonce validation, the nonce will be validated against this value and is required.
	IdTokenNonce *string `json:"id_token_nonce,omitempty"`
	// Method to use  This field must be set to `oidc` when using the oidc method.
	Method string `json:"method"`
	// The provider to register with
	Provider string `json:"provider"`
	// The identity traits
	Traits map[string]interface{} `json:"traits,omitempty"`
	// Transient data to pass along to any webhooks
	TransientPayload map[string]interface{} `json:"transient_payload,omitempty"`
	// UpstreamParameters are the parameters that are passed to the upstream identity provider.  These parameters are optional and depend on what the upstream identity provider supports. Supported parameters are: `login_hint` (string): The `login_hint` parameter suppresses the account chooser and either pre-fills the email box on the sign-in form, or selects the proper session. `hd` (string): The `hd` parameter limits the login/registration process to a Google Organization, e.g. `mycollege.edu`. `prompt` (string): The `prompt` specifies whether the Authorization Server prompts the End-User for reauthentication and consent, e.g. `select_account`.
	UpstreamParameters   map[string]interface{} `json:"upstream_parameters,omitempty"`
	AdditionalProperties map[string]interface{}
}

UpdateRegistrationFlowWithOidcMethod Update Registration Flow with OpenID Connect Method

func NewUpdateRegistrationFlowWithOidcMethod ¶

func NewUpdateRegistrationFlowWithOidcMethod(method string, provider string) *UpdateRegistrationFlowWithOidcMethod

NewUpdateRegistrationFlowWithOidcMethod instantiates a new UpdateRegistrationFlowWithOidcMethod 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 NewUpdateRegistrationFlowWithOidcMethodWithDefaults ¶

func NewUpdateRegistrationFlowWithOidcMethodWithDefaults() *UpdateRegistrationFlowWithOidcMethod

NewUpdateRegistrationFlowWithOidcMethodWithDefaults instantiates a new UpdateRegistrationFlowWithOidcMethod 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 (*UpdateRegistrationFlowWithOidcMethod) GetCsrfToken ¶

func (o *UpdateRegistrationFlowWithOidcMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithOidcMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithOidcMethod) GetIdToken ¶

GetIdToken returns the IdToken field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithOidcMethod) GetIdTokenNonce ¶

func (o *UpdateRegistrationFlowWithOidcMethod) GetIdTokenNonce() string

GetIdTokenNonce returns the IdTokenNonce field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithOidcMethod) GetIdTokenNonceOk ¶

func (o *UpdateRegistrationFlowWithOidcMethod) GetIdTokenNonceOk() (*string, bool)

GetIdTokenNonceOk returns a tuple with the IdTokenNonce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithOidcMethod) GetIdTokenOk ¶

func (o *UpdateRegistrationFlowWithOidcMethod) GetIdTokenOk() (*string, bool)

GetIdTokenOk returns a tuple with the IdToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithOidcMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateRegistrationFlowWithOidcMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithOidcMethod) GetProvider ¶

GetProvider returns the Provider field value

func (*UpdateRegistrationFlowWithOidcMethod) GetProviderOk ¶

func (o *UpdateRegistrationFlowWithOidcMethod) GetProviderOk() (*string, bool)

GetProviderOk returns a tuple with the Provider field value and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithOidcMethod) GetTraits ¶

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

GetTraits returns the Traits field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithOidcMethod) GetTraitsOk ¶

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

GetTraitsOk returns a tuple with the Traits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithOidcMethod) GetTransientPayload ¶

func (o *UpdateRegistrationFlowWithOidcMethod) GetTransientPayload() map[string]interface{}

GetTransientPayload returns the TransientPayload field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithOidcMethod) GetTransientPayloadOk ¶

func (o *UpdateRegistrationFlowWithOidcMethod) GetTransientPayloadOk() (map[string]interface{}, bool)

GetTransientPayloadOk returns a tuple with the TransientPayload field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithOidcMethod) GetUpstreamParameters ¶

func (o *UpdateRegistrationFlowWithOidcMethod) GetUpstreamParameters() map[string]interface{}

GetUpstreamParameters returns the UpstreamParameters field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithOidcMethod) GetUpstreamParametersOk ¶

func (o *UpdateRegistrationFlowWithOidcMethod) GetUpstreamParametersOk() (map[string]interface{}, bool)

GetUpstreamParametersOk returns a tuple with the UpstreamParameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithOidcMethod) HasCsrfToken ¶

func (o *UpdateRegistrationFlowWithOidcMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (*UpdateRegistrationFlowWithOidcMethod) HasIdToken ¶

HasIdToken returns a boolean if a field has been set.

func (*UpdateRegistrationFlowWithOidcMethod) HasIdTokenNonce ¶

func (o *UpdateRegistrationFlowWithOidcMethod) HasIdTokenNonce() bool

HasIdTokenNonce returns a boolean if a field has been set.

func (*UpdateRegistrationFlowWithOidcMethod) HasTraits ¶

HasTraits returns a boolean if a field has been set.

func (*UpdateRegistrationFlowWithOidcMethod) HasTransientPayload ¶

func (o *UpdateRegistrationFlowWithOidcMethod) HasTransientPayload() bool

HasTransientPayload returns a boolean if a field has been set.

func (*UpdateRegistrationFlowWithOidcMethod) HasUpstreamParameters ¶

func (o *UpdateRegistrationFlowWithOidcMethod) HasUpstreamParameters() bool

HasUpstreamParameters returns a boolean if a field has been set.

func (UpdateRegistrationFlowWithOidcMethod) MarshalJSON ¶

func (o UpdateRegistrationFlowWithOidcMethod) MarshalJSON() ([]byte, error)

func (*UpdateRegistrationFlowWithOidcMethod) SetCsrfToken ¶

func (o *UpdateRegistrationFlowWithOidcMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateRegistrationFlowWithOidcMethod) SetIdToken ¶

SetIdToken gets a reference to the given string and assigns it to the IdToken field.

func (*UpdateRegistrationFlowWithOidcMethod) SetIdTokenNonce ¶

func (o *UpdateRegistrationFlowWithOidcMethod) SetIdTokenNonce(v string)

SetIdTokenNonce gets a reference to the given string and assigns it to the IdTokenNonce field.

func (*UpdateRegistrationFlowWithOidcMethod) SetMethod ¶

SetMethod sets field value

func (*UpdateRegistrationFlowWithOidcMethod) SetProvider ¶

func (o *UpdateRegistrationFlowWithOidcMethod) SetProvider(v string)

SetProvider sets field value

func (*UpdateRegistrationFlowWithOidcMethod) SetTraits ¶

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

SetTraits gets a reference to the given map[string]interface{} and assigns it to the Traits field.

func (*UpdateRegistrationFlowWithOidcMethod) SetTransientPayload ¶

func (o *UpdateRegistrationFlowWithOidcMethod) SetTransientPayload(v map[string]interface{})

SetTransientPayload gets a reference to the given map[string]interface{} and assigns it to the TransientPayload field.

func (*UpdateRegistrationFlowWithOidcMethod) SetUpstreamParameters ¶

func (o *UpdateRegistrationFlowWithOidcMethod) SetUpstreamParameters(v map[string]interface{})

SetUpstreamParameters gets a reference to the given map[string]interface{} and assigns it to the UpstreamParameters field.

func (UpdateRegistrationFlowWithOidcMethod) ToMap ¶

func (o UpdateRegistrationFlowWithOidcMethod) ToMap() (map[string]interface{}, error)

func (*UpdateRegistrationFlowWithOidcMethod) UnmarshalJSON ¶

func (o *UpdateRegistrationFlowWithOidcMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateRegistrationFlowWithPasswordMethod ¶

type UpdateRegistrationFlowWithPasswordMethod struct {
	// The CSRF Token
	CsrfToken *string `json:"csrf_token,omitempty"`
	// Method to use  This field must be set to `password` when using the password method.
	Method string `json:"method"`
	// Password to sign the user up with
	Password string `json:"password"`
	// The identity's traits
	Traits map[string]interface{} `json:"traits"`
	// Transient data to pass along to any webhooks
	TransientPayload     map[string]interface{} `json:"transient_payload,omitempty"`
	AdditionalProperties map[string]interface{}
}

UpdateRegistrationFlowWithPasswordMethod Update Registration Flow with Password Method

func NewUpdateRegistrationFlowWithPasswordMethod ¶

func NewUpdateRegistrationFlowWithPasswordMethod(method string, password string, traits map[string]interface{}) *UpdateRegistrationFlowWithPasswordMethod

NewUpdateRegistrationFlowWithPasswordMethod instantiates a new UpdateRegistrationFlowWithPasswordMethod 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 NewUpdateRegistrationFlowWithPasswordMethodWithDefaults ¶

func NewUpdateRegistrationFlowWithPasswordMethodWithDefaults() *UpdateRegistrationFlowWithPasswordMethod

NewUpdateRegistrationFlowWithPasswordMethodWithDefaults instantiates a new UpdateRegistrationFlowWithPasswordMethod 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 (*UpdateRegistrationFlowWithPasswordMethod) GetCsrfToken ¶

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithPasswordMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithPasswordMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateRegistrationFlowWithPasswordMethod) GetMethodOk ¶

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithPasswordMethod) GetPassword ¶

GetPassword returns the Password field value

func (*UpdateRegistrationFlowWithPasswordMethod) GetPasswordOk ¶

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

GetPasswordOk returns a tuple with the Password field value and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithPasswordMethod) GetTraits ¶

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

GetTraits returns the Traits field value

func (*UpdateRegistrationFlowWithPasswordMethod) GetTraitsOk ¶

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

GetTraitsOk returns a tuple with the Traits field value and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithPasswordMethod) GetTransientPayload ¶

func (o *UpdateRegistrationFlowWithPasswordMethod) GetTransientPayload() map[string]interface{}

GetTransientPayload returns the TransientPayload field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithPasswordMethod) GetTransientPayloadOk ¶

func (o *UpdateRegistrationFlowWithPasswordMethod) GetTransientPayloadOk() (map[string]interface{}, bool)

GetTransientPayloadOk returns a tuple with the TransientPayload field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithPasswordMethod) HasCsrfToken ¶

HasCsrfToken returns a boolean if a field has been set.

func (*UpdateRegistrationFlowWithPasswordMethod) HasTransientPayload ¶

func (o *UpdateRegistrationFlowWithPasswordMethod) HasTransientPayload() bool

HasTransientPayload returns a boolean if a field has been set.

func (UpdateRegistrationFlowWithPasswordMethod) MarshalJSON ¶

func (*UpdateRegistrationFlowWithPasswordMethod) SetCsrfToken ¶

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateRegistrationFlowWithPasswordMethod) SetMethod ¶

SetMethod sets field value

func (*UpdateRegistrationFlowWithPasswordMethod) SetPassword ¶

SetPassword sets field value

func (*UpdateRegistrationFlowWithPasswordMethod) SetTraits ¶

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

SetTraits sets field value

func (*UpdateRegistrationFlowWithPasswordMethod) SetTransientPayload ¶

func (o *UpdateRegistrationFlowWithPasswordMethod) SetTransientPayload(v map[string]interface{})

SetTransientPayload gets a reference to the given map[string]interface{} and assigns it to the TransientPayload field.

func (UpdateRegistrationFlowWithPasswordMethod) ToMap ¶

func (o UpdateRegistrationFlowWithPasswordMethod) ToMap() (map[string]interface{}, error)

func (*UpdateRegistrationFlowWithPasswordMethod) UnmarshalJSON ¶

func (o *UpdateRegistrationFlowWithPasswordMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateRegistrationFlowWithWebAuthnMethod ¶

type UpdateRegistrationFlowWithWebAuthnMethod struct {
	// CSRFToken is the anti-CSRF token
	CsrfToken *string `json:"csrf_token,omitempty"`
	// Method  Should be set to \"webauthn\" when trying to add, update, or remove a webAuthn pairing.
	Method string `json:"method"`
	// The identity's traits
	Traits map[string]interface{} `json:"traits"`
	// Transient data to pass along to any webhooks
	TransientPayload map[string]interface{} `json:"transient_payload,omitempty"`
	// Register a WebAuthn Security Key  It is expected that the JSON returned by the WebAuthn registration process is included here.
	WebauthnRegister *string `json:"webauthn_register,omitempty"`
	// Name of the WebAuthn Security Key to be Added  A human-readable name for the security key which will be added.
	WebauthnRegisterDisplayname *string `json:"webauthn_register_displayname,omitempty"`
	AdditionalProperties        map[string]interface{}
}

UpdateRegistrationFlowWithWebAuthnMethod Update Registration Flow with WebAuthn Method

func NewUpdateRegistrationFlowWithWebAuthnMethod ¶

func NewUpdateRegistrationFlowWithWebAuthnMethod(method string, traits map[string]interface{}) *UpdateRegistrationFlowWithWebAuthnMethod

NewUpdateRegistrationFlowWithWebAuthnMethod instantiates a new UpdateRegistrationFlowWithWebAuthnMethod 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 NewUpdateRegistrationFlowWithWebAuthnMethodWithDefaults ¶

func NewUpdateRegistrationFlowWithWebAuthnMethodWithDefaults() *UpdateRegistrationFlowWithWebAuthnMethod

NewUpdateRegistrationFlowWithWebAuthnMethodWithDefaults instantiates a new UpdateRegistrationFlowWithWebAuthnMethod 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 (*UpdateRegistrationFlowWithWebAuthnMethod) GetCsrfToken ¶

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithWebAuthnMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithWebAuthnMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateRegistrationFlowWithWebAuthnMethod) GetMethodOk ¶

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithWebAuthnMethod) GetTraits ¶

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

GetTraits returns the Traits field value

func (*UpdateRegistrationFlowWithWebAuthnMethod) GetTraitsOk ¶

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

GetTraitsOk returns a tuple with the Traits field value and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithWebAuthnMethod) GetTransientPayload ¶

func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetTransientPayload() map[string]interface{}

GetTransientPayload returns the TransientPayload field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithWebAuthnMethod) GetTransientPayloadOk ¶

func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetTransientPayloadOk() (map[string]interface{}, bool)

GetTransientPayloadOk returns a tuple with the TransientPayload field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithWebAuthnMethod) GetWebauthnRegister ¶

func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetWebauthnRegister() string

GetWebauthnRegister returns the WebauthnRegister field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithWebAuthnMethod) GetWebauthnRegisterDisplayname ¶

func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetWebauthnRegisterDisplayname() string

GetWebauthnRegisterDisplayname returns the WebauthnRegisterDisplayname field value if set, zero value otherwise.

func (*UpdateRegistrationFlowWithWebAuthnMethod) GetWebauthnRegisterDisplaynameOk ¶

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

GetWebauthnRegisterDisplaynameOk returns a tuple with the WebauthnRegisterDisplayname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithWebAuthnMethod) GetWebauthnRegisterOk ¶

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

GetWebauthnRegisterOk returns a tuple with the WebauthnRegister field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateRegistrationFlowWithWebAuthnMethod) HasCsrfToken ¶

HasCsrfToken returns a boolean if a field has been set.

func (*UpdateRegistrationFlowWithWebAuthnMethod) HasTransientPayload ¶

func (o *UpdateRegistrationFlowWithWebAuthnMethod) HasTransientPayload() bool

HasTransientPayload returns a boolean if a field has been set.

func (*UpdateRegistrationFlowWithWebAuthnMethod) HasWebauthnRegister ¶

func (o *UpdateRegistrationFlowWithWebAuthnMethod) HasWebauthnRegister() bool

HasWebauthnRegister returns a boolean if a field has been set.

func (*UpdateRegistrationFlowWithWebAuthnMethod) HasWebauthnRegisterDisplayname ¶

func (o *UpdateRegistrationFlowWithWebAuthnMethod) HasWebauthnRegisterDisplayname() bool

HasWebauthnRegisterDisplayname returns a boolean if a field has been set.

func (UpdateRegistrationFlowWithWebAuthnMethod) MarshalJSON ¶

func (*UpdateRegistrationFlowWithWebAuthnMethod) SetCsrfToken ¶

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateRegistrationFlowWithWebAuthnMethod) SetMethod ¶

SetMethod sets field value

func (*UpdateRegistrationFlowWithWebAuthnMethod) SetTraits ¶

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

SetTraits sets field value

func (*UpdateRegistrationFlowWithWebAuthnMethod) SetTransientPayload ¶

func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetTransientPayload(v map[string]interface{})

SetTransientPayload gets a reference to the given map[string]interface{} and assigns it to the TransientPayload field.

func (*UpdateRegistrationFlowWithWebAuthnMethod) SetWebauthnRegister ¶

func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetWebauthnRegister(v string)

SetWebauthnRegister gets a reference to the given string and assigns it to the WebauthnRegister field.

func (*UpdateRegistrationFlowWithWebAuthnMethod) SetWebauthnRegisterDisplayname ¶

func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetWebauthnRegisterDisplayname(v string)

SetWebauthnRegisterDisplayname gets a reference to the given string and assigns it to the WebauthnRegisterDisplayname field.

func (UpdateRegistrationFlowWithWebAuthnMethod) ToMap ¶

func (o UpdateRegistrationFlowWithWebAuthnMethod) ToMap() (map[string]interface{}, error)

func (*UpdateRegistrationFlowWithWebAuthnMethod) UnmarshalJSON ¶

func (o *UpdateRegistrationFlowWithWebAuthnMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateSettingsFlowBody ¶

type UpdateSettingsFlowBody struct {
	UpdateSettingsFlowWithLookupMethod   *UpdateSettingsFlowWithLookupMethod
	UpdateSettingsFlowWithOidcMethod     *UpdateSettingsFlowWithOidcMethod
	UpdateSettingsFlowWithPasswordMethod *UpdateSettingsFlowWithPasswordMethod
	UpdateSettingsFlowWithProfileMethod  *UpdateSettingsFlowWithProfileMethod
	UpdateSettingsFlowWithTotpMethod     *UpdateSettingsFlowWithTotpMethod
	UpdateSettingsFlowWithWebAuthnMethod *UpdateSettingsFlowWithWebAuthnMethod
}

UpdateSettingsFlowBody - Update Settings Flow Request Body

func UpdateSettingsFlowWithLookupMethodAsUpdateSettingsFlowBody ¶

func UpdateSettingsFlowWithLookupMethodAsUpdateSettingsFlowBody(v *UpdateSettingsFlowWithLookupMethod) UpdateSettingsFlowBody

UpdateSettingsFlowWithLookupMethodAsUpdateSettingsFlowBody is a convenience function that returns UpdateSettingsFlowWithLookupMethod wrapped in UpdateSettingsFlowBody

func UpdateSettingsFlowWithOidcMethodAsUpdateSettingsFlowBody ¶

func UpdateSettingsFlowWithOidcMethodAsUpdateSettingsFlowBody(v *UpdateSettingsFlowWithOidcMethod) UpdateSettingsFlowBody

UpdateSettingsFlowWithOidcMethodAsUpdateSettingsFlowBody is a convenience function that returns UpdateSettingsFlowWithOidcMethod wrapped in UpdateSettingsFlowBody

func UpdateSettingsFlowWithPasswordMethodAsUpdateSettingsFlowBody ¶

func UpdateSettingsFlowWithPasswordMethodAsUpdateSettingsFlowBody(v *UpdateSettingsFlowWithPasswordMethod) UpdateSettingsFlowBody

UpdateSettingsFlowWithPasswordMethodAsUpdateSettingsFlowBody is a convenience function that returns UpdateSettingsFlowWithPasswordMethod wrapped in UpdateSettingsFlowBody

func UpdateSettingsFlowWithProfileMethodAsUpdateSettingsFlowBody ¶

func UpdateSettingsFlowWithProfileMethodAsUpdateSettingsFlowBody(v *UpdateSettingsFlowWithProfileMethod) UpdateSettingsFlowBody

UpdateSettingsFlowWithProfileMethodAsUpdateSettingsFlowBody is a convenience function that returns UpdateSettingsFlowWithProfileMethod wrapped in UpdateSettingsFlowBody

func UpdateSettingsFlowWithTotpMethodAsUpdateSettingsFlowBody ¶

func UpdateSettingsFlowWithTotpMethodAsUpdateSettingsFlowBody(v *UpdateSettingsFlowWithTotpMethod) UpdateSettingsFlowBody

UpdateSettingsFlowWithTotpMethodAsUpdateSettingsFlowBody is a convenience function that returns UpdateSettingsFlowWithTotpMethod wrapped in UpdateSettingsFlowBody

func UpdateSettingsFlowWithWebAuthnMethodAsUpdateSettingsFlowBody ¶

func UpdateSettingsFlowWithWebAuthnMethodAsUpdateSettingsFlowBody(v *UpdateSettingsFlowWithWebAuthnMethod) UpdateSettingsFlowBody

UpdateSettingsFlowWithWebAuthnMethodAsUpdateSettingsFlowBody is a convenience function that returns UpdateSettingsFlowWithWebAuthnMethod wrapped in UpdateSettingsFlowBody

func (*UpdateSettingsFlowBody) GetActualInstance ¶

func (obj *UpdateSettingsFlowBody) GetActualInstance() interface{}

Get the actual instance

func (UpdateSettingsFlowBody) MarshalJSON ¶

func (src UpdateSettingsFlowBody) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UpdateSettingsFlowBody) UnmarshalJSON ¶

func (dst *UpdateSettingsFlowBody) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type UpdateSettingsFlowWithLookupMethod ¶

type UpdateSettingsFlowWithLookupMethod struct {
	// CSRFToken is the anti-CSRF token
	CsrfToken *string `json:"csrf_token,omitempty"`
	// If set to true will save the regenerated lookup secrets
	LookupSecretConfirm *bool `json:"lookup_secret_confirm,omitempty"`
	// Disables this method if true.
	LookupSecretDisable *bool `json:"lookup_secret_disable,omitempty"`
	// If set to true will regenerate the lookup secrets
	LookupSecretRegenerate *bool `json:"lookup_secret_regenerate,omitempty"`
	// If set to true will reveal the lookup secrets
	LookupSecretReveal *bool `json:"lookup_secret_reveal,omitempty"`
	// Method  Should be set to \"lookup\" when trying to add, update, or remove a lookup pairing.
	Method               string `json:"method"`
	AdditionalProperties map[string]interface{}
}

UpdateSettingsFlowWithLookupMethod Update Settings Flow with Lookup Method

func NewUpdateSettingsFlowWithLookupMethod ¶

func NewUpdateSettingsFlowWithLookupMethod(method string) *UpdateSettingsFlowWithLookupMethod

NewUpdateSettingsFlowWithLookupMethod instantiates a new UpdateSettingsFlowWithLookupMethod 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 NewUpdateSettingsFlowWithLookupMethodWithDefaults ¶

func NewUpdateSettingsFlowWithLookupMethodWithDefaults() *UpdateSettingsFlowWithLookupMethod

NewUpdateSettingsFlowWithLookupMethodWithDefaults instantiates a new UpdateSettingsFlowWithLookupMethod 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 (*UpdateSettingsFlowWithLookupMethod) GetCsrfToken ¶

func (o *UpdateSettingsFlowWithLookupMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithLookupMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithLookupMethod) GetLookupSecretConfirm ¶

func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretConfirm() bool

GetLookupSecretConfirm returns the LookupSecretConfirm field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithLookupMethod) GetLookupSecretConfirmOk ¶

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

GetLookupSecretConfirmOk returns a tuple with the LookupSecretConfirm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithLookupMethod) GetLookupSecretDisable ¶

func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretDisable() bool

GetLookupSecretDisable returns the LookupSecretDisable field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithLookupMethod) GetLookupSecretDisableOk ¶

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

GetLookupSecretDisableOk returns a tuple with the LookupSecretDisable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithLookupMethod) GetLookupSecretRegenerate ¶

func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretRegenerate() bool

GetLookupSecretRegenerate returns the LookupSecretRegenerate field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithLookupMethod) GetLookupSecretRegenerateOk ¶

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

GetLookupSecretRegenerateOk returns a tuple with the LookupSecretRegenerate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithLookupMethod) GetLookupSecretReveal ¶

func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretReveal() bool

GetLookupSecretReveal returns the LookupSecretReveal field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithLookupMethod) GetLookupSecretRevealOk ¶

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

GetLookupSecretRevealOk returns a tuple with the LookupSecretReveal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithLookupMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateSettingsFlowWithLookupMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithLookupMethod) HasCsrfToken ¶

func (o *UpdateSettingsFlowWithLookupMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (*UpdateSettingsFlowWithLookupMethod) HasLookupSecretConfirm ¶

func (o *UpdateSettingsFlowWithLookupMethod) HasLookupSecretConfirm() bool

HasLookupSecretConfirm returns a boolean if a field has been set.

func (*UpdateSettingsFlowWithLookupMethod) HasLookupSecretDisable ¶

func (o *UpdateSettingsFlowWithLookupMethod) HasLookupSecretDisable() bool

HasLookupSecretDisable returns a boolean if a field has been set.

func (*UpdateSettingsFlowWithLookupMethod) HasLookupSecretRegenerate ¶

func (o *UpdateSettingsFlowWithLookupMethod) HasLookupSecretRegenerate() bool

HasLookupSecretRegenerate returns a boolean if a field has been set.

func (*UpdateSettingsFlowWithLookupMethod) HasLookupSecretReveal ¶

func (o *UpdateSettingsFlowWithLookupMethod) HasLookupSecretReveal() bool

HasLookupSecretReveal returns a boolean if a field has been set.

func (UpdateSettingsFlowWithLookupMethod) MarshalJSON ¶

func (o UpdateSettingsFlowWithLookupMethod) MarshalJSON() ([]byte, error)

func (*UpdateSettingsFlowWithLookupMethod) SetCsrfToken ¶

func (o *UpdateSettingsFlowWithLookupMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateSettingsFlowWithLookupMethod) SetLookupSecretConfirm ¶

func (o *UpdateSettingsFlowWithLookupMethod) SetLookupSecretConfirm(v bool)

SetLookupSecretConfirm gets a reference to the given bool and assigns it to the LookupSecretConfirm field.

func (*UpdateSettingsFlowWithLookupMethod) SetLookupSecretDisable ¶

func (o *UpdateSettingsFlowWithLookupMethod) SetLookupSecretDisable(v bool)

SetLookupSecretDisable gets a reference to the given bool and assigns it to the LookupSecretDisable field.

func (*UpdateSettingsFlowWithLookupMethod) SetLookupSecretRegenerate ¶

func (o *UpdateSettingsFlowWithLookupMethod) SetLookupSecretRegenerate(v bool)

SetLookupSecretRegenerate gets a reference to the given bool and assigns it to the LookupSecretRegenerate field.

func (*UpdateSettingsFlowWithLookupMethod) SetLookupSecretReveal ¶

func (o *UpdateSettingsFlowWithLookupMethod) SetLookupSecretReveal(v bool)

SetLookupSecretReveal gets a reference to the given bool and assigns it to the LookupSecretReveal field.

func (*UpdateSettingsFlowWithLookupMethod) SetMethod ¶

SetMethod sets field value

func (UpdateSettingsFlowWithLookupMethod) ToMap ¶

func (o UpdateSettingsFlowWithLookupMethod) ToMap() (map[string]interface{}, error)

func (*UpdateSettingsFlowWithLookupMethod) UnmarshalJSON ¶

func (o *UpdateSettingsFlowWithLookupMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateSettingsFlowWithOidcMethod ¶

type UpdateSettingsFlowWithOidcMethod struct {
	// Flow ID is the flow's ID.  in: query
	Flow *string `json:"flow,omitempty"`
	// Link this provider  Either this or `unlink` must be set.  type: string in: body
	Link *string `json:"link,omitempty"`
	// Method  Should be set to profile when trying to update a profile.
	Method string `json:"method"`
	// The identity's traits  in: body
	Traits map[string]interface{} `json:"traits,omitempty"`
	// Unlink this provider  Either this or `link` must be set.  type: string in: body
	Unlink *string `json:"unlink,omitempty"`
	// UpstreamParameters are the parameters that are passed to the upstream identity provider.  These parameters are optional and depend on what the upstream identity provider supports. Supported parameters are: `login_hint` (string): The `login_hint` parameter suppresses the account chooser and either pre-fills the email box on the sign-in form, or selects the proper session. `hd` (string): The `hd` parameter limits the login/registration process to a Google Organization, e.g. `mycollege.edu`. `prompt` (string): The `prompt` specifies whether the Authorization Server prompts the End-User for reauthentication and consent, e.g. `select_account`.
	UpstreamParameters   map[string]interface{} `json:"upstream_parameters,omitempty"`
	AdditionalProperties map[string]interface{}
}

UpdateSettingsFlowWithOidcMethod Update Settings Flow with OpenID Connect Method

func NewUpdateSettingsFlowWithOidcMethod ¶

func NewUpdateSettingsFlowWithOidcMethod(method string) *UpdateSettingsFlowWithOidcMethod

NewUpdateSettingsFlowWithOidcMethod instantiates a new UpdateSettingsFlowWithOidcMethod 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 NewUpdateSettingsFlowWithOidcMethodWithDefaults ¶

func NewUpdateSettingsFlowWithOidcMethodWithDefaults() *UpdateSettingsFlowWithOidcMethod

NewUpdateSettingsFlowWithOidcMethodWithDefaults instantiates a new UpdateSettingsFlowWithOidcMethod 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 (*UpdateSettingsFlowWithOidcMethod) GetFlow ¶

GetFlow returns the Flow field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithOidcMethod) GetFlowOk ¶

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

GetFlowOk returns a tuple with the Flow field value if set, nil otherwise and a boolean to check if the value has been set.

GetLink returns the Link field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithOidcMethod) GetLinkOk ¶

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

GetLinkOk returns a tuple with the Link field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithOidcMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateSettingsFlowWithOidcMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithOidcMethod) GetTraits ¶

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

GetTraits returns the Traits field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithOidcMethod) GetTraitsOk ¶

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

GetTraitsOk returns a tuple with the Traits field value if set, nil otherwise and a boolean to check if the value has been set.

GetUnlink returns the Unlink field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithOidcMethod) GetUnlinkOk ¶

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

GetUnlinkOk returns a tuple with the Unlink field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithOidcMethod) GetUpstreamParameters ¶

func (o *UpdateSettingsFlowWithOidcMethod) GetUpstreamParameters() map[string]interface{}

GetUpstreamParameters returns the UpstreamParameters field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithOidcMethod) GetUpstreamParametersOk ¶

func (o *UpdateSettingsFlowWithOidcMethod) GetUpstreamParametersOk() (map[string]interface{}, bool)

GetUpstreamParametersOk returns a tuple with the UpstreamParameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithOidcMethod) HasFlow ¶

HasFlow returns a boolean if a field has been set.

HasLink returns a boolean if a field has been set.

func (*UpdateSettingsFlowWithOidcMethod) HasTraits ¶

func (o *UpdateSettingsFlowWithOidcMethod) HasTraits() bool

HasTraits returns a boolean if a field has been set.

func (o *UpdateSettingsFlowWithOidcMethod) HasUnlink() bool

HasUnlink returns a boolean if a field has been set.

func (*UpdateSettingsFlowWithOidcMethod) HasUpstreamParameters ¶

func (o *UpdateSettingsFlowWithOidcMethod) HasUpstreamParameters() bool

HasUpstreamParameters returns a boolean if a field has been set.

func (UpdateSettingsFlowWithOidcMethod) MarshalJSON ¶

func (o UpdateSettingsFlowWithOidcMethod) MarshalJSON() ([]byte, error)

func (*UpdateSettingsFlowWithOidcMethod) SetFlow ¶

SetFlow gets a reference to the given string and assigns it to the Flow field.

SetLink gets a reference to the given string and assigns it to the Link field.

func (*UpdateSettingsFlowWithOidcMethod) SetMethod ¶

func (o *UpdateSettingsFlowWithOidcMethod) SetMethod(v string)

SetMethod sets field value

func (*UpdateSettingsFlowWithOidcMethod) SetTraits ¶

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

SetTraits gets a reference to the given map[string]interface{} and assigns it to the Traits field.

func (o *UpdateSettingsFlowWithOidcMethod) SetUnlink(v string)

SetUnlink gets a reference to the given string and assigns it to the Unlink field.

func (*UpdateSettingsFlowWithOidcMethod) SetUpstreamParameters ¶

func (o *UpdateSettingsFlowWithOidcMethod) SetUpstreamParameters(v map[string]interface{})

SetUpstreamParameters gets a reference to the given map[string]interface{} and assigns it to the UpstreamParameters field.

func (UpdateSettingsFlowWithOidcMethod) ToMap ¶

func (o UpdateSettingsFlowWithOidcMethod) ToMap() (map[string]interface{}, error)

func (*UpdateSettingsFlowWithOidcMethod) UnmarshalJSON ¶

func (o *UpdateSettingsFlowWithOidcMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateSettingsFlowWithPasswordMethod ¶

type UpdateSettingsFlowWithPasswordMethod struct {
	// CSRFToken is the anti-CSRF token
	CsrfToken *string `json:"csrf_token,omitempty"`
	// Method  Should be set to password when trying to update a password.
	Method string `json:"method"`
	// Password is the updated password
	Password             string `json:"password"`
	AdditionalProperties map[string]interface{}
}

UpdateSettingsFlowWithPasswordMethod Update Settings Flow with Password Method

func NewUpdateSettingsFlowWithPasswordMethod ¶

func NewUpdateSettingsFlowWithPasswordMethod(method string, password string) *UpdateSettingsFlowWithPasswordMethod

NewUpdateSettingsFlowWithPasswordMethod instantiates a new UpdateSettingsFlowWithPasswordMethod 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 NewUpdateSettingsFlowWithPasswordMethodWithDefaults ¶

func NewUpdateSettingsFlowWithPasswordMethodWithDefaults() *UpdateSettingsFlowWithPasswordMethod

NewUpdateSettingsFlowWithPasswordMethodWithDefaults instantiates a new UpdateSettingsFlowWithPasswordMethod 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 (*UpdateSettingsFlowWithPasswordMethod) GetCsrfToken ¶

func (o *UpdateSettingsFlowWithPasswordMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithPasswordMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithPasswordMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateSettingsFlowWithPasswordMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithPasswordMethod) GetPassword ¶

GetPassword returns the Password field value

func (*UpdateSettingsFlowWithPasswordMethod) GetPasswordOk ¶

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

GetPasswordOk returns a tuple with the Password field value and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithPasswordMethod) HasCsrfToken ¶

func (o *UpdateSettingsFlowWithPasswordMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (UpdateSettingsFlowWithPasswordMethod) MarshalJSON ¶

func (o UpdateSettingsFlowWithPasswordMethod) MarshalJSON() ([]byte, error)

func (*UpdateSettingsFlowWithPasswordMethod) SetCsrfToken ¶

func (o *UpdateSettingsFlowWithPasswordMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateSettingsFlowWithPasswordMethod) SetMethod ¶

SetMethod sets field value

func (*UpdateSettingsFlowWithPasswordMethod) SetPassword ¶

func (o *UpdateSettingsFlowWithPasswordMethod) SetPassword(v string)

SetPassword sets field value

func (UpdateSettingsFlowWithPasswordMethod) ToMap ¶

func (o UpdateSettingsFlowWithPasswordMethod) ToMap() (map[string]interface{}, error)

func (*UpdateSettingsFlowWithPasswordMethod) UnmarshalJSON ¶

func (o *UpdateSettingsFlowWithPasswordMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateSettingsFlowWithProfileMethod ¶

type UpdateSettingsFlowWithProfileMethod struct {
	// The Anti-CSRF Token  This token is only required when performing browser flows.
	CsrfToken *string `json:"csrf_token,omitempty"`
	// Method  Should be set to profile when trying to update a profile.
	Method string `json:"method"`
	// Traits  The identity's traits.
	Traits               map[string]interface{} `json:"traits"`
	AdditionalProperties map[string]interface{}
}

UpdateSettingsFlowWithProfileMethod Update Settings Flow with Profile Method

func NewUpdateSettingsFlowWithProfileMethod ¶

func NewUpdateSettingsFlowWithProfileMethod(method string, traits map[string]interface{}) *UpdateSettingsFlowWithProfileMethod

NewUpdateSettingsFlowWithProfileMethod instantiates a new UpdateSettingsFlowWithProfileMethod 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 NewUpdateSettingsFlowWithProfileMethodWithDefaults ¶

func NewUpdateSettingsFlowWithProfileMethodWithDefaults() *UpdateSettingsFlowWithProfileMethod

NewUpdateSettingsFlowWithProfileMethodWithDefaults instantiates a new UpdateSettingsFlowWithProfileMethod 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 (*UpdateSettingsFlowWithProfileMethod) GetCsrfToken ¶

func (o *UpdateSettingsFlowWithProfileMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithProfileMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithProfileMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateSettingsFlowWithProfileMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithProfileMethod) GetTraits ¶

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

GetTraits returns the Traits field value

func (*UpdateSettingsFlowWithProfileMethod) GetTraitsOk ¶

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

GetTraitsOk returns a tuple with the Traits field value and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithProfileMethod) HasCsrfToken ¶

func (o *UpdateSettingsFlowWithProfileMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (UpdateSettingsFlowWithProfileMethod) MarshalJSON ¶

func (o UpdateSettingsFlowWithProfileMethod) MarshalJSON() ([]byte, error)

func (*UpdateSettingsFlowWithProfileMethod) SetCsrfToken ¶

func (o *UpdateSettingsFlowWithProfileMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateSettingsFlowWithProfileMethod) SetMethod ¶

SetMethod sets field value

func (*UpdateSettingsFlowWithProfileMethod) SetTraits ¶

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

SetTraits sets field value

func (UpdateSettingsFlowWithProfileMethod) ToMap ¶

func (o UpdateSettingsFlowWithProfileMethod) ToMap() (map[string]interface{}, error)

func (*UpdateSettingsFlowWithProfileMethod) UnmarshalJSON ¶

func (o *UpdateSettingsFlowWithProfileMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateSettingsFlowWithTotpMethod ¶

type UpdateSettingsFlowWithTotpMethod struct {
	// CSRFToken is the anti-CSRF token
	CsrfToken *string `json:"csrf_token,omitempty"`
	// Method  Should be set to \"totp\" when trying to add, update, or remove a totp pairing.
	Method string `json:"method"`
	// ValidationTOTP must contain a valid TOTP based on the
	TotpCode *string `json:"totp_code,omitempty"`
	// UnlinkTOTP if true will remove the TOTP pairing, effectively removing the credential. This can be used to set up a new TOTP device.
	TotpUnlink           *bool `json:"totp_unlink,omitempty"`
	AdditionalProperties map[string]interface{}
}

UpdateSettingsFlowWithTotpMethod Update Settings Flow with TOTP Method

func NewUpdateSettingsFlowWithTotpMethod ¶

func NewUpdateSettingsFlowWithTotpMethod(method string) *UpdateSettingsFlowWithTotpMethod

NewUpdateSettingsFlowWithTotpMethod instantiates a new UpdateSettingsFlowWithTotpMethod 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 NewUpdateSettingsFlowWithTotpMethodWithDefaults ¶

func NewUpdateSettingsFlowWithTotpMethodWithDefaults() *UpdateSettingsFlowWithTotpMethod

NewUpdateSettingsFlowWithTotpMethodWithDefaults instantiates a new UpdateSettingsFlowWithTotpMethod 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 (*UpdateSettingsFlowWithTotpMethod) GetCsrfToken ¶

func (o *UpdateSettingsFlowWithTotpMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithTotpMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithTotpMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateSettingsFlowWithTotpMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithTotpMethod) GetTotpCode ¶

func (o *UpdateSettingsFlowWithTotpMethod) GetTotpCode() string

GetTotpCode returns the TotpCode field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithTotpMethod) GetTotpCodeOk ¶

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

GetTotpCodeOk returns a tuple with the TotpCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *UpdateSettingsFlowWithTotpMethod) GetTotpUnlink() bool

GetTotpUnlink returns the TotpUnlink field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithTotpMethod) GetTotpUnlinkOk ¶

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

GetTotpUnlinkOk returns a tuple with the TotpUnlink field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithTotpMethod) HasCsrfToken ¶

func (o *UpdateSettingsFlowWithTotpMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (*UpdateSettingsFlowWithTotpMethod) HasTotpCode ¶

func (o *UpdateSettingsFlowWithTotpMethod) HasTotpCode() bool

HasTotpCode returns a boolean if a field has been set.

func (o *UpdateSettingsFlowWithTotpMethod) HasTotpUnlink() bool

HasTotpUnlink returns a boolean if a field has been set.

func (UpdateSettingsFlowWithTotpMethod) MarshalJSON ¶

func (o UpdateSettingsFlowWithTotpMethod) MarshalJSON() ([]byte, error)

func (*UpdateSettingsFlowWithTotpMethod) SetCsrfToken ¶

func (o *UpdateSettingsFlowWithTotpMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateSettingsFlowWithTotpMethod) SetMethod ¶

func (o *UpdateSettingsFlowWithTotpMethod) SetMethod(v string)

SetMethod sets field value

func (*UpdateSettingsFlowWithTotpMethod) SetTotpCode ¶

func (o *UpdateSettingsFlowWithTotpMethod) SetTotpCode(v string)

SetTotpCode gets a reference to the given string and assigns it to the TotpCode field.

func (o *UpdateSettingsFlowWithTotpMethod) SetTotpUnlink(v bool)

SetTotpUnlink gets a reference to the given bool and assigns it to the TotpUnlink field.

func (UpdateSettingsFlowWithTotpMethod) ToMap ¶

func (o UpdateSettingsFlowWithTotpMethod) ToMap() (map[string]interface{}, error)

func (*UpdateSettingsFlowWithTotpMethod) UnmarshalJSON ¶

func (o *UpdateSettingsFlowWithTotpMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateSettingsFlowWithWebAuthnMethod ¶

type UpdateSettingsFlowWithWebAuthnMethod struct {
	// CSRFToken is the anti-CSRF token
	CsrfToken *string `json:"csrf_token,omitempty"`
	// Method  Should be set to \"webauthn\" when trying to add, update, or remove a webAuthn pairing.
	Method string `json:"method"`
	// Register a WebAuthn Security Key  It is expected that the JSON returned by the WebAuthn registration process is included here.
	WebauthnRegister *string `json:"webauthn_register,omitempty"`
	// Name of the WebAuthn Security Key to be Added  A human-readable name for the security key which will be added.
	WebauthnRegisterDisplayname *string `json:"webauthn_register_displayname,omitempty"`
	// Remove a WebAuthn Security Key  This must contain the ID of the WebAuthN connection.
	WebauthnRemove       *string `json:"webauthn_remove,omitempty"`
	AdditionalProperties map[string]interface{}
}

UpdateSettingsFlowWithWebAuthnMethod Update Settings Flow with WebAuthn Method

func NewUpdateSettingsFlowWithWebAuthnMethod ¶

func NewUpdateSettingsFlowWithWebAuthnMethod(method string) *UpdateSettingsFlowWithWebAuthnMethod

NewUpdateSettingsFlowWithWebAuthnMethod instantiates a new UpdateSettingsFlowWithWebAuthnMethod 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 NewUpdateSettingsFlowWithWebAuthnMethodWithDefaults ¶

func NewUpdateSettingsFlowWithWebAuthnMethodWithDefaults() *UpdateSettingsFlowWithWebAuthnMethod

NewUpdateSettingsFlowWithWebAuthnMethodWithDefaults instantiates a new UpdateSettingsFlowWithWebAuthnMethod 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 (*UpdateSettingsFlowWithWebAuthnMethod) GetCsrfToken ¶

func (o *UpdateSettingsFlowWithWebAuthnMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithWebAuthnMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithWebAuthnMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateSettingsFlowWithWebAuthnMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRegister ¶

func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRegister() string

GetWebauthnRegister returns the WebauthnRegister field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRegisterDisplayname ¶

func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRegisterDisplayname() string

GetWebauthnRegisterDisplayname returns the WebauthnRegisterDisplayname field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRegisterDisplaynameOk ¶

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

GetWebauthnRegisterDisplaynameOk returns a tuple with the WebauthnRegisterDisplayname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRegisterOk ¶

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

GetWebauthnRegisterOk returns a tuple with the WebauthnRegister field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRemove ¶

func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRemove() string

GetWebauthnRemove returns the WebauthnRemove field value if set, zero value otherwise.

func (*UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRemoveOk ¶

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

GetWebauthnRemoveOk returns a tuple with the WebauthnRemove field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSettingsFlowWithWebAuthnMethod) HasCsrfToken ¶

func (o *UpdateSettingsFlowWithWebAuthnMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (*UpdateSettingsFlowWithWebAuthnMethod) HasWebauthnRegister ¶

func (o *UpdateSettingsFlowWithWebAuthnMethod) HasWebauthnRegister() bool

HasWebauthnRegister returns a boolean if a field has been set.

func (*UpdateSettingsFlowWithWebAuthnMethod) HasWebauthnRegisterDisplayname ¶

func (o *UpdateSettingsFlowWithWebAuthnMethod) HasWebauthnRegisterDisplayname() bool

HasWebauthnRegisterDisplayname returns a boolean if a field has been set.

func (*UpdateSettingsFlowWithWebAuthnMethod) HasWebauthnRemove ¶

func (o *UpdateSettingsFlowWithWebAuthnMethod) HasWebauthnRemove() bool

HasWebauthnRemove returns a boolean if a field has been set.

func (UpdateSettingsFlowWithWebAuthnMethod) MarshalJSON ¶

func (o UpdateSettingsFlowWithWebAuthnMethod) MarshalJSON() ([]byte, error)

func (*UpdateSettingsFlowWithWebAuthnMethod) SetCsrfToken ¶

func (o *UpdateSettingsFlowWithWebAuthnMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateSettingsFlowWithWebAuthnMethod) SetMethod ¶

SetMethod sets field value

func (*UpdateSettingsFlowWithWebAuthnMethod) SetWebauthnRegister ¶

func (o *UpdateSettingsFlowWithWebAuthnMethod) SetWebauthnRegister(v string)

SetWebauthnRegister gets a reference to the given string and assigns it to the WebauthnRegister field.

func (*UpdateSettingsFlowWithWebAuthnMethod) SetWebauthnRegisterDisplayname ¶

func (o *UpdateSettingsFlowWithWebAuthnMethod) SetWebauthnRegisterDisplayname(v string)

SetWebauthnRegisterDisplayname gets a reference to the given string and assigns it to the WebauthnRegisterDisplayname field.

func (*UpdateSettingsFlowWithWebAuthnMethod) SetWebauthnRemove ¶

func (o *UpdateSettingsFlowWithWebAuthnMethod) SetWebauthnRemove(v string)

SetWebauthnRemove gets a reference to the given string and assigns it to the WebauthnRemove field.

func (UpdateSettingsFlowWithWebAuthnMethod) ToMap ¶

func (o UpdateSettingsFlowWithWebAuthnMethod) ToMap() (map[string]interface{}, error)

func (*UpdateSettingsFlowWithWebAuthnMethod) UnmarshalJSON ¶

func (o *UpdateSettingsFlowWithWebAuthnMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateSubscriptionBody ¶

type UpdateSubscriptionBody struct {
	//  monthly Monthly yearly Yearly
	Interval             string  `json:"interval"`
	Plan                 string  `json:"plan"`
	ReturnTo             *string `json:"return_to,omitempty"`
	AdditionalProperties map[string]interface{}
}

UpdateSubscriptionBody Update Subscription Request Body

func NewUpdateSubscriptionBody ¶

func NewUpdateSubscriptionBody(interval string, plan string) *UpdateSubscriptionBody

NewUpdateSubscriptionBody instantiates a new UpdateSubscriptionBody 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 NewUpdateSubscriptionBodyWithDefaults ¶

func NewUpdateSubscriptionBodyWithDefaults() *UpdateSubscriptionBody

NewUpdateSubscriptionBodyWithDefaults instantiates a new UpdateSubscriptionBody 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 (*UpdateSubscriptionBody) GetInterval ¶

func (o *UpdateSubscriptionBody) GetInterval() string

GetInterval returns the Interval field value

func (*UpdateSubscriptionBody) GetIntervalOk ¶

func (o *UpdateSubscriptionBody) GetIntervalOk() (*string, bool)

GetIntervalOk returns a tuple with the Interval field value and a boolean to check if the value has been set.

func (*UpdateSubscriptionBody) GetPlan ¶

func (o *UpdateSubscriptionBody) GetPlan() string

GetPlan returns the Plan field value

func (*UpdateSubscriptionBody) GetPlanOk ¶

func (o *UpdateSubscriptionBody) GetPlanOk() (*string, bool)

GetPlanOk returns a tuple with the Plan field value and a boolean to check if the value has been set.

func (*UpdateSubscriptionBody) GetReturnTo ¶

func (o *UpdateSubscriptionBody) GetReturnTo() string

GetReturnTo returns the ReturnTo field value if set, zero value otherwise.

func (*UpdateSubscriptionBody) GetReturnToOk ¶

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

GetReturnToOk returns a tuple with the ReturnTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSubscriptionBody) HasReturnTo ¶

func (o *UpdateSubscriptionBody) HasReturnTo() bool

HasReturnTo returns a boolean if a field has been set.

func (UpdateSubscriptionBody) MarshalJSON ¶

func (o UpdateSubscriptionBody) MarshalJSON() ([]byte, error)

func (*UpdateSubscriptionBody) SetInterval ¶

func (o *UpdateSubscriptionBody) SetInterval(v string)

SetInterval sets field value

func (*UpdateSubscriptionBody) SetPlan ¶

func (o *UpdateSubscriptionBody) SetPlan(v string)

SetPlan sets field value

func (*UpdateSubscriptionBody) SetReturnTo ¶

func (o *UpdateSubscriptionBody) SetReturnTo(v string)

SetReturnTo gets a reference to the given string and assigns it to the ReturnTo field.

func (UpdateSubscriptionBody) ToMap ¶

func (o UpdateSubscriptionBody) ToMap() (map[string]interface{}, error)

func (*UpdateSubscriptionBody) UnmarshalJSON ¶

func (o *UpdateSubscriptionBody) UnmarshalJSON(bytes []byte) (err error)

type UpdateVerificationFlowBody ¶

type UpdateVerificationFlowBody struct {
	UpdateVerificationFlowWithCodeMethod *UpdateVerificationFlowWithCodeMethod
	UpdateVerificationFlowWithLinkMethod *UpdateVerificationFlowWithLinkMethod
}

UpdateVerificationFlowBody - Update Verification Flow Request Body

func UpdateVerificationFlowWithCodeMethodAsUpdateVerificationFlowBody ¶

func UpdateVerificationFlowWithCodeMethodAsUpdateVerificationFlowBody(v *UpdateVerificationFlowWithCodeMethod) UpdateVerificationFlowBody

UpdateVerificationFlowWithCodeMethodAsUpdateVerificationFlowBody is a convenience function that returns UpdateVerificationFlowWithCodeMethod wrapped in UpdateVerificationFlowBody

func UpdateVerificationFlowWithLinkMethodAsUpdateVerificationFlowBody ¶

func UpdateVerificationFlowWithLinkMethodAsUpdateVerificationFlowBody(v *UpdateVerificationFlowWithLinkMethod) UpdateVerificationFlowBody

UpdateVerificationFlowWithLinkMethodAsUpdateVerificationFlowBody is a convenience function that returns UpdateVerificationFlowWithLinkMethod wrapped in UpdateVerificationFlowBody

func (*UpdateVerificationFlowBody) GetActualInstance ¶

func (obj *UpdateVerificationFlowBody) GetActualInstance() interface{}

Get the actual instance

func (UpdateVerificationFlowBody) MarshalJSON ¶

func (src UpdateVerificationFlowBody) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*UpdateVerificationFlowBody) UnmarshalJSON ¶

func (dst *UpdateVerificationFlowBody) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type UpdateVerificationFlowWithCodeMethod ¶

type UpdateVerificationFlowWithCodeMethod struct {
	// Code from the recovery email  If you want to submit a code, use this field, but make sure to _not_ include the email field, as well.
	Code *string `json:"code,omitempty"`
	// Sending the anti-csrf token is only required for browser login flows.
	CsrfToken *string `json:"csrf_token,omitempty"`
	// The email address to verify  If the email belongs to a valid account, a verifiation email will be sent.  If you want to notify the email address if the account does not exist, see the [notify_unknown_recipients flag](https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation#attempted-verification-notifications)  If a code was already sent, including this field in the payload will invalidate the sent code and re-send a new code.  format: email
	Email *string `json:"email,omitempty"`
	// Method is the method that should be used for this verification flow  Allowed values are `link` and `code`. link VerificationStrategyLink code VerificationStrategyCode
	Method               string `json:"method"`
	AdditionalProperties map[string]interface{}
}

UpdateVerificationFlowWithCodeMethod struct for UpdateVerificationFlowWithCodeMethod

func NewUpdateVerificationFlowWithCodeMethod ¶

func NewUpdateVerificationFlowWithCodeMethod(method string) *UpdateVerificationFlowWithCodeMethod

NewUpdateVerificationFlowWithCodeMethod instantiates a new UpdateVerificationFlowWithCodeMethod 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 NewUpdateVerificationFlowWithCodeMethodWithDefaults ¶

func NewUpdateVerificationFlowWithCodeMethodWithDefaults() *UpdateVerificationFlowWithCodeMethod

NewUpdateVerificationFlowWithCodeMethodWithDefaults instantiates a new UpdateVerificationFlowWithCodeMethod 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 (*UpdateVerificationFlowWithCodeMethod) GetCode ¶

GetCode returns the Code field value if set, zero value otherwise.

func (*UpdateVerificationFlowWithCodeMethod) GetCodeOk ¶

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVerificationFlowWithCodeMethod) GetCsrfToken ¶

func (o *UpdateVerificationFlowWithCodeMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateVerificationFlowWithCodeMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVerificationFlowWithCodeMethod) GetEmail ¶

GetEmail returns the Email field value if set, zero value otherwise.

func (*UpdateVerificationFlowWithCodeMethod) GetEmailOk ¶

func (o *UpdateVerificationFlowWithCodeMethod) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVerificationFlowWithCodeMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateVerificationFlowWithCodeMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateVerificationFlowWithCodeMethod) HasCode ¶

HasCode returns a boolean if a field has been set.

func (*UpdateVerificationFlowWithCodeMethod) HasCsrfToken ¶

func (o *UpdateVerificationFlowWithCodeMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (*UpdateVerificationFlowWithCodeMethod) HasEmail ¶

HasEmail returns a boolean if a field has been set.

func (UpdateVerificationFlowWithCodeMethod) MarshalJSON ¶

func (o UpdateVerificationFlowWithCodeMethod) MarshalJSON() ([]byte, error)

func (*UpdateVerificationFlowWithCodeMethod) SetCode ¶

SetCode gets a reference to the given string and assigns it to the Code field.

func (*UpdateVerificationFlowWithCodeMethod) SetCsrfToken ¶

func (o *UpdateVerificationFlowWithCodeMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateVerificationFlowWithCodeMethod) SetEmail ¶

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*UpdateVerificationFlowWithCodeMethod) SetMethod ¶

SetMethod sets field value

func (UpdateVerificationFlowWithCodeMethod) ToMap ¶

func (o UpdateVerificationFlowWithCodeMethod) ToMap() (map[string]interface{}, error)

func (*UpdateVerificationFlowWithCodeMethod) UnmarshalJSON ¶

func (o *UpdateVerificationFlowWithCodeMethod) UnmarshalJSON(bytes []byte) (err error)

type UpdateVerificationFlowWithLinkMethod ¶

type UpdateVerificationFlowWithLinkMethod struct {
	// Sending the anti-csrf token is only required for browser login flows.
	CsrfToken *string `json:"csrf_token,omitempty"`
	// Email to Verify  Needs to be set when initiating the flow. If the email is a registered verification email, a verification link will be sent. If the email is not known, a email with details on what happened will be sent instead.  format: email
	Email string `json:"email"`
	// Method is the method that should be used for this verification flow  Allowed values are `link` and `code` link VerificationStrategyLink code VerificationStrategyCode
	Method               string `json:"method"`
	AdditionalProperties map[string]interface{}
}

UpdateVerificationFlowWithLinkMethod Update Verification Flow with Link Method

func NewUpdateVerificationFlowWithLinkMethod ¶

func NewUpdateVerificationFlowWithLinkMethod(email string, method string) *UpdateVerificationFlowWithLinkMethod

NewUpdateVerificationFlowWithLinkMethod instantiates a new UpdateVerificationFlowWithLinkMethod 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 NewUpdateVerificationFlowWithLinkMethodWithDefaults ¶

func NewUpdateVerificationFlowWithLinkMethodWithDefaults() *UpdateVerificationFlowWithLinkMethod

NewUpdateVerificationFlowWithLinkMethodWithDefaults instantiates a new UpdateVerificationFlowWithLinkMethod 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 (*UpdateVerificationFlowWithLinkMethod) GetCsrfToken ¶

func (o *UpdateVerificationFlowWithLinkMethod) GetCsrfToken() string

GetCsrfToken returns the CsrfToken field value if set, zero value otherwise.

func (*UpdateVerificationFlowWithLinkMethod) GetCsrfTokenOk ¶

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

GetCsrfTokenOk returns a tuple with the CsrfToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateVerificationFlowWithLinkMethod) GetEmail ¶

GetEmail returns the Email field value

func (*UpdateVerificationFlowWithLinkMethod) GetEmailOk ¶

func (o *UpdateVerificationFlowWithLinkMethod) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*UpdateVerificationFlowWithLinkMethod) GetMethod ¶

GetMethod returns the Method field value

func (*UpdateVerificationFlowWithLinkMethod) GetMethodOk ¶

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

GetMethodOk returns a tuple with the Method field value and a boolean to check if the value has been set.

func (*UpdateVerificationFlowWithLinkMethod) HasCsrfToken ¶

func (o *UpdateVerificationFlowWithLinkMethod) HasCsrfToken() bool

HasCsrfToken returns a boolean if a field has been set.

func (UpdateVerificationFlowWithLinkMethod) MarshalJSON ¶

func (o UpdateVerificationFlowWithLinkMethod) MarshalJSON() ([]byte, error)

func (*UpdateVerificationFlowWithLinkMethod) SetCsrfToken ¶

func (o *UpdateVerificationFlowWithLinkMethod) SetCsrfToken(v string)

SetCsrfToken gets a reference to the given string and assigns it to the CsrfToken field.

func (*UpdateVerificationFlowWithLinkMethod) SetEmail ¶

SetEmail sets field value

func (*UpdateVerificationFlowWithLinkMethod) SetMethod ¶

SetMethod sets field value

func (UpdateVerificationFlowWithLinkMethod) ToMap ¶

func (o UpdateVerificationFlowWithLinkMethod) ToMap() (map[string]interface{}, error)

func (*UpdateVerificationFlowWithLinkMethod) UnmarshalJSON ¶

func (o *UpdateVerificationFlowWithLinkMethod) UnmarshalJSON(bytes []byte) (err error)

type Usage ¶

type Usage struct {
	GenericUsage         *GenericUsage `json:"GenericUsage,omitempty"`
	AdditionalProperties map[string]interface{}
}

Usage struct for Usage

func NewUsage ¶

func NewUsage() *Usage

NewUsage instantiates a new Usage 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 NewUsageWithDefaults ¶

func NewUsageWithDefaults() *Usage

NewUsageWithDefaults instantiates a new Usage 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 (*Usage) GetGenericUsage ¶

func (o *Usage) GetGenericUsage() GenericUsage

GetGenericUsage returns the GenericUsage field value if set, zero value otherwise.

func (*Usage) GetGenericUsageOk ¶

func (o *Usage) GetGenericUsageOk() (*GenericUsage, bool)

GetGenericUsageOk returns a tuple with the GenericUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Usage) HasGenericUsage ¶

func (o *Usage) HasGenericUsage() bool

HasGenericUsage returns a boolean if a field has been set.

func (Usage) MarshalJSON ¶

func (o Usage) MarshalJSON() ([]byte, error)

func (*Usage) SetGenericUsage ¶

func (o *Usage) SetGenericUsage(v GenericUsage)

SetGenericUsage gets a reference to the given GenericUsage and assigns it to the GenericUsage field.

func (Usage) ToMap ¶

func (o Usage) ToMap() (map[string]interface{}, error)

func (*Usage) UnmarshalJSON ¶

func (o *Usage) UnmarshalJSON(bytes []byte) (err error)

type VerifiableCredentialPrimingResponse ¶

type VerifiableCredentialPrimingResponse struct {
	CNonce               *string `json:"c_nonce,omitempty"`
	CNonceExpiresIn      *int64  `json:"c_nonce_expires_in,omitempty"`
	Error                *string `json:"error,omitempty"`
	ErrorDebug           *string `json:"error_debug,omitempty"`
	ErrorDescription     *string `json:"error_description,omitempty"`
	ErrorHint            *string `json:"error_hint,omitempty"`
	Format               *string `json:"format,omitempty"`
	StatusCode           *int64  `json:"status_code,omitempty"`
	AdditionalProperties map[string]interface{}
}

VerifiableCredentialPrimingResponse struct for VerifiableCredentialPrimingResponse

func NewVerifiableCredentialPrimingResponse ¶

func NewVerifiableCredentialPrimingResponse() *VerifiableCredentialPrimingResponse

NewVerifiableCredentialPrimingResponse instantiates a new VerifiableCredentialPrimingResponse 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 NewVerifiableCredentialPrimingResponseWithDefaults ¶

func NewVerifiableCredentialPrimingResponseWithDefaults() *VerifiableCredentialPrimingResponse

NewVerifiableCredentialPrimingResponseWithDefaults instantiates a new VerifiableCredentialPrimingResponse 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 (*VerifiableCredentialPrimingResponse) GetCNonce ¶

GetCNonce returns the CNonce field value if set, zero value otherwise.

func (*VerifiableCredentialPrimingResponse) GetCNonceExpiresIn ¶

func (o *VerifiableCredentialPrimingResponse) GetCNonceExpiresIn() int64

GetCNonceExpiresIn returns the CNonceExpiresIn field value if set, zero value otherwise.

func (*VerifiableCredentialPrimingResponse) GetCNonceExpiresInOk ¶

func (o *VerifiableCredentialPrimingResponse) GetCNonceExpiresInOk() (*int64, bool)

GetCNonceExpiresInOk returns a tuple with the CNonceExpiresIn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableCredentialPrimingResponse) GetCNonceOk ¶

func (o *VerifiableCredentialPrimingResponse) GetCNonceOk() (*string, bool)

GetCNonceOk returns a tuple with the CNonce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableCredentialPrimingResponse) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*VerifiableCredentialPrimingResponse) GetErrorDebug ¶

func (o *VerifiableCredentialPrimingResponse) GetErrorDebug() string

GetErrorDebug returns the ErrorDebug field value if set, zero value otherwise.

func (*VerifiableCredentialPrimingResponse) GetErrorDebugOk ¶

func (o *VerifiableCredentialPrimingResponse) GetErrorDebugOk() (*string, bool)

GetErrorDebugOk returns a tuple with the ErrorDebug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableCredentialPrimingResponse) GetErrorDescription ¶

func (o *VerifiableCredentialPrimingResponse) GetErrorDescription() string

GetErrorDescription returns the ErrorDescription field value if set, zero value otherwise.

func (*VerifiableCredentialPrimingResponse) GetErrorDescriptionOk ¶

func (o *VerifiableCredentialPrimingResponse) GetErrorDescriptionOk() (*string, bool)

GetErrorDescriptionOk returns a tuple with the ErrorDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableCredentialPrimingResponse) GetErrorHint ¶

func (o *VerifiableCredentialPrimingResponse) GetErrorHint() string

GetErrorHint returns the ErrorHint field value if set, zero value otherwise.

func (*VerifiableCredentialPrimingResponse) GetErrorHintOk ¶

func (o *VerifiableCredentialPrimingResponse) GetErrorHintOk() (*string, bool)

GetErrorHintOk returns a tuple with the ErrorHint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableCredentialPrimingResponse) GetErrorOk ¶

func (o *VerifiableCredentialPrimingResponse) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableCredentialPrimingResponse) GetFormat ¶

GetFormat returns the Format field value if set, zero value otherwise.

func (*VerifiableCredentialPrimingResponse) GetFormatOk ¶

func (o *VerifiableCredentialPrimingResponse) GetFormatOk() (*string, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableCredentialPrimingResponse) GetStatusCode ¶

func (o *VerifiableCredentialPrimingResponse) GetStatusCode() int64

GetStatusCode returns the StatusCode field value if set, zero value otherwise.

func (*VerifiableCredentialPrimingResponse) GetStatusCodeOk ¶

func (o *VerifiableCredentialPrimingResponse) GetStatusCodeOk() (*int64, bool)

GetStatusCodeOk returns a tuple with the StatusCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableCredentialPrimingResponse) HasCNonce ¶

HasCNonce returns a boolean if a field has been set.

func (*VerifiableCredentialPrimingResponse) HasCNonceExpiresIn ¶

func (o *VerifiableCredentialPrimingResponse) HasCNonceExpiresIn() bool

HasCNonceExpiresIn returns a boolean if a field has been set.

func (*VerifiableCredentialPrimingResponse) HasError ¶

HasError returns a boolean if a field has been set.

func (*VerifiableCredentialPrimingResponse) HasErrorDebug ¶

func (o *VerifiableCredentialPrimingResponse) HasErrorDebug() bool

HasErrorDebug returns a boolean if a field has been set.

func (*VerifiableCredentialPrimingResponse) HasErrorDescription ¶

func (o *VerifiableCredentialPrimingResponse) HasErrorDescription() bool

HasErrorDescription returns a boolean if a field has been set.

func (*VerifiableCredentialPrimingResponse) HasErrorHint ¶

func (o *VerifiableCredentialPrimingResponse) HasErrorHint() bool

HasErrorHint returns a boolean if a field has been set.

func (*VerifiableCredentialPrimingResponse) HasFormat ¶

HasFormat returns a boolean if a field has been set.

func (*VerifiableCredentialPrimingResponse) HasStatusCode ¶

func (o *VerifiableCredentialPrimingResponse) HasStatusCode() bool

HasStatusCode returns a boolean if a field has been set.

func (VerifiableCredentialPrimingResponse) MarshalJSON ¶

func (o VerifiableCredentialPrimingResponse) MarshalJSON() ([]byte, error)

func (*VerifiableCredentialPrimingResponse) SetCNonce ¶

SetCNonce gets a reference to the given string and assigns it to the CNonce field.

func (*VerifiableCredentialPrimingResponse) SetCNonceExpiresIn ¶

func (o *VerifiableCredentialPrimingResponse) SetCNonceExpiresIn(v int64)

SetCNonceExpiresIn gets a reference to the given int64 and assigns it to the CNonceExpiresIn field.

func (*VerifiableCredentialPrimingResponse) SetError ¶

SetError gets a reference to the given string and assigns it to the Error field.

func (*VerifiableCredentialPrimingResponse) SetErrorDebug ¶

func (o *VerifiableCredentialPrimingResponse) SetErrorDebug(v string)

SetErrorDebug gets a reference to the given string and assigns it to the ErrorDebug field.

func (*VerifiableCredentialPrimingResponse) SetErrorDescription ¶

func (o *VerifiableCredentialPrimingResponse) SetErrorDescription(v string)

SetErrorDescription gets a reference to the given string and assigns it to the ErrorDescription field.

func (*VerifiableCredentialPrimingResponse) SetErrorHint ¶

func (o *VerifiableCredentialPrimingResponse) SetErrorHint(v string)

SetErrorHint gets a reference to the given string and assigns it to the ErrorHint field.

func (*VerifiableCredentialPrimingResponse) SetFormat ¶

SetFormat gets a reference to the given string and assigns it to the Format field.

func (*VerifiableCredentialPrimingResponse) SetStatusCode ¶

func (o *VerifiableCredentialPrimingResponse) SetStatusCode(v int64)

SetStatusCode gets a reference to the given int64 and assigns it to the StatusCode field.

func (VerifiableCredentialPrimingResponse) ToMap ¶

func (o VerifiableCredentialPrimingResponse) ToMap() (map[string]interface{}, error)

func (*VerifiableCredentialPrimingResponse) UnmarshalJSON ¶

func (o *VerifiableCredentialPrimingResponse) UnmarshalJSON(bytes []byte) (err error)

type VerifiableCredentialProof ¶

type VerifiableCredentialProof struct {
	Jwt                  *string `json:"jwt,omitempty"`
	ProofType            *string `json:"proof_type,omitempty"`
	AdditionalProperties map[string]interface{}
}

VerifiableCredentialProof struct for VerifiableCredentialProof

func NewVerifiableCredentialProof ¶

func NewVerifiableCredentialProof() *VerifiableCredentialProof

NewVerifiableCredentialProof instantiates a new VerifiableCredentialProof 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 NewVerifiableCredentialProofWithDefaults ¶

func NewVerifiableCredentialProofWithDefaults() *VerifiableCredentialProof

NewVerifiableCredentialProofWithDefaults instantiates a new VerifiableCredentialProof 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 (*VerifiableCredentialProof) GetJwt ¶

func (o *VerifiableCredentialProof) GetJwt() string

GetJwt returns the Jwt field value if set, zero value otherwise.

func (*VerifiableCredentialProof) GetJwtOk ¶

func (o *VerifiableCredentialProof) GetJwtOk() (*string, bool)

GetJwtOk returns a tuple with the Jwt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableCredentialProof) GetProofType ¶

func (o *VerifiableCredentialProof) GetProofType() string

GetProofType returns the ProofType field value if set, zero value otherwise.

func (*VerifiableCredentialProof) GetProofTypeOk ¶

func (o *VerifiableCredentialProof) GetProofTypeOk() (*string, bool)

GetProofTypeOk returns a tuple with the ProofType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableCredentialProof) HasJwt ¶

func (o *VerifiableCredentialProof) HasJwt() bool

HasJwt returns a boolean if a field has been set.

func (*VerifiableCredentialProof) HasProofType ¶

func (o *VerifiableCredentialProof) HasProofType() bool

HasProofType returns a boolean if a field has been set.

func (VerifiableCredentialProof) MarshalJSON ¶

func (o VerifiableCredentialProof) MarshalJSON() ([]byte, error)

func (*VerifiableCredentialProof) SetJwt ¶

func (o *VerifiableCredentialProof) SetJwt(v string)

SetJwt gets a reference to the given string and assigns it to the Jwt field.

func (*VerifiableCredentialProof) SetProofType ¶

func (o *VerifiableCredentialProof) SetProofType(v string)

SetProofType gets a reference to the given string and assigns it to the ProofType field.

func (VerifiableCredentialProof) ToMap ¶

func (o VerifiableCredentialProof) ToMap() (map[string]interface{}, error)

func (*VerifiableCredentialProof) UnmarshalJSON ¶

func (o *VerifiableCredentialProof) UnmarshalJSON(bytes []byte) (err error)

type VerifiableCredentialResponse ¶

type VerifiableCredentialResponse struct {
	CredentialDraft00    *string `json:"credential_draft_00,omitempty"`
	Format               *string `json:"format,omitempty"`
	AdditionalProperties map[string]interface{}
}

VerifiableCredentialResponse struct for VerifiableCredentialResponse

func NewVerifiableCredentialResponse ¶

func NewVerifiableCredentialResponse() *VerifiableCredentialResponse

NewVerifiableCredentialResponse instantiates a new VerifiableCredentialResponse 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 NewVerifiableCredentialResponseWithDefaults ¶

func NewVerifiableCredentialResponseWithDefaults() *VerifiableCredentialResponse

NewVerifiableCredentialResponseWithDefaults instantiates a new VerifiableCredentialResponse 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 (*VerifiableCredentialResponse) GetCredentialDraft00 ¶

func (o *VerifiableCredentialResponse) GetCredentialDraft00() string

GetCredentialDraft00 returns the CredentialDraft00 field value if set, zero value otherwise.

func (*VerifiableCredentialResponse) GetCredentialDraft00Ok ¶

func (o *VerifiableCredentialResponse) GetCredentialDraft00Ok() (*string, bool)

GetCredentialDraft00Ok returns a tuple with the CredentialDraft00 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableCredentialResponse) GetFormat ¶

func (o *VerifiableCredentialResponse) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise.

func (*VerifiableCredentialResponse) GetFormatOk ¶

func (o *VerifiableCredentialResponse) GetFormatOk() (*string, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableCredentialResponse) HasCredentialDraft00 ¶

func (o *VerifiableCredentialResponse) HasCredentialDraft00() bool

HasCredentialDraft00 returns a boolean if a field has been set.

func (*VerifiableCredentialResponse) HasFormat ¶

func (o *VerifiableCredentialResponse) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (VerifiableCredentialResponse) MarshalJSON ¶

func (o VerifiableCredentialResponse) MarshalJSON() ([]byte, error)

func (*VerifiableCredentialResponse) SetCredentialDraft00 ¶

func (o *VerifiableCredentialResponse) SetCredentialDraft00(v string)

SetCredentialDraft00 gets a reference to the given string and assigns it to the CredentialDraft00 field.

func (*VerifiableCredentialResponse) SetFormat ¶

func (o *VerifiableCredentialResponse) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (VerifiableCredentialResponse) ToMap ¶

func (o VerifiableCredentialResponse) ToMap() (map[string]interface{}, error)

func (*VerifiableCredentialResponse) UnmarshalJSON ¶

func (o *VerifiableCredentialResponse) UnmarshalJSON(bytes []byte) (err error)

type VerifiableIdentityAddress ¶

type VerifiableIdentityAddress struct {
	// When this entry was created
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// The ID
	Id *string `json:"id,omitempty"`
	// VerifiableAddressStatus must not exceed 16 characters as that is the limitation in the SQL Schema
	Status string `json:"status"`
	// When this entry was last updated
	UpdatedAt *time.Time `json:"updated_at,omitempty"`
	// The address value  example foo@user.com
	Value string `json:"value"`
	// Indicates if the address has already been verified
	Verified   bool       `json:"verified"`
	VerifiedAt *time.Time `json:"verified_at,omitempty"`
	// The delivery method
	Via                  string `json:"via"`
	AdditionalProperties map[string]interface{}
}

VerifiableIdentityAddress VerifiableAddress is an identity's verifiable address

func NewVerifiableIdentityAddress ¶

func NewVerifiableIdentityAddress(status string, value string, verified bool, via string) *VerifiableIdentityAddress

NewVerifiableIdentityAddress instantiates a new VerifiableIdentityAddress 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 NewVerifiableIdentityAddressWithDefaults ¶

func NewVerifiableIdentityAddressWithDefaults() *VerifiableIdentityAddress

NewVerifiableIdentityAddressWithDefaults instantiates a new VerifiableIdentityAddress 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 (*VerifiableIdentityAddress) GetCreatedAt ¶

func (o *VerifiableIdentityAddress) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*VerifiableIdentityAddress) GetCreatedAtOk ¶

func (o *VerifiableIdentityAddress) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableIdentityAddress) GetId ¶

func (o *VerifiableIdentityAddress) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*VerifiableIdentityAddress) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableIdentityAddress) GetStatus ¶

func (o *VerifiableIdentityAddress) GetStatus() string

GetStatus returns the Status field value

func (*VerifiableIdentityAddress) GetStatusOk ¶

func (o *VerifiableIdentityAddress) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*VerifiableIdentityAddress) GetUpdatedAt ¶

func (o *VerifiableIdentityAddress) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*VerifiableIdentityAddress) GetUpdatedAtOk ¶

func (o *VerifiableIdentityAddress) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableIdentityAddress) GetValue ¶

func (o *VerifiableIdentityAddress) GetValue() string

GetValue returns the Value field value

func (*VerifiableIdentityAddress) GetValueOk ¶

func (o *VerifiableIdentityAddress) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (*VerifiableIdentityAddress) GetVerified ¶

func (o *VerifiableIdentityAddress) GetVerified() bool

GetVerified returns the Verified field value

func (*VerifiableIdentityAddress) GetVerifiedAt ¶

func (o *VerifiableIdentityAddress) GetVerifiedAt() time.Time

GetVerifiedAt returns the VerifiedAt field value if set, zero value otherwise.

func (*VerifiableIdentityAddress) GetVerifiedAtOk ¶

func (o *VerifiableIdentityAddress) GetVerifiedAtOk() (*time.Time, bool)

GetVerifiedAtOk returns a tuple with the VerifiedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifiableIdentityAddress) GetVerifiedOk ¶

func (o *VerifiableIdentityAddress) GetVerifiedOk() (*bool, bool)

GetVerifiedOk returns a tuple with the Verified field value and a boolean to check if the value has been set.

func (*VerifiableIdentityAddress) GetVia ¶

func (o *VerifiableIdentityAddress) GetVia() string

GetVia returns the Via field value

func (*VerifiableIdentityAddress) GetViaOk ¶

func (o *VerifiableIdentityAddress) GetViaOk() (*string, bool)

GetViaOk returns a tuple with the Via field value and a boolean to check if the value has been set.

func (*VerifiableIdentityAddress) HasCreatedAt ¶

func (o *VerifiableIdentityAddress) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*VerifiableIdentityAddress) HasId ¶

func (o *VerifiableIdentityAddress) HasId() bool

HasId returns a boolean if a field has been set.

func (*VerifiableIdentityAddress) HasUpdatedAt ¶

func (o *VerifiableIdentityAddress) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*VerifiableIdentityAddress) HasVerifiedAt ¶

func (o *VerifiableIdentityAddress) HasVerifiedAt() bool

HasVerifiedAt returns a boolean if a field has been set.

func (VerifiableIdentityAddress) MarshalJSON ¶

func (o VerifiableIdentityAddress) MarshalJSON() ([]byte, error)

func (*VerifiableIdentityAddress) SetCreatedAt ¶

func (o *VerifiableIdentityAddress) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*VerifiableIdentityAddress) SetId ¶

func (o *VerifiableIdentityAddress) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*VerifiableIdentityAddress) SetStatus ¶

func (o *VerifiableIdentityAddress) SetStatus(v string)

SetStatus sets field value

func (*VerifiableIdentityAddress) SetUpdatedAt ¶

func (o *VerifiableIdentityAddress) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*VerifiableIdentityAddress) SetValue ¶

func (o *VerifiableIdentityAddress) SetValue(v string)

SetValue sets field value

func (*VerifiableIdentityAddress) SetVerified ¶

func (o *VerifiableIdentityAddress) SetVerified(v bool)

SetVerified sets field value

func (*VerifiableIdentityAddress) SetVerifiedAt ¶

func (o *VerifiableIdentityAddress) SetVerifiedAt(v time.Time)

SetVerifiedAt gets a reference to the given time.Time and assigns it to the VerifiedAt field.

func (*VerifiableIdentityAddress) SetVia ¶

func (o *VerifiableIdentityAddress) SetVia(v string)

SetVia sets field value

func (VerifiableIdentityAddress) ToMap ¶

func (o VerifiableIdentityAddress) ToMap() (map[string]interface{}, error)

func (*VerifiableIdentityAddress) UnmarshalJSON ¶

func (o *VerifiableIdentityAddress) UnmarshalJSON(bytes []byte) (err error)

type VerificationFlow ¶

type VerificationFlow struct {
	// Active, if set, contains the registration method that is being used. It is initially not set.
	Active *string `json:"active,omitempty"`
	// ExpiresAt is the time (UTC) when the request expires. If the user still wishes to verify the address, a new request has to be initiated.
	ExpiresAt *time.Time `json:"expires_at,omitempty"`
	// ID represents the request's unique ID. When performing the verification flow, this represents the id in the verify ui's query parameter: http://<selfservice.flows.verification.ui_url>?request=<id>  type: string format: uuid
	Id string `json:"id"`
	// IssuedAt is the time (UTC) when the request occurred.
	IssuedAt *time.Time `json:"issued_at,omitempty"`
	// 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.
	RequestUrl *string `json:"request_url,omitempty"`
	// ReturnTo contains the requested return_to URL.
	ReturnTo *string `json:"return_to,omitempty"`
	// State represents the state of this request:  choose_method: ask the user to choose a method (e.g. verify your email) sent_email: the email has been sent to the user passed_challenge: the request was successful and the verification challenge was passed.
	State interface{} `json:"state"`
	// The flow type can either be `api` or `browser`.
	Type                 string      `json:"type"`
	Ui                   UiContainer `json:"ui"`
	AdditionalProperties map[string]interface{}
}

VerificationFlow Used to verify an out-of-band communication channel such as an email address or a phone number. For more information head over to: https://www.ory.sh/docs/kratos/self-service/flows/verify-email-account-activation

func NewVerificationFlow ¶

func NewVerificationFlow(id string, state interface{}, type_ string, ui UiContainer) *VerificationFlow

NewVerificationFlow instantiates a new VerificationFlow 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 NewVerificationFlowWithDefaults ¶

func NewVerificationFlowWithDefaults() *VerificationFlow

NewVerificationFlowWithDefaults instantiates a new VerificationFlow 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 (*VerificationFlow) GetActive ¶

func (o *VerificationFlow) GetActive() string

GetActive returns the Active field value if set, zero value otherwise.

func (*VerificationFlow) GetActiveOk ¶

func (o *VerificationFlow) GetActiveOk() (*string, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerificationFlow) GetExpiresAt ¶

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

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*VerificationFlow) GetExpiresAtOk ¶

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

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerificationFlow) GetId ¶

func (o *VerificationFlow) GetId() string

GetId returns the Id field value

func (*VerificationFlow) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*VerificationFlow) GetIssuedAt ¶

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

GetIssuedAt returns the IssuedAt field value if set, zero value otherwise.

func (*VerificationFlow) GetIssuedAtOk ¶

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

GetIssuedAtOk returns a tuple with the IssuedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerificationFlow) GetRequestUrl ¶

func (o *VerificationFlow) GetRequestUrl() string

GetRequestUrl returns the RequestUrl field value if set, zero value otherwise.

func (*VerificationFlow) GetRequestUrlOk ¶

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

GetRequestUrlOk returns a tuple with the RequestUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerificationFlow) GetReturnTo ¶

func (o *VerificationFlow) GetReturnTo() string

GetReturnTo returns the ReturnTo field value if set, zero value otherwise.

func (*VerificationFlow) GetReturnToOk ¶

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

GetReturnToOk returns a tuple with the ReturnTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerificationFlow) GetState ¶

func (o *VerificationFlow) GetState() interface{}

GetState returns the State field value If the value is explicit nil, the zero value for interface{} will be returned

func (*VerificationFlow) GetStateOk ¶

func (o *VerificationFlow) GetStateOk() (*interface{}, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VerificationFlow) GetType ¶

func (o *VerificationFlow) GetType() string

GetType returns the Type field value

func (*VerificationFlow) GetTypeOk ¶

func (o *VerificationFlow) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*VerificationFlow) GetUi ¶

func (o *VerificationFlow) GetUi() UiContainer

GetUi returns the Ui field value

func (*VerificationFlow) GetUiOk ¶

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

GetUiOk returns a tuple with the Ui field value and a boolean to check if the value has been set.

func (*VerificationFlow) HasActive ¶

func (o *VerificationFlow) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*VerificationFlow) HasExpiresAt ¶

func (o *VerificationFlow) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*VerificationFlow) HasIssuedAt ¶

func (o *VerificationFlow) HasIssuedAt() bool

HasIssuedAt returns a boolean if a field has been set.

func (*VerificationFlow) HasRequestUrl ¶

func (o *VerificationFlow) HasRequestUrl() bool

HasRequestUrl returns a boolean if a field has been set.

func (*VerificationFlow) HasReturnTo ¶

func (o *VerificationFlow) HasReturnTo() bool

HasReturnTo returns a boolean if a field has been set.

func (VerificationFlow) MarshalJSON ¶

func (o VerificationFlow) MarshalJSON() ([]byte, error)

func (*VerificationFlow) SetActive ¶

func (o *VerificationFlow) SetActive(v string)

SetActive gets a reference to the given string and assigns it to the Active field.

func (*VerificationFlow) SetExpiresAt ¶

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

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*VerificationFlow) SetId ¶

func (o *VerificationFlow) SetId(v string)

SetId sets field value

func (*VerificationFlow) SetIssuedAt ¶

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

SetIssuedAt gets a reference to the given time.Time and assigns it to the IssuedAt field.

func (*VerificationFlow) SetRequestUrl ¶

func (o *VerificationFlow) SetRequestUrl(v string)

SetRequestUrl gets a reference to the given string and assigns it to the RequestUrl field.

func (*VerificationFlow) SetReturnTo ¶

func (o *VerificationFlow) SetReturnTo(v string)

SetReturnTo gets a reference to the given string and assigns it to the ReturnTo field.

func (*VerificationFlow) SetState ¶

func (o *VerificationFlow) SetState(v interface{})

SetState sets field value

func (*VerificationFlow) SetType ¶

func (o *VerificationFlow) SetType(v string)

SetType sets field value

func (*VerificationFlow) SetUi ¶

func (o *VerificationFlow) SetUi(v UiContainer)

SetUi sets field value

func (VerificationFlow) ToMap ¶

func (o VerificationFlow) ToMap() (map[string]interface{}, error)

func (*VerificationFlow) UnmarshalJSON ¶

func (o *VerificationFlow) UnmarshalJSON(bytes []byte) (err error)

type VerificationFlowState ¶

type VerificationFlowState string

VerificationFlowState The state represents the state of the verification flow. choose_method: ask the user to choose a method (e.g. recover account via email) sent_email: the email has been sent to the user passed_challenge: the request was successful and the recovery challenge was passed.

const (
	VERIFICATIONFLOWSTATE_CHOOSE_METHOD    VerificationFlowState = "choose_method"
	VERIFICATIONFLOWSTATE_SENT_EMAIL       VerificationFlowState = "sent_email"
	VERIFICATIONFLOWSTATE_PASSED_CHALLENGE VerificationFlowState = "passed_challenge"
)

List of verificationFlowState

func NewVerificationFlowStateFromValue ¶

func NewVerificationFlowStateFromValue(v string) (*VerificationFlowState, error)

NewVerificationFlowStateFromValue returns a pointer to a valid VerificationFlowState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (VerificationFlowState) IsValid ¶

func (v VerificationFlowState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (VerificationFlowState) Ptr ¶

Ptr returns reference to verificationFlowState value

func (*VerificationFlowState) UnmarshalJSON ¶

func (v *VerificationFlowState) UnmarshalJSON(src []byte) error

type Version ¶

type Version struct {
	// Version is the service's version.
	Version              *string `json:"version,omitempty"`
	AdditionalProperties map[string]interface{}
}

Version struct for Version

func NewVersion ¶

func NewVersion() *Version

NewVersion instantiates a new Version 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 NewVersionWithDefaults ¶

func NewVersionWithDefaults() *Version

NewVersionWithDefaults instantiates a new Version 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 (*Version) GetVersion ¶

func (o *Version) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Version) GetVersionOk ¶

func (o *Version) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Version) HasVersion ¶

func (o *Version) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Version) MarshalJSON ¶

func (o Version) MarshalJSON() ([]byte, error)

func (*Version) SetVersion ¶

func (o *Version) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (Version) ToMap ¶

func (o Version) ToMap() (map[string]interface{}, error)

func (*Version) UnmarshalJSON ¶

func (o *Version) UnmarshalJSON(bytes []byte) (err error)

type Warning ¶

type Warning struct {
	Code                 *int64  `json:"code,omitempty"`
	Message              *string `json:"message,omitempty"`
	AdditionalProperties map[string]interface{}
}

Warning struct for Warning

func NewWarning ¶

func NewWarning() *Warning

NewWarning instantiates a new Warning 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 NewWarningWithDefaults ¶

func NewWarningWithDefaults() *Warning

NewWarningWithDefaults instantiates a new Warning 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 (*Warning) GetCode ¶

func (o *Warning) GetCode() int64

GetCode returns the Code field value if set, zero value otherwise.

func (*Warning) GetCodeOk ¶

func (o *Warning) GetCodeOk() (*int64, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Warning) GetMessage ¶

func (o *Warning) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*Warning) GetMessageOk ¶

func (o *Warning) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Warning) HasCode ¶

func (o *Warning) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Warning) HasMessage ¶

func (o *Warning) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (Warning) MarshalJSON ¶

func (o Warning) MarshalJSON() ([]byte, error)

func (*Warning) SetCode ¶

func (o *Warning) SetCode(v int64)

SetCode gets a reference to the given int64 and assigns it to the Code field.

func (*Warning) SetMessage ¶

func (o *Warning) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (Warning) ToMap ¶

func (o Warning) ToMap() (map[string]interface{}, error)

func (*Warning) UnmarshalJSON ¶

func (o *Warning) UnmarshalJSON(bytes []byte) (err error)

type WellknownAPI ¶

type WellknownAPI interface {

	/*
		DiscoverJsonWebKeys Discover Well-Known JSON Web Keys

		This endpoint returns JSON Web Keys required to verifying OpenID Connect ID Tokens and,
	if enabled, OAuth 2.0 JWT Access Tokens. This endpoint can be used with client libraries like
	[node-jwks-rsa](https://github.com/auth0/node-jwks-rsa) among others.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return WellknownAPIDiscoverJsonWebKeysRequest
	*/
	DiscoverJsonWebKeys(ctx context.Context) WellknownAPIDiscoverJsonWebKeysRequest

	// DiscoverJsonWebKeysExecute executes the request
	//  @return JsonWebKeySet
	DiscoverJsonWebKeysExecute(r WellknownAPIDiscoverJsonWebKeysRequest) (*JsonWebKeySet, *http.Response, error)
}

type WellknownAPIDiscoverJsonWebKeysRequest ¶

type WellknownAPIDiscoverJsonWebKeysRequest struct {
	ApiService WellknownAPI
	// contains filtered or unexported fields
}

func (WellknownAPIDiscoverJsonWebKeysRequest) Execute ¶

type WellknownAPIService ¶

type WellknownAPIService service

WellknownAPIService WellknownAPI service

func (*WellknownAPIService) DiscoverJsonWebKeys ¶

DiscoverJsonWebKeys Discover Well-Known JSON Web Keys

This endpoint returns JSON Web Keys required to verifying OpenID Connect ID Tokens and, if enabled, OAuth 2.0 JWT Access Tokens. This endpoint can be used with client libraries like [node-jwks-rsa](https://github.com/auth0/node-jwks-rsa) among others.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return WellknownAPIDiscoverJsonWebKeysRequest

func (*WellknownAPIService) DiscoverJsonWebKeysExecute ¶

Execute executes the request

@return JsonWebKeySet

type Workspace ¶

type Workspace struct {
	CreatedAt            time.Time      `json:"created_at"`
	Id                   string         `json:"id"`
	Name                 string         `json:"name"`
	SubscriptionId       NullableString `json:"subscription_id,omitempty"`
	UpdatedAt            time.Time      `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

Workspace struct for Workspace

func NewWorkspace ¶

func NewWorkspace(createdAt time.Time, id string, name string, updatedAt time.Time) *Workspace

NewWorkspace instantiates a new Workspace 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 NewWorkspaceWithDefaults ¶

func NewWorkspaceWithDefaults() *Workspace

NewWorkspaceWithDefaults instantiates a new Workspace 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 (*Workspace) GetCreatedAt ¶

func (o *Workspace) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*Workspace) GetCreatedAtOk ¶

func (o *Workspace) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*Workspace) GetId ¶

func (o *Workspace) GetId() string

GetId returns the Id field value

func (*Workspace) GetIdOk ¶

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

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Workspace) GetName ¶

func (o *Workspace) GetName() string

GetName returns the Name field value

func (*Workspace) GetNameOk ¶

func (o *Workspace) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Workspace) GetSubscriptionId ¶

func (o *Workspace) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Workspace) GetSubscriptionIdOk ¶

func (o *Workspace) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Workspace) GetUpdatedAt ¶

func (o *Workspace) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value

func (*Workspace) GetUpdatedAtOk ¶

func (o *Workspace) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (*Workspace) HasSubscriptionId ¶

func (o *Workspace) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (Workspace) MarshalJSON ¶

func (o Workspace) MarshalJSON() ([]byte, error)

func (*Workspace) SetCreatedAt ¶

func (o *Workspace) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*Workspace) SetId ¶

func (o *Workspace) SetId(v string)

SetId sets field value

func (*Workspace) SetName ¶

func (o *Workspace) SetName(v string)

SetName sets field value

func (*Workspace) SetSubscriptionId ¶

func (o *Workspace) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given NullableString and assigns it to the SubscriptionId field.

func (*Workspace) SetSubscriptionIdNil ¶

func (o *Workspace) SetSubscriptionIdNil()

SetSubscriptionIdNil sets the value for SubscriptionId to be an explicit nil

func (*Workspace) SetUpdatedAt ¶

func (o *Workspace) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (Workspace) ToMap ¶

func (o Workspace) ToMap() (map[string]interface{}, error)

func (*Workspace) UnmarshalJSON ¶

func (o *Workspace) UnmarshalJSON(bytes []byte) (err error)

func (*Workspace) UnsetSubscriptionId ¶

func (o *Workspace) UnsetSubscriptionId()

UnsetSubscriptionId ensures that no value is present for SubscriptionId, not even an explicit nil

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL