Versions in this module Expand all Collapse all v26 v26.2.0 Mar 24, 2026 Changes in this version + var ContextAccessToken = contextKey("accesstoken") + var ContextBasicAuth = contextKey("basic") + var ContextOAuth2 = contextKey("token") + var ContextOperationServerIndices = contextKey("serverOperationIndices") + var ContextOperationServerVariables = contextKey("serverOperationVariables") + var ContextServerIndex = contextKey("serverIndex") + var ContextServerVariables = contextKey("serverVariables") + var JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) + var XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + JwkAPI JwkAPI + MetadataAPI MetadataAPI + OAuth2API OAuth2API + OidcAPI OidcAPI + WellknownAPI WellknownAPI + func NewAPIClient(cfg *Configuration) *APIClient + func (c *APIClient) GetConfig() *Configuration + type APIKey struct + Key string + Prefix string + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type AcceptDeviceUserCodeRequest struct + AdditionalProperties map[string]interface{} + UserCode *string + func NewAcceptDeviceUserCodeRequest() *AcceptDeviceUserCodeRequest + func NewAcceptDeviceUserCodeRequestWithDefaults() *AcceptDeviceUserCodeRequest + func (o *AcceptDeviceUserCodeRequest) GetUserCode() string + func (o *AcceptDeviceUserCodeRequest) GetUserCodeOk() (*string, bool) + func (o *AcceptDeviceUserCodeRequest) HasUserCode() bool + func (o *AcceptDeviceUserCodeRequest) SetUserCode(v string) + func (o *AcceptDeviceUserCodeRequest) UnmarshalJSON(data []byte) (err error) + func (o AcceptDeviceUserCodeRequest) MarshalJSON() ([]byte, error) + func (o AcceptDeviceUserCodeRequest) ToMap() (map[string]interface{}, error) + type AcceptOAuth2ConsentRequest struct + AdditionalProperties map[string]interface{} + Context interface{} + GrantAccessTokenAudience []string + GrantScope []string + Remember *bool + RememberFor *int64 + Session *AcceptOAuth2ConsentRequestSession + func NewAcceptOAuth2ConsentRequest() *AcceptOAuth2ConsentRequest + func NewAcceptOAuth2ConsentRequestWithDefaults() *AcceptOAuth2ConsentRequest + func (o *AcceptOAuth2ConsentRequest) GetContext() interface{} + func (o *AcceptOAuth2ConsentRequest) GetContextOk() (*interface{}, bool) + func (o *AcceptOAuth2ConsentRequest) GetGrantAccessTokenAudience() []string + func (o *AcceptOAuth2ConsentRequest) GetGrantAccessTokenAudienceOk() ([]string, bool) + func (o *AcceptOAuth2ConsentRequest) GetGrantScope() []string + func (o *AcceptOAuth2ConsentRequest) GetGrantScopeOk() ([]string, bool) + func (o *AcceptOAuth2ConsentRequest) GetRemember() bool + func (o *AcceptOAuth2ConsentRequest) GetRememberFor() int64 + func (o *AcceptOAuth2ConsentRequest) GetRememberForOk() (*int64, bool) + func (o *AcceptOAuth2ConsentRequest) GetRememberOk() (*bool, bool) + func (o *AcceptOAuth2ConsentRequest) GetSession() AcceptOAuth2ConsentRequestSession + func (o *AcceptOAuth2ConsentRequest) GetSessionOk() (*AcceptOAuth2ConsentRequestSession, bool) + func (o *AcceptOAuth2ConsentRequest) HasContext() bool + func (o *AcceptOAuth2ConsentRequest) HasGrantAccessTokenAudience() bool + func (o *AcceptOAuth2ConsentRequest) HasGrantScope() bool + func (o *AcceptOAuth2ConsentRequest) HasRemember() bool + func (o *AcceptOAuth2ConsentRequest) HasRememberFor() bool + func (o *AcceptOAuth2ConsentRequest) HasSession() bool + func (o *AcceptOAuth2ConsentRequest) SetContext(v interface{}) + func (o *AcceptOAuth2ConsentRequest) SetGrantAccessTokenAudience(v []string) + func (o *AcceptOAuth2ConsentRequest) SetGrantScope(v []string) + func (o *AcceptOAuth2ConsentRequest) SetRemember(v bool) + func (o *AcceptOAuth2ConsentRequest) SetRememberFor(v int64) + func (o *AcceptOAuth2ConsentRequest) SetSession(v AcceptOAuth2ConsentRequestSession) + func (o *AcceptOAuth2ConsentRequest) UnmarshalJSON(data []byte) (err error) + func (o AcceptOAuth2ConsentRequest) MarshalJSON() ([]byte, error) + func (o AcceptOAuth2ConsentRequest) ToMap() (map[string]interface{}, error) + type AcceptOAuth2ConsentRequestSession struct + AccessToken interface{} + AdditionalProperties map[string]interface{} + IdToken interface{} + func NewAcceptOAuth2ConsentRequestSession() *AcceptOAuth2ConsentRequestSession + func NewAcceptOAuth2ConsentRequestSessionWithDefaults() *AcceptOAuth2ConsentRequestSession + func (o *AcceptOAuth2ConsentRequestSession) GetAccessToken() interface{} + func (o *AcceptOAuth2ConsentRequestSession) GetAccessTokenOk() (*interface{}, bool) + func (o *AcceptOAuth2ConsentRequestSession) GetIdToken() interface{} + func (o *AcceptOAuth2ConsentRequestSession) GetIdTokenOk() (*interface{}, bool) + func (o *AcceptOAuth2ConsentRequestSession) HasAccessToken() bool + func (o *AcceptOAuth2ConsentRequestSession) HasIdToken() bool + func (o *AcceptOAuth2ConsentRequestSession) SetAccessToken(v interface{}) + func (o *AcceptOAuth2ConsentRequestSession) SetIdToken(v interface{}) + func (o *AcceptOAuth2ConsentRequestSession) UnmarshalJSON(data []byte) (err error) + func (o AcceptOAuth2ConsentRequestSession) MarshalJSON() ([]byte, error) + func (o AcceptOAuth2ConsentRequestSession) ToMap() (map[string]interface{}, error) + type AcceptOAuth2LoginRequest struct + Acr *string + AdditionalProperties map[string]interface{} + Amr []string + Context interface{} + ExtendSessionLifespan *bool + ForceSubjectIdentifier *string + IdentityProviderSessionId *string + Remember *bool + RememberFor *int64 + Subject string + func NewAcceptOAuth2LoginRequest(subject string) *AcceptOAuth2LoginRequest + func NewAcceptOAuth2LoginRequestWithDefaults() *AcceptOAuth2LoginRequest + func (o *AcceptOAuth2LoginRequest) GetAcr() string + func (o *AcceptOAuth2LoginRequest) GetAcrOk() (*string, bool) + func (o *AcceptOAuth2LoginRequest) GetAmr() []string + func (o *AcceptOAuth2LoginRequest) GetAmrOk() ([]string, bool) + func (o *AcceptOAuth2LoginRequest) GetContext() interface{} + func (o *AcceptOAuth2LoginRequest) GetContextOk() (*interface{}, bool) + func (o *AcceptOAuth2LoginRequest) GetExtendSessionLifespan() bool + func (o *AcceptOAuth2LoginRequest) GetExtendSessionLifespanOk() (*bool, bool) + func (o *AcceptOAuth2LoginRequest) GetForceSubjectIdentifier() string + func (o *AcceptOAuth2LoginRequest) GetForceSubjectIdentifierOk() (*string, bool) + func (o *AcceptOAuth2LoginRequest) GetIdentityProviderSessionId() string + func (o *AcceptOAuth2LoginRequest) GetIdentityProviderSessionIdOk() (*string, bool) + func (o *AcceptOAuth2LoginRequest) GetRemember() bool + func (o *AcceptOAuth2LoginRequest) GetRememberFor() int64 + func (o *AcceptOAuth2LoginRequest) GetRememberForOk() (*int64, bool) + func (o *AcceptOAuth2LoginRequest) GetRememberOk() (*bool, bool) + func (o *AcceptOAuth2LoginRequest) GetSubject() string + func (o *AcceptOAuth2LoginRequest) GetSubjectOk() (*string, bool) + func (o *AcceptOAuth2LoginRequest) HasAcr() bool + func (o *AcceptOAuth2LoginRequest) HasAmr() bool + func (o *AcceptOAuth2LoginRequest) HasContext() bool + func (o *AcceptOAuth2LoginRequest) HasExtendSessionLifespan() bool + func (o *AcceptOAuth2LoginRequest) HasForceSubjectIdentifier() bool + func (o *AcceptOAuth2LoginRequest) HasIdentityProviderSessionId() bool + func (o *AcceptOAuth2LoginRequest) HasRemember() bool + func (o *AcceptOAuth2LoginRequest) HasRememberFor() bool + func (o *AcceptOAuth2LoginRequest) SetAcr(v string) + func (o *AcceptOAuth2LoginRequest) SetAmr(v []string) + func (o *AcceptOAuth2LoginRequest) SetContext(v interface{}) + func (o *AcceptOAuth2LoginRequest) SetExtendSessionLifespan(v bool) + func (o *AcceptOAuth2LoginRequest) SetForceSubjectIdentifier(v string) + func (o *AcceptOAuth2LoginRequest) SetIdentityProviderSessionId(v string) + func (o *AcceptOAuth2LoginRequest) SetRemember(v bool) + func (o *AcceptOAuth2LoginRequest) SetRememberFor(v int64) + func (o *AcceptOAuth2LoginRequest) SetSubject(v string) + func (o *AcceptOAuth2LoginRequest) UnmarshalJSON(data []byte) (err error) + func (o AcceptOAuth2LoginRequest) MarshalJSON() ([]byte, error) + func (o AcceptOAuth2LoginRequest) ToMap() (map[string]interface{}, error) + type BasicAuth struct + Password string + UserName string + type Configuration struct + Debug bool + DefaultHeader map[string]string + HTTPClient *http.Client + Host string + OperationServers map[string]ServerConfigurations + Scheme string + Servers ServerConfigurations + UserAgent string + func NewConfiguration() *Configuration + func (c *Configuration) AddDefaultHeader(key string, value string) + func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error) + func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error) + type CreateJsonWebKeySet struct + AdditionalProperties map[string]interface{} + Alg string + Kid string + Use string + func NewCreateJsonWebKeySet(alg string, kid string, use string) *CreateJsonWebKeySet + func NewCreateJsonWebKeySetWithDefaults() *CreateJsonWebKeySet + func (o *CreateJsonWebKeySet) GetAlg() string + func (o *CreateJsonWebKeySet) GetAlgOk() (*string, bool) + func (o *CreateJsonWebKeySet) GetKid() string + func (o *CreateJsonWebKeySet) GetKidOk() (*string, bool) + func (o *CreateJsonWebKeySet) GetUse() string + func (o *CreateJsonWebKeySet) GetUseOk() (*string, bool) + func (o *CreateJsonWebKeySet) SetAlg(v string) + func (o *CreateJsonWebKeySet) SetKid(v string) + func (o *CreateJsonWebKeySet) SetUse(v string) + func (o *CreateJsonWebKeySet) UnmarshalJSON(data []byte) (err error) + func (o CreateJsonWebKeySet) MarshalJSON() ([]byte, error) + func (o CreateJsonWebKeySet) ToMap() (map[string]interface{}, error) + type CreateVerifiableCredentialRequestBody struct + AdditionalProperties map[string]interface{} + Format *string + Proof *VerifiableCredentialProof + Types []string + func NewCreateVerifiableCredentialRequestBody() *CreateVerifiableCredentialRequestBody + func NewCreateVerifiableCredentialRequestBodyWithDefaults() *CreateVerifiableCredentialRequestBody + func (o *CreateVerifiableCredentialRequestBody) GetFormat() string + func (o *CreateVerifiableCredentialRequestBody) GetFormatOk() (*string, bool) + func (o *CreateVerifiableCredentialRequestBody) GetProof() VerifiableCredentialProof + func (o *CreateVerifiableCredentialRequestBody) GetProofOk() (*VerifiableCredentialProof, bool) + func (o *CreateVerifiableCredentialRequestBody) GetTypes() []string + func (o *CreateVerifiableCredentialRequestBody) GetTypesOk() ([]string, bool) + func (o *CreateVerifiableCredentialRequestBody) HasFormat() bool + func (o *CreateVerifiableCredentialRequestBody) HasProof() bool + func (o *CreateVerifiableCredentialRequestBody) HasTypes() bool + func (o *CreateVerifiableCredentialRequestBody) SetFormat(v string) + func (o *CreateVerifiableCredentialRequestBody) SetProof(v VerifiableCredentialProof) + func (o *CreateVerifiableCredentialRequestBody) SetTypes(v []string) + func (o *CreateVerifiableCredentialRequestBody) UnmarshalJSON(data []byte) (err error) + func (o CreateVerifiableCredentialRequestBody) MarshalJSON() ([]byte, error) + func (o CreateVerifiableCredentialRequestBody) ToMap() (map[string]interface{}, error) + type CredentialSupportedDraft00 struct + AdditionalProperties map[string]interface{} + CryptographicBindingMethodsSupported []string + CryptographicSuitesSupported []string + Format *string + Types []string + func NewCredentialSupportedDraft00() *CredentialSupportedDraft00 + func NewCredentialSupportedDraft00WithDefaults() *CredentialSupportedDraft00 + func (o *CredentialSupportedDraft00) GetCryptographicBindingMethodsSupported() []string + func (o *CredentialSupportedDraft00) GetCryptographicBindingMethodsSupportedOk() ([]string, bool) + func (o *CredentialSupportedDraft00) GetCryptographicSuitesSupported() []string + func (o *CredentialSupportedDraft00) GetCryptographicSuitesSupportedOk() ([]string, bool) + func (o *CredentialSupportedDraft00) GetFormat() string + func (o *CredentialSupportedDraft00) GetFormatOk() (*string, bool) + func (o *CredentialSupportedDraft00) GetTypes() []string + func (o *CredentialSupportedDraft00) GetTypesOk() ([]string, bool) + func (o *CredentialSupportedDraft00) HasCryptographicBindingMethodsSupported() bool + func (o *CredentialSupportedDraft00) HasCryptographicSuitesSupported() bool + func (o *CredentialSupportedDraft00) HasFormat() bool + func (o *CredentialSupportedDraft00) HasTypes() bool + func (o *CredentialSupportedDraft00) SetCryptographicBindingMethodsSupported(v []string) + func (o *CredentialSupportedDraft00) SetCryptographicSuitesSupported(v []string) + func (o *CredentialSupportedDraft00) SetFormat(v string) + func (o *CredentialSupportedDraft00) SetTypes(v []string) + func (o *CredentialSupportedDraft00) UnmarshalJSON(data []byte) (err error) + func (o CredentialSupportedDraft00) MarshalJSON() ([]byte, error) + func (o CredentialSupportedDraft00) ToMap() (map[string]interface{}, error) + type DeviceAuthorization struct + AdditionalProperties map[string]interface{} + DeviceCode *string + ExpiresIn *int64 + Interval *int64 + UserCode *string + VerificationUri *string + VerificationUriComplete *string + func NewDeviceAuthorization() *DeviceAuthorization + func NewDeviceAuthorizationWithDefaults() *DeviceAuthorization + func (o *DeviceAuthorization) GetDeviceCode() string + func (o *DeviceAuthorization) GetDeviceCodeOk() (*string, bool) + func (o *DeviceAuthorization) GetExpiresIn() int64 + func (o *DeviceAuthorization) GetExpiresInOk() (*int64, bool) + func (o *DeviceAuthorization) GetInterval() int64 + func (o *DeviceAuthorization) GetIntervalOk() (*int64, bool) + func (o *DeviceAuthorization) GetUserCode() string + func (o *DeviceAuthorization) GetUserCodeOk() (*string, bool) + func (o *DeviceAuthorization) GetVerificationUri() string + func (o *DeviceAuthorization) GetVerificationUriComplete() string + func (o *DeviceAuthorization) GetVerificationUriCompleteOk() (*string, bool) + func (o *DeviceAuthorization) GetVerificationUriOk() (*string, bool) + func (o *DeviceAuthorization) HasDeviceCode() bool + func (o *DeviceAuthorization) HasExpiresIn() bool + func (o *DeviceAuthorization) HasInterval() bool + func (o *DeviceAuthorization) HasUserCode() bool + func (o *DeviceAuthorization) HasVerificationUri() bool + func (o *DeviceAuthorization) HasVerificationUriComplete() bool + func (o *DeviceAuthorization) SetDeviceCode(v string) + func (o *DeviceAuthorization) SetExpiresIn(v int64) + func (o *DeviceAuthorization) SetInterval(v int64) + func (o *DeviceAuthorization) SetUserCode(v string) + func (o *DeviceAuthorization) SetVerificationUri(v string) + func (o *DeviceAuthorization) SetVerificationUriComplete(v string) + func (o *DeviceAuthorization) UnmarshalJSON(data []byte) (err error) + func (o DeviceAuthorization) MarshalJSON() ([]byte, error) + func (o DeviceAuthorization) ToMap() (map[string]interface{}, error) + type DeviceUserAuthRequest struct + AdditionalProperties map[string]interface{} + Challenge string + Client *OAuth2Client + HandledAt *time.Time + RequestUrl *string + RequestedAccessTokenAudience []string + RequestedScope []string + func NewDeviceUserAuthRequest(challenge string) *DeviceUserAuthRequest + func NewDeviceUserAuthRequestWithDefaults() *DeviceUserAuthRequest + func (o *DeviceUserAuthRequest) GetChallenge() string + func (o *DeviceUserAuthRequest) GetChallengeOk() (*string, bool) + func (o *DeviceUserAuthRequest) GetClient() OAuth2Client + func (o *DeviceUserAuthRequest) GetClientOk() (*OAuth2Client, bool) + func (o *DeviceUserAuthRequest) GetHandledAt() time.Time + func (o *DeviceUserAuthRequest) GetHandledAtOk() (*time.Time, bool) + func (o *DeviceUserAuthRequest) GetRequestUrl() string + func (o *DeviceUserAuthRequest) GetRequestUrlOk() (*string, bool) + func (o *DeviceUserAuthRequest) GetRequestedAccessTokenAudience() []string + func (o *DeviceUserAuthRequest) GetRequestedAccessTokenAudienceOk() ([]string, bool) + func (o *DeviceUserAuthRequest) GetRequestedScope() []string + func (o *DeviceUserAuthRequest) GetRequestedScopeOk() ([]string, bool) + func (o *DeviceUserAuthRequest) HasClient() bool + func (o *DeviceUserAuthRequest) HasHandledAt() bool + func (o *DeviceUserAuthRequest) HasRequestUrl() bool + func (o *DeviceUserAuthRequest) HasRequestedAccessTokenAudience() bool + func (o *DeviceUserAuthRequest) HasRequestedScope() bool + func (o *DeviceUserAuthRequest) SetChallenge(v string) + func (o *DeviceUserAuthRequest) SetClient(v OAuth2Client) + func (o *DeviceUserAuthRequest) SetHandledAt(v time.Time) + func (o *DeviceUserAuthRequest) SetRequestUrl(v string) + func (o *DeviceUserAuthRequest) SetRequestedAccessTokenAudience(v []string) + func (o *DeviceUserAuthRequest) SetRequestedScope(v []string) + func (o *DeviceUserAuthRequest) UnmarshalJSON(data []byte) (err error) + func (o DeviceUserAuthRequest) MarshalJSON() ([]byte, error) + func (o DeviceUserAuthRequest) ToMap() (map[string]interface{}, error) + type ErrorOAuth2 struct + AdditionalProperties map[string]interface{} + Error *string + ErrorDebug *string + ErrorDescription *string + ErrorHint *string + StatusCode *int64 + func NewErrorOAuth2() *ErrorOAuth2 + func NewErrorOAuth2WithDefaults() *ErrorOAuth2 + func (o *ErrorOAuth2) GetError() string + func (o *ErrorOAuth2) GetErrorDebug() string + func (o *ErrorOAuth2) GetErrorDebugOk() (*string, bool) + func (o *ErrorOAuth2) GetErrorDescription() string + func (o *ErrorOAuth2) GetErrorDescriptionOk() (*string, bool) + func (o *ErrorOAuth2) GetErrorHint() string + func (o *ErrorOAuth2) GetErrorHintOk() (*string, bool) + func (o *ErrorOAuth2) GetErrorOk() (*string, bool) + func (o *ErrorOAuth2) GetStatusCode() int64 + func (o *ErrorOAuth2) GetStatusCodeOk() (*int64, bool) + func (o *ErrorOAuth2) HasError() bool + func (o *ErrorOAuth2) HasErrorDebug() bool + func (o *ErrorOAuth2) HasErrorDescription() bool + func (o *ErrorOAuth2) HasErrorHint() bool + func (o *ErrorOAuth2) HasStatusCode() bool + func (o *ErrorOAuth2) SetError(v string) + func (o *ErrorOAuth2) SetErrorDebug(v string) + func (o *ErrorOAuth2) SetErrorDescription(v string) + func (o *ErrorOAuth2) SetErrorHint(v string) + func (o *ErrorOAuth2) SetStatusCode(v int64) + func (o *ErrorOAuth2) UnmarshalJSON(data []byte) (err error) + func (o ErrorOAuth2) MarshalJSON() ([]byte, error) + func (o ErrorOAuth2) ToMap() (map[string]interface{}, error) + type GenericError struct + AdditionalProperties map[string]interface{} + Code *int64 + Debug *string + Details interface{} + Id *string + Message string + Reason *string + Request *string + Status *string + func NewGenericError(message string) *GenericError + func NewGenericErrorWithDefaults() *GenericError + func (o *GenericError) GetCode() int64 + func (o *GenericError) GetCodeOk() (*int64, bool) + func (o *GenericError) GetDebug() string + func (o *GenericError) GetDebugOk() (*string, bool) + func (o *GenericError) GetDetails() interface{} + func (o *GenericError) GetDetailsOk() (*interface{}, bool) + func (o *GenericError) GetId() string + func (o *GenericError) GetIdOk() (*string, bool) + func (o *GenericError) GetMessage() string + func (o *GenericError) GetMessageOk() (*string, bool) + func (o *GenericError) GetReason() string + func (o *GenericError) GetReasonOk() (*string, bool) + func (o *GenericError) GetRequest() string + func (o *GenericError) GetRequestOk() (*string, bool) + func (o *GenericError) GetStatus() string + func (o *GenericError) GetStatusOk() (*string, bool) + func (o *GenericError) HasCode() bool + func (o *GenericError) HasDebug() bool + func (o *GenericError) HasDetails() bool + func (o *GenericError) HasId() bool + func (o *GenericError) HasReason() bool + func (o *GenericError) HasRequest() bool + func (o *GenericError) HasStatus() bool + func (o *GenericError) SetCode(v int64) + func (o *GenericError) SetDebug(v string) + func (o *GenericError) SetDetails(v interface{}) + func (o *GenericError) SetId(v string) + func (o *GenericError) SetMessage(v string) + func (o *GenericError) SetReason(v string) + func (o *GenericError) SetRequest(v string) + func (o *GenericError) SetStatus(v string) + func (o *GenericError) UnmarshalJSON(data []byte) (err error) + func (o GenericError) MarshalJSON() ([]byte, error) + func (o GenericError) ToMap() (map[string]interface{}, error) + type GenericOpenAPIError struct + func (e GenericOpenAPIError) Body() []byte + func (e GenericOpenAPIError) Error() string + func (e GenericOpenAPIError) Model() interface{} + type GetVersion200Response struct + AdditionalProperties map[string]interface{} + Version *string + func NewGetVersion200Response() *GetVersion200Response + func NewGetVersion200ResponseWithDefaults() *GetVersion200Response + func (o *GetVersion200Response) GetVersion() string + func (o *GetVersion200Response) GetVersionOk() (*string, bool) + func (o *GetVersion200Response) HasVersion() bool + func (o *GetVersion200Response) SetVersion(v string) + func (o *GetVersion200Response) UnmarshalJSON(data []byte) (err error) + func (o GetVersion200Response) MarshalJSON() ([]byte, error) + func (o GetVersion200Response) ToMap() (map[string]interface{}, error) + type HealthNotReadyStatus struct + AdditionalProperties map[string]interface{} + Errors *map[string]string + func NewHealthNotReadyStatus() *HealthNotReadyStatus + func NewHealthNotReadyStatusWithDefaults() *HealthNotReadyStatus + func (o *HealthNotReadyStatus) GetErrors() map[string]string + func (o *HealthNotReadyStatus) GetErrorsOk() (*map[string]string, bool) + func (o *HealthNotReadyStatus) HasErrors() bool + func (o *HealthNotReadyStatus) SetErrors(v map[string]string) + func (o *HealthNotReadyStatus) UnmarshalJSON(data []byte) (err error) + func (o HealthNotReadyStatus) MarshalJSON() ([]byte, error) + func (o HealthNotReadyStatus) ToMap() (map[string]interface{}, error) + type HealthStatus struct + AdditionalProperties map[string]interface{} + Status *string + func NewHealthStatus() *HealthStatus + func NewHealthStatusWithDefaults() *HealthStatus + func (o *HealthStatus) GetStatus() string + func (o *HealthStatus) GetStatusOk() (*string, bool) + func (o *HealthStatus) HasStatus() bool + func (o *HealthStatus) SetStatus(v string) + func (o *HealthStatus) UnmarshalJSON(data []byte) (err error) + func (o HealthStatus) MarshalJSON() ([]byte, error) + func (o HealthStatus) ToMap() (map[string]interface{}, error) + type IntrospectedOAuth2Token struct + Active bool + AdditionalProperties map[string]interface{} + Aud []string + ClientId *string + Exp *int64 + Ext map[string]interface{} + Iat *int64 + Iss *string + Nbf *int64 + ObfuscatedSubject *string + Scope *string + Sub *string + TokenType *string + TokenUse *string + Username *string + func NewIntrospectedOAuth2Token(active bool) *IntrospectedOAuth2Token + func NewIntrospectedOAuth2TokenWithDefaults() *IntrospectedOAuth2Token + func (o *IntrospectedOAuth2Token) GetActive() bool + func (o *IntrospectedOAuth2Token) GetActiveOk() (*bool, bool) + func (o *IntrospectedOAuth2Token) GetAud() []string + func (o *IntrospectedOAuth2Token) GetAudOk() ([]string, bool) + func (o *IntrospectedOAuth2Token) GetClientId() string + func (o *IntrospectedOAuth2Token) GetClientIdOk() (*string, bool) + func (o *IntrospectedOAuth2Token) GetExp() int64 + func (o *IntrospectedOAuth2Token) GetExpOk() (*int64, bool) + func (o *IntrospectedOAuth2Token) GetExt() map[string]interface{} + func (o *IntrospectedOAuth2Token) GetExtOk() (map[string]interface{}, bool) + func (o *IntrospectedOAuth2Token) GetIat() int64 + func (o *IntrospectedOAuth2Token) GetIatOk() (*int64, bool) + func (o *IntrospectedOAuth2Token) GetIss() string + func (o *IntrospectedOAuth2Token) GetIssOk() (*string, bool) + func (o *IntrospectedOAuth2Token) GetNbf() int64 + func (o *IntrospectedOAuth2Token) GetNbfOk() (*int64, bool) + func (o *IntrospectedOAuth2Token) GetObfuscatedSubject() string + func (o *IntrospectedOAuth2Token) GetObfuscatedSubjectOk() (*string, bool) + func (o *IntrospectedOAuth2Token) GetScope() string + func (o *IntrospectedOAuth2Token) GetScopeOk() (*string, bool) + func (o *IntrospectedOAuth2Token) GetSub() string + func (o *IntrospectedOAuth2Token) GetSubOk() (*string, bool) + func (o *IntrospectedOAuth2Token) GetTokenType() string + func (o *IntrospectedOAuth2Token) GetTokenTypeOk() (*string, bool) + func (o *IntrospectedOAuth2Token) GetTokenUse() string + func (o *IntrospectedOAuth2Token) GetTokenUseOk() (*string, bool) + func (o *IntrospectedOAuth2Token) GetUsername() string + func (o *IntrospectedOAuth2Token) GetUsernameOk() (*string, bool) + func (o *IntrospectedOAuth2Token) HasAud() bool + func (o *IntrospectedOAuth2Token) HasClientId() bool + func (o *IntrospectedOAuth2Token) HasExp() bool + func (o *IntrospectedOAuth2Token) HasExt() bool + func (o *IntrospectedOAuth2Token) HasIat() bool + func (o *IntrospectedOAuth2Token) HasIss() bool + func (o *IntrospectedOAuth2Token) HasNbf() bool + func (o *IntrospectedOAuth2Token) HasObfuscatedSubject() bool + func (o *IntrospectedOAuth2Token) HasScope() bool + func (o *IntrospectedOAuth2Token) HasSub() bool + func (o *IntrospectedOAuth2Token) HasTokenType() bool + func (o *IntrospectedOAuth2Token) HasTokenUse() bool + func (o *IntrospectedOAuth2Token) HasUsername() bool + func (o *IntrospectedOAuth2Token) SetActive(v bool) + func (o *IntrospectedOAuth2Token) SetAud(v []string) + func (o *IntrospectedOAuth2Token) SetClientId(v string) + func (o *IntrospectedOAuth2Token) SetExp(v int64) + func (o *IntrospectedOAuth2Token) SetExt(v map[string]interface{}) + func (o *IntrospectedOAuth2Token) SetIat(v int64) + func (o *IntrospectedOAuth2Token) SetIss(v string) + func (o *IntrospectedOAuth2Token) SetNbf(v int64) + func (o *IntrospectedOAuth2Token) SetObfuscatedSubject(v string) + func (o *IntrospectedOAuth2Token) SetScope(v string) + func (o *IntrospectedOAuth2Token) SetSub(v string) + func (o *IntrospectedOAuth2Token) SetTokenType(v string) + func (o *IntrospectedOAuth2Token) SetTokenUse(v string) + func (o *IntrospectedOAuth2Token) SetUsername(v string) + func (o *IntrospectedOAuth2Token) UnmarshalJSON(data []byte) (err error) + func (o IntrospectedOAuth2Token) MarshalJSON() ([]byte, error) + func (o IntrospectedOAuth2Token) ToMap() (map[string]interface{}, error) + type IsReady200Response struct + AdditionalProperties map[string]interface{} + Status *string + func NewIsReady200Response() *IsReady200Response + func NewIsReady200ResponseWithDefaults() *IsReady200Response + func (o *IsReady200Response) GetStatus() string + func (o *IsReady200Response) GetStatusOk() (*string, bool) + func (o *IsReady200Response) HasStatus() bool + func (o *IsReady200Response) SetStatus(v string) + func (o *IsReady200Response) UnmarshalJSON(data []byte) (err error) + func (o IsReady200Response) MarshalJSON() ([]byte, error) + func (o IsReady200Response) ToMap() (map[string]interface{}, error) + type IsReady503Response struct + AdditionalProperties map[string]interface{} + Errors *map[string]string + func NewIsReady503Response() *IsReady503Response + func NewIsReady503ResponseWithDefaults() *IsReady503Response + func (o *IsReady503Response) GetErrors() map[string]string + func (o *IsReady503Response) GetErrorsOk() (*map[string]string, bool) + func (o *IsReady503Response) HasErrors() bool + func (o *IsReady503Response) SetErrors(v map[string]string) + func (o *IsReady503Response) UnmarshalJSON(data []byte) (err error) + func (o IsReady503Response) MarshalJSON() ([]byte, error) + func (o IsReady503Response) ToMap() (map[string]interface{}, error) + type JsonPatch struct + AdditionalProperties map[string]interface{} + From *string + Op string + Path string + Value interface{} + func NewJsonPatch(op string, path string) *JsonPatch + func NewJsonPatchWithDefaults() *JsonPatch + func (o *JsonPatch) GetFrom() string + func (o *JsonPatch) GetFromOk() (*string, bool) + func (o *JsonPatch) GetOp() string + func (o *JsonPatch) GetOpOk() (*string, bool) + func (o *JsonPatch) GetPath() string + func (o *JsonPatch) GetPathOk() (*string, bool) + func (o *JsonPatch) GetValue() interface{} + func (o *JsonPatch) GetValueOk() (*interface{}, bool) + func (o *JsonPatch) HasFrom() bool + func (o *JsonPatch) HasValue() bool + func (o *JsonPatch) SetFrom(v string) + func (o *JsonPatch) SetOp(v string) + func (o *JsonPatch) SetPath(v string) + func (o *JsonPatch) SetValue(v interface{}) + func (o *JsonPatch) UnmarshalJSON(data []byte) (err error) + func (o JsonPatch) MarshalJSON() ([]byte, error) + func (o JsonPatch) ToMap() (map[string]interface{}, error) + type JsonWebKey struct + AdditionalProperties map[string]interface{} + Alg string + Crv *string + D *string + Dp *string + Dq *string + E *string + K *string + Kid string + Kty string + N *string + P *string + Q *string + Qi *string + Use string + X *string + X5c []string + Y *string + func NewJsonWebKey(alg string, kid string, kty string, use string) *JsonWebKey + func NewJsonWebKeyWithDefaults() *JsonWebKey + func (o *JsonWebKey) GetAlg() string + func (o *JsonWebKey) GetAlgOk() (*string, bool) + func (o *JsonWebKey) GetCrv() string + func (o *JsonWebKey) GetCrvOk() (*string, bool) + func (o *JsonWebKey) GetD() string + func (o *JsonWebKey) GetDOk() (*string, bool) + func (o *JsonWebKey) GetDp() string + func (o *JsonWebKey) GetDpOk() (*string, bool) + func (o *JsonWebKey) GetDq() string + func (o *JsonWebKey) GetDqOk() (*string, bool) + func (o *JsonWebKey) GetE() string + func (o *JsonWebKey) GetEOk() (*string, bool) + func (o *JsonWebKey) GetK() string + func (o *JsonWebKey) GetKOk() (*string, bool) + func (o *JsonWebKey) GetKid() string + func (o *JsonWebKey) GetKidOk() (*string, bool) + func (o *JsonWebKey) GetKty() string + func (o *JsonWebKey) GetKtyOk() (*string, bool) + func (o *JsonWebKey) GetN() string + func (o *JsonWebKey) GetNOk() (*string, bool) + func (o *JsonWebKey) GetP() string + func (o *JsonWebKey) GetPOk() (*string, bool) + func (o *JsonWebKey) GetQ() string + func (o *JsonWebKey) GetQOk() (*string, bool) + func (o *JsonWebKey) GetQi() string + func (o *JsonWebKey) GetQiOk() (*string, bool) + func (o *JsonWebKey) GetUse() string + func (o *JsonWebKey) GetUseOk() (*string, bool) + func (o *JsonWebKey) GetX() string + func (o *JsonWebKey) GetX5c() []string + func (o *JsonWebKey) GetX5cOk() ([]string, bool) + func (o *JsonWebKey) GetXOk() (*string, bool) + func (o *JsonWebKey) GetY() string + func (o *JsonWebKey) GetYOk() (*string, bool) + func (o *JsonWebKey) HasCrv() bool + func (o *JsonWebKey) HasD() bool + func (o *JsonWebKey) HasDp() bool + func (o *JsonWebKey) HasDq() bool + func (o *JsonWebKey) HasE() bool + func (o *JsonWebKey) HasK() bool + func (o *JsonWebKey) HasN() bool + func (o *JsonWebKey) HasP() bool + func (o *JsonWebKey) HasQ() bool + func (o *JsonWebKey) HasQi() bool + func (o *JsonWebKey) HasX() bool + func (o *JsonWebKey) HasX5c() bool + func (o *JsonWebKey) HasY() bool + func (o *JsonWebKey) SetAlg(v string) + func (o *JsonWebKey) SetCrv(v string) + func (o *JsonWebKey) SetD(v string) + func (o *JsonWebKey) SetDp(v string) + func (o *JsonWebKey) SetDq(v string) + func (o *JsonWebKey) SetE(v string) + func (o *JsonWebKey) SetK(v string) + func (o *JsonWebKey) SetKid(v string) + func (o *JsonWebKey) SetKty(v string) + func (o *JsonWebKey) SetN(v string) + func (o *JsonWebKey) SetP(v string) + func (o *JsonWebKey) SetQ(v string) + func (o *JsonWebKey) SetQi(v string) + func (o *JsonWebKey) SetUse(v string) + func (o *JsonWebKey) SetX(v string) + func (o *JsonWebKey) SetX5c(v []string) + func (o *JsonWebKey) SetY(v string) + func (o *JsonWebKey) UnmarshalJSON(data []byte) (err error) + func (o JsonWebKey) MarshalJSON() ([]byte, error) + func (o JsonWebKey) ToMap() (map[string]interface{}, error) + type JsonWebKeySet struct + AdditionalProperties map[string]interface{} + Keys []JsonWebKey + func NewJsonWebKeySet() *JsonWebKeySet + func NewJsonWebKeySetWithDefaults() *JsonWebKeySet + func (o *JsonWebKeySet) GetKeys() []JsonWebKey + func (o *JsonWebKeySet) GetKeysOk() ([]JsonWebKey, bool) + func (o *JsonWebKeySet) HasKeys() bool + func (o *JsonWebKeySet) SetKeys(v []JsonWebKey) + func (o *JsonWebKeySet) UnmarshalJSON(data []byte) (err error) + func (o JsonWebKeySet) MarshalJSON() ([]byte, error) + func (o JsonWebKeySet) ToMap() (map[string]interface{}, error) + type JwkAPI interface + CreateJsonWebKeySet func(ctx context.Context, set string) JwkAPICreateJsonWebKeySetRequest + CreateJsonWebKeySetExecute func(r JwkAPICreateJsonWebKeySetRequest) (*JsonWebKeySet, *http.Response, error) + DeleteJsonWebKey func(ctx context.Context, set string, kid string) JwkAPIDeleteJsonWebKeyRequest + DeleteJsonWebKeyExecute func(r JwkAPIDeleteJsonWebKeyRequest) (*http.Response, error) + DeleteJsonWebKeySet func(ctx context.Context, set string) JwkAPIDeleteJsonWebKeySetRequest + DeleteJsonWebKeySetExecute func(r JwkAPIDeleteJsonWebKeySetRequest) (*http.Response, error) + GetJsonWebKey func(ctx context.Context, set string, kid string) JwkAPIGetJsonWebKeyRequest + GetJsonWebKeyExecute func(r JwkAPIGetJsonWebKeyRequest) (*JsonWebKeySet, *http.Response, error) + GetJsonWebKeySet func(ctx context.Context, set string) JwkAPIGetJsonWebKeySetRequest + GetJsonWebKeySetExecute func(r JwkAPIGetJsonWebKeySetRequest) (*JsonWebKeySet, *http.Response, error) + SetJsonWebKey func(ctx context.Context, set string, kid string) JwkAPISetJsonWebKeyRequest + SetJsonWebKeyExecute func(r JwkAPISetJsonWebKeyRequest) (*JsonWebKey, *http.Response, error) + SetJsonWebKeySet func(ctx context.Context, set string) JwkAPISetJsonWebKeySetRequest + SetJsonWebKeySetExecute func(r JwkAPISetJsonWebKeySetRequest) (*JsonWebKeySet, *http.Response, error) + type JwkAPICreateJsonWebKeySetRequest struct + ApiService JwkAPI + func (r JwkAPICreateJsonWebKeySetRequest) CreateJsonWebKeySet(createJsonWebKeySet CreateJsonWebKeySet) JwkAPICreateJsonWebKeySetRequest + func (r JwkAPICreateJsonWebKeySetRequest) Execute() (*JsonWebKeySet, *http.Response, error) + type JwkAPIDeleteJsonWebKeyRequest struct + ApiService JwkAPI + func (r JwkAPIDeleteJsonWebKeyRequest) Execute() (*http.Response, error) + type JwkAPIDeleteJsonWebKeySetRequest struct + ApiService JwkAPI + func (r JwkAPIDeleteJsonWebKeySetRequest) Execute() (*http.Response, error) + type JwkAPIGetJsonWebKeyRequest struct + ApiService JwkAPI + func (r JwkAPIGetJsonWebKeyRequest) Execute() (*JsonWebKeySet, *http.Response, error) + type JwkAPIGetJsonWebKeySetRequest struct + ApiService JwkAPI + func (r JwkAPIGetJsonWebKeySetRequest) Execute() (*JsonWebKeySet, *http.Response, error) + type JwkAPIService service + func (a *JwkAPIService) CreateJsonWebKeySet(ctx context.Context, set string) JwkAPICreateJsonWebKeySetRequest + func (a *JwkAPIService) CreateJsonWebKeySetExecute(r JwkAPICreateJsonWebKeySetRequest) (*JsonWebKeySet, *http.Response, error) + func (a *JwkAPIService) DeleteJsonWebKey(ctx context.Context, set string, kid string) JwkAPIDeleteJsonWebKeyRequest + func (a *JwkAPIService) DeleteJsonWebKeyExecute(r JwkAPIDeleteJsonWebKeyRequest) (*http.Response, error) + func (a *JwkAPIService) DeleteJsonWebKeySet(ctx context.Context, set string) JwkAPIDeleteJsonWebKeySetRequest + func (a *JwkAPIService) DeleteJsonWebKeySetExecute(r JwkAPIDeleteJsonWebKeySetRequest) (*http.Response, error) + func (a *JwkAPIService) GetJsonWebKey(ctx context.Context, set string, kid string) JwkAPIGetJsonWebKeyRequest + func (a *JwkAPIService) GetJsonWebKeyExecute(r JwkAPIGetJsonWebKeyRequest) (*JsonWebKeySet, *http.Response, error) + func (a *JwkAPIService) GetJsonWebKeySet(ctx context.Context, set string) JwkAPIGetJsonWebKeySetRequest + func (a *JwkAPIService) GetJsonWebKeySetExecute(r JwkAPIGetJsonWebKeySetRequest) (*JsonWebKeySet, *http.Response, error) + func (a *JwkAPIService) SetJsonWebKey(ctx context.Context, set string, kid string) JwkAPISetJsonWebKeyRequest + func (a *JwkAPIService) SetJsonWebKeyExecute(r JwkAPISetJsonWebKeyRequest) (*JsonWebKey, *http.Response, error) + func (a *JwkAPIService) SetJsonWebKeySet(ctx context.Context, set string) JwkAPISetJsonWebKeySetRequest + func (a *JwkAPIService) SetJsonWebKeySetExecute(r JwkAPISetJsonWebKeySetRequest) (*JsonWebKeySet, *http.Response, error) + type JwkAPISetJsonWebKeyRequest struct + ApiService JwkAPI + func (r JwkAPISetJsonWebKeyRequest) Execute() (*JsonWebKey, *http.Response, error) + func (r JwkAPISetJsonWebKeyRequest) JsonWebKey(jsonWebKey JsonWebKey) JwkAPISetJsonWebKeyRequest + type JwkAPISetJsonWebKeySetRequest struct + ApiService JwkAPI + func (r JwkAPISetJsonWebKeySetRequest) Execute() (*JsonWebKeySet, *http.Response, error) + func (r JwkAPISetJsonWebKeySetRequest) JsonWebKeySet(jsonWebKeySet JsonWebKeySet) JwkAPISetJsonWebKeySetRequest + type KeysetPaginationRequestParameters struct + AdditionalProperties map[string]interface{} + PageSize *int64 + PageToken *string + func NewKeysetPaginationRequestParameters() *KeysetPaginationRequestParameters + func NewKeysetPaginationRequestParametersWithDefaults() *KeysetPaginationRequestParameters + func (o *KeysetPaginationRequestParameters) GetPageSize() int64 + func (o *KeysetPaginationRequestParameters) GetPageSizeOk() (*int64, bool) + func (o *KeysetPaginationRequestParameters) GetPageToken() string + func (o *KeysetPaginationRequestParameters) GetPageTokenOk() (*string, bool) + func (o *KeysetPaginationRequestParameters) HasPageSize() bool + func (o *KeysetPaginationRequestParameters) HasPageToken() bool + func (o *KeysetPaginationRequestParameters) SetPageSize(v int64) + func (o *KeysetPaginationRequestParameters) SetPageToken(v string) + func (o *KeysetPaginationRequestParameters) UnmarshalJSON(data []byte) (err error) + func (o KeysetPaginationRequestParameters) MarshalJSON() ([]byte, error) + func (o KeysetPaginationRequestParameters) ToMap() (map[string]interface{}, error) + type KeysetPaginationResponseHeaders struct + AdditionalProperties map[string]interface{} + Link *string + func NewKeysetPaginationResponseHeaders() *KeysetPaginationResponseHeaders + func NewKeysetPaginationResponseHeadersWithDefaults() *KeysetPaginationResponseHeaders + func (o *KeysetPaginationResponseHeaders) GetLink() string + func (o *KeysetPaginationResponseHeaders) GetLinkOk() (*string, bool) + func (o *KeysetPaginationResponseHeaders) HasLink() bool + func (o *KeysetPaginationResponseHeaders) SetLink(v string) + func (o *KeysetPaginationResponseHeaders) UnmarshalJSON(data []byte) (err error) + func (o KeysetPaginationResponseHeaders) MarshalJSON() ([]byte, error) + func (o KeysetPaginationResponseHeaders) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type MetadataAPI interface + GetVersion func(ctx context.Context) MetadataAPIGetVersionRequest + GetVersionExecute func(r MetadataAPIGetVersionRequest) (*GetVersion200Response, *http.Response, error) + IsAlive func(ctx context.Context) MetadataAPIIsAliveRequest + IsAliveExecute func(r MetadataAPIIsAliveRequest) (*HealthStatus, *http.Response, error) + IsReady func(ctx context.Context) MetadataAPIIsReadyRequest + IsReadyExecute func(r MetadataAPIIsReadyRequest) (*IsReady200Response, *http.Response, error) + type MetadataAPIGetVersionRequest struct + ApiService MetadataAPI + func (r MetadataAPIGetVersionRequest) Execute() (*GetVersion200Response, *http.Response, error) + type MetadataAPIIsAliveRequest struct + ApiService MetadataAPI + func (r MetadataAPIIsAliveRequest) Execute() (*HealthStatus, *http.Response, error) + type MetadataAPIIsReadyRequest struct + ApiService MetadataAPI + func (r MetadataAPIIsReadyRequest) Execute() (*IsReady200Response, *http.Response, error) + type MetadataAPIService service + func (a *MetadataAPIService) GetVersion(ctx context.Context) MetadataAPIGetVersionRequest + func (a *MetadataAPIService) GetVersionExecute(r MetadataAPIGetVersionRequest) (*GetVersion200Response, *http.Response, error) + func (a *MetadataAPIService) IsAlive(ctx context.Context) MetadataAPIIsAliveRequest + func (a *MetadataAPIService) IsAliveExecute(r MetadataAPIIsAliveRequest) (*HealthStatus, *http.Response, error) + func (a *MetadataAPIService) IsReady(ctx context.Context) MetadataAPIIsReadyRequest + func (a *MetadataAPIService) IsReadyExecute(r MetadataAPIIsReadyRequest) (*IsReady200Response, *http.Response, error) + type NullableAcceptDeviceUserCodeRequest struct + func NewNullableAcceptDeviceUserCodeRequest(val *AcceptDeviceUserCodeRequest) *NullableAcceptDeviceUserCodeRequest + func (v *NullableAcceptDeviceUserCodeRequest) Set(val *AcceptDeviceUserCodeRequest) + func (v *NullableAcceptDeviceUserCodeRequest) UnmarshalJSON(src []byte) error + func (v *NullableAcceptDeviceUserCodeRequest) Unset() + func (v NullableAcceptDeviceUserCodeRequest) Get() *AcceptDeviceUserCodeRequest + func (v NullableAcceptDeviceUserCodeRequest) IsSet() bool + func (v NullableAcceptDeviceUserCodeRequest) MarshalJSON() ([]byte, error) + type NullableAcceptOAuth2ConsentRequest struct + func NewNullableAcceptOAuth2ConsentRequest(val *AcceptOAuth2ConsentRequest) *NullableAcceptOAuth2ConsentRequest + func (v *NullableAcceptOAuth2ConsentRequest) Set(val *AcceptOAuth2ConsentRequest) + func (v *NullableAcceptOAuth2ConsentRequest) UnmarshalJSON(src []byte) error + func (v *NullableAcceptOAuth2ConsentRequest) Unset() + func (v NullableAcceptOAuth2ConsentRequest) Get() *AcceptOAuth2ConsentRequest + func (v NullableAcceptOAuth2ConsentRequest) IsSet() bool + func (v NullableAcceptOAuth2ConsentRequest) MarshalJSON() ([]byte, error) + type NullableAcceptOAuth2ConsentRequestSession struct + func NewNullableAcceptOAuth2ConsentRequestSession(val *AcceptOAuth2ConsentRequestSession) *NullableAcceptOAuth2ConsentRequestSession + func (v *NullableAcceptOAuth2ConsentRequestSession) Set(val *AcceptOAuth2ConsentRequestSession) + func (v *NullableAcceptOAuth2ConsentRequestSession) UnmarshalJSON(src []byte) error + func (v *NullableAcceptOAuth2ConsentRequestSession) Unset() + func (v NullableAcceptOAuth2ConsentRequestSession) Get() *AcceptOAuth2ConsentRequestSession + func (v NullableAcceptOAuth2ConsentRequestSession) IsSet() bool + func (v NullableAcceptOAuth2ConsentRequestSession) MarshalJSON() ([]byte, error) + type NullableAcceptOAuth2LoginRequest struct + func NewNullableAcceptOAuth2LoginRequest(val *AcceptOAuth2LoginRequest) *NullableAcceptOAuth2LoginRequest + func (v *NullableAcceptOAuth2LoginRequest) Set(val *AcceptOAuth2LoginRequest) + func (v *NullableAcceptOAuth2LoginRequest) UnmarshalJSON(src []byte) error + func (v *NullableAcceptOAuth2LoginRequest) Unset() + func (v NullableAcceptOAuth2LoginRequest) Get() *AcceptOAuth2LoginRequest + func (v NullableAcceptOAuth2LoginRequest) IsSet() bool + func (v NullableAcceptOAuth2LoginRequest) MarshalJSON() ([]byte, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableCreateJsonWebKeySet struct + func NewNullableCreateJsonWebKeySet(val *CreateJsonWebKeySet) *NullableCreateJsonWebKeySet + func (v *NullableCreateJsonWebKeySet) Set(val *CreateJsonWebKeySet) + func (v *NullableCreateJsonWebKeySet) UnmarshalJSON(src []byte) error + func (v *NullableCreateJsonWebKeySet) Unset() + func (v NullableCreateJsonWebKeySet) Get() *CreateJsonWebKeySet + func (v NullableCreateJsonWebKeySet) IsSet() bool + func (v NullableCreateJsonWebKeySet) MarshalJSON() ([]byte, error) + type NullableCreateVerifiableCredentialRequestBody struct + func NewNullableCreateVerifiableCredentialRequestBody(val *CreateVerifiableCredentialRequestBody) *NullableCreateVerifiableCredentialRequestBody + func (v *NullableCreateVerifiableCredentialRequestBody) Set(val *CreateVerifiableCredentialRequestBody) + func (v *NullableCreateVerifiableCredentialRequestBody) UnmarshalJSON(src []byte) error + func (v *NullableCreateVerifiableCredentialRequestBody) Unset() + func (v NullableCreateVerifiableCredentialRequestBody) Get() *CreateVerifiableCredentialRequestBody + func (v NullableCreateVerifiableCredentialRequestBody) IsSet() bool + func (v NullableCreateVerifiableCredentialRequestBody) MarshalJSON() ([]byte, error) + type NullableCredentialSupportedDraft00 struct + func NewNullableCredentialSupportedDraft00(val *CredentialSupportedDraft00) *NullableCredentialSupportedDraft00 + func (v *NullableCredentialSupportedDraft00) Set(val *CredentialSupportedDraft00) + func (v *NullableCredentialSupportedDraft00) UnmarshalJSON(src []byte) error + func (v *NullableCredentialSupportedDraft00) Unset() + func (v NullableCredentialSupportedDraft00) Get() *CredentialSupportedDraft00 + func (v NullableCredentialSupportedDraft00) IsSet() bool + func (v NullableCredentialSupportedDraft00) MarshalJSON() ([]byte, error) + type NullableDeviceAuthorization struct + func NewNullableDeviceAuthorization(val *DeviceAuthorization) *NullableDeviceAuthorization + func (v *NullableDeviceAuthorization) Set(val *DeviceAuthorization) + func (v *NullableDeviceAuthorization) UnmarshalJSON(src []byte) error + func (v *NullableDeviceAuthorization) Unset() + func (v NullableDeviceAuthorization) Get() *DeviceAuthorization + func (v NullableDeviceAuthorization) IsSet() bool + func (v NullableDeviceAuthorization) MarshalJSON() ([]byte, error) + type NullableDeviceUserAuthRequest struct + func NewNullableDeviceUserAuthRequest(val *DeviceUserAuthRequest) *NullableDeviceUserAuthRequest + func (v *NullableDeviceUserAuthRequest) Set(val *DeviceUserAuthRequest) + func (v *NullableDeviceUserAuthRequest) UnmarshalJSON(src []byte) error + func (v *NullableDeviceUserAuthRequest) Unset() + func (v NullableDeviceUserAuthRequest) Get() *DeviceUserAuthRequest + func (v NullableDeviceUserAuthRequest) IsSet() bool + func (v NullableDeviceUserAuthRequest) MarshalJSON() ([]byte, error) + type NullableErrorOAuth2 struct + func NewNullableErrorOAuth2(val *ErrorOAuth2) *NullableErrorOAuth2 + func (v *NullableErrorOAuth2) Set(val *ErrorOAuth2) + func (v *NullableErrorOAuth2) UnmarshalJSON(src []byte) error + func (v *NullableErrorOAuth2) Unset() + func (v NullableErrorOAuth2) Get() *ErrorOAuth2 + func (v NullableErrorOAuth2) IsSet() bool + func (v NullableErrorOAuth2) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableGenericError struct + func NewNullableGenericError(val *GenericError) *NullableGenericError + func (v *NullableGenericError) Set(val *GenericError) + func (v *NullableGenericError) UnmarshalJSON(src []byte) error + func (v *NullableGenericError) Unset() + func (v NullableGenericError) Get() *GenericError + func (v NullableGenericError) IsSet() bool + func (v NullableGenericError) MarshalJSON() ([]byte, error) + type NullableGetVersion200Response struct + func NewNullableGetVersion200Response(val *GetVersion200Response) *NullableGetVersion200Response + func (v *NullableGetVersion200Response) Set(val *GetVersion200Response) + func (v *NullableGetVersion200Response) UnmarshalJSON(src []byte) error + func (v *NullableGetVersion200Response) Unset() + func (v NullableGetVersion200Response) Get() *GetVersion200Response + func (v NullableGetVersion200Response) IsSet() bool + func (v NullableGetVersion200Response) MarshalJSON() ([]byte, error) + type NullableHealthNotReadyStatus struct + func NewNullableHealthNotReadyStatus(val *HealthNotReadyStatus) *NullableHealthNotReadyStatus + func (v *NullableHealthNotReadyStatus) Set(val *HealthNotReadyStatus) + func (v *NullableHealthNotReadyStatus) UnmarshalJSON(src []byte) error + func (v *NullableHealthNotReadyStatus) Unset() + func (v NullableHealthNotReadyStatus) Get() *HealthNotReadyStatus + func (v NullableHealthNotReadyStatus) IsSet() bool + func (v NullableHealthNotReadyStatus) MarshalJSON() ([]byte, error) + type NullableHealthStatus struct + func NewNullableHealthStatus(val *HealthStatus) *NullableHealthStatus + func (v *NullableHealthStatus) Set(val *HealthStatus) + func (v *NullableHealthStatus) UnmarshalJSON(src []byte) error + func (v *NullableHealthStatus) Unset() + func (v NullableHealthStatus) Get() *HealthStatus + func (v NullableHealthStatus) IsSet() bool + func (v NullableHealthStatus) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullableIntrospectedOAuth2Token struct + func NewNullableIntrospectedOAuth2Token(val *IntrospectedOAuth2Token) *NullableIntrospectedOAuth2Token + func (v *NullableIntrospectedOAuth2Token) Set(val *IntrospectedOAuth2Token) + func (v *NullableIntrospectedOAuth2Token) UnmarshalJSON(src []byte) error + func (v *NullableIntrospectedOAuth2Token) Unset() + func (v NullableIntrospectedOAuth2Token) Get() *IntrospectedOAuth2Token + func (v NullableIntrospectedOAuth2Token) IsSet() bool + func (v NullableIntrospectedOAuth2Token) MarshalJSON() ([]byte, error) + type NullableIsReady200Response struct + func NewNullableIsReady200Response(val *IsReady200Response) *NullableIsReady200Response + func (v *NullableIsReady200Response) Set(val *IsReady200Response) + func (v *NullableIsReady200Response) UnmarshalJSON(src []byte) error + func (v *NullableIsReady200Response) Unset() + func (v NullableIsReady200Response) Get() *IsReady200Response + func (v NullableIsReady200Response) IsSet() bool + func (v NullableIsReady200Response) MarshalJSON() ([]byte, error) + type NullableIsReady503Response struct + func NewNullableIsReady503Response(val *IsReady503Response) *NullableIsReady503Response + func (v *NullableIsReady503Response) Set(val *IsReady503Response) + func (v *NullableIsReady503Response) UnmarshalJSON(src []byte) error + func (v *NullableIsReady503Response) Unset() + func (v NullableIsReady503Response) Get() *IsReady503Response + func (v NullableIsReady503Response) IsSet() bool + func (v NullableIsReady503Response) MarshalJSON() ([]byte, error) + type NullableJsonPatch struct + func NewNullableJsonPatch(val *JsonPatch) *NullableJsonPatch + func (v *NullableJsonPatch) Set(val *JsonPatch) + func (v *NullableJsonPatch) UnmarshalJSON(src []byte) error + func (v *NullableJsonPatch) Unset() + func (v NullableJsonPatch) Get() *JsonPatch + func (v NullableJsonPatch) IsSet() bool + func (v NullableJsonPatch) MarshalJSON() ([]byte, error) + type NullableJsonWebKey struct + func NewNullableJsonWebKey(val *JsonWebKey) *NullableJsonWebKey + func (v *NullableJsonWebKey) Set(val *JsonWebKey) + func (v *NullableJsonWebKey) UnmarshalJSON(src []byte) error + func (v *NullableJsonWebKey) Unset() + func (v NullableJsonWebKey) Get() *JsonWebKey + func (v NullableJsonWebKey) IsSet() bool + func (v NullableJsonWebKey) MarshalJSON() ([]byte, error) + type NullableJsonWebKeySet struct + func NewNullableJsonWebKeySet(val *JsonWebKeySet) *NullableJsonWebKeySet + func (v *NullableJsonWebKeySet) Set(val *JsonWebKeySet) + func (v *NullableJsonWebKeySet) UnmarshalJSON(src []byte) error + func (v *NullableJsonWebKeySet) Unset() + func (v NullableJsonWebKeySet) Get() *JsonWebKeySet + func (v NullableJsonWebKeySet) IsSet() bool + func (v NullableJsonWebKeySet) MarshalJSON() ([]byte, error) + type NullableKeysetPaginationRequestParameters struct + func NewNullableKeysetPaginationRequestParameters(val *KeysetPaginationRequestParameters) *NullableKeysetPaginationRequestParameters + func (v *NullableKeysetPaginationRequestParameters) Set(val *KeysetPaginationRequestParameters) + func (v *NullableKeysetPaginationRequestParameters) UnmarshalJSON(src []byte) error + func (v *NullableKeysetPaginationRequestParameters) Unset() + func (v NullableKeysetPaginationRequestParameters) Get() *KeysetPaginationRequestParameters + func (v NullableKeysetPaginationRequestParameters) IsSet() bool + func (v NullableKeysetPaginationRequestParameters) MarshalJSON() ([]byte, error) + type NullableKeysetPaginationResponseHeaders struct + func NewNullableKeysetPaginationResponseHeaders(val *KeysetPaginationResponseHeaders) *NullableKeysetPaginationResponseHeaders + func (v *NullableKeysetPaginationResponseHeaders) Set(val *KeysetPaginationResponseHeaders) + func (v *NullableKeysetPaginationResponseHeaders) UnmarshalJSON(src []byte) error + func (v *NullableKeysetPaginationResponseHeaders) Unset() + func (v NullableKeysetPaginationResponseHeaders) Get() *KeysetPaginationResponseHeaders + func (v NullableKeysetPaginationResponseHeaders) IsSet() bool + func (v NullableKeysetPaginationResponseHeaders) MarshalJSON() ([]byte, error) + type NullableOAuth2Client struct + func NewNullableOAuth2Client(val *OAuth2Client) *NullableOAuth2Client + func (v *NullableOAuth2Client) Set(val *OAuth2Client) + func (v *NullableOAuth2Client) UnmarshalJSON(src []byte) error + func (v *NullableOAuth2Client) Unset() + func (v NullableOAuth2Client) Get() *OAuth2Client + func (v NullableOAuth2Client) IsSet() bool + func (v NullableOAuth2Client) MarshalJSON() ([]byte, error) + type NullableOAuth2ClientTokenLifespans struct + func NewNullableOAuth2ClientTokenLifespans(val *OAuth2ClientTokenLifespans) *NullableOAuth2ClientTokenLifespans + func (v *NullableOAuth2ClientTokenLifespans) Set(val *OAuth2ClientTokenLifespans) + func (v *NullableOAuth2ClientTokenLifespans) UnmarshalJSON(src []byte) error + func (v *NullableOAuth2ClientTokenLifespans) Unset() + func (v NullableOAuth2ClientTokenLifespans) Get() *OAuth2ClientTokenLifespans + func (v NullableOAuth2ClientTokenLifespans) IsSet() bool + func (v NullableOAuth2ClientTokenLifespans) MarshalJSON() ([]byte, error) + type NullableOAuth2ConsentRequest struct + func NewNullableOAuth2ConsentRequest(val *OAuth2ConsentRequest) *NullableOAuth2ConsentRequest + func (v *NullableOAuth2ConsentRequest) Set(val *OAuth2ConsentRequest) + func (v *NullableOAuth2ConsentRequest) UnmarshalJSON(src []byte) error + func (v *NullableOAuth2ConsentRequest) Unset() + func (v NullableOAuth2ConsentRequest) Get() *OAuth2ConsentRequest + func (v NullableOAuth2ConsentRequest) IsSet() bool + func (v NullableOAuth2ConsentRequest) MarshalJSON() ([]byte, error) + type NullableOAuth2ConsentRequestOpenIDConnectContext struct + func NewNullableOAuth2ConsentRequestOpenIDConnectContext(val *OAuth2ConsentRequestOpenIDConnectContext) *NullableOAuth2ConsentRequestOpenIDConnectContext + func (v *NullableOAuth2ConsentRequestOpenIDConnectContext) Set(val *OAuth2ConsentRequestOpenIDConnectContext) + func (v *NullableOAuth2ConsentRequestOpenIDConnectContext) UnmarshalJSON(src []byte) error + func (v *NullableOAuth2ConsentRequestOpenIDConnectContext) Unset() + func (v NullableOAuth2ConsentRequestOpenIDConnectContext) Get() *OAuth2ConsentRequestOpenIDConnectContext + func (v NullableOAuth2ConsentRequestOpenIDConnectContext) IsSet() bool + func (v NullableOAuth2ConsentRequestOpenIDConnectContext) MarshalJSON() ([]byte, error) + type NullableOAuth2ConsentSession struct + func NewNullableOAuth2ConsentSession(val *OAuth2ConsentSession) *NullableOAuth2ConsentSession + func (v *NullableOAuth2ConsentSession) Set(val *OAuth2ConsentSession) + func (v *NullableOAuth2ConsentSession) UnmarshalJSON(src []byte) error + func (v *NullableOAuth2ConsentSession) Unset() + func (v NullableOAuth2ConsentSession) Get() *OAuth2ConsentSession + func (v NullableOAuth2ConsentSession) IsSet() bool + func (v NullableOAuth2ConsentSession) MarshalJSON() ([]byte, error) + type NullableOAuth2LoginRequest struct + func NewNullableOAuth2LoginRequest(val *OAuth2LoginRequest) *NullableOAuth2LoginRequest + func (v *NullableOAuth2LoginRequest) Set(val *OAuth2LoginRequest) + func (v *NullableOAuth2LoginRequest) UnmarshalJSON(src []byte) error + func (v *NullableOAuth2LoginRequest) Unset() + func (v NullableOAuth2LoginRequest) Get() *OAuth2LoginRequest + func (v NullableOAuth2LoginRequest) IsSet() bool + func (v NullableOAuth2LoginRequest) MarshalJSON() ([]byte, error) + type NullableOAuth2LogoutRequest struct + func NewNullableOAuth2LogoutRequest(val *OAuth2LogoutRequest) *NullableOAuth2LogoutRequest + func (v *NullableOAuth2LogoutRequest) Set(val *OAuth2LogoutRequest) + func (v *NullableOAuth2LogoutRequest) UnmarshalJSON(src []byte) error + func (v *NullableOAuth2LogoutRequest) Unset() + func (v NullableOAuth2LogoutRequest) Get() *OAuth2LogoutRequest + func (v NullableOAuth2LogoutRequest) IsSet() bool + func (v NullableOAuth2LogoutRequest) MarshalJSON() ([]byte, error) + type NullableOAuth2RedirectTo struct + func NewNullableOAuth2RedirectTo(val *OAuth2RedirectTo) *NullableOAuth2RedirectTo + func (v *NullableOAuth2RedirectTo) Set(val *OAuth2RedirectTo) + func (v *NullableOAuth2RedirectTo) UnmarshalJSON(src []byte) error + func (v *NullableOAuth2RedirectTo) Unset() + func (v NullableOAuth2RedirectTo) Get() *OAuth2RedirectTo + func (v NullableOAuth2RedirectTo) IsSet() bool + func (v NullableOAuth2RedirectTo) MarshalJSON() ([]byte, error) + type NullableOAuth2TokenExchange struct + func NewNullableOAuth2TokenExchange(val *OAuth2TokenExchange) *NullableOAuth2TokenExchange + func (v *NullableOAuth2TokenExchange) Set(val *OAuth2TokenExchange) + func (v *NullableOAuth2TokenExchange) UnmarshalJSON(src []byte) error + func (v *NullableOAuth2TokenExchange) Unset() + func (v NullableOAuth2TokenExchange) Get() *OAuth2TokenExchange + func (v NullableOAuth2TokenExchange) IsSet() bool + func (v NullableOAuth2TokenExchange) MarshalJSON() ([]byte, error) + type NullableOidcConfiguration struct + func NewNullableOidcConfiguration(val *OidcConfiguration) *NullableOidcConfiguration + func (v *NullableOidcConfiguration) Set(val *OidcConfiguration) + func (v *NullableOidcConfiguration) UnmarshalJSON(src []byte) error + func (v *NullableOidcConfiguration) Unset() + func (v NullableOidcConfiguration) Get() *OidcConfiguration + func (v NullableOidcConfiguration) IsSet() bool + func (v NullableOidcConfiguration) MarshalJSON() ([]byte, error) + type NullableOidcUserInfo struct + func NewNullableOidcUserInfo(val *OidcUserInfo) *NullableOidcUserInfo + func (v *NullableOidcUserInfo) Set(val *OidcUserInfo) + func (v *NullableOidcUserInfo) UnmarshalJSON(src []byte) error + func (v *NullableOidcUserInfo) Unset() + func (v NullableOidcUserInfo) Get() *OidcUserInfo + func (v NullableOidcUserInfo) IsSet() bool + func (v NullableOidcUserInfo) MarshalJSON() ([]byte, error) + type NullableRFC6749ErrorJson struct + func NewNullableRFC6749ErrorJson(val *RFC6749ErrorJson) *NullableRFC6749ErrorJson + func (v *NullableRFC6749ErrorJson) Set(val *RFC6749ErrorJson) + func (v *NullableRFC6749ErrorJson) UnmarshalJSON(src []byte) error + func (v *NullableRFC6749ErrorJson) Unset() + func (v NullableRFC6749ErrorJson) Get() *RFC6749ErrorJson + func (v NullableRFC6749ErrorJson) IsSet() bool + func (v NullableRFC6749ErrorJson) MarshalJSON() ([]byte, error) + type NullableRejectOAuth2Request struct + func NewNullableRejectOAuth2Request(val *RejectOAuth2Request) *NullableRejectOAuth2Request + func (v *NullableRejectOAuth2Request) Set(val *RejectOAuth2Request) + func (v *NullableRejectOAuth2Request) UnmarshalJSON(src []byte) error + func (v *NullableRejectOAuth2Request) Unset() + func (v NullableRejectOAuth2Request) Get() *RejectOAuth2Request + func (v NullableRejectOAuth2Request) IsSet() bool + func (v NullableRejectOAuth2Request) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type NullableTokenPagination struct + func NewNullableTokenPagination(val *TokenPagination) *NullableTokenPagination + func (v *NullableTokenPagination) Set(val *TokenPagination) + func (v *NullableTokenPagination) UnmarshalJSON(src []byte) error + func (v *NullableTokenPagination) Unset() + func (v NullableTokenPagination) Get() *TokenPagination + func (v NullableTokenPagination) IsSet() bool + func (v NullableTokenPagination) MarshalJSON() ([]byte, error) + type NullableTokenPaginationHeaders struct + func NewNullableTokenPaginationHeaders(val *TokenPaginationHeaders) *NullableTokenPaginationHeaders + func (v *NullableTokenPaginationHeaders) Set(val *TokenPaginationHeaders) + func (v *NullableTokenPaginationHeaders) UnmarshalJSON(src []byte) error + func (v *NullableTokenPaginationHeaders) Unset() + func (v NullableTokenPaginationHeaders) Get() *TokenPaginationHeaders + func (v NullableTokenPaginationHeaders) IsSet() bool + func (v NullableTokenPaginationHeaders) MarshalJSON() ([]byte, error) + type NullableTokenPaginationRequestParameters struct + func NewNullableTokenPaginationRequestParameters(val *TokenPaginationRequestParameters) *NullableTokenPaginationRequestParameters + func (v *NullableTokenPaginationRequestParameters) Set(val *TokenPaginationRequestParameters) + func (v *NullableTokenPaginationRequestParameters) UnmarshalJSON(src []byte) error + func (v *NullableTokenPaginationRequestParameters) Unset() + func (v NullableTokenPaginationRequestParameters) Get() *TokenPaginationRequestParameters + func (v NullableTokenPaginationRequestParameters) IsSet() bool + func (v NullableTokenPaginationRequestParameters) MarshalJSON() ([]byte, error) + type NullableTokenPaginationResponseHeaders struct + func NewNullableTokenPaginationResponseHeaders(val *TokenPaginationResponseHeaders) *NullableTokenPaginationResponseHeaders + func (v *NullableTokenPaginationResponseHeaders) Set(val *TokenPaginationResponseHeaders) + func (v *NullableTokenPaginationResponseHeaders) UnmarshalJSON(src []byte) error + func (v *NullableTokenPaginationResponseHeaders) Unset() + func (v NullableTokenPaginationResponseHeaders) Get() *TokenPaginationResponseHeaders + func (v NullableTokenPaginationResponseHeaders) IsSet() bool + func (v NullableTokenPaginationResponseHeaders) MarshalJSON() ([]byte, error) + type NullableTrustOAuth2JwtGrantIssuer struct + func NewNullableTrustOAuth2JwtGrantIssuer(val *TrustOAuth2JwtGrantIssuer) *NullableTrustOAuth2JwtGrantIssuer + func (v *NullableTrustOAuth2JwtGrantIssuer) Set(val *TrustOAuth2JwtGrantIssuer) + func (v *NullableTrustOAuth2JwtGrantIssuer) UnmarshalJSON(src []byte) error + func (v *NullableTrustOAuth2JwtGrantIssuer) Unset() + func (v NullableTrustOAuth2JwtGrantIssuer) Get() *TrustOAuth2JwtGrantIssuer + func (v NullableTrustOAuth2JwtGrantIssuer) IsSet() bool + func (v NullableTrustOAuth2JwtGrantIssuer) MarshalJSON() ([]byte, error) + type NullableTrustedOAuth2JwtGrantIssuer struct + func NewNullableTrustedOAuth2JwtGrantIssuer(val *TrustedOAuth2JwtGrantIssuer) *NullableTrustedOAuth2JwtGrantIssuer + func (v *NullableTrustedOAuth2JwtGrantIssuer) Set(val *TrustedOAuth2JwtGrantIssuer) + func (v *NullableTrustedOAuth2JwtGrantIssuer) UnmarshalJSON(src []byte) error + func (v *NullableTrustedOAuth2JwtGrantIssuer) Unset() + func (v NullableTrustedOAuth2JwtGrantIssuer) Get() *TrustedOAuth2JwtGrantIssuer + func (v NullableTrustedOAuth2JwtGrantIssuer) IsSet() bool + func (v NullableTrustedOAuth2JwtGrantIssuer) MarshalJSON() ([]byte, error) + type NullableTrustedOAuth2JwtGrantJsonWebKey struct + func NewNullableTrustedOAuth2JwtGrantJsonWebKey(val *TrustedOAuth2JwtGrantJsonWebKey) *NullableTrustedOAuth2JwtGrantJsonWebKey + func (v *NullableTrustedOAuth2JwtGrantJsonWebKey) Set(val *TrustedOAuth2JwtGrantJsonWebKey) + func (v *NullableTrustedOAuth2JwtGrantJsonWebKey) UnmarshalJSON(src []byte) error + func (v *NullableTrustedOAuth2JwtGrantJsonWebKey) Unset() + func (v NullableTrustedOAuth2JwtGrantJsonWebKey) Get() *TrustedOAuth2JwtGrantJsonWebKey + func (v NullableTrustedOAuth2JwtGrantJsonWebKey) IsSet() bool + func (v NullableTrustedOAuth2JwtGrantJsonWebKey) MarshalJSON() ([]byte, error) + type NullableVerifiableCredentialPrimingResponse struct + func NewNullableVerifiableCredentialPrimingResponse(val *VerifiableCredentialPrimingResponse) *NullableVerifiableCredentialPrimingResponse + func (v *NullableVerifiableCredentialPrimingResponse) Set(val *VerifiableCredentialPrimingResponse) + func (v *NullableVerifiableCredentialPrimingResponse) UnmarshalJSON(src []byte) error + func (v *NullableVerifiableCredentialPrimingResponse) Unset() + func (v NullableVerifiableCredentialPrimingResponse) Get() *VerifiableCredentialPrimingResponse + func (v NullableVerifiableCredentialPrimingResponse) IsSet() bool + func (v NullableVerifiableCredentialPrimingResponse) MarshalJSON() ([]byte, error) + type NullableVerifiableCredentialProof struct + func NewNullableVerifiableCredentialProof(val *VerifiableCredentialProof) *NullableVerifiableCredentialProof + func (v *NullableVerifiableCredentialProof) Set(val *VerifiableCredentialProof) + func (v *NullableVerifiableCredentialProof) UnmarshalJSON(src []byte) error + func (v *NullableVerifiableCredentialProof) Unset() + func (v NullableVerifiableCredentialProof) Get() *VerifiableCredentialProof + func (v NullableVerifiableCredentialProof) IsSet() bool + func (v NullableVerifiableCredentialProof) MarshalJSON() ([]byte, error) + type NullableVerifiableCredentialResponse struct + func NewNullableVerifiableCredentialResponse(val *VerifiableCredentialResponse) *NullableVerifiableCredentialResponse + func (v *NullableVerifiableCredentialResponse) Set(val *VerifiableCredentialResponse) + func (v *NullableVerifiableCredentialResponse) UnmarshalJSON(src []byte) error + func (v *NullableVerifiableCredentialResponse) Unset() + func (v NullableVerifiableCredentialResponse) Get() *VerifiableCredentialResponse + func (v NullableVerifiableCredentialResponse) IsSet() bool + func (v NullableVerifiableCredentialResponse) MarshalJSON() ([]byte, error) + type NullableVerifyUserCodeRequest struct + func NewNullableVerifyUserCodeRequest(val *VerifyUserCodeRequest) *NullableVerifyUserCodeRequest + func (v *NullableVerifyUserCodeRequest) Set(val *VerifyUserCodeRequest) + func (v *NullableVerifyUserCodeRequest) UnmarshalJSON(src []byte) error + func (v *NullableVerifyUserCodeRequest) Unset() + func (v NullableVerifyUserCodeRequest) Get() *VerifyUserCodeRequest + func (v NullableVerifyUserCodeRequest) IsSet() bool + func (v NullableVerifyUserCodeRequest) MarshalJSON() ([]byte, error) + type NullableVersion struct + func NewNullableVersion(val *Version) *NullableVersion + func (v *NullableVersion) Set(val *Version) + func (v *NullableVersion) UnmarshalJSON(src []byte) error + func (v *NullableVersion) Unset() + func (v NullableVersion) Get() *Version + func (v NullableVersion) IsSet() bool + func (v NullableVersion) MarshalJSON() ([]byte, error) + type OAuth2API interface + AcceptOAuth2ConsentRequest func(ctx context.Context) OAuth2APIAcceptOAuth2ConsentRequestRequest + AcceptOAuth2ConsentRequestExecute func(r OAuth2APIAcceptOAuth2ConsentRequestRequest) (*OAuth2RedirectTo, *http.Response, error) + AcceptOAuth2LoginRequest func(ctx context.Context) OAuth2APIAcceptOAuth2LoginRequestRequest + AcceptOAuth2LoginRequestExecute func(r OAuth2APIAcceptOAuth2LoginRequestRequest) (*OAuth2RedirectTo, *http.Response, error) + AcceptOAuth2LogoutRequest func(ctx context.Context) OAuth2APIAcceptOAuth2LogoutRequestRequest + AcceptOAuth2LogoutRequestExecute func(r OAuth2APIAcceptOAuth2LogoutRequestRequest) (*OAuth2RedirectTo, *http.Response, error) + AcceptUserCodeRequest func(ctx context.Context) OAuth2APIAcceptUserCodeRequestRequest + AcceptUserCodeRequestExecute func(r OAuth2APIAcceptUserCodeRequestRequest) (*OAuth2RedirectTo, *http.Response, error) + CreateOAuth2Client func(ctx context.Context) OAuth2APICreateOAuth2ClientRequest + CreateOAuth2ClientExecute func(r OAuth2APICreateOAuth2ClientRequest) (*OAuth2Client, *http.Response, error) + DeleteOAuth2Client func(ctx context.Context, id string) OAuth2APIDeleteOAuth2ClientRequest + DeleteOAuth2ClientExecute func(r OAuth2APIDeleteOAuth2ClientRequest) (*http.Response, error) + DeleteOAuth2Token func(ctx context.Context) OAuth2APIDeleteOAuth2TokenRequest + DeleteOAuth2TokenExecute func(r OAuth2APIDeleteOAuth2TokenRequest) (*http.Response, error) + DeleteTrustedOAuth2JwtGrantIssuer func(ctx context.Context, id string) OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest + DeleteTrustedOAuth2JwtGrantIssuerExecute func(r OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest) (*http.Response, error) + GetOAuth2Client func(ctx context.Context, id string) OAuth2APIGetOAuth2ClientRequest + GetOAuth2ClientExecute func(r OAuth2APIGetOAuth2ClientRequest) (*OAuth2Client, *http.Response, error) + GetOAuth2ConsentRequest func(ctx context.Context) OAuth2APIGetOAuth2ConsentRequestRequest + GetOAuth2ConsentRequestExecute func(r OAuth2APIGetOAuth2ConsentRequestRequest) (*OAuth2ConsentRequest, *http.Response, error) + GetOAuth2LoginRequest func(ctx context.Context) OAuth2APIGetOAuth2LoginRequestRequest + GetOAuth2LoginRequestExecute func(r OAuth2APIGetOAuth2LoginRequestRequest) (*OAuth2LoginRequest, *http.Response, error) + GetOAuth2LogoutRequest func(ctx context.Context) OAuth2APIGetOAuth2LogoutRequestRequest + GetOAuth2LogoutRequestExecute func(r OAuth2APIGetOAuth2LogoutRequestRequest) (*OAuth2LogoutRequest, *http.Response, error) + GetTrustedOAuth2JwtGrantIssuer func(ctx context.Context, id string) OAuth2APIGetTrustedOAuth2JwtGrantIssuerRequest + GetTrustedOAuth2JwtGrantIssuerExecute func(r OAuth2APIGetTrustedOAuth2JwtGrantIssuerRequest) (*TrustedOAuth2JwtGrantIssuer, *http.Response, error) + IntrospectOAuth2Token func(ctx context.Context) OAuth2APIIntrospectOAuth2TokenRequest + IntrospectOAuth2TokenExecute func(r OAuth2APIIntrospectOAuth2TokenRequest) (*IntrospectedOAuth2Token, *http.Response, error) + ListOAuth2Clients func(ctx context.Context) OAuth2APIListOAuth2ClientsRequest + ListOAuth2ClientsExecute func(r OAuth2APIListOAuth2ClientsRequest) ([]OAuth2Client, *http.Response, error) + ListOAuth2ConsentSessions func(ctx context.Context) OAuth2APIListOAuth2ConsentSessionsRequest + ListOAuth2ConsentSessionsExecute func(r OAuth2APIListOAuth2ConsentSessionsRequest) ([]OAuth2ConsentSession, *http.Response, error) + ListTrustedOAuth2JwtGrantIssuers func(ctx context.Context) OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest + ListTrustedOAuth2JwtGrantIssuersExecute func(r OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest) ([]TrustedOAuth2JwtGrantIssuer, *http.Response, error) + OAuth2Authorize func(ctx context.Context) OAuth2APIOAuth2AuthorizeRequest + OAuth2AuthorizeExecute func(r OAuth2APIOAuth2AuthorizeRequest) (*ErrorOAuth2, *http.Response, error) + OAuth2DeviceFlow func(ctx context.Context) OAuth2APIOAuth2DeviceFlowRequest + OAuth2DeviceFlowExecute func(r OAuth2APIOAuth2DeviceFlowRequest) (*DeviceAuthorization, *http.Response, error) + Oauth2TokenExchange func(ctx context.Context) OAuth2APIOauth2TokenExchangeRequest + Oauth2TokenExchangeExecute func(r OAuth2APIOauth2TokenExchangeRequest) (*OAuth2TokenExchange, *http.Response, error) + PatchOAuth2Client func(ctx context.Context, id string) OAuth2APIPatchOAuth2ClientRequest + PatchOAuth2ClientExecute func(r OAuth2APIPatchOAuth2ClientRequest) (*OAuth2Client, *http.Response, error) + PerformOAuth2DeviceVerificationFlow func(ctx context.Context) OAuth2APIPerformOAuth2DeviceVerificationFlowRequest + PerformOAuth2DeviceVerificationFlowExecute func(r OAuth2APIPerformOAuth2DeviceVerificationFlowRequest) (*ErrorOAuth2, *http.Response, error) + RejectOAuth2ConsentRequest func(ctx context.Context) OAuth2APIRejectOAuth2ConsentRequestRequest + RejectOAuth2ConsentRequestExecute func(r OAuth2APIRejectOAuth2ConsentRequestRequest) (*OAuth2RedirectTo, *http.Response, error) + RejectOAuth2LoginRequest func(ctx context.Context) OAuth2APIRejectOAuth2LoginRequestRequest + RejectOAuth2LoginRequestExecute func(r OAuth2APIRejectOAuth2LoginRequestRequest) (*OAuth2RedirectTo, *http.Response, error) + RejectOAuth2LogoutRequest func(ctx context.Context) OAuth2APIRejectOAuth2LogoutRequestRequest + RejectOAuth2LogoutRequestExecute func(r OAuth2APIRejectOAuth2LogoutRequestRequest) (*http.Response, error) + RevokeOAuth2ConsentSessions func(ctx context.Context) OAuth2APIRevokeOAuth2ConsentSessionsRequest + RevokeOAuth2ConsentSessionsExecute func(r OAuth2APIRevokeOAuth2ConsentSessionsRequest) (*http.Response, error) + RevokeOAuth2LoginSessions func(ctx context.Context) OAuth2APIRevokeOAuth2LoginSessionsRequest + RevokeOAuth2LoginSessionsExecute func(r OAuth2APIRevokeOAuth2LoginSessionsRequest) (*http.Response, error) + RevokeOAuth2Token func(ctx context.Context) OAuth2APIRevokeOAuth2TokenRequest + RevokeOAuth2TokenExecute func(r OAuth2APIRevokeOAuth2TokenRequest) (*http.Response, error) + SetOAuth2Client func(ctx context.Context, id string) OAuth2APISetOAuth2ClientRequest + SetOAuth2ClientExecute func(r OAuth2APISetOAuth2ClientRequest) (*OAuth2Client, *http.Response, error) + SetOAuth2ClientLifespans func(ctx context.Context, id string) OAuth2APISetOAuth2ClientLifespansRequest + SetOAuth2ClientLifespansExecute func(r OAuth2APISetOAuth2ClientLifespansRequest) (*OAuth2Client, *http.Response, error) + TrustOAuth2JwtGrantIssuer func(ctx context.Context) OAuth2APITrustOAuth2JwtGrantIssuerRequest + TrustOAuth2JwtGrantIssuerExecute func(r OAuth2APITrustOAuth2JwtGrantIssuerRequest) (*TrustedOAuth2JwtGrantIssuer, *http.Response, error) + type OAuth2APIAcceptOAuth2ConsentRequestRequest struct + ApiService OAuth2API + func (r OAuth2APIAcceptOAuth2ConsentRequestRequest) AcceptOAuth2ConsentRequest(acceptOAuth2ConsentRequest AcceptOAuth2ConsentRequest) OAuth2APIAcceptOAuth2ConsentRequestRequest + func (r OAuth2APIAcceptOAuth2ConsentRequestRequest) ConsentChallenge(consentChallenge string) OAuth2APIAcceptOAuth2ConsentRequestRequest + func (r OAuth2APIAcceptOAuth2ConsentRequestRequest) Execute() (*OAuth2RedirectTo, *http.Response, error) + type OAuth2APIAcceptOAuth2LoginRequestRequest struct + ApiService OAuth2API + func (r OAuth2APIAcceptOAuth2LoginRequestRequest) AcceptOAuth2LoginRequest(acceptOAuth2LoginRequest AcceptOAuth2LoginRequest) OAuth2APIAcceptOAuth2LoginRequestRequest + func (r OAuth2APIAcceptOAuth2LoginRequestRequest) Execute() (*OAuth2RedirectTo, *http.Response, error) + func (r OAuth2APIAcceptOAuth2LoginRequestRequest) LoginChallenge(loginChallenge string) OAuth2APIAcceptOAuth2LoginRequestRequest + type OAuth2APIAcceptOAuth2LogoutRequestRequest struct + ApiService OAuth2API + func (r OAuth2APIAcceptOAuth2LogoutRequestRequest) Execute() (*OAuth2RedirectTo, *http.Response, error) + func (r OAuth2APIAcceptOAuth2LogoutRequestRequest) LogoutChallenge(logoutChallenge string) OAuth2APIAcceptOAuth2LogoutRequestRequest + type OAuth2APIAcceptUserCodeRequestRequest struct + ApiService OAuth2API + func (r OAuth2APIAcceptUserCodeRequestRequest) AcceptDeviceUserCodeRequest(acceptDeviceUserCodeRequest AcceptDeviceUserCodeRequest) OAuth2APIAcceptUserCodeRequestRequest + func (r OAuth2APIAcceptUserCodeRequestRequest) DeviceChallenge(deviceChallenge string) OAuth2APIAcceptUserCodeRequestRequest + func (r OAuth2APIAcceptUserCodeRequestRequest) Execute() (*OAuth2RedirectTo, *http.Response, error) + type OAuth2APICreateOAuth2ClientRequest struct + ApiService OAuth2API + func (r OAuth2APICreateOAuth2ClientRequest) Execute() (*OAuth2Client, *http.Response, error) + func (r OAuth2APICreateOAuth2ClientRequest) OAuth2Client(oAuth2Client OAuth2Client) OAuth2APICreateOAuth2ClientRequest + type OAuth2APIDeleteOAuth2ClientRequest struct + ApiService OAuth2API + func (r OAuth2APIDeleteOAuth2ClientRequest) Execute() (*http.Response, error) + type OAuth2APIDeleteOAuth2TokenRequest struct + ApiService OAuth2API + func (r OAuth2APIDeleteOAuth2TokenRequest) ClientId(clientId string) OAuth2APIDeleteOAuth2TokenRequest + func (r OAuth2APIDeleteOAuth2TokenRequest) Execute() (*http.Response, error) + type OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest struct + ApiService OAuth2API + func (r OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest) Execute() (*http.Response, error) + type OAuth2APIGetOAuth2ClientRequest struct + ApiService OAuth2API + func (r OAuth2APIGetOAuth2ClientRequest) Execute() (*OAuth2Client, *http.Response, error) + type OAuth2APIGetOAuth2ConsentRequestRequest struct + ApiService OAuth2API + func (r OAuth2APIGetOAuth2ConsentRequestRequest) ConsentChallenge(consentChallenge string) OAuth2APIGetOAuth2ConsentRequestRequest + func (r OAuth2APIGetOAuth2ConsentRequestRequest) Execute() (*OAuth2ConsentRequest, *http.Response, error) + type OAuth2APIGetOAuth2LoginRequestRequest struct + ApiService OAuth2API + func (r OAuth2APIGetOAuth2LoginRequestRequest) Execute() (*OAuth2LoginRequest, *http.Response, error) + func (r OAuth2APIGetOAuth2LoginRequestRequest) LoginChallenge(loginChallenge string) OAuth2APIGetOAuth2LoginRequestRequest + type OAuth2APIGetOAuth2LogoutRequestRequest struct + ApiService OAuth2API + func (r OAuth2APIGetOAuth2LogoutRequestRequest) Execute() (*OAuth2LogoutRequest, *http.Response, error) + func (r OAuth2APIGetOAuth2LogoutRequestRequest) LogoutChallenge(logoutChallenge string) OAuth2APIGetOAuth2LogoutRequestRequest + type OAuth2APIGetTrustedOAuth2JwtGrantIssuerRequest struct + ApiService OAuth2API + func (r OAuth2APIGetTrustedOAuth2JwtGrantIssuerRequest) Execute() (*TrustedOAuth2JwtGrantIssuer, *http.Response, error) + type OAuth2APIIntrospectOAuth2TokenRequest struct + ApiService OAuth2API + func (r OAuth2APIIntrospectOAuth2TokenRequest) Execute() (*IntrospectedOAuth2Token, *http.Response, error) + func (r OAuth2APIIntrospectOAuth2TokenRequest) Scope(scope string) OAuth2APIIntrospectOAuth2TokenRequest + func (r OAuth2APIIntrospectOAuth2TokenRequest) Token(token string) OAuth2APIIntrospectOAuth2TokenRequest + type OAuth2APIListOAuth2ClientsRequest struct + ApiService OAuth2API + func (r OAuth2APIListOAuth2ClientsRequest) ClientName(clientName string) OAuth2APIListOAuth2ClientsRequest + func (r OAuth2APIListOAuth2ClientsRequest) Execute() ([]OAuth2Client, *http.Response, error) + func (r OAuth2APIListOAuth2ClientsRequest) Owner(owner string) OAuth2APIListOAuth2ClientsRequest + func (r OAuth2APIListOAuth2ClientsRequest) PageSize(pageSize int64) OAuth2APIListOAuth2ClientsRequest + func (r OAuth2APIListOAuth2ClientsRequest) PageToken(pageToken string) OAuth2APIListOAuth2ClientsRequest + type OAuth2APIListOAuth2ConsentSessionsRequest struct + ApiService OAuth2API + func (r OAuth2APIListOAuth2ConsentSessionsRequest) Execute() ([]OAuth2ConsentSession, *http.Response, error) + func (r OAuth2APIListOAuth2ConsentSessionsRequest) LoginSessionId(loginSessionId string) OAuth2APIListOAuth2ConsentSessionsRequest + func (r OAuth2APIListOAuth2ConsentSessionsRequest) PageSize(pageSize int64) OAuth2APIListOAuth2ConsentSessionsRequest + func (r OAuth2APIListOAuth2ConsentSessionsRequest) PageToken(pageToken string) OAuth2APIListOAuth2ConsentSessionsRequest + func (r OAuth2APIListOAuth2ConsentSessionsRequest) Subject(subject string) OAuth2APIListOAuth2ConsentSessionsRequest + type OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest struct + ApiService OAuth2API + func (r OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest) Execute() ([]TrustedOAuth2JwtGrantIssuer, *http.Response, error) + func (r OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest) Issuer(issuer string) OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest + func (r OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest) PageSize(pageSize int64) OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest + func (r OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest) PageToken(pageToken string) OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest + type OAuth2APIOAuth2AuthorizeRequest struct + ApiService OAuth2API + func (r OAuth2APIOAuth2AuthorizeRequest) Execute() (*ErrorOAuth2, *http.Response, error) + type OAuth2APIOAuth2DeviceFlowRequest struct + ApiService OAuth2API + func (r OAuth2APIOAuth2DeviceFlowRequest) Execute() (*DeviceAuthorization, *http.Response, error) + type OAuth2APIOauth2TokenExchangeRequest struct + ApiService OAuth2API + func (r OAuth2APIOauth2TokenExchangeRequest) ClientId(clientId string) OAuth2APIOauth2TokenExchangeRequest + func (r OAuth2APIOauth2TokenExchangeRequest) Code(code string) OAuth2APIOauth2TokenExchangeRequest + func (r OAuth2APIOauth2TokenExchangeRequest) Execute() (*OAuth2TokenExchange, *http.Response, error) + func (r OAuth2APIOauth2TokenExchangeRequest) GrantType(grantType string) OAuth2APIOauth2TokenExchangeRequest + func (r OAuth2APIOauth2TokenExchangeRequest) RedirectUri(redirectUri string) OAuth2APIOauth2TokenExchangeRequest + func (r OAuth2APIOauth2TokenExchangeRequest) RefreshToken(refreshToken string) OAuth2APIOauth2TokenExchangeRequest + type OAuth2APIPatchOAuth2ClientRequest struct + ApiService OAuth2API + func (r OAuth2APIPatchOAuth2ClientRequest) Execute() (*OAuth2Client, *http.Response, error) + func (r OAuth2APIPatchOAuth2ClientRequest) JsonPatch(jsonPatch []JsonPatch) OAuth2APIPatchOAuth2ClientRequest + type OAuth2APIPerformOAuth2DeviceVerificationFlowRequest struct + ApiService OAuth2API + func (r OAuth2APIPerformOAuth2DeviceVerificationFlowRequest) Execute() (*ErrorOAuth2, *http.Response, error) + type OAuth2APIRejectOAuth2ConsentRequestRequest struct + ApiService OAuth2API + func (r OAuth2APIRejectOAuth2ConsentRequestRequest) ConsentChallenge(consentChallenge string) OAuth2APIRejectOAuth2ConsentRequestRequest + func (r OAuth2APIRejectOAuth2ConsentRequestRequest) Execute() (*OAuth2RedirectTo, *http.Response, error) + func (r OAuth2APIRejectOAuth2ConsentRequestRequest) RejectOAuth2Request(rejectOAuth2Request RejectOAuth2Request) OAuth2APIRejectOAuth2ConsentRequestRequest + type OAuth2APIRejectOAuth2LoginRequestRequest struct + ApiService OAuth2API + func (r OAuth2APIRejectOAuth2LoginRequestRequest) Execute() (*OAuth2RedirectTo, *http.Response, error) + func (r OAuth2APIRejectOAuth2LoginRequestRequest) LoginChallenge(loginChallenge string) OAuth2APIRejectOAuth2LoginRequestRequest + func (r OAuth2APIRejectOAuth2LoginRequestRequest) RejectOAuth2Request(rejectOAuth2Request RejectOAuth2Request) OAuth2APIRejectOAuth2LoginRequestRequest + type OAuth2APIRejectOAuth2LogoutRequestRequest struct + ApiService OAuth2API + func (r OAuth2APIRejectOAuth2LogoutRequestRequest) Execute() (*http.Response, error) + func (r OAuth2APIRejectOAuth2LogoutRequestRequest) LogoutChallenge(logoutChallenge string) OAuth2APIRejectOAuth2LogoutRequestRequest + type OAuth2APIRevokeOAuth2ConsentSessionsRequest struct + ApiService OAuth2API + func (r OAuth2APIRevokeOAuth2ConsentSessionsRequest) All(all bool) OAuth2APIRevokeOAuth2ConsentSessionsRequest + func (r OAuth2APIRevokeOAuth2ConsentSessionsRequest) Client(client string) OAuth2APIRevokeOAuth2ConsentSessionsRequest + func (r OAuth2APIRevokeOAuth2ConsentSessionsRequest) ConsentRequestId(consentRequestId string) OAuth2APIRevokeOAuth2ConsentSessionsRequest + func (r OAuth2APIRevokeOAuth2ConsentSessionsRequest) Execute() (*http.Response, error) + func (r OAuth2APIRevokeOAuth2ConsentSessionsRequest) Subject(subject string) OAuth2APIRevokeOAuth2ConsentSessionsRequest + type OAuth2APIRevokeOAuth2LoginSessionsRequest struct + ApiService OAuth2API + func (r OAuth2APIRevokeOAuth2LoginSessionsRequest) Execute() (*http.Response, error) + func (r OAuth2APIRevokeOAuth2LoginSessionsRequest) Sid(sid string) OAuth2APIRevokeOAuth2LoginSessionsRequest + func (r OAuth2APIRevokeOAuth2LoginSessionsRequest) Subject(subject string) OAuth2APIRevokeOAuth2LoginSessionsRequest + type OAuth2APIRevokeOAuth2TokenRequest struct + ApiService OAuth2API + func (r OAuth2APIRevokeOAuth2TokenRequest) ClientId(clientId string) OAuth2APIRevokeOAuth2TokenRequest + func (r OAuth2APIRevokeOAuth2TokenRequest) ClientSecret(clientSecret string) OAuth2APIRevokeOAuth2TokenRequest + func (r OAuth2APIRevokeOAuth2TokenRequest) Execute() (*http.Response, error) + func (r OAuth2APIRevokeOAuth2TokenRequest) Token(token string) OAuth2APIRevokeOAuth2TokenRequest + type OAuth2APIService service + func (a *OAuth2APIService) AcceptOAuth2ConsentRequest(ctx context.Context) OAuth2APIAcceptOAuth2ConsentRequestRequest + func (a *OAuth2APIService) AcceptOAuth2ConsentRequestExecute(r OAuth2APIAcceptOAuth2ConsentRequestRequest) (*OAuth2RedirectTo, *http.Response, error) + func (a *OAuth2APIService) AcceptOAuth2LoginRequest(ctx context.Context) OAuth2APIAcceptOAuth2LoginRequestRequest + func (a *OAuth2APIService) AcceptOAuth2LoginRequestExecute(r OAuth2APIAcceptOAuth2LoginRequestRequest) (*OAuth2RedirectTo, *http.Response, error) + func (a *OAuth2APIService) AcceptOAuth2LogoutRequest(ctx context.Context) OAuth2APIAcceptOAuth2LogoutRequestRequest + func (a *OAuth2APIService) AcceptOAuth2LogoutRequestExecute(r OAuth2APIAcceptOAuth2LogoutRequestRequest) (*OAuth2RedirectTo, *http.Response, error) + func (a *OAuth2APIService) AcceptUserCodeRequest(ctx context.Context) OAuth2APIAcceptUserCodeRequestRequest + func (a *OAuth2APIService) AcceptUserCodeRequestExecute(r OAuth2APIAcceptUserCodeRequestRequest) (*OAuth2RedirectTo, *http.Response, error) + func (a *OAuth2APIService) CreateOAuth2Client(ctx context.Context) OAuth2APICreateOAuth2ClientRequest + func (a *OAuth2APIService) CreateOAuth2ClientExecute(r OAuth2APICreateOAuth2ClientRequest) (*OAuth2Client, *http.Response, error) + func (a *OAuth2APIService) DeleteOAuth2Client(ctx context.Context, id string) OAuth2APIDeleteOAuth2ClientRequest + func (a *OAuth2APIService) DeleteOAuth2ClientExecute(r OAuth2APIDeleteOAuth2ClientRequest) (*http.Response, error) + func (a *OAuth2APIService) DeleteOAuth2Token(ctx context.Context) OAuth2APIDeleteOAuth2TokenRequest + func (a *OAuth2APIService) DeleteOAuth2TokenExecute(r OAuth2APIDeleteOAuth2TokenRequest) (*http.Response, error) + func (a *OAuth2APIService) DeleteTrustedOAuth2JwtGrantIssuer(ctx context.Context, id string) OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest + func (a *OAuth2APIService) DeleteTrustedOAuth2JwtGrantIssuerExecute(r OAuth2APIDeleteTrustedOAuth2JwtGrantIssuerRequest) (*http.Response, error) + func (a *OAuth2APIService) GetOAuth2Client(ctx context.Context, id string) OAuth2APIGetOAuth2ClientRequest + func (a *OAuth2APIService) GetOAuth2ClientExecute(r OAuth2APIGetOAuth2ClientRequest) (*OAuth2Client, *http.Response, error) + func (a *OAuth2APIService) GetOAuth2ConsentRequest(ctx context.Context) OAuth2APIGetOAuth2ConsentRequestRequest + func (a *OAuth2APIService) GetOAuth2ConsentRequestExecute(r OAuth2APIGetOAuth2ConsentRequestRequest) (*OAuth2ConsentRequest, *http.Response, error) + func (a *OAuth2APIService) GetOAuth2LoginRequest(ctx context.Context) OAuth2APIGetOAuth2LoginRequestRequest + func (a *OAuth2APIService) GetOAuth2LoginRequestExecute(r OAuth2APIGetOAuth2LoginRequestRequest) (*OAuth2LoginRequest, *http.Response, error) + func (a *OAuth2APIService) GetOAuth2LogoutRequest(ctx context.Context) OAuth2APIGetOAuth2LogoutRequestRequest + func (a *OAuth2APIService) GetOAuth2LogoutRequestExecute(r OAuth2APIGetOAuth2LogoutRequestRequest) (*OAuth2LogoutRequest, *http.Response, error) + func (a *OAuth2APIService) GetTrustedOAuth2JwtGrantIssuer(ctx context.Context, id string) OAuth2APIGetTrustedOAuth2JwtGrantIssuerRequest + func (a *OAuth2APIService) GetTrustedOAuth2JwtGrantIssuerExecute(r OAuth2APIGetTrustedOAuth2JwtGrantIssuerRequest) (*TrustedOAuth2JwtGrantIssuer, *http.Response, error) + func (a *OAuth2APIService) IntrospectOAuth2Token(ctx context.Context) OAuth2APIIntrospectOAuth2TokenRequest + func (a *OAuth2APIService) IntrospectOAuth2TokenExecute(r OAuth2APIIntrospectOAuth2TokenRequest) (*IntrospectedOAuth2Token, *http.Response, error) + func (a *OAuth2APIService) ListOAuth2Clients(ctx context.Context) OAuth2APIListOAuth2ClientsRequest + func (a *OAuth2APIService) ListOAuth2ClientsExecute(r OAuth2APIListOAuth2ClientsRequest) ([]OAuth2Client, *http.Response, error) + func (a *OAuth2APIService) ListOAuth2ConsentSessions(ctx context.Context) OAuth2APIListOAuth2ConsentSessionsRequest + func (a *OAuth2APIService) ListOAuth2ConsentSessionsExecute(r OAuth2APIListOAuth2ConsentSessionsRequest) ([]OAuth2ConsentSession, *http.Response, error) + func (a *OAuth2APIService) ListTrustedOAuth2JwtGrantIssuers(ctx context.Context) OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest + func (a *OAuth2APIService) ListTrustedOAuth2JwtGrantIssuersExecute(r OAuth2APIListTrustedOAuth2JwtGrantIssuersRequest) ([]TrustedOAuth2JwtGrantIssuer, *http.Response, error) + func (a *OAuth2APIService) OAuth2Authorize(ctx context.Context) OAuth2APIOAuth2AuthorizeRequest + func (a *OAuth2APIService) OAuth2AuthorizeExecute(r OAuth2APIOAuth2AuthorizeRequest) (*ErrorOAuth2, *http.Response, error) + func (a *OAuth2APIService) OAuth2DeviceFlow(ctx context.Context) OAuth2APIOAuth2DeviceFlowRequest + func (a *OAuth2APIService) OAuth2DeviceFlowExecute(r OAuth2APIOAuth2DeviceFlowRequest) (*DeviceAuthorization, *http.Response, error) + func (a *OAuth2APIService) Oauth2TokenExchange(ctx context.Context) OAuth2APIOauth2TokenExchangeRequest + func (a *OAuth2APIService) Oauth2TokenExchangeExecute(r OAuth2APIOauth2TokenExchangeRequest) (*OAuth2TokenExchange, *http.Response, error) + func (a *OAuth2APIService) PatchOAuth2Client(ctx context.Context, id string) OAuth2APIPatchOAuth2ClientRequest + func (a *OAuth2APIService) PatchOAuth2ClientExecute(r OAuth2APIPatchOAuth2ClientRequest) (*OAuth2Client, *http.Response, error) + func (a *OAuth2APIService) PerformOAuth2DeviceVerificationFlow(ctx context.Context) OAuth2APIPerformOAuth2DeviceVerificationFlowRequest + func (a *OAuth2APIService) PerformOAuth2DeviceVerificationFlowExecute(r OAuth2APIPerformOAuth2DeviceVerificationFlowRequest) (*ErrorOAuth2, *http.Response, error) + func (a *OAuth2APIService) RejectOAuth2ConsentRequest(ctx context.Context) OAuth2APIRejectOAuth2ConsentRequestRequest + func (a *OAuth2APIService) RejectOAuth2ConsentRequestExecute(r OAuth2APIRejectOAuth2ConsentRequestRequest) (*OAuth2RedirectTo, *http.Response, error) + func (a *OAuth2APIService) RejectOAuth2LoginRequest(ctx context.Context) OAuth2APIRejectOAuth2LoginRequestRequest + func (a *OAuth2APIService) RejectOAuth2LoginRequestExecute(r OAuth2APIRejectOAuth2LoginRequestRequest) (*OAuth2RedirectTo, *http.Response, error) + func (a *OAuth2APIService) RejectOAuth2LogoutRequest(ctx context.Context) OAuth2APIRejectOAuth2LogoutRequestRequest + func (a *OAuth2APIService) RejectOAuth2LogoutRequestExecute(r OAuth2APIRejectOAuth2LogoutRequestRequest) (*http.Response, error) + func (a *OAuth2APIService) RevokeOAuth2ConsentSessions(ctx context.Context) OAuth2APIRevokeOAuth2ConsentSessionsRequest + func (a *OAuth2APIService) RevokeOAuth2ConsentSessionsExecute(r OAuth2APIRevokeOAuth2ConsentSessionsRequest) (*http.Response, error) + func (a *OAuth2APIService) RevokeOAuth2LoginSessions(ctx context.Context) OAuth2APIRevokeOAuth2LoginSessionsRequest + func (a *OAuth2APIService) RevokeOAuth2LoginSessionsExecute(r OAuth2APIRevokeOAuth2LoginSessionsRequest) (*http.Response, error) + func (a *OAuth2APIService) RevokeOAuth2Token(ctx context.Context) OAuth2APIRevokeOAuth2TokenRequest + func (a *OAuth2APIService) RevokeOAuth2TokenExecute(r OAuth2APIRevokeOAuth2TokenRequest) (*http.Response, error) + func (a *OAuth2APIService) SetOAuth2Client(ctx context.Context, id string) OAuth2APISetOAuth2ClientRequest + func (a *OAuth2APIService) SetOAuth2ClientExecute(r OAuth2APISetOAuth2ClientRequest) (*OAuth2Client, *http.Response, error) + func (a *OAuth2APIService) SetOAuth2ClientLifespans(ctx context.Context, id string) OAuth2APISetOAuth2ClientLifespansRequest + func (a *OAuth2APIService) SetOAuth2ClientLifespansExecute(r OAuth2APISetOAuth2ClientLifespansRequest) (*OAuth2Client, *http.Response, error) + func (a *OAuth2APIService) TrustOAuth2JwtGrantIssuer(ctx context.Context) OAuth2APITrustOAuth2JwtGrantIssuerRequest + func (a *OAuth2APIService) TrustOAuth2JwtGrantIssuerExecute(r OAuth2APITrustOAuth2JwtGrantIssuerRequest) (*TrustedOAuth2JwtGrantIssuer, *http.Response, error) + type OAuth2APISetOAuth2ClientLifespansRequest struct + ApiService OAuth2API + func (r OAuth2APISetOAuth2ClientLifespansRequest) Execute() (*OAuth2Client, *http.Response, error) + func (r OAuth2APISetOAuth2ClientLifespansRequest) OAuth2ClientTokenLifespans(oAuth2ClientTokenLifespans OAuth2ClientTokenLifespans) OAuth2APISetOAuth2ClientLifespansRequest + type OAuth2APISetOAuth2ClientRequest struct + ApiService OAuth2API + func (r OAuth2APISetOAuth2ClientRequest) Execute() (*OAuth2Client, *http.Response, error) + func (r OAuth2APISetOAuth2ClientRequest) OAuth2Client(oAuth2Client OAuth2Client) OAuth2APISetOAuth2ClientRequest + type OAuth2APITrustOAuth2JwtGrantIssuerRequest struct + ApiService OAuth2API + func (r OAuth2APITrustOAuth2JwtGrantIssuerRequest) Execute() (*TrustedOAuth2JwtGrantIssuer, *http.Response, error) + func (r OAuth2APITrustOAuth2JwtGrantIssuerRequest) TrustOAuth2JwtGrantIssuer(trustOAuth2JwtGrantIssuer TrustOAuth2JwtGrantIssuer) OAuth2APITrustOAuth2JwtGrantIssuerRequest + type OAuth2Client struct + AccessTokenStrategy *string + AdditionalProperties map[string]interface{} + AllowedCorsOrigins []string + Audience []string + AuthorizationCodeGrantAccessTokenLifespan *string + AuthorizationCodeGrantIdTokenLifespan *string + AuthorizationCodeGrantRefreshTokenLifespan *string + BackchannelLogoutSessionRequired *bool + BackchannelLogoutUri *string + ClientCredentialsGrantAccessTokenLifespan *string + ClientId *string + ClientName *string + ClientSecret *string + ClientSecretExpiresAt *int64 + ClientUri *string + Contacts []string + CreatedAt *time.Time + DeviceAuthorizationGrantAccessTokenLifespan *string + DeviceAuthorizationGrantIdTokenLifespan *string + DeviceAuthorizationGrantRefreshTokenLifespan *string + FrontchannelLogoutSessionRequired *bool + FrontchannelLogoutUri *string + GrantTypes []string + ImplicitGrantAccessTokenLifespan *string + ImplicitGrantIdTokenLifespan *string + Jwks *JsonWebKeySet + JwksUri *string + JwtBearerGrantAccessTokenLifespan *string + LogoUri *string + Metadata interface{} + Owner *string + PolicyUri *string + PostLogoutRedirectUris []string + RedirectUris []string + RefreshTokenGrantAccessTokenLifespan *string + RefreshTokenGrantIdTokenLifespan *string + RefreshTokenGrantRefreshTokenLifespan *string + RegistrationAccessToken *string + RegistrationClientUri *string + RequestObjectSigningAlg *string + RequestUris []string + ResponseTypes []string + Scope *string + SectorIdentifierUri *string + SkipConsent *bool + SkipLogoutConsent *bool + SubjectType *string + TokenEndpointAuthMethod *string + TokenEndpointAuthSigningAlg *string + TosUri *string + UpdatedAt *time.Time + UserinfoSignedResponseAlg *string + func NewOAuth2Client() *OAuth2Client + func NewOAuth2ClientWithDefaults() *OAuth2Client + func (o *OAuth2Client) GetAccessTokenStrategy() string + func (o *OAuth2Client) GetAccessTokenStrategyOk() (*string, bool) + func (o *OAuth2Client) GetAllowedCorsOrigins() []string + func (o *OAuth2Client) GetAllowedCorsOriginsOk() ([]string, bool) + func (o *OAuth2Client) GetAudience() []string + func (o *OAuth2Client) GetAudienceOk() ([]string, bool) + func (o *OAuth2Client) GetAuthorizationCodeGrantAccessTokenLifespan() string + func (o *OAuth2Client) GetAuthorizationCodeGrantAccessTokenLifespanOk() (*string, bool) + func (o *OAuth2Client) GetAuthorizationCodeGrantIdTokenLifespan() string + func (o *OAuth2Client) GetAuthorizationCodeGrantIdTokenLifespanOk() (*string, bool) + func (o *OAuth2Client) GetAuthorizationCodeGrantRefreshTokenLifespan() string + func (o *OAuth2Client) GetAuthorizationCodeGrantRefreshTokenLifespanOk() (*string, bool) + func (o *OAuth2Client) GetBackchannelLogoutSessionRequired() bool + func (o *OAuth2Client) GetBackchannelLogoutSessionRequiredOk() (*bool, bool) + func (o *OAuth2Client) GetBackchannelLogoutUri() string + func (o *OAuth2Client) GetBackchannelLogoutUriOk() (*string, bool) + func (o *OAuth2Client) GetClientCredentialsGrantAccessTokenLifespan() string + func (o *OAuth2Client) GetClientCredentialsGrantAccessTokenLifespanOk() (*string, bool) + func (o *OAuth2Client) GetClientId() string + func (o *OAuth2Client) GetClientIdOk() (*string, bool) + func (o *OAuth2Client) GetClientName() string + func (o *OAuth2Client) GetClientNameOk() (*string, bool) + func (o *OAuth2Client) GetClientSecret() string + func (o *OAuth2Client) GetClientSecretExpiresAt() int64 + func (o *OAuth2Client) GetClientSecretExpiresAtOk() (*int64, bool) + func (o *OAuth2Client) GetClientSecretOk() (*string, bool) + func (o *OAuth2Client) GetClientUri() string + func (o *OAuth2Client) GetClientUriOk() (*string, bool) + func (o *OAuth2Client) GetContacts() []string + func (o *OAuth2Client) GetContactsOk() ([]string, bool) + func (o *OAuth2Client) GetCreatedAt() time.Time + func (o *OAuth2Client) GetCreatedAtOk() (*time.Time, bool) + func (o *OAuth2Client) GetDeviceAuthorizationGrantAccessTokenLifespan() string + func (o *OAuth2Client) GetDeviceAuthorizationGrantAccessTokenLifespanOk() (*string, bool) + func (o *OAuth2Client) GetDeviceAuthorizationGrantIdTokenLifespan() string + func (o *OAuth2Client) GetDeviceAuthorizationGrantIdTokenLifespanOk() (*string, bool) + func (o *OAuth2Client) GetDeviceAuthorizationGrantRefreshTokenLifespan() string + func (o *OAuth2Client) GetDeviceAuthorizationGrantRefreshTokenLifespanOk() (*string, bool) + func (o *OAuth2Client) GetFrontchannelLogoutSessionRequired() bool + func (o *OAuth2Client) GetFrontchannelLogoutSessionRequiredOk() (*bool, bool) + func (o *OAuth2Client) GetFrontchannelLogoutUri() string + func (o *OAuth2Client) GetFrontchannelLogoutUriOk() (*string, bool) + func (o *OAuth2Client) GetGrantTypes() []string + func (o *OAuth2Client) GetGrantTypesOk() ([]string, bool) + func (o *OAuth2Client) GetImplicitGrantAccessTokenLifespan() string + func (o *OAuth2Client) GetImplicitGrantAccessTokenLifespanOk() (*string, bool) + func (o *OAuth2Client) GetImplicitGrantIdTokenLifespan() string + func (o *OAuth2Client) GetImplicitGrantIdTokenLifespanOk() (*string, bool) + func (o *OAuth2Client) GetJwks() JsonWebKeySet + func (o *OAuth2Client) GetJwksOk() (*JsonWebKeySet, bool) + func (o *OAuth2Client) GetJwksUri() string + func (o *OAuth2Client) GetJwksUriOk() (*string, bool) + func (o *OAuth2Client) GetJwtBearerGrantAccessTokenLifespan() string + func (o *OAuth2Client) GetJwtBearerGrantAccessTokenLifespanOk() (*string, bool) + func (o *OAuth2Client) GetLogoUri() string + func (o *OAuth2Client) GetLogoUriOk() (*string, bool) + func (o *OAuth2Client) GetMetadata() interface{} + func (o *OAuth2Client) GetMetadataOk() (*interface{}, bool) + func (o *OAuth2Client) GetOwner() string + func (o *OAuth2Client) GetOwnerOk() (*string, bool) + func (o *OAuth2Client) GetPolicyUri() string + func (o *OAuth2Client) GetPolicyUriOk() (*string, bool) + func (o *OAuth2Client) GetPostLogoutRedirectUris() []string + func (o *OAuth2Client) GetPostLogoutRedirectUrisOk() ([]string, bool) + func (o *OAuth2Client) GetRedirectUris() []string + func (o *OAuth2Client) GetRedirectUrisOk() ([]string, bool) + func (o *OAuth2Client) GetRefreshTokenGrantAccessTokenLifespan() string + func (o *OAuth2Client) GetRefreshTokenGrantAccessTokenLifespanOk() (*string, bool) + func (o *OAuth2Client) GetRefreshTokenGrantIdTokenLifespan() string + func (o *OAuth2Client) GetRefreshTokenGrantIdTokenLifespanOk() (*string, bool) + func (o *OAuth2Client) GetRefreshTokenGrantRefreshTokenLifespan() string + func (o *OAuth2Client) GetRefreshTokenGrantRefreshTokenLifespanOk() (*string, bool) + func (o *OAuth2Client) GetRegistrationAccessToken() string + func (o *OAuth2Client) GetRegistrationAccessTokenOk() (*string, bool) + func (o *OAuth2Client) GetRegistrationClientUri() string + func (o *OAuth2Client) GetRegistrationClientUriOk() (*string, bool) + func (o *OAuth2Client) GetRequestObjectSigningAlg() string + func (o *OAuth2Client) GetRequestObjectSigningAlgOk() (*string, bool) + func (o *OAuth2Client) GetRequestUris() []string + func (o *OAuth2Client) GetRequestUrisOk() ([]string, bool) + func (o *OAuth2Client) GetResponseTypes() []string + func (o *OAuth2Client) GetResponseTypesOk() ([]string, bool) + func (o *OAuth2Client) GetScope() string + func (o *OAuth2Client) GetScopeOk() (*string, bool) + func (o *OAuth2Client) GetSectorIdentifierUri() string + func (o *OAuth2Client) GetSectorIdentifierUriOk() (*string, bool) + func (o *OAuth2Client) GetSkipConsent() bool + func (o *OAuth2Client) GetSkipConsentOk() (*bool, bool) + func (o *OAuth2Client) GetSkipLogoutConsent() bool + func (o *OAuth2Client) GetSkipLogoutConsentOk() (*bool, bool) + func (o *OAuth2Client) GetSubjectType() string + func (o *OAuth2Client) GetSubjectTypeOk() (*string, bool) + func (o *OAuth2Client) GetTokenEndpointAuthMethod() string + func (o *OAuth2Client) GetTokenEndpointAuthMethodOk() (*string, bool) + func (o *OAuth2Client) GetTokenEndpointAuthSigningAlg() string + func (o *OAuth2Client) GetTokenEndpointAuthSigningAlgOk() (*string, bool) + func (o *OAuth2Client) GetTosUri() string + func (o *OAuth2Client) GetTosUriOk() (*string, bool) + func (o *OAuth2Client) GetUpdatedAt() time.Time + func (o *OAuth2Client) GetUpdatedAtOk() (*time.Time, bool) + func (o *OAuth2Client) GetUserinfoSignedResponseAlg() string + func (o *OAuth2Client) GetUserinfoSignedResponseAlgOk() (*string, bool) + func (o *OAuth2Client) HasAccessTokenStrategy() bool + func (o *OAuth2Client) HasAllowedCorsOrigins() bool + func (o *OAuth2Client) HasAudience() bool + func (o *OAuth2Client) HasAuthorizationCodeGrantAccessTokenLifespan() bool + func (o *OAuth2Client) HasAuthorizationCodeGrantIdTokenLifespan() bool + func (o *OAuth2Client) HasAuthorizationCodeGrantRefreshTokenLifespan() bool + func (o *OAuth2Client) HasBackchannelLogoutSessionRequired() bool + func (o *OAuth2Client) HasBackchannelLogoutUri() bool + func (o *OAuth2Client) HasClientCredentialsGrantAccessTokenLifespan() bool + func (o *OAuth2Client) HasClientId() bool + func (o *OAuth2Client) HasClientName() bool + func (o *OAuth2Client) HasClientSecret() bool + func (o *OAuth2Client) HasClientSecretExpiresAt() bool + func (o *OAuth2Client) HasClientUri() bool + func (o *OAuth2Client) HasContacts() bool + func (o *OAuth2Client) HasCreatedAt() bool + func (o *OAuth2Client) HasDeviceAuthorizationGrantAccessTokenLifespan() bool + func (o *OAuth2Client) HasDeviceAuthorizationGrantIdTokenLifespan() bool + func (o *OAuth2Client) HasDeviceAuthorizationGrantRefreshTokenLifespan() bool + func (o *OAuth2Client) HasFrontchannelLogoutSessionRequired() bool + func (o *OAuth2Client) HasFrontchannelLogoutUri() bool + func (o *OAuth2Client) HasGrantTypes() bool + func (o *OAuth2Client) HasImplicitGrantAccessTokenLifespan() bool + func (o *OAuth2Client) HasImplicitGrantIdTokenLifespan() bool + func (o *OAuth2Client) HasJwks() bool + func (o *OAuth2Client) HasJwksUri() bool + func (o *OAuth2Client) HasJwtBearerGrantAccessTokenLifespan() bool + func (o *OAuth2Client) HasLogoUri() bool + func (o *OAuth2Client) HasMetadata() bool + func (o *OAuth2Client) HasOwner() bool + func (o *OAuth2Client) HasPolicyUri() bool + func (o *OAuth2Client) HasPostLogoutRedirectUris() bool + func (o *OAuth2Client) HasRedirectUris() bool + func (o *OAuth2Client) HasRefreshTokenGrantAccessTokenLifespan() bool + func (o *OAuth2Client) HasRefreshTokenGrantIdTokenLifespan() bool + func (o *OAuth2Client) HasRefreshTokenGrantRefreshTokenLifespan() bool + func (o *OAuth2Client) HasRegistrationAccessToken() bool + func (o *OAuth2Client) HasRegistrationClientUri() bool + func (o *OAuth2Client) HasRequestObjectSigningAlg() bool + func (o *OAuth2Client) HasRequestUris() bool + func (o *OAuth2Client) HasResponseTypes() bool + func (o *OAuth2Client) HasScope() bool + func (o *OAuth2Client) HasSectorIdentifierUri() bool + func (o *OAuth2Client) HasSkipConsent() bool + func (o *OAuth2Client) HasSkipLogoutConsent() bool + func (o *OAuth2Client) HasSubjectType() bool + func (o *OAuth2Client) HasTokenEndpointAuthMethod() bool + func (o *OAuth2Client) HasTokenEndpointAuthSigningAlg() bool + func (o *OAuth2Client) HasTosUri() bool + func (o *OAuth2Client) HasUpdatedAt() bool + func (o *OAuth2Client) HasUserinfoSignedResponseAlg() bool + func (o *OAuth2Client) SetAccessTokenStrategy(v string) + func (o *OAuth2Client) SetAllowedCorsOrigins(v []string) + func (o *OAuth2Client) SetAudience(v []string) + func (o *OAuth2Client) SetAuthorizationCodeGrantAccessTokenLifespan(v string) + func (o *OAuth2Client) SetAuthorizationCodeGrantIdTokenLifespan(v string) + func (o *OAuth2Client) SetAuthorizationCodeGrantRefreshTokenLifespan(v string) + func (o *OAuth2Client) SetBackchannelLogoutSessionRequired(v bool) + func (o *OAuth2Client) SetBackchannelLogoutUri(v string) + func (o *OAuth2Client) SetClientCredentialsGrantAccessTokenLifespan(v string) + func (o *OAuth2Client) SetClientId(v string) + func (o *OAuth2Client) SetClientName(v string) + func (o *OAuth2Client) SetClientSecret(v string) + func (o *OAuth2Client) SetClientSecretExpiresAt(v int64) + func (o *OAuth2Client) SetClientUri(v string) + func (o *OAuth2Client) SetContacts(v []string) + func (o *OAuth2Client) SetCreatedAt(v time.Time) + func (o *OAuth2Client) SetDeviceAuthorizationGrantAccessTokenLifespan(v string) + func (o *OAuth2Client) SetDeviceAuthorizationGrantIdTokenLifespan(v string) + func (o *OAuth2Client) SetDeviceAuthorizationGrantRefreshTokenLifespan(v string) + func (o *OAuth2Client) SetFrontchannelLogoutSessionRequired(v bool) + func (o *OAuth2Client) SetFrontchannelLogoutUri(v string) + func (o *OAuth2Client) SetGrantTypes(v []string) + func (o *OAuth2Client) SetImplicitGrantAccessTokenLifespan(v string) + func (o *OAuth2Client) SetImplicitGrantIdTokenLifespan(v string) + func (o *OAuth2Client) SetJwks(v JsonWebKeySet) + func (o *OAuth2Client) SetJwksUri(v string) + func (o *OAuth2Client) SetJwtBearerGrantAccessTokenLifespan(v string) + func (o *OAuth2Client) SetLogoUri(v string) + func (o *OAuth2Client) SetMetadata(v interface{}) + func (o *OAuth2Client) SetOwner(v string) + func (o *OAuth2Client) SetPolicyUri(v string) + func (o *OAuth2Client) SetPostLogoutRedirectUris(v []string) + func (o *OAuth2Client) SetRedirectUris(v []string) + func (o *OAuth2Client) SetRefreshTokenGrantAccessTokenLifespan(v string) + func (o *OAuth2Client) SetRefreshTokenGrantIdTokenLifespan(v string) + func (o *OAuth2Client) SetRefreshTokenGrantRefreshTokenLifespan(v string) + func (o *OAuth2Client) SetRegistrationAccessToken(v string) + func (o *OAuth2Client) SetRegistrationClientUri(v string) + func (o *OAuth2Client) SetRequestObjectSigningAlg(v string) + func (o *OAuth2Client) SetRequestUris(v []string) + func (o *OAuth2Client) SetResponseTypes(v []string) + func (o *OAuth2Client) SetScope(v string) + func (o *OAuth2Client) SetSectorIdentifierUri(v string) + func (o *OAuth2Client) SetSkipConsent(v bool) + func (o *OAuth2Client) SetSkipLogoutConsent(v bool) + func (o *OAuth2Client) SetSubjectType(v string) + func (o *OAuth2Client) SetTokenEndpointAuthMethod(v string) + func (o *OAuth2Client) SetTokenEndpointAuthSigningAlg(v string) + func (o *OAuth2Client) SetTosUri(v string) + func (o *OAuth2Client) SetUpdatedAt(v time.Time) + func (o *OAuth2Client) SetUserinfoSignedResponseAlg(v string) + func (o *OAuth2Client) UnmarshalJSON(data []byte) (err error) + func (o OAuth2Client) MarshalJSON() ([]byte, error) + func (o OAuth2Client) ToMap() (map[string]interface{}, error) + type OAuth2ClientTokenLifespans struct + AdditionalProperties map[string]interface{} + AuthorizationCodeGrantAccessTokenLifespan *string + AuthorizationCodeGrantIdTokenLifespan *string + AuthorizationCodeGrantRefreshTokenLifespan *string + ClientCredentialsGrantAccessTokenLifespan *string + DeviceAuthorizationGrantAccessTokenLifespan *string + DeviceAuthorizationGrantIdTokenLifespan *string + DeviceAuthorizationGrantRefreshTokenLifespan *string + ImplicitGrantAccessTokenLifespan *string + ImplicitGrantIdTokenLifespan *string + JwtBearerGrantAccessTokenLifespan *string + RefreshTokenGrantAccessTokenLifespan *string + RefreshTokenGrantIdTokenLifespan *string + RefreshTokenGrantRefreshTokenLifespan *string + func NewOAuth2ClientTokenLifespans() *OAuth2ClientTokenLifespans + func NewOAuth2ClientTokenLifespansWithDefaults() *OAuth2ClientTokenLifespans + func (o *OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantAccessTokenLifespan() string + func (o *OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantAccessTokenLifespanOk() (*string, bool) + func (o *OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantIdTokenLifespan() string + func (o *OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantIdTokenLifespanOk() (*string, bool) + func (o *OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantRefreshTokenLifespan() string + func (o *OAuth2ClientTokenLifespans) GetAuthorizationCodeGrantRefreshTokenLifespanOk() (*string, bool) + func (o *OAuth2ClientTokenLifespans) GetClientCredentialsGrantAccessTokenLifespan() string + func (o *OAuth2ClientTokenLifespans) GetClientCredentialsGrantAccessTokenLifespanOk() (*string, bool) + func (o *OAuth2ClientTokenLifespans) GetDeviceAuthorizationGrantAccessTokenLifespan() string + func (o *OAuth2ClientTokenLifespans) GetDeviceAuthorizationGrantAccessTokenLifespanOk() (*string, bool) + func (o *OAuth2ClientTokenLifespans) GetDeviceAuthorizationGrantIdTokenLifespan() string + func (o *OAuth2ClientTokenLifespans) GetDeviceAuthorizationGrantIdTokenLifespanOk() (*string, bool) + func (o *OAuth2ClientTokenLifespans) GetDeviceAuthorizationGrantRefreshTokenLifespan() string + func (o *OAuth2ClientTokenLifespans) GetDeviceAuthorizationGrantRefreshTokenLifespanOk() (*string, bool) + func (o *OAuth2ClientTokenLifespans) GetImplicitGrantAccessTokenLifespan() string + func (o *OAuth2ClientTokenLifespans) GetImplicitGrantAccessTokenLifespanOk() (*string, bool) + func (o *OAuth2ClientTokenLifespans) GetImplicitGrantIdTokenLifespan() string + func (o *OAuth2ClientTokenLifespans) GetImplicitGrantIdTokenLifespanOk() (*string, bool) + func (o *OAuth2ClientTokenLifespans) GetJwtBearerGrantAccessTokenLifespan() string + func (o *OAuth2ClientTokenLifespans) GetJwtBearerGrantAccessTokenLifespanOk() (*string, bool) + func (o *OAuth2ClientTokenLifespans) GetRefreshTokenGrantAccessTokenLifespan() string + func (o *OAuth2ClientTokenLifespans) GetRefreshTokenGrantAccessTokenLifespanOk() (*string, bool) + func (o *OAuth2ClientTokenLifespans) GetRefreshTokenGrantIdTokenLifespan() string + func (o *OAuth2ClientTokenLifespans) GetRefreshTokenGrantIdTokenLifespanOk() (*string, bool) + func (o *OAuth2ClientTokenLifespans) GetRefreshTokenGrantRefreshTokenLifespan() string + func (o *OAuth2ClientTokenLifespans) GetRefreshTokenGrantRefreshTokenLifespanOk() (*string, bool) + func (o *OAuth2ClientTokenLifespans) HasAuthorizationCodeGrantAccessTokenLifespan() bool + func (o *OAuth2ClientTokenLifespans) HasAuthorizationCodeGrantIdTokenLifespan() bool + func (o *OAuth2ClientTokenLifespans) HasAuthorizationCodeGrantRefreshTokenLifespan() bool + func (o *OAuth2ClientTokenLifespans) HasClientCredentialsGrantAccessTokenLifespan() bool + func (o *OAuth2ClientTokenLifespans) HasDeviceAuthorizationGrantAccessTokenLifespan() bool + func (o *OAuth2ClientTokenLifespans) HasDeviceAuthorizationGrantIdTokenLifespan() bool + func (o *OAuth2ClientTokenLifespans) HasDeviceAuthorizationGrantRefreshTokenLifespan() bool + func (o *OAuth2ClientTokenLifespans) HasImplicitGrantAccessTokenLifespan() bool + func (o *OAuth2ClientTokenLifespans) HasImplicitGrantIdTokenLifespan() bool + func (o *OAuth2ClientTokenLifespans) HasJwtBearerGrantAccessTokenLifespan() bool + func (o *OAuth2ClientTokenLifespans) HasRefreshTokenGrantAccessTokenLifespan() bool + func (o *OAuth2ClientTokenLifespans) HasRefreshTokenGrantIdTokenLifespan() bool + func (o *OAuth2ClientTokenLifespans) HasRefreshTokenGrantRefreshTokenLifespan() bool + func (o *OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantAccessTokenLifespan(v string) + func (o *OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantIdTokenLifespan(v string) + func (o *OAuth2ClientTokenLifespans) SetAuthorizationCodeGrantRefreshTokenLifespan(v string) + func (o *OAuth2ClientTokenLifespans) SetClientCredentialsGrantAccessTokenLifespan(v string) + func (o *OAuth2ClientTokenLifespans) SetDeviceAuthorizationGrantAccessTokenLifespan(v string) + func (o *OAuth2ClientTokenLifespans) SetDeviceAuthorizationGrantIdTokenLifespan(v string) + func (o *OAuth2ClientTokenLifespans) SetDeviceAuthorizationGrantRefreshTokenLifespan(v string) + func (o *OAuth2ClientTokenLifespans) SetImplicitGrantAccessTokenLifespan(v string) + func (o *OAuth2ClientTokenLifespans) SetImplicitGrantIdTokenLifespan(v string) + func (o *OAuth2ClientTokenLifespans) SetJwtBearerGrantAccessTokenLifespan(v string) + func (o *OAuth2ClientTokenLifespans) SetRefreshTokenGrantAccessTokenLifespan(v string) + func (o *OAuth2ClientTokenLifespans) SetRefreshTokenGrantIdTokenLifespan(v string) + func (o *OAuth2ClientTokenLifespans) SetRefreshTokenGrantRefreshTokenLifespan(v string) + func (o *OAuth2ClientTokenLifespans) UnmarshalJSON(data []byte) (err error) + func (o OAuth2ClientTokenLifespans) MarshalJSON() ([]byte, error) + func (o OAuth2ClientTokenLifespans) ToMap() (map[string]interface{}, error) + type OAuth2ConsentRequest struct + Acr *string + AdditionalProperties map[string]interface{} + Amr []string + Challenge string + Client *OAuth2Client + ConsentRequestId *string + Context interface{} + LoginChallenge *string + LoginSessionId *string + OidcContext *OAuth2ConsentRequestOpenIDConnectContext + RequestUrl *string + RequestedAccessTokenAudience []string + RequestedScope []string + Skip *bool + Subject *string + func NewOAuth2ConsentRequest(challenge string) *OAuth2ConsentRequest + func NewOAuth2ConsentRequestWithDefaults() *OAuth2ConsentRequest + func (o *OAuth2ConsentRequest) GetAcr() string + func (o *OAuth2ConsentRequest) GetAcrOk() (*string, bool) + func (o *OAuth2ConsentRequest) GetAmr() []string + func (o *OAuth2ConsentRequest) GetAmrOk() ([]string, bool) + func (o *OAuth2ConsentRequest) GetChallenge() string + func (o *OAuth2ConsentRequest) GetChallengeOk() (*string, bool) + func (o *OAuth2ConsentRequest) GetClient() OAuth2Client + func (o *OAuth2ConsentRequest) GetClientOk() (*OAuth2Client, bool) + func (o *OAuth2ConsentRequest) GetConsentRequestId() string + func (o *OAuth2ConsentRequest) GetConsentRequestIdOk() (*string, bool) + func (o *OAuth2ConsentRequest) GetContext() interface{} + func (o *OAuth2ConsentRequest) GetContextOk() (*interface{}, bool) + func (o *OAuth2ConsentRequest) GetLoginChallenge() string + func (o *OAuth2ConsentRequest) GetLoginChallengeOk() (*string, bool) + func (o *OAuth2ConsentRequest) GetLoginSessionId() string + func (o *OAuth2ConsentRequest) GetLoginSessionIdOk() (*string, bool) + func (o *OAuth2ConsentRequest) GetOidcContext() OAuth2ConsentRequestOpenIDConnectContext + func (o *OAuth2ConsentRequest) GetOidcContextOk() (*OAuth2ConsentRequestOpenIDConnectContext, bool) + func (o *OAuth2ConsentRequest) GetRequestUrl() string + func (o *OAuth2ConsentRequest) GetRequestUrlOk() (*string, bool) + func (o *OAuth2ConsentRequest) GetRequestedAccessTokenAudience() []string + func (o *OAuth2ConsentRequest) GetRequestedAccessTokenAudienceOk() ([]string, bool) + func (o *OAuth2ConsentRequest) GetRequestedScope() []string + func (o *OAuth2ConsentRequest) GetRequestedScopeOk() ([]string, bool) + func (o *OAuth2ConsentRequest) GetSkip() bool + func (o *OAuth2ConsentRequest) GetSkipOk() (*bool, bool) + func (o *OAuth2ConsentRequest) GetSubject() string + func (o *OAuth2ConsentRequest) GetSubjectOk() (*string, bool) + func (o *OAuth2ConsentRequest) HasAcr() bool + func (o *OAuth2ConsentRequest) HasAmr() bool + func (o *OAuth2ConsentRequest) HasClient() bool + func (o *OAuth2ConsentRequest) HasConsentRequestId() bool + func (o *OAuth2ConsentRequest) HasContext() bool + func (o *OAuth2ConsentRequest) HasLoginChallenge() bool + func (o *OAuth2ConsentRequest) HasLoginSessionId() bool + func (o *OAuth2ConsentRequest) HasOidcContext() bool + func (o *OAuth2ConsentRequest) HasRequestUrl() bool + func (o *OAuth2ConsentRequest) HasRequestedAccessTokenAudience() bool + func (o *OAuth2ConsentRequest) HasRequestedScope() bool + func (o *OAuth2ConsentRequest) HasSkip() bool + func (o *OAuth2ConsentRequest) HasSubject() bool + func (o *OAuth2ConsentRequest) SetAcr(v string) + func (o *OAuth2ConsentRequest) SetAmr(v []string) + func (o *OAuth2ConsentRequest) SetChallenge(v string) + func (o *OAuth2ConsentRequest) SetClient(v OAuth2Client) + func (o *OAuth2ConsentRequest) SetConsentRequestId(v string) + func (o *OAuth2ConsentRequest) SetContext(v interface{}) + func (o *OAuth2ConsentRequest) SetLoginChallenge(v string) + func (o *OAuth2ConsentRequest) SetLoginSessionId(v string) + func (o *OAuth2ConsentRequest) SetOidcContext(v OAuth2ConsentRequestOpenIDConnectContext) + func (o *OAuth2ConsentRequest) SetRequestUrl(v string) + func (o *OAuth2ConsentRequest) SetRequestedAccessTokenAudience(v []string) + func (o *OAuth2ConsentRequest) SetRequestedScope(v []string) + func (o *OAuth2ConsentRequest) SetSkip(v bool) + func (o *OAuth2ConsentRequest) SetSubject(v string) + func (o *OAuth2ConsentRequest) UnmarshalJSON(data []byte) (err error) + func (o OAuth2ConsentRequest) MarshalJSON() ([]byte, error) + func (o OAuth2ConsentRequest) ToMap() (map[string]interface{}, error) + type OAuth2ConsentRequestOpenIDConnectContext struct + AcrValues []string + AdditionalProperties map[string]interface{} + Display *string + IdTokenHintClaims map[string]interface{} + LoginHint *string + UiLocales []string + func NewOAuth2ConsentRequestOpenIDConnectContext() *OAuth2ConsentRequestOpenIDConnectContext + func NewOAuth2ConsentRequestOpenIDConnectContextWithDefaults() *OAuth2ConsentRequestOpenIDConnectContext + func (o *OAuth2ConsentRequestOpenIDConnectContext) GetAcrValues() []string + func (o *OAuth2ConsentRequestOpenIDConnectContext) GetAcrValuesOk() ([]string, bool) + func (o *OAuth2ConsentRequestOpenIDConnectContext) GetDisplay() string + func (o *OAuth2ConsentRequestOpenIDConnectContext) GetDisplayOk() (*string, bool) + func (o *OAuth2ConsentRequestOpenIDConnectContext) GetIdTokenHintClaims() map[string]interface{} + func (o *OAuth2ConsentRequestOpenIDConnectContext) GetIdTokenHintClaimsOk() (map[string]interface{}, bool) + func (o *OAuth2ConsentRequestOpenIDConnectContext) GetLoginHint() string + func (o *OAuth2ConsentRequestOpenIDConnectContext) GetLoginHintOk() (*string, bool) + func (o *OAuth2ConsentRequestOpenIDConnectContext) GetUiLocales() []string + func (o *OAuth2ConsentRequestOpenIDConnectContext) GetUiLocalesOk() ([]string, bool) + func (o *OAuth2ConsentRequestOpenIDConnectContext) HasAcrValues() bool + func (o *OAuth2ConsentRequestOpenIDConnectContext) HasDisplay() bool + func (o *OAuth2ConsentRequestOpenIDConnectContext) HasIdTokenHintClaims() bool + func (o *OAuth2ConsentRequestOpenIDConnectContext) HasLoginHint() bool + func (o *OAuth2ConsentRequestOpenIDConnectContext) HasUiLocales() bool + func (o *OAuth2ConsentRequestOpenIDConnectContext) SetAcrValues(v []string) + func (o *OAuth2ConsentRequestOpenIDConnectContext) SetDisplay(v string) + func (o *OAuth2ConsentRequestOpenIDConnectContext) SetIdTokenHintClaims(v map[string]interface{}) + func (o *OAuth2ConsentRequestOpenIDConnectContext) SetLoginHint(v string) + func (o *OAuth2ConsentRequestOpenIDConnectContext) SetUiLocales(v []string) + func (o *OAuth2ConsentRequestOpenIDConnectContext) UnmarshalJSON(data []byte) (err error) + func (o OAuth2ConsentRequestOpenIDConnectContext) MarshalJSON() ([]byte, error) + func (o OAuth2ConsentRequestOpenIDConnectContext) ToMap() (map[string]interface{}, error) + type OAuth2ConsentSession struct + AdditionalProperties map[string]interface{} + ConsentRequest *OAuth2ConsentRequest + ConsentRequestId *string + Context interface{} + GrantAccessTokenAudience []string + GrantScope []string + HandledAt *time.Time + Remember *bool + RememberFor *int64 + Session *AcceptOAuth2ConsentRequestSession + func NewOAuth2ConsentSession() *OAuth2ConsentSession + func NewOAuth2ConsentSessionWithDefaults() *OAuth2ConsentSession + func (o *OAuth2ConsentSession) GetConsentRequest() OAuth2ConsentRequest + func (o *OAuth2ConsentSession) GetConsentRequestId() string + func (o *OAuth2ConsentSession) GetConsentRequestIdOk() (*string, bool) + func (o *OAuth2ConsentSession) GetConsentRequestOk() (*OAuth2ConsentRequest, bool) + func (o *OAuth2ConsentSession) GetContext() interface{} + func (o *OAuth2ConsentSession) GetContextOk() (*interface{}, bool) + func (o *OAuth2ConsentSession) GetGrantAccessTokenAudience() []string + func (o *OAuth2ConsentSession) GetGrantAccessTokenAudienceOk() ([]string, bool) + func (o *OAuth2ConsentSession) GetGrantScope() []string + func (o *OAuth2ConsentSession) GetGrantScopeOk() ([]string, bool) + func (o *OAuth2ConsentSession) GetHandledAt() time.Time + func (o *OAuth2ConsentSession) GetHandledAtOk() (*time.Time, bool) + func (o *OAuth2ConsentSession) GetRemember() bool + func (o *OAuth2ConsentSession) GetRememberFor() int64 + func (o *OAuth2ConsentSession) GetRememberForOk() (*int64, bool) + func (o *OAuth2ConsentSession) GetRememberOk() (*bool, bool) + func (o *OAuth2ConsentSession) GetSession() AcceptOAuth2ConsentRequestSession + func (o *OAuth2ConsentSession) GetSessionOk() (*AcceptOAuth2ConsentRequestSession, bool) + func (o *OAuth2ConsentSession) HasConsentRequest() bool + func (o *OAuth2ConsentSession) HasConsentRequestId() bool + func (o *OAuth2ConsentSession) HasContext() bool + func (o *OAuth2ConsentSession) HasGrantAccessTokenAudience() bool + func (o *OAuth2ConsentSession) HasGrantScope() bool + func (o *OAuth2ConsentSession) HasHandledAt() bool + func (o *OAuth2ConsentSession) HasRemember() bool + func (o *OAuth2ConsentSession) HasRememberFor() bool + func (o *OAuth2ConsentSession) HasSession() bool + func (o *OAuth2ConsentSession) SetConsentRequest(v OAuth2ConsentRequest) + func (o *OAuth2ConsentSession) SetConsentRequestId(v string) + func (o *OAuth2ConsentSession) SetContext(v interface{}) + func (o *OAuth2ConsentSession) SetGrantAccessTokenAudience(v []string) + func (o *OAuth2ConsentSession) SetGrantScope(v []string) + func (o *OAuth2ConsentSession) SetHandledAt(v time.Time) + func (o *OAuth2ConsentSession) SetRemember(v bool) + func (o *OAuth2ConsentSession) SetRememberFor(v int64) + func (o *OAuth2ConsentSession) SetSession(v AcceptOAuth2ConsentRequestSession) + func (o *OAuth2ConsentSession) UnmarshalJSON(data []byte) (err error) + func (o OAuth2ConsentSession) MarshalJSON() ([]byte, error) + func (o OAuth2ConsentSession) ToMap() (map[string]interface{}, error) + type OAuth2LoginRequest struct + AdditionalProperties map[string]interface{} + Challenge string + Client OAuth2Client + OidcContext *OAuth2ConsentRequestOpenIDConnectContext + RequestUrl string + RequestedAccessTokenAudience []string + RequestedScope []string + SessionId *string + Skip bool + Subject string + func NewOAuth2LoginRequest(challenge string, client OAuth2Client, requestUrl string, skip bool, ...) *OAuth2LoginRequest + func NewOAuth2LoginRequestWithDefaults() *OAuth2LoginRequest + func (o *OAuth2LoginRequest) GetChallenge() string + func (o *OAuth2LoginRequest) GetChallengeOk() (*string, bool) + func (o *OAuth2LoginRequest) GetClient() OAuth2Client + func (o *OAuth2LoginRequest) GetClientOk() (*OAuth2Client, bool) + func (o *OAuth2LoginRequest) GetOidcContext() OAuth2ConsentRequestOpenIDConnectContext + func (o *OAuth2LoginRequest) GetOidcContextOk() (*OAuth2ConsentRequestOpenIDConnectContext, bool) + func (o *OAuth2LoginRequest) GetRequestUrl() string + func (o *OAuth2LoginRequest) GetRequestUrlOk() (*string, bool) + func (o *OAuth2LoginRequest) GetRequestedAccessTokenAudience() []string + func (o *OAuth2LoginRequest) GetRequestedAccessTokenAudienceOk() ([]string, bool) + func (o *OAuth2LoginRequest) GetRequestedScope() []string + func (o *OAuth2LoginRequest) GetRequestedScopeOk() ([]string, bool) + func (o *OAuth2LoginRequest) GetSessionId() string + func (o *OAuth2LoginRequest) GetSessionIdOk() (*string, bool) + func (o *OAuth2LoginRequest) GetSkip() bool + func (o *OAuth2LoginRequest) GetSkipOk() (*bool, bool) + func (o *OAuth2LoginRequest) GetSubject() string + func (o *OAuth2LoginRequest) GetSubjectOk() (*string, bool) + func (o *OAuth2LoginRequest) HasOidcContext() bool + func (o *OAuth2LoginRequest) HasRequestedAccessTokenAudience() bool + func (o *OAuth2LoginRequest) HasRequestedScope() bool + func (o *OAuth2LoginRequest) HasSessionId() bool + func (o *OAuth2LoginRequest) SetChallenge(v string) + func (o *OAuth2LoginRequest) SetClient(v OAuth2Client) + func (o *OAuth2LoginRequest) SetOidcContext(v OAuth2ConsentRequestOpenIDConnectContext) + func (o *OAuth2LoginRequest) SetRequestUrl(v string) + func (o *OAuth2LoginRequest) SetRequestedAccessTokenAudience(v []string) + func (o *OAuth2LoginRequest) SetRequestedScope(v []string) + func (o *OAuth2LoginRequest) SetSessionId(v string) + func (o *OAuth2LoginRequest) SetSkip(v bool) + func (o *OAuth2LoginRequest) SetSubject(v string) + func (o *OAuth2LoginRequest) UnmarshalJSON(data []byte) (err error) + func (o OAuth2LoginRequest) MarshalJSON() ([]byte, error) + func (o OAuth2LoginRequest) ToMap() (map[string]interface{}, error) + type OAuth2LogoutRequest struct + AdditionalProperties map[string]interface{} + Challenge *string + Client *OAuth2Client + ExpiresAt *time.Time + RequestUrl *string + RequestedAt *time.Time + RpInitiated *bool + Sid *string + Subject *string + func NewOAuth2LogoutRequest() *OAuth2LogoutRequest + func NewOAuth2LogoutRequestWithDefaults() *OAuth2LogoutRequest + func (o *OAuth2LogoutRequest) GetChallenge() string + func (o *OAuth2LogoutRequest) GetChallengeOk() (*string, bool) + func (o *OAuth2LogoutRequest) GetClient() OAuth2Client + func (o *OAuth2LogoutRequest) GetClientOk() (*OAuth2Client, bool) + func (o *OAuth2LogoutRequest) GetExpiresAt() time.Time + func (o *OAuth2LogoutRequest) GetExpiresAtOk() (*time.Time, bool) + func (o *OAuth2LogoutRequest) GetRequestUrl() string + func (o *OAuth2LogoutRequest) GetRequestUrlOk() (*string, bool) + func (o *OAuth2LogoutRequest) GetRequestedAt() time.Time + func (o *OAuth2LogoutRequest) GetRequestedAtOk() (*time.Time, bool) + func (o *OAuth2LogoutRequest) GetRpInitiated() bool + func (o *OAuth2LogoutRequest) GetRpInitiatedOk() (*bool, bool) + func (o *OAuth2LogoutRequest) GetSid() string + func (o *OAuth2LogoutRequest) GetSidOk() (*string, bool) + func (o *OAuth2LogoutRequest) GetSubject() string + func (o *OAuth2LogoutRequest) GetSubjectOk() (*string, bool) + func (o *OAuth2LogoutRequest) HasChallenge() bool + func (o *OAuth2LogoutRequest) HasClient() bool + func (o *OAuth2LogoutRequest) HasExpiresAt() bool + func (o *OAuth2LogoutRequest) HasRequestUrl() bool + func (o *OAuth2LogoutRequest) HasRequestedAt() bool + func (o *OAuth2LogoutRequest) HasRpInitiated() bool + func (o *OAuth2LogoutRequest) HasSid() bool + func (o *OAuth2LogoutRequest) HasSubject() bool + func (o *OAuth2LogoutRequest) SetChallenge(v string) + func (o *OAuth2LogoutRequest) SetClient(v OAuth2Client) + func (o *OAuth2LogoutRequest) SetExpiresAt(v time.Time) + func (o *OAuth2LogoutRequest) SetRequestUrl(v string) + func (o *OAuth2LogoutRequest) SetRequestedAt(v time.Time) + func (o *OAuth2LogoutRequest) SetRpInitiated(v bool) + func (o *OAuth2LogoutRequest) SetSid(v string) + func (o *OAuth2LogoutRequest) SetSubject(v string) + func (o *OAuth2LogoutRequest) UnmarshalJSON(data []byte) (err error) + func (o OAuth2LogoutRequest) MarshalJSON() ([]byte, error) + func (o OAuth2LogoutRequest) ToMap() (map[string]interface{}, error) + type OAuth2RedirectTo struct + AdditionalProperties map[string]interface{} + RedirectTo string + func NewOAuth2RedirectTo(redirectTo string) *OAuth2RedirectTo + func NewOAuth2RedirectToWithDefaults() *OAuth2RedirectTo + func (o *OAuth2RedirectTo) GetRedirectTo() string + func (o *OAuth2RedirectTo) GetRedirectToOk() (*string, bool) + func (o *OAuth2RedirectTo) SetRedirectTo(v string) + func (o *OAuth2RedirectTo) UnmarshalJSON(data []byte) (err error) + func (o OAuth2RedirectTo) MarshalJSON() ([]byte, error) + func (o OAuth2RedirectTo) ToMap() (map[string]interface{}, error) + type OAuth2TokenExchange struct + AccessToken *string + AdditionalProperties map[string]interface{} + ExpiresIn *int64 + IdToken *string + RefreshToken *string + Scope *string + TokenType *string + func NewOAuth2TokenExchange() *OAuth2TokenExchange + func NewOAuth2TokenExchangeWithDefaults() *OAuth2TokenExchange + func (o *OAuth2TokenExchange) GetAccessToken() string + func (o *OAuth2TokenExchange) GetAccessTokenOk() (*string, bool) + func (o *OAuth2TokenExchange) GetExpiresIn() int64 + func (o *OAuth2TokenExchange) GetExpiresInOk() (*int64, bool) + func (o *OAuth2TokenExchange) GetIdToken() string + func (o *OAuth2TokenExchange) GetIdTokenOk() (*string, bool) + func (o *OAuth2TokenExchange) GetRefreshToken() string + func (o *OAuth2TokenExchange) GetRefreshTokenOk() (*string, bool) + func (o *OAuth2TokenExchange) GetScope() string + func (o *OAuth2TokenExchange) GetScopeOk() (*string, bool) + func (o *OAuth2TokenExchange) GetTokenType() string + func (o *OAuth2TokenExchange) GetTokenTypeOk() (*string, bool) + func (o *OAuth2TokenExchange) HasAccessToken() bool + func (o *OAuth2TokenExchange) HasExpiresIn() bool + func (o *OAuth2TokenExchange) HasIdToken() bool + func (o *OAuth2TokenExchange) HasRefreshToken() bool + func (o *OAuth2TokenExchange) HasScope() bool + func (o *OAuth2TokenExchange) HasTokenType() bool + func (o *OAuth2TokenExchange) SetAccessToken(v string) + func (o *OAuth2TokenExchange) SetExpiresIn(v int64) + func (o *OAuth2TokenExchange) SetIdToken(v string) + func (o *OAuth2TokenExchange) SetRefreshToken(v string) + func (o *OAuth2TokenExchange) SetScope(v string) + func (o *OAuth2TokenExchange) SetTokenType(v string) + func (o *OAuth2TokenExchange) UnmarshalJSON(data []byte) (err error) + func (o OAuth2TokenExchange) MarshalJSON() ([]byte, error) + func (o OAuth2TokenExchange) ToMap() (map[string]interface{}, error) + type OidcAPI interface + CreateOidcDynamicClient func(ctx context.Context) OidcAPICreateOidcDynamicClientRequest + CreateOidcDynamicClientExecute func(r OidcAPICreateOidcDynamicClientRequest) (*OAuth2Client, *http.Response, error) + CreateVerifiableCredential func(ctx context.Context) OidcAPICreateVerifiableCredentialRequest + CreateVerifiableCredentialExecute func(r OidcAPICreateVerifiableCredentialRequest) (*VerifiableCredentialResponse, *http.Response, error) + DeleteOidcDynamicClient func(ctx context.Context, id string) OidcAPIDeleteOidcDynamicClientRequest + DeleteOidcDynamicClientExecute func(r OidcAPIDeleteOidcDynamicClientRequest) (*http.Response, error) + DiscoverOidcConfiguration func(ctx context.Context) OidcAPIDiscoverOidcConfigurationRequest + DiscoverOidcConfigurationExecute func(r OidcAPIDiscoverOidcConfigurationRequest) (*OidcConfiguration, *http.Response, error) + GetOidcDynamicClient func(ctx context.Context, id string) OidcAPIGetOidcDynamicClientRequest + GetOidcDynamicClientExecute func(r OidcAPIGetOidcDynamicClientRequest) (*OAuth2Client, *http.Response, error) + GetOidcUserInfo func(ctx context.Context) OidcAPIGetOidcUserInfoRequest + GetOidcUserInfoExecute func(r OidcAPIGetOidcUserInfoRequest) (*OidcUserInfo, *http.Response, error) + RevokeOidcSession func(ctx context.Context) OidcAPIRevokeOidcSessionRequest + RevokeOidcSessionExecute func(r OidcAPIRevokeOidcSessionRequest) (*http.Response, error) + SetOidcDynamicClient func(ctx context.Context, id string) OidcAPISetOidcDynamicClientRequest + SetOidcDynamicClientExecute func(r OidcAPISetOidcDynamicClientRequest) (*OAuth2Client, *http.Response, error) + type OidcAPICreateOidcDynamicClientRequest struct + ApiService OidcAPI + func (r OidcAPICreateOidcDynamicClientRequest) Execute() (*OAuth2Client, *http.Response, error) + func (r OidcAPICreateOidcDynamicClientRequest) OAuth2Client(oAuth2Client OAuth2Client) OidcAPICreateOidcDynamicClientRequest + type OidcAPICreateVerifiableCredentialRequest struct + ApiService OidcAPI + func (r OidcAPICreateVerifiableCredentialRequest) CreateVerifiableCredentialRequestBody(createVerifiableCredentialRequestBody CreateVerifiableCredentialRequestBody) OidcAPICreateVerifiableCredentialRequest + func (r OidcAPICreateVerifiableCredentialRequest) Execute() (*VerifiableCredentialResponse, *http.Response, error) + type OidcAPIDeleteOidcDynamicClientRequest struct + ApiService OidcAPI + func (r OidcAPIDeleteOidcDynamicClientRequest) Execute() (*http.Response, error) + type OidcAPIDiscoverOidcConfigurationRequest struct + ApiService OidcAPI + func (r OidcAPIDiscoverOidcConfigurationRequest) Execute() (*OidcConfiguration, *http.Response, error) + type OidcAPIGetOidcDynamicClientRequest struct + ApiService OidcAPI + func (r OidcAPIGetOidcDynamicClientRequest) Execute() (*OAuth2Client, *http.Response, error) + type OidcAPIGetOidcUserInfoRequest struct + ApiService OidcAPI + func (r OidcAPIGetOidcUserInfoRequest) Execute() (*OidcUserInfo, *http.Response, error) + type OidcAPIRevokeOidcSessionRequest struct + ApiService OidcAPI + func (r OidcAPIRevokeOidcSessionRequest) Execute() (*http.Response, error) + type OidcAPIService service + func (a *OidcAPIService) CreateOidcDynamicClient(ctx context.Context) OidcAPICreateOidcDynamicClientRequest + func (a *OidcAPIService) CreateOidcDynamicClientExecute(r OidcAPICreateOidcDynamicClientRequest) (*OAuth2Client, *http.Response, error) + func (a *OidcAPIService) CreateVerifiableCredential(ctx context.Context) OidcAPICreateVerifiableCredentialRequest + func (a *OidcAPIService) CreateVerifiableCredentialExecute(r OidcAPICreateVerifiableCredentialRequest) (*VerifiableCredentialResponse, *http.Response, error) + func (a *OidcAPIService) DeleteOidcDynamicClient(ctx context.Context, id string) OidcAPIDeleteOidcDynamicClientRequest + func (a *OidcAPIService) DeleteOidcDynamicClientExecute(r OidcAPIDeleteOidcDynamicClientRequest) (*http.Response, error) + func (a *OidcAPIService) DiscoverOidcConfiguration(ctx context.Context) OidcAPIDiscoverOidcConfigurationRequest + func (a *OidcAPIService) DiscoverOidcConfigurationExecute(r OidcAPIDiscoverOidcConfigurationRequest) (*OidcConfiguration, *http.Response, error) + func (a *OidcAPIService) GetOidcDynamicClient(ctx context.Context, id string) OidcAPIGetOidcDynamicClientRequest + func (a *OidcAPIService) GetOidcDynamicClientExecute(r OidcAPIGetOidcDynamicClientRequest) (*OAuth2Client, *http.Response, error) + func (a *OidcAPIService) GetOidcUserInfo(ctx context.Context) OidcAPIGetOidcUserInfoRequest + func (a *OidcAPIService) GetOidcUserInfoExecute(r OidcAPIGetOidcUserInfoRequest) (*OidcUserInfo, *http.Response, error) + func (a *OidcAPIService) RevokeOidcSession(ctx context.Context) OidcAPIRevokeOidcSessionRequest + func (a *OidcAPIService) RevokeOidcSessionExecute(r OidcAPIRevokeOidcSessionRequest) (*http.Response, error) + func (a *OidcAPIService) SetOidcDynamicClient(ctx context.Context, id string) OidcAPISetOidcDynamicClientRequest + func (a *OidcAPIService) SetOidcDynamicClientExecute(r OidcAPISetOidcDynamicClientRequest) (*OAuth2Client, *http.Response, error) + type OidcAPISetOidcDynamicClientRequest struct + ApiService OidcAPI + func (r OidcAPISetOidcDynamicClientRequest) Execute() (*OAuth2Client, *http.Response, error) + func (r OidcAPISetOidcDynamicClientRequest) OAuth2Client(oAuth2Client OAuth2Client) OidcAPISetOidcDynamicClientRequest + type OidcConfiguration struct + AdditionalProperties map[string]interface{} + AuthorizationEndpoint string + BackchannelLogoutSessionSupported *bool + BackchannelLogoutSupported *bool + ClaimsParameterSupported *bool + ClaimsSupported []string + CodeChallengeMethodsSupported []string + CredentialsEndpointDraft00 *string + CredentialsSupportedDraft00 []CredentialSupportedDraft00 + DeviceAuthorizationEndpoint string + EndSessionEndpoint *string + FrontchannelLogoutSessionSupported *bool + FrontchannelLogoutSupported *bool + GrantTypesSupported []string + IdTokenSignedResponseAlg []string + IdTokenSigningAlgValuesSupported []string + Issuer string + JwksUri string + RegistrationEndpoint *string + RequestObjectSigningAlgValuesSupported []string + RequestParameterSupported *bool + RequestUriParameterSupported *bool + RequireRequestUriRegistration *bool + ResponseModesSupported []string + ResponseTypesSupported []string + RevocationEndpoint *string + ScopesSupported []string + SubjectTypesSupported []string + TokenEndpoint string + TokenEndpointAuthMethodsSupported []string + UserinfoEndpoint *string + UserinfoSignedResponseAlg []string + UserinfoSigningAlgValuesSupported []string + func NewOidcConfiguration(authorizationEndpoint string, deviceAuthorizationEndpoint string, ...) *OidcConfiguration + func NewOidcConfigurationWithDefaults() *OidcConfiguration + func (o *OidcConfiguration) GetAuthorizationEndpoint() string + func (o *OidcConfiguration) GetAuthorizationEndpointOk() (*string, bool) + func (o *OidcConfiguration) GetBackchannelLogoutSessionSupported() bool + func (o *OidcConfiguration) GetBackchannelLogoutSessionSupportedOk() (*bool, bool) + func (o *OidcConfiguration) GetBackchannelLogoutSupported() bool + func (o *OidcConfiguration) GetBackchannelLogoutSupportedOk() (*bool, bool) + func (o *OidcConfiguration) GetClaimsParameterSupported() bool + func (o *OidcConfiguration) GetClaimsParameterSupportedOk() (*bool, bool) + func (o *OidcConfiguration) GetClaimsSupported() []string + func (o *OidcConfiguration) GetClaimsSupportedOk() ([]string, bool) + func (o *OidcConfiguration) GetCodeChallengeMethodsSupported() []string + func (o *OidcConfiguration) GetCodeChallengeMethodsSupportedOk() ([]string, bool) + func (o *OidcConfiguration) GetCredentialsEndpointDraft00() string + func (o *OidcConfiguration) GetCredentialsEndpointDraft00Ok() (*string, bool) + func (o *OidcConfiguration) GetCredentialsSupportedDraft00() []CredentialSupportedDraft00 + func (o *OidcConfiguration) GetCredentialsSupportedDraft00Ok() ([]CredentialSupportedDraft00, bool) + func (o *OidcConfiguration) GetDeviceAuthorizationEndpoint() string + func (o *OidcConfiguration) GetDeviceAuthorizationEndpointOk() (*string, bool) + func (o *OidcConfiguration) GetEndSessionEndpoint() string + func (o *OidcConfiguration) GetEndSessionEndpointOk() (*string, bool) + func (o *OidcConfiguration) GetFrontchannelLogoutSessionSupported() bool + func (o *OidcConfiguration) GetFrontchannelLogoutSessionSupportedOk() (*bool, bool) + func (o *OidcConfiguration) GetFrontchannelLogoutSupported() bool + func (o *OidcConfiguration) GetFrontchannelLogoutSupportedOk() (*bool, bool) + func (o *OidcConfiguration) GetGrantTypesSupported() []string + func (o *OidcConfiguration) GetGrantTypesSupportedOk() ([]string, bool) + func (o *OidcConfiguration) GetIdTokenSignedResponseAlg() []string + func (o *OidcConfiguration) GetIdTokenSignedResponseAlgOk() ([]string, bool) + func (o *OidcConfiguration) GetIdTokenSigningAlgValuesSupported() []string + func (o *OidcConfiguration) GetIdTokenSigningAlgValuesSupportedOk() ([]string, bool) + func (o *OidcConfiguration) GetIssuer() string + func (o *OidcConfiguration) GetIssuerOk() (*string, bool) + func (o *OidcConfiguration) GetJwksUri() string + func (o *OidcConfiguration) GetJwksUriOk() (*string, bool) + func (o *OidcConfiguration) GetRegistrationEndpoint() string + func (o *OidcConfiguration) GetRegistrationEndpointOk() (*string, bool) + func (o *OidcConfiguration) GetRequestObjectSigningAlgValuesSupported() []string + func (o *OidcConfiguration) GetRequestObjectSigningAlgValuesSupportedOk() ([]string, bool) + func (o *OidcConfiguration) GetRequestParameterSupported() bool + func (o *OidcConfiguration) GetRequestParameterSupportedOk() (*bool, bool) + func (o *OidcConfiguration) GetRequestUriParameterSupported() bool + func (o *OidcConfiguration) GetRequestUriParameterSupportedOk() (*bool, bool) + func (o *OidcConfiguration) GetRequireRequestUriRegistration() bool + func (o *OidcConfiguration) GetRequireRequestUriRegistrationOk() (*bool, bool) + func (o *OidcConfiguration) GetResponseModesSupported() []string + func (o *OidcConfiguration) GetResponseModesSupportedOk() ([]string, bool) + func (o *OidcConfiguration) GetResponseTypesSupported() []string + func (o *OidcConfiguration) GetResponseTypesSupportedOk() ([]string, bool) + func (o *OidcConfiguration) GetRevocationEndpoint() string + func (o *OidcConfiguration) GetRevocationEndpointOk() (*string, bool) + func (o *OidcConfiguration) GetScopesSupported() []string + func (o *OidcConfiguration) GetScopesSupportedOk() ([]string, bool) + func (o *OidcConfiguration) GetSubjectTypesSupported() []string + func (o *OidcConfiguration) GetSubjectTypesSupportedOk() ([]string, bool) + func (o *OidcConfiguration) GetTokenEndpoint() string + func (o *OidcConfiguration) GetTokenEndpointAuthMethodsSupported() []string + func (o *OidcConfiguration) GetTokenEndpointAuthMethodsSupportedOk() ([]string, bool) + func (o *OidcConfiguration) GetTokenEndpointOk() (*string, bool) + func (o *OidcConfiguration) GetUserinfoEndpoint() string + func (o *OidcConfiguration) GetUserinfoEndpointOk() (*string, bool) + func (o *OidcConfiguration) GetUserinfoSignedResponseAlg() []string + func (o *OidcConfiguration) GetUserinfoSignedResponseAlgOk() ([]string, bool) + func (o *OidcConfiguration) GetUserinfoSigningAlgValuesSupported() []string + func (o *OidcConfiguration) GetUserinfoSigningAlgValuesSupportedOk() ([]string, bool) + func (o *OidcConfiguration) HasBackchannelLogoutSessionSupported() bool + func (o *OidcConfiguration) HasBackchannelLogoutSupported() bool + func (o *OidcConfiguration) HasClaimsParameterSupported() bool + func (o *OidcConfiguration) HasClaimsSupported() bool + func (o *OidcConfiguration) HasCodeChallengeMethodsSupported() bool + func (o *OidcConfiguration) HasCredentialsEndpointDraft00() bool + func (o *OidcConfiguration) HasCredentialsSupportedDraft00() bool + func (o *OidcConfiguration) HasEndSessionEndpoint() bool + func (o *OidcConfiguration) HasFrontchannelLogoutSessionSupported() bool + func (o *OidcConfiguration) HasFrontchannelLogoutSupported() bool + func (o *OidcConfiguration) HasGrantTypesSupported() bool + func (o *OidcConfiguration) HasRegistrationEndpoint() bool + func (o *OidcConfiguration) HasRequestObjectSigningAlgValuesSupported() bool + func (o *OidcConfiguration) HasRequestParameterSupported() bool + func (o *OidcConfiguration) HasRequestUriParameterSupported() bool + func (o *OidcConfiguration) HasRequireRequestUriRegistration() bool + func (o *OidcConfiguration) HasResponseModesSupported() bool + func (o *OidcConfiguration) HasRevocationEndpoint() bool + func (o *OidcConfiguration) HasScopesSupported() bool + func (o *OidcConfiguration) HasTokenEndpointAuthMethodsSupported() bool + func (o *OidcConfiguration) HasUserinfoEndpoint() bool + func (o *OidcConfiguration) HasUserinfoSigningAlgValuesSupported() bool + func (o *OidcConfiguration) SetAuthorizationEndpoint(v string) + func (o *OidcConfiguration) SetBackchannelLogoutSessionSupported(v bool) + func (o *OidcConfiguration) SetBackchannelLogoutSupported(v bool) + func (o *OidcConfiguration) SetClaimsParameterSupported(v bool) + func (o *OidcConfiguration) SetClaimsSupported(v []string) + func (o *OidcConfiguration) SetCodeChallengeMethodsSupported(v []string) + func (o *OidcConfiguration) SetCredentialsEndpointDraft00(v string) + func (o *OidcConfiguration) SetCredentialsSupportedDraft00(v []CredentialSupportedDraft00) + func (o *OidcConfiguration) SetDeviceAuthorizationEndpoint(v string) + func (o *OidcConfiguration) SetEndSessionEndpoint(v string) + func (o *OidcConfiguration) SetFrontchannelLogoutSessionSupported(v bool) + func (o *OidcConfiguration) SetFrontchannelLogoutSupported(v bool) + func (o *OidcConfiguration) SetGrantTypesSupported(v []string) + func (o *OidcConfiguration) SetIdTokenSignedResponseAlg(v []string) + func (o *OidcConfiguration) SetIdTokenSigningAlgValuesSupported(v []string) + func (o *OidcConfiguration) SetIssuer(v string) + func (o *OidcConfiguration) SetJwksUri(v string) + func (o *OidcConfiguration) SetRegistrationEndpoint(v string) + func (o *OidcConfiguration) SetRequestObjectSigningAlgValuesSupported(v []string) + func (o *OidcConfiguration) SetRequestParameterSupported(v bool) + func (o *OidcConfiguration) SetRequestUriParameterSupported(v bool) + func (o *OidcConfiguration) SetRequireRequestUriRegistration(v bool) + func (o *OidcConfiguration) SetResponseModesSupported(v []string) + func (o *OidcConfiguration) SetResponseTypesSupported(v []string) + func (o *OidcConfiguration) SetRevocationEndpoint(v string) + func (o *OidcConfiguration) SetScopesSupported(v []string) + func (o *OidcConfiguration) SetSubjectTypesSupported(v []string) + func (o *OidcConfiguration) SetTokenEndpoint(v string) + func (o *OidcConfiguration) SetTokenEndpointAuthMethodsSupported(v []string) + func (o *OidcConfiguration) SetUserinfoEndpoint(v string) + func (o *OidcConfiguration) SetUserinfoSignedResponseAlg(v []string) + func (o *OidcConfiguration) SetUserinfoSigningAlgValuesSupported(v []string) + func (o *OidcConfiguration) UnmarshalJSON(data []byte) (err error) + func (o OidcConfiguration) MarshalJSON() ([]byte, error) + func (o OidcConfiguration) ToMap() (map[string]interface{}, error) + type OidcUserInfo struct + AdditionalProperties map[string]interface{} + Birthdate *string + Email *string + EmailVerified *bool + FamilyName *string + Gender *string + GivenName *string + Locale *string + MiddleName *string + Name *string + Nickname *string + PhoneNumber *string + PhoneNumberVerified *bool + Picture *string + PreferredUsername *string + Profile *string + Sub *string + UpdatedAt *int64 + Website *string + Zoneinfo *string + func NewOidcUserInfo() *OidcUserInfo + func NewOidcUserInfoWithDefaults() *OidcUserInfo + func (o *OidcUserInfo) GetBirthdate() string + func (o *OidcUserInfo) GetBirthdateOk() (*string, bool) + func (o *OidcUserInfo) GetEmail() string + func (o *OidcUserInfo) GetEmailOk() (*string, bool) + func (o *OidcUserInfo) GetEmailVerified() bool + func (o *OidcUserInfo) GetEmailVerifiedOk() (*bool, bool) + func (o *OidcUserInfo) GetFamilyName() string + func (o *OidcUserInfo) GetFamilyNameOk() (*string, bool) + func (o *OidcUserInfo) GetGender() string + func (o *OidcUserInfo) GetGenderOk() (*string, bool) + func (o *OidcUserInfo) GetGivenName() string + func (o *OidcUserInfo) GetGivenNameOk() (*string, bool) + func (o *OidcUserInfo) GetLocale() string + func (o *OidcUserInfo) GetLocaleOk() (*string, bool) + func (o *OidcUserInfo) GetMiddleName() string + func (o *OidcUserInfo) GetMiddleNameOk() (*string, bool) + func (o *OidcUserInfo) GetName() string + func (o *OidcUserInfo) GetNameOk() (*string, bool) + func (o *OidcUserInfo) GetNickname() string + func (o *OidcUserInfo) GetNicknameOk() (*string, bool) + func (o *OidcUserInfo) GetPhoneNumber() string + func (o *OidcUserInfo) GetPhoneNumberOk() (*string, bool) + func (o *OidcUserInfo) GetPhoneNumberVerified() bool + func (o *OidcUserInfo) GetPhoneNumberVerifiedOk() (*bool, bool) + func (o *OidcUserInfo) GetPicture() string + func (o *OidcUserInfo) GetPictureOk() (*string, bool) + func (o *OidcUserInfo) GetPreferredUsername() string + func (o *OidcUserInfo) GetPreferredUsernameOk() (*string, bool) + func (o *OidcUserInfo) GetProfile() string + func (o *OidcUserInfo) GetProfileOk() (*string, bool) + func (o *OidcUserInfo) GetSub() string + func (o *OidcUserInfo) GetSubOk() (*string, bool) + func (o *OidcUserInfo) GetUpdatedAt() int64 + func (o *OidcUserInfo) GetUpdatedAtOk() (*int64, bool) + func (o *OidcUserInfo) GetWebsite() string + func (o *OidcUserInfo) GetWebsiteOk() (*string, bool) + func (o *OidcUserInfo) GetZoneinfo() string + func (o *OidcUserInfo) GetZoneinfoOk() (*string, bool) + func (o *OidcUserInfo) HasBirthdate() bool + func (o *OidcUserInfo) HasEmail() bool + func (o *OidcUserInfo) HasEmailVerified() bool + func (o *OidcUserInfo) HasFamilyName() bool + func (o *OidcUserInfo) HasGender() bool + func (o *OidcUserInfo) HasGivenName() bool + func (o *OidcUserInfo) HasLocale() bool + func (o *OidcUserInfo) HasMiddleName() bool + func (o *OidcUserInfo) HasName() bool + func (o *OidcUserInfo) HasNickname() bool + func (o *OidcUserInfo) HasPhoneNumber() bool + func (o *OidcUserInfo) HasPhoneNumberVerified() bool + func (o *OidcUserInfo) HasPicture() bool + func (o *OidcUserInfo) HasPreferredUsername() bool + func (o *OidcUserInfo) HasProfile() bool + func (o *OidcUserInfo) HasSub() bool + func (o *OidcUserInfo) HasUpdatedAt() bool + func (o *OidcUserInfo) HasWebsite() bool + func (o *OidcUserInfo) HasZoneinfo() bool + func (o *OidcUserInfo) SetBirthdate(v string) + func (o *OidcUserInfo) SetEmail(v string) + func (o *OidcUserInfo) SetEmailVerified(v bool) + func (o *OidcUserInfo) SetFamilyName(v string) + func (o *OidcUserInfo) SetGender(v string) + func (o *OidcUserInfo) SetGivenName(v string) + func (o *OidcUserInfo) SetLocale(v string) + func (o *OidcUserInfo) SetMiddleName(v string) + func (o *OidcUserInfo) SetName(v string) + func (o *OidcUserInfo) SetNickname(v string) + func (o *OidcUserInfo) SetPhoneNumber(v string) + func (o *OidcUserInfo) SetPhoneNumberVerified(v bool) + func (o *OidcUserInfo) SetPicture(v string) + func (o *OidcUserInfo) SetPreferredUsername(v string) + func (o *OidcUserInfo) SetProfile(v string) + func (o *OidcUserInfo) SetSub(v string) + func (o *OidcUserInfo) SetUpdatedAt(v int64) + func (o *OidcUserInfo) SetWebsite(v string) + func (o *OidcUserInfo) SetZoneinfo(v string) + func (o *OidcUserInfo) UnmarshalJSON(data []byte) (err error) + func (o OidcUserInfo) MarshalJSON() ([]byte, error) + func (o OidcUserInfo) ToMap() (map[string]interface{}, error) + type RFC6749ErrorJson struct + AdditionalProperties map[string]interface{} + Error *string + ErrorDebug *string + ErrorDescription *string + ErrorHint *string + StatusCode *int64 + func NewRFC6749ErrorJson() *RFC6749ErrorJson + func NewRFC6749ErrorJsonWithDefaults() *RFC6749ErrorJson + func (o *RFC6749ErrorJson) GetError() string + func (o *RFC6749ErrorJson) GetErrorDebug() string + func (o *RFC6749ErrorJson) GetErrorDebugOk() (*string, bool) + func (o *RFC6749ErrorJson) GetErrorDescription() string + func (o *RFC6749ErrorJson) GetErrorDescriptionOk() (*string, bool) + func (o *RFC6749ErrorJson) GetErrorHint() string + func (o *RFC6749ErrorJson) GetErrorHintOk() (*string, bool) + func (o *RFC6749ErrorJson) GetErrorOk() (*string, bool) + func (o *RFC6749ErrorJson) GetStatusCode() int64 + func (o *RFC6749ErrorJson) GetStatusCodeOk() (*int64, bool) + func (o *RFC6749ErrorJson) HasError() bool + func (o *RFC6749ErrorJson) HasErrorDebug() bool + func (o *RFC6749ErrorJson) HasErrorDescription() bool + func (o *RFC6749ErrorJson) HasErrorHint() bool + func (o *RFC6749ErrorJson) HasStatusCode() bool + func (o *RFC6749ErrorJson) SetError(v string) + func (o *RFC6749ErrorJson) SetErrorDebug(v string) + func (o *RFC6749ErrorJson) SetErrorDescription(v string) + func (o *RFC6749ErrorJson) SetErrorHint(v string) + func (o *RFC6749ErrorJson) SetStatusCode(v int64) + func (o *RFC6749ErrorJson) UnmarshalJSON(data []byte) (err error) + func (o RFC6749ErrorJson) MarshalJSON() ([]byte, error) + func (o RFC6749ErrorJson) ToMap() (map[string]interface{}, error) + type RejectOAuth2Request struct + AdditionalProperties map[string]interface{} + Error *string + ErrorDebug *string + ErrorDescription *string + ErrorHint *string + StatusCode *int64 + func NewRejectOAuth2Request() *RejectOAuth2Request + func NewRejectOAuth2RequestWithDefaults() *RejectOAuth2Request + func (o *RejectOAuth2Request) GetError() string + func (o *RejectOAuth2Request) GetErrorDebug() string + func (o *RejectOAuth2Request) GetErrorDebugOk() (*string, bool) + func (o *RejectOAuth2Request) GetErrorDescription() string + func (o *RejectOAuth2Request) GetErrorDescriptionOk() (*string, bool) + func (o *RejectOAuth2Request) GetErrorHint() string + func (o *RejectOAuth2Request) GetErrorHintOk() (*string, bool) + func (o *RejectOAuth2Request) GetErrorOk() (*string, bool) + func (o *RejectOAuth2Request) GetStatusCode() int64 + func (o *RejectOAuth2Request) GetStatusCodeOk() (*int64, bool) + func (o *RejectOAuth2Request) HasError() bool + func (o *RejectOAuth2Request) HasErrorDebug() bool + func (o *RejectOAuth2Request) HasErrorDescription() bool + func (o *RejectOAuth2Request) HasErrorHint() bool + func (o *RejectOAuth2Request) HasStatusCode() bool + func (o *RejectOAuth2Request) SetError(v string) + func (o *RejectOAuth2Request) SetErrorDebug(v string) + func (o *RejectOAuth2Request) SetErrorDescription(v string) + func (o *RejectOAuth2Request) SetErrorHint(v string) + func (o *RejectOAuth2Request) SetStatusCode(v int64) + func (o *RejectOAuth2Request) UnmarshalJSON(data []byte) (err error) + func (o RejectOAuth2Request) MarshalJSON() ([]byte, error) + func (o RejectOAuth2Request) ToMap() (map[string]interface{}, error) + type ServerConfiguration struct + Description string + URL string + Variables map[string]ServerVariable + type ServerConfigurations []ServerConfiguration + func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error) + type ServerVariable struct + DefaultValue string + Description string + EnumValues []string + type TokenPagination struct + AdditionalProperties map[string]interface{} + PageSize *int64 + PageToken *string + func NewTokenPagination() *TokenPagination + func NewTokenPaginationWithDefaults() *TokenPagination + func (o *TokenPagination) GetPageSize() int64 + func (o *TokenPagination) GetPageSizeOk() (*int64, bool) + func (o *TokenPagination) GetPageToken() string + func (o *TokenPagination) GetPageTokenOk() (*string, bool) + func (o *TokenPagination) HasPageSize() bool + func (o *TokenPagination) HasPageToken() bool + func (o *TokenPagination) SetPageSize(v int64) + func (o *TokenPagination) SetPageToken(v string) + func (o *TokenPagination) UnmarshalJSON(data []byte) (err error) + func (o TokenPagination) MarshalJSON() ([]byte, error) + func (o TokenPagination) ToMap() (map[string]interface{}, error) + type TokenPaginationHeaders struct + AdditionalProperties map[string]interface{} + Link *string + XTotalCount *string + func NewTokenPaginationHeaders() *TokenPaginationHeaders + func NewTokenPaginationHeadersWithDefaults() *TokenPaginationHeaders + func (o *TokenPaginationHeaders) GetLink() string + func (o *TokenPaginationHeaders) GetLinkOk() (*string, bool) + func (o *TokenPaginationHeaders) GetXTotalCount() string + func (o *TokenPaginationHeaders) GetXTotalCountOk() (*string, bool) + func (o *TokenPaginationHeaders) HasLink() bool + func (o *TokenPaginationHeaders) HasXTotalCount() bool + func (o *TokenPaginationHeaders) SetLink(v string) + func (o *TokenPaginationHeaders) SetXTotalCount(v string) + func (o *TokenPaginationHeaders) UnmarshalJSON(data []byte) (err error) + func (o TokenPaginationHeaders) MarshalJSON() ([]byte, error) + func (o TokenPaginationHeaders) ToMap() (map[string]interface{}, error) + type TokenPaginationRequestParameters struct + AdditionalProperties map[string]interface{} + PageSize *int64 + PageToken *string + func NewTokenPaginationRequestParameters() *TokenPaginationRequestParameters + func NewTokenPaginationRequestParametersWithDefaults() *TokenPaginationRequestParameters + func (o *TokenPaginationRequestParameters) GetPageSize() int64 + func (o *TokenPaginationRequestParameters) GetPageSizeOk() (*int64, bool) + func (o *TokenPaginationRequestParameters) GetPageToken() string + func (o *TokenPaginationRequestParameters) GetPageTokenOk() (*string, bool) + func (o *TokenPaginationRequestParameters) HasPageSize() bool + func (o *TokenPaginationRequestParameters) HasPageToken() bool + func (o *TokenPaginationRequestParameters) SetPageSize(v int64) + func (o *TokenPaginationRequestParameters) SetPageToken(v string) + func (o *TokenPaginationRequestParameters) UnmarshalJSON(data []byte) (err error) + func (o TokenPaginationRequestParameters) MarshalJSON() ([]byte, error) + func (o TokenPaginationRequestParameters) ToMap() (map[string]interface{}, error) + type TokenPaginationResponseHeaders struct + AdditionalProperties map[string]interface{} + Link *string + XTotalCount *int64 + func NewTokenPaginationResponseHeaders() *TokenPaginationResponseHeaders + func NewTokenPaginationResponseHeadersWithDefaults() *TokenPaginationResponseHeaders + func (o *TokenPaginationResponseHeaders) GetLink() string + func (o *TokenPaginationResponseHeaders) GetLinkOk() (*string, bool) + func (o *TokenPaginationResponseHeaders) GetXTotalCount() int64 + func (o *TokenPaginationResponseHeaders) GetXTotalCountOk() (*int64, bool) + func (o *TokenPaginationResponseHeaders) HasLink() bool + func (o *TokenPaginationResponseHeaders) HasXTotalCount() bool + func (o *TokenPaginationResponseHeaders) SetLink(v string) + func (o *TokenPaginationResponseHeaders) SetXTotalCount(v int64) + func (o *TokenPaginationResponseHeaders) UnmarshalJSON(data []byte) (err error) + func (o TokenPaginationResponseHeaders) MarshalJSON() ([]byte, error) + func (o TokenPaginationResponseHeaders) ToMap() (map[string]interface{}, error) + type TrustOAuth2JwtGrantIssuer struct + AdditionalProperties map[string]interface{} + AllowAnySubject *bool + ExpiresAt time.Time + Issuer string + Jwk JsonWebKey + Scope []string + Subject *string + func NewTrustOAuth2JwtGrantIssuer(expiresAt time.Time, issuer string, jwk JsonWebKey, scope []string) *TrustOAuth2JwtGrantIssuer + func NewTrustOAuth2JwtGrantIssuerWithDefaults() *TrustOAuth2JwtGrantIssuer + func (o *TrustOAuth2JwtGrantIssuer) GetAllowAnySubject() bool + func (o *TrustOAuth2JwtGrantIssuer) GetAllowAnySubjectOk() (*bool, bool) + func (o *TrustOAuth2JwtGrantIssuer) GetExpiresAt() time.Time + func (o *TrustOAuth2JwtGrantIssuer) GetExpiresAtOk() (*time.Time, bool) + func (o *TrustOAuth2JwtGrantIssuer) GetIssuer() string + func (o *TrustOAuth2JwtGrantIssuer) GetIssuerOk() (*string, bool) + func (o *TrustOAuth2JwtGrantIssuer) GetJwk() JsonWebKey + func (o *TrustOAuth2JwtGrantIssuer) GetJwkOk() (*JsonWebKey, bool) + func (o *TrustOAuth2JwtGrantIssuer) GetScope() []string + func (o *TrustOAuth2JwtGrantIssuer) GetScopeOk() ([]string, bool) + func (o *TrustOAuth2JwtGrantIssuer) GetSubject() string + func (o *TrustOAuth2JwtGrantIssuer) GetSubjectOk() (*string, bool) + func (o *TrustOAuth2JwtGrantIssuer) HasAllowAnySubject() bool + func (o *TrustOAuth2JwtGrantIssuer) HasSubject() bool + func (o *TrustOAuth2JwtGrantIssuer) SetAllowAnySubject(v bool) + func (o *TrustOAuth2JwtGrantIssuer) SetExpiresAt(v time.Time) + func (o *TrustOAuth2JwtGrantIssuer) SetIssuer(v string) + func (o *TrustOAuth2JwtGrantIssuer) SetJwk(v JsonWebKey) + func (o *TrustOAuth2JwtGrantIssuer) SetScope(v []string) + func (o *TrustOAuth2JwtGrantIssuer) SetSubject(v string) + func (o *TrustOAuth2JwtGrantIssuer) UnmarshalJSON(data []byte) (err error) + func (o TrustOAuth2JwtGrantIssuer) MarshalJSON() ([]byte, error) + func (o TrustOAuth2JwtGrantIssuer) ToMap() (map[string]interface{}, error) + type TrustedOAuth2JwtGrantIssuer struct + AdditionalProperties map[string]interface{} + AllowAnySubject *bool + CreatedAt *time.Time + ExpiresAt *time.Time + Id *string + Issuer *string + PublicKey *TrustedOAuth2JwtGrantJsonWebKey + Scope []string + Subject *string + func NewTrustedOAuth2JwtGrantIssuer() *TrustedOAuth2JwtGrantIssuer + func NewTrustedOAuth2JwtGrantIssuerWithDefaults() *TrustedOAuth2JwtGrantIssuer + func (o *TrustedOAuth2JwtGrantIssuer) GetAllowAnySubject() bool + func (o *TrustedOAuth2JwtGrantIssuer) GetAllowAnySubjectOk() (*bool, bool) + func (o *TrustedOAuth2JwtGrantIssuer) GetCreatedAt() time.Time + func (o *TrustedOAuth2JwtGrantIssuer) GetCreatedAtOk() (*time.Time, bool) + func (o *TrustedOAuth2JwtGrantIssuer) GetExpiresAt() time.Time + func (o *TrustedOAuth2JwtGrantIssuer) GetExpiresAtOk() (*time.Time, bool) + func (o *TrustedOAuth2JwtGrantIssuer) GetId() string + func (o *TrustedOAuth2JwtGrantIssuer) GetIdOk() (*string, bool) + func (o *TrustedOAuth2JwtGrantIssuer) GetIssuer() string + func (o *TrustedOAuth2JwtGrantIssuer) GetIssuerOk() (*string, bool) + func (o *TrustedOAuth2JwtGrantIssuer) GetPublicKey() TrustedOAuth2JwtGrantJsonWebKey + func (o *TrustedOAuth2JwtGrantIssuer) GetPublicKeyOk() (*TrustedOAuth2JwtGrantJsonWebKey, bool) + func (o *TrustedOAuth2JwtGrantIssuer) GetScope() []string + func (o *TrustedOAuth2JwtGrantIssuer) GetScopeOk() ([]string, bool) + func (o *TrustedOAuth2JwtGrantIssuer) GetSubject() string + func (o *TrustedOAuth2JwtGrantIssuer) GetSubjectOk() (*string, bool) + func (o *TrustedOAuth2JwtGrantIssuer) HasAllowAnySubject() bool + func (o *TrustedOAuth2JwtGrantIssuer) HasCreatedAt() bool + func (o *TrustedOAuth2JwtGrantIssuer) HasExpiresAt() bool + func (o *TrustedOAuth2JwtGrantIssuer) HasId() bool + func (o *TrustedOAuth2JwtGrantIssuer) HasIssuer() bool + func (o *TrustedOAuth2JwtGrantIssuer) HasPublicKey() bool + func (o *TrustedOAuth2JwtGrantIssuer) HasScope() bool + func (o *TrustedOAuth2JwtGrantIssuer) HasSubject() bool + func (o *TrustedOAuth2JwtGrantIssuer) SetAllowAnySubject(v bool) + func (o *TrustedOAuth2JwtGrantIssuer) SetCreatedAt(v time.Time) + func (o *TrustedOAuth2JwtGrantIssuer) SetExpiresAt(v time.Time) + func (o *TrustedOAuth2JwtGrantIssuer) SetId(v string) + func (o *TrustedOAuth2JwtGrantIssuer) SetIssuer(v string) + func (o *TrustedOAuth2JwtGrantIssuer) SetPublicKey(v TrustedOAuth2JwtGrantJsonWebKey) + func (o *TrustedOAuth2JwtGrantIssuer) SetScope(v []string) + func (o *TrustedOAuth2JwtGrantIssuer) SetSubject(v string) + func (o *TrustedOAuth2JwtGrantIssuer) UnmarshalJSON(data []byte) (err error) + func (o TrustedOAuth2JwtGrantIssuer) MarshalJSON() ([]byte, error) + func (o TrustedOAuth2JwtGrantIssuer) ToMap() (map[string]interface{}, error) + type TrustedOAuth2JwtGrantJsonWebKey struct + AdditionalProperties map[string]interface{} + Kid *string + Set *string + func NewTrustedOAuth2JwtGrantJsonWebKey() *TrustedOAuth2JwtGrantJsonWebKey + func NewTrustedOAuth2JwtGrantJsonWebKeyWithDefaults() *TrustedOAuth2JwtGrantJsonWebKey + func (o *TrustedOAuth2JwtGrantJsonWebKey) GetKid() string + func (o *TrustedOAuth2JwtGrantJsonWebKey) GetKidOk() (*string, bool) + func (o *TrustedOAuth2JwtGrantJsonWebKey) GetSet() string + func (o *TrustedOAuth2JwtGrantJsonWebKey) GetSetOk() (*string, bool) + func (o *TrustedOAuth2JwtGrantJsonWebKey) HasKid() bool + func (o *TrustedOAuth2JwtGrantJsonWebKey) HasSet() bool + func (o *TrustedOAuth2JwtGrantJsonWebKey) SetKid(v string) + func (o *TrustedOAuth2JwtGrantJsonWebKey) SetSet(v string) + func (o *TrustedOAuth2JwtGrantJsonWebKey) UnmarshalJSON(data []byte) (err error) + func (o TrustedOAuth2JwtGrantJsonWebKey) MarshalJSON() ([]byte, error) + func (o TrustedOAuth2JwtGrantJsonWebKey) ToMap() (map[string]interface{}, error) + type VerifiableCredentialPrimingResponse struct + AdditionalProperties map[string]interface{} + CNonce *string + CNonceExpiresIn *int64 + Error *string + ErrorDebug *string + ErrorDescription *string + ErrorHint *string + Format *string + StatusCode *int64 + func NewVerifiableCredentialPrimingResponse() *VerifiableCredentialPrimingResponse + func NewVerifiableCredentialPrimingResponseWithDefaults() *VerifiableCredentialPrimingResponse + func (o *VerifiableCredentialPrimingResponse) GetCNonce() string + func (o *VerifiableCredentialPrimingResponse) GetCNonceExpiresIn() int64 + func (o *VerifiableCredentialPrimingResponse) GetCNonceExpiresInOk() (*int64, bool) + func (o *VerifiableCredentialPrimingResponse) GetCNonceOk() (*string, bool) + func (o *VerifiableCredentialPrimingResponse) GetError() string + func (o *VerifiableCredentialPrimingResponse) GetErrorDebug() string + func (o *VerifiableCredentialPrimingResponse) GetErrorDebugOk() (*string, bool) + func (o *VerifiableCredentialPrimingResponse) GetErrorDescription() string + func (o *VerifiableCredentialPrimingResponse) GetErrorDescriptionOk() (*string, bool) + func (o *VerifiableCredentialPrimingResponse) GetErrorHint() string + func (o *VerifiableCredentialPrimingResponse) GetErrorHintOk() (*string, bool) + func (o *VerifiableCredentialPrimingResponse) GetErrorOk() (*string, bool) + func (o *VerifiableCredentialPrimingResponse) GetFormat() string + func (o *VerifiableCredentialPrimingResponse) GetFormatOk() (*string, bool) + func (o *VerifiableCredentialPrimingResponse) GetStatusCode() int64 + func (o *VerifiableCredentialPrimingResponse) GetStatusCodeOk() (*int64, bool) + func (o *VerifiableCredentialPrimingResponse) HasCNonce() bool + func (o *VerifiableCredentialPrimingResponse) HasCNonceExpiresIn() bool + func (o *VerifiableCredentialPrimingResponse) HasError() bool + func (o *VerifiableCredentialPrimingResponse) HasErrorDebug() bool + func (o *VerifiableCredentialPrimingResponse) HasErrorDescription() bool + func (o *VerifiableCredentialPrimingResponse) HasErrorHint() bool + func (o *VerifiableCredentialPrimingResponse) HasFormat() bool + func (o *VerifiableCredentialPrimingResponse) HasStatusCode() bool + func (o *VerifiableCredentialPrimingResponse) SetCNonce(v string) + func (o *VerifiableCredentialPrimingResponse) SetCNonceExpiresIn(v int64) + func (o *VerifiableCredentialPrimingResponse) SetError(v string) + func (o *VerifiableCredentialPrimingResponse) SetErrorDebug(v string) + func (o *VerifiableCredentialPrimingResponse) SetErrorDescription(v string) + func (o *VerifiableCredentialPrimingResponse) SetErrorHint(v string) + func (o *VerifiableCredentialPrimingResponse) SetFormat(v string) + func (o *VerifiableCredentialPrimingResponse) SetStatusCode(v int64) + func (o *VerifiableCredentialPrimingResponse) UnmarshalJSON(data []byte) (err error) + func (o VerifiableCredentialPrimingResponse) MarshalJSON() ([]byte, error) + func (o VerifiableCredentialPrimingResponse) ToMap() (map[string]interface{}, error) + type VerifiableCredentialProof struct + AdditionalProperties map[string]interface{} + Jwt *string + ProofType *string + func NewVerifiableCredentialProof() *VerifiableCredentialProof + func NewVerifiableCredentialProofWithDefaults() *VerifiableCredentialProof + func (o *VerifiableCredentialProof) GetJwt() string + func (o *VerifiableCredentialProof) GetJwtOk() (*string, bool) + func (o *VerifiableCredentialProof) GetProofType() string + func (o *VerifiableCredentialProof) GetProofTypeOk() (*string, bool) + func (o *VerifiableCredentialProof) HasJwt() bool + func (o *VerifiableCredentialProof) HasProofType() bool + func (o *VerifiableCredentialProof) SetJwt(v string) + func (o *VerifiableCredentialProof) SetProofType(v string) + func (o *VerifiableCredentialProof) UnmarshalJSON(data []byte) (err error) + func (o VerifiableCredentialProof) MarshalJSON() ([]byte, error) + func (o VerifiableCredentialProof) ToMap() (map[string]interface{}, error) + type VerifiableCredentialResponse struct + AdditionalProperties map[string]interface{} + CredentialDraft00 *string + Format *string + func NewVerifiableCredentialResponse() *VerifiableCredentialResponse + func NewVerifiableCredentialResponseWithDefaults() *VerifiableCredentialResponse + func (o *VerifiableCredentialResponse) GetCredentialDraft00() string + func (o *VerifiableCredentialResponse) GetCredentialDraft00Ok() (*string, bool) + func (o *VerifiableCredentialResponse) GetFormat() string + func (o *VerifiableCredentialResponse) GetFormatOk() (*string, bool) + func (o *VerifiableCredentialResponse) HasCredentialDraft00() bool + func (o *VerifiableCredentialResponse) HasFormat() bool + func (o *VerifiableCredentialResponse) SetCredentialDraft00(v string) + func (o *VerifiableCredentialResponse) SetFormat(v string) + func (o *VerifiableCredentialResponse) UnmarshalJSON(data []byte) (err error) + func (o VerifiableCredentialResponse) MarshalJSON() ([]byte, error) + func (o VerifiableCredentialResponse) ToMap() (map[string]interface{}, error) + type VerifyUserCodeRequest struct + AdditionalProperties map[string]interface{} + Client *OAuth2Client + DeviceCodeRequestId *string + RequestUrl *string + RequestedAccessTokenAudience []string + RequestedScope []string + func NewVerifyUserCodeRequest() *VerifyUserCodeRequest + func NewVerifyUserCodeRequestWithDefaults() *VerifyUserCodeRequest + func (o *VerifyUserCodeRequest) GetClient() OAuth2Client + func (o *VerifyUserCodeRequest) GetClientOk() (*OAuth2Client, bool) + func (o *VerifyUserCodeRequest) GetDeviceCodeRequestId() string + func (o *VerifyUserCodeRequest) GetDeviceCodeRequestIdOk() (*string, bool) + func (o *VerifyUserCodeRequest) GetRequestUrl() string + func (o *VerifyUserCodeRequest) GetRequestUrlOk() (*string, bool) + func (o *VerifyUserCodeRequest) GetRequestedAccessTokenAudience() []string + func (o *VerifyUserCodeRequest) GetRequestedAccessTokenAudienceOk() ([]string, bool) + func (o *VerifyUserCodeRequest) GetRequestedScope() []string + func (o *VerifyUserCodeRequest) GetRequestedScopeOk() ([]string, bool) + func (o *VerifyUserCodeRequest) HasClient() bool + func (o *VerifyUserCodeRequest) HasDeviceCodeRequestId() bool + func (o *VerifyUserCodeRequest) HasRequestUrl() bool + func (o *VerifyUserCodeRequest) HasRequestedAccessTokenAudience() bool + func (o *VerifyUserCodeRequest) HasRequestedScope() bool + func (o *VerifyUserCodeRequest) SetClient(v OAuth2Client) + func (o *VerifyUserCodeRequest) SetDeviceCodeRequestId(v string) + func (o *VerifyUserCodeRequest) SetRequestUrl(v string) + func (o *VerifyUserCodeRequest) SetRequestedAccessTokenAudience(v []string) + func (o *VerifyUserCodeRequest) SetRequestedScope(v []string) + func (o *VerifyUserCodeRequest) UnmarshalJSON(data []byte) (err error) + func (o VerifyUserCodeRequest) MarshalJSON() ([]byte, error) + func (o VerifyUserCodeRequest) ToMap() (map[string]interface{}, error) + type Version struct + AdditionalProperties map[string]interface{} + Version *string + func NewVersion() *Version + func NewVersionWithDefaults() *Version + func (o *Version) GetVersion() string + func (o *Version) GetVersionOk() (*string, bool) + func (o *Version) HasVersion() bool + func (o *Version) SetVersion(v string) + func (o *Version) UnmarshalJSON(data []byte) (err error) + func (o Version) MarshalJSON() ([]byte, error) + func (o Version) ToMap() (map[string]interface{}, error) + type WellknownAPI interface + DiscoverJsonWebKeys func(ctx context.Context) WellknownAPIDiscoverJsonWebKeysRequest + DiscoverJsonWebKeysExecute func(r WellknownAPIDiscoverJsonWebKeysRequest) (*JsonWebKeySet, *http.Response, error) + type WellknownAPIDiscoverJsonWebKeysRequest struct + ApiService WellknownAPI + func (r WellknownAPIDiscoverJsonWebKeysRequest) Execute() (*JsonWebKeySet, *http.Response, error) + type WellknownAPIService service + func (a *WellknownAPIService) DiscoverJsonWebKeys(ctx context.Context) WellknownAPIDiscoverJsonWebKeysRequest + func (a *WellknownAPIService) DiscoverJsonWebKeysExecute(r WellknownAPIDiscoverJsonWebKeysRequest) (*JsonWebKeySet, *http.Response, error) Other modules containing this package github.com/ory/hydra-client-go github.com/ory/hydra-client-go/v2 github.com/ory/hydra-client-go/v25