openapi

package module
v0.0.0-...-0fad86b Latest Latest
Warning

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

Go to latest
Published: Aug 21, 2023 License: Apache-2.0 Imports: 22 Imported by: 0

README

Go API client for openapi

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: v0
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import openapi "github.com/authlete/idp-api"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), openapi.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), openapi.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), openapi.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), openapi.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://devidp.authlete.net

Class Method HTTP request Description
AccessApiApi AcceptInvitation Post /api/access/invite/{id}
AccessApiApi DeclineInvitation Delete /api/access/invite/{id}
AccessApiApi GetInvitation Get /api/access/invite/{id}
AccessApiApi GetReceivedInvitations Get /api/access/invite/received
AccessApiApi GetSentInvitations Get /api/access/invite/sent
AccessApiApi InviteByEmail Post /api/access/invite
AccessApiApi RemoveApiServerPrivileges Post /api/access/apiserver/remove
AccessApiApi RemoveClientPrivileges Post /api/access/client/remove
AccessApiApi RemoveOrganizationPrivileges Post /api/access/organization/remove
AccessApiApi RemoveServicePrivileges Post /api/access/service/remove
AccessApiApi UpdateApiServerPrivileges Post /api/access/apiserver
AccessApiApi UpdateClientPrivileges Post /api/access/client
AccessApiApi UpdateOrganizationPrivileges Post /api/access/organization
AccessApiApi UpdateServicePrivileges Post /api/access/service
AccessMapApiApi GetAccessMap Get /api/accessmap
ApiServerApiApi CreateApiServer Post /api/apiserver
ApiServerApiApi DeleteApiServer Delete /api/apiserver/{id}
ApiServerApiApi GetAll1 Get /api/apiserver
ApiServerApiApi GetApiServer Get /api/apiserver/{id}
ApiServerApiApi UpdateApiServer Post /api/apiserver/{id}
AuthorizationEndpointApi Get Get /authorize
AuthorizeApiApi GetCurrentAuthorizationResponse Get /api/authorize
AuthorizeApiApi SubmitUserDecision Post /api/authorize
DiscoveryEndpointApi GetConfiguration Get /.well-known/openid-configuration
IntrospectionEndpointApi Introspect Post /introspect
JsonWebKeySetEndpointApi GetJsonWebKeySet Get /jwks
OrganizationApiApi CreateOrganization Post /api/organization
OrganizationApiApi DeleteOrganization Delete /api/organization/{id}
OrganizationApiApi GetAll Get /api/organization
OrganizationApiApi GetOrganization Get /api/organization/{id}
OrganizationApiApi UpdateOrganization Post /api/organization/{id}
OrganizationTokenApiApi CreateTokenForOrganization Post /api/organizationtoken/create
OrganizationTokenApiApi DeleteOrganizationToken Post /api/organizationtoken/revoke
OrganizationTokenApiApi GetTokensForService1 Post /api/organizationtoken/all
OrganizationTokenApiApi RenameTokenForService Post /api/organizationtoken/update
OrganizationTokenApiApi RotateTokenForOrganization Post /api/organizationtoken/rotate
ServiceApiApi AdoptService Post /api/service/adopt
ServiceApiApi CreateService Post /api/service
ServiceApiApi DeleteService Post /api/service/remove
ServiceApiApi FindService Get /api/service/find/{id}
ServiceApiApi GetOrphans Get /api/service/orphans
ServiceApiApi MoveService Post /api/service/move
ServiceApiApi RemoveOrphanService Post /api/service/orphans/remove
ServiceTokenApiApi CreateTokenForService Post /api/servicetoken/create
ServiceTokenApiApi GetTokensForService Post /api/servicetoken/all
ServiceTokenApiApi RenameServiceToken Post /api/servicetoken/update
ServiceTokenApiApi RevokeServiceToken Post /api/servicetoken/revoke
ServiceTokenApiApi RotateServiceToken Post /api/servicetoken/rotate
SessionApiApi AccountCheck Get /session/{email}
SessionApiApi GetCurrentUser Get /session/current
SessionApiApi LogIn Post /session/login
SessionApiApi LogOut Delete /session/logout
TokenEndpointApi TokenEndpoint Post /token
UserApiApi BindTotpCredentials Post /api/user/{id}/totp
UserApiApi BindWebAuthnChallenge Post /api/user/{id}/webauthn
UserApiApi CreateTotpCredentials Get /api/user/{id}/totp
UserApiApi CreateUser Post /api/user
UserApiApi CreateWebAuthnChallenge Get /api/user/{id}/webauthn
UserApiApi DeleteUser Delete /api/user/{id}
UserApiApi SetAdmin Post /api/user/{id}/admin
UserApiApi UnsetAdmin Delete /api/user/{id}/admin
UserApiApi UpdateUser Post /api/user/{id}
UserInfoEndpointApi UserInfo Get /userinfo

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

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

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

	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

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

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

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	AccessApiApi *AccessApiApiService

	AccessMapApiApi *AccessMapApiApiService

	ApiServerApiApi *ApiServerApiApiService

	AuthorizationEndpointApi *AuthorizationEndpointApiService

	AuthorizeApiApi *AuthorizeApiApiService

	DiscoveryEndpointApi *DiscoveryEndpointApiService

	IntrospectionEndpointApi *IntrospectionEndpointApiService

	JsonWebKeySetEndpointApi *JsonWebKeySetEndpointApiService

	OrganizationApiApi *OrganizationApiApiService

	OrganizationTokenApiApi *OrganizationTokenApiApiService

	ServiceApiApi *ServiceApiApiService

	ServiceTokenApiApi *ServiceTokenApiApiService

	SessionApiApi *SessionApiApiService

	TokenEndpointApi *TokenEndpointApiService

	UserApiApi *UserApiApiService

	UserInfoEndpointApi *UserInfoEndpointApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the OpenAPI definition API vv0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AccessApiApiService

type AccessApiApiService service

AccessApiApiService AccessApiApi service

func (*AccessApiApiService) AcceptInvitation

AcceptInvitation Method for AcceptInvitation

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

func (*AccessApiApiService) AcceptInvitationExecute

func (a *AccessApiApiService) AcceptInvitationExecute(r ApiAcceptInvitationRequest) (*http.Response, error)

Execute executes the request

func (*AccessApiApiService) DeclineInvitation

DeclineInvitation Method for DeclineInvitation

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

func (*AccessApiApiService) DeclineInvitationExecute

func (a *AccessApiApiService) DeclineInvitationExecute(r ApiDeclineInvitationRequest) (*http.Response, error)

Execute executes the request

func (*AccessApiApiService) GetInvitation

GetInvitation Method for GetInvitation

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

func (*AccessApiApiService) GetInvitationExecute

Execute executes the request

@return InvitationResponse

func (*AccessApiApiService) GetReceivedInvitations

GetReceivedInvitations Method for GetReceivedInvitations

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

func (*AccessApiApiService) GetReceivedInvitationsExecute

Execute executes the request

@return []InvitationResponse

func (*AccessApiApiService) GetSentInvitations

GetSentInvitations Method for GetSentInvitations

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

func (*AccessApiApiService) GetSentInvitationsExecute

Execute executes the request

@return []InvitationResponse

func (*AccessApiApiService) InviteByEmail

InviteByEmail Method for InviteByEmail

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

func (*AccessApiApiService) InviteByEmailExecute

Execute executes the request

@return InvitationResponse

func (*AccessApiApiService) RemoveApiServerPrivileges

func (a *AccessApiApiService) RemoveApiServerPrivileges(ctx context.Context) ApiRemoveApiServerPrivilegesRequest

RemoveApiServerPrivileges Method for RemoveApiServerPrivileges

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

func (*AccessApiApiService) RemoveApiServerPrivilegesExecute

func (a *AccessApiApiService) RemoveApiServerPrivilegesExecute(r ApiRemoveApiServerPrivilegesRequest) (*http.Response, error)

Execute executes the request

func (*AccessApiApiService) RemoveClientPrivileges

RemoveClientPrivileges Method for RemoveClientPrivileges

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

func (*AccessApiApiService) RemoveClientPrivilegesExecute

func (a *AccessApiApiService) RemoveClientPrivilegesExecute(r ApiRemoveClientPrivilegesRequest) (*http.Response, error)

Execute executes the request

func (*AccessApiApiService) RemoveOrganizationPrivileges

func (a *AccessApiApiService) RemoveOrganizationPrivileges(ctx context.Context) ApiRemoveOrganizationPrivilegesRequest

RemoveOrganizationPrivileges Method for RemoveOrganizationPrivileges

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

func (*AccessApiApiService) RemoveOrganizationPrivilegesExecute

func (a *AccessApiApiService) RemoveOrganizationPrivilegesExecute(r ApiRemoveOrganizationPrivilegesRequest) (*http.Response, error)

Execute executes the request

func (*AccessApiApiService) RemoveServicePrivileges

func (a *AccessApiApiService) RemoveServicePrivileges(ctx context.Context) ApiRemoveServicePrivilegesRequest

RemoveServicePrivileges Method for RemoveServicePrivileges

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

func (*AccessApiApiService) RemoveServicePrivilegesExecute

func (a *AccessApiApiService) RemoveServicePrivilegesExecute(r ApiRemoveServicePrivilegesRequest) (*http.Response, error)

Execute executes the request

func (*AccessApiApiService) UpdateApiServerPrivileges

func (a *AccessApiApiService) UpdateApiServerPrivileges(ctx context.Context) ApiUpdateApiServerPrivilegesRequest

UpdateApiServerPrivileges Method for UpdateApiServerPrivileges

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

func (*AccessApiApiService) UpdateApiServerPrivilegesExecute

Execute executes the request

@return ApiServerAccessResponse

func (*AccessApiApiService) UpdateClientPrivileges

UpdateClientPrivileges Method for UpdateClientPrivileges

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

func (*AccessApiApiService) UpdateClientPrivilegesExecute

Execute executes the request

@return ClientAccessResponse

func (*AccessApiApiService) UpdateOrganizationPrivileges

func (a *AccessApiApiService) UpdateOrganizationPrivileges(ctx context.Context) ApiUpdateOrganizationPrivilegesRequest

UpdateOrganizationPrivileges Method for UpdateOrganizationPrivileges

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

func (*AccessApiApiService) UpdateOrganizationPrivilegesExecute

Execute executes the request

@return OrganizationAccessResponse

func (*AccessApiApiService) UpdateServicePrivileges

func (a *AccessApiApiService) UpdateServicePrivileges(ctx context.Context) ApiUpdateServicePrivilegesRequest

UpdateServicePrivileges Method for UpdateServicePrivileges

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

func (*AccessApiApiService) UpdateServicePrivilegesExecute

Execute executes the request

@return ServiceAccessResponse

type AccessMapApiApiService

type AccessMapApiApiService service

AccessMapApiApiService AccessMapApiApi service

func (*AccessMapApiApiService) GetAccessMap

GetAccessMap Method for GetAccessMap

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

func (*AccessMapApiApiService) GetAccessMapExecute

Execute executes the request

@return UserServiceMembershipResponse

type AdoptServiceRequest

type AdoptServiceRequest struct {
	OrganizationId int64 `json:"organizationId"`
	ApiServerId    int64 `json:"apiServerId"`
	ServiceId      int64 `json:"serviceId"`
}

AdoptServiceRequest struct for AdoptServiceRequest

func NewAdoptServiceRequest

func NewAdoptServiceRequest(organizationId int64, apiServerId int64, serviceId int64) *AdoptServiceRequest

NewAdoptServiceRequest instantiates a new AdoptServiceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAdoptServiceRequestWithDefaults

func NewAdoptServiceRequestWithDefaults() *AdoptServiceRequest

NewAdoptServiceRequestWithDefaults instantiates a new AdoptServiceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AdoptServiceRequest) GetApiServerId

func (o *AdoptServiceRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value

func (*AdoptServiceRequest) GetApiServerIdOk

func (o *AdoptServiceRequest) GetApiServerIdOk() (*int64, bool)

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

func (*AdoptServiceRequest) GetOrganizationId

func (o *AdoptServiceRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*AdoptServiceRequest) GetOrganizationIdOk

func (o *AdoptServiceRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*AdoptServiceRequest) GetServiceId

func (o *AdoptServiceRequest) GetServiceId() int64

GetServiceId returns the ServiceId field value

func (*AdoptServiceRequest) GetServiceIdOk

func (o *AdoptServiceRequest) GetServiceIdOk() (*int64, bool)

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

func (AdoptServiceRequest) MarshalJSON

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

func (*AdoptServiceRequest) SetApiServerId

func (o *AdoptServiceRequest) SetApiServerId(v int64)

SetApiServerId sets field value

func (*AdoptServiceRequest) SetOrganizationId

func (o *AdoptServiceRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*AdoptServiceRequest) SetServiceId

func (o *AdoptServiceRequest) SetServiceId(v int64)

SetServiceId sets field value

type ApiAcceptInvitationRequest

type ApiAcceptInvitationRequest struct {
	ApiService *AccessApiApiService
	// contains filtered or unexported fields
}

func (ApiAcceptInvitationRequest) Authorization

func (r ApiAcceptInvitationRequest) Authorization(authorization string) ApiAcceptInvitationRequest

func (ApiAcceptInvitationRequest) DPoP

func (ApiAcceptInvitationRequest) Execute

type ApiAccountCheckRequest

type ApiAccountCheckRequest struct {
	ApiService *SessionApiApiService
	// contains filtered or unexported fields
}

func (ApiAccountCheckRequest) Execute

type ApiAdoptServiceRequest

type ApiAdoptServiceRequest struct {
	ApiService *ServiceApiApiService
	// contains filtered or unexported fields
}

func (ApiAdoptServiceRequest) AdoptServiceRequest

func (r ApiAdoptServiceRequest) AdoptServiceRequest(adoptServiceRequest AdoptServiceRequest) ApiAdoptServiceRequest

func (ApiAdoptServiceRequest) Authorization

func (r ApiAdoptServiceRequest) Authorization(authorization string) ApiAdoptServiceRequest

func (ApiAdoptServiceRequest) DPoP

func (ApiAdoptServiceRequest) Execute

type ApiBindTotpCredentialsRequest

type ApiBindTotpCredentialsRequest struct {
	ApiService *UserApiApiService
	// contains filtered or unexported fields
}

func (ApiBindTotpCredentialsRequest) BindTotpCredentialsRequest

func (r ApiBindTotpCredentialsRequest) BindTotpCredentialsRequest(bindTotpCredentialsRequest BindTotpCredentialsRequest) ApiBindTotpCredentialsRequest

func (ApiBindTotpCredentialsRequest) Execute

type ApiBindWebAuthnChallengeRequest

type ApiBindWebAuthnChallengeRequest struct {
	ApiService *UserApiApiService
	// contains filtered or unexported fields
}

func (ApiBindWebAuthnChallengeRequest) Execute

func (ApiBindWebAuthnChallengeRequest) WebAuthnChallengeRequest

func (r ApiBindWebAuthnChallengeRequest) WebAuthnChallengeRequest(webAuthnChallengeRequest WebAuthnChallengeRequest) ApiBindWebAuthnChallengeRequest

type ApiCreateApiServerRequest

type ApiCreateApiServerRequest struct {
	ApiService *ApiServerApiApiService
	// contains filtered or unexported fields
}

func (ApiCreateApiServerRequest) Authorization

func (r ApiCreateApiServerRequest) Authorization(authorization string) ApiCreateApiServerRequest

func (ApiCreateApiServerRequest) CreateApiServerRequest

func (r ApiCreateApiServerRequest) CreateApiServerRequest(createApiServerRequest CreateApiServerRequest) ApiCreateApiServerRequest

func (ApiCreateApiServerRequest) DPoP

func (ApiCreateApiServerRequest) Execute

type ApiCreateOrganizationRequest

type ApiCreateOrganizationRequest struct {
	ApiService *OrganizationApiApiService
	// contains filtered or unexported fields
}

func (ApiCreateOrganizationRequest) Authorization

func (r ApiCreateOrganizationRequest) Authorization(authorization string) ApiCreateOrganizationRequest

func (ApiCreateOrganizationRequest) DPoP

func (ApiCreateOrganizationRequest) Execute

func (ApiCreateOrganizationRequest) UpdateOrganizationRequest

func (r ApiCreateOrganizationRequest) UpdateOrganizationRequest(updateOrganizationRequest UpdateOrganizationRequest) ApiCreateOrganizationRequest

type ApiCreateServiceRequest

type ApiCreateServiceRequest struct {
	ApiService *ServiceApiApiService
	// contains filtered or unexported fields
}

func (ApiCreateServiceRequest) Authorization

func (r ApiCreateServiceRequest) Authorization(authorization string) ApiCreateServiceRequest

func (ApiCreateServiceRequest) CreateServiceRequest

func (r ApiCreateServiceRequest) CreateServiceRequest(createServiceRequest CreateServiceRequest) ApiCreateServiceRequest

func (ApiCreateServiceRequest) DPoP

func (ApiCreateServiceRequest) Execute

type ApiCreateTokenForOrganizationRequest

type ApiCreateTokenForOrganizationRequest struct {
	ApiService *OrganizationTokenApiApiService
	// contains filtered or unexported fields
}

func (ApiCreateTokenForOrganizationRequest) Authorization

func (ApiCreateTokenForOrganizationRequest) CreateOrganizationTokenRequest

func (r ApiCreateTokenForOrganizationRequest) CreateOrganizationTokenRequest(createOrganizationTokenRequest CreateOrganizationTokenRequest) ApiCreateTokenForOrganizationRequest

func (ApiCreateTokenForOrganizationRequest) DPoP

func (ApiCreateTokenForOrganizationRequest) Execute

type ApiCreateTokenForServiceRequest

type ApiCreateTokenForServiceRequest struct {
	ApiService *ServiceTokenApiApiService
	// contains filtered or unexported fields
}

func (ApiCreateTokenForServiceRequest) Authorization

func (ApiCreateTokenForServiceRequest) CreateServiceTokenRequest

func (r ApiCreateTokenForServiceRequest) CreateServiceTokenRequest(createServiceTokenRequest CreateServiceTokenRequest) ApiCreateTokenForServiceRequest

func (ApiCreateTokenForServiceRequest) DPoP

func (ApiCreateTokenForServiceRequest) Execute

type ApiCreateTotpCredentialsRequest

type ApiCreateTotpCredentialsRequest struct {
	ApiService *UserApiApiService
	// contains filtered or unexported fields
}

func (ApiCreateTotpCredentialsRequest) Execute

type ApiCreateUserRequest

type ApiCreateUserRequest struct {
	ApiService *UserApiApiService
	// contains filtered or unexported fields
}

func (ApiCreateUserRequest) CreateUserRequest

func (r ApiCreateUserRequest) CreateUserRequest(createUserRequest CreateUserRequest) ApiCreateUserRequest

func (ApiCreateUserRequest) Execute

type ApiCreateWebAuthnChallengeRequest

type ApiCreateWebAuthnChallengeRequest struct {
	ApiService *UserApiApiService
	// contains filtered or unexported fields
}

func (ApiCreateWebAuthnChallengeRequest) Execute

type ApiDeclineInvitationRequest

type ApiDeclineInvitationRequest struct {
	ApiService *AccessApiApiService
	// contains filtered or unexported fields
}

func (ApiDeclineInvitationRequest) Authorization

func (r ApiDeclineInvitationRequest) Authorization(authorization string) ApiDeclineInvitationRequest

func (ApiDeclineInvitationRequest) DPoP

func (ApiDeclineInvitationRequest) Execute

type ApiDeleteApiServerRequest

type ApiDeleteApiServerRequest struct {
	ApiService *ApiServerApiApiService
	// contains filtered or unexported fields
}

func (ApiDeleteApiServerRequest) Authorization

func (r ApiDeleteApiServerRequest) Authorization(authorization string) ApiDeleteApiServerRequest

func (ApiDeleteApiServerRequest) DPoP

func (ApiDeleteApiServerRequest) Execute

func (r ApiDeleteApiServerRequest) Execute() (*http.Response, error)

type ApiDeleteOrganizationRequest

type ApiDeleteOrganizationRequest struct {
	ApiService *OrganizationApiApiService
	// contains filtered or unexported fields
}

func (ApiDeleteOrganizationRequest) Authorization

func (r ApiDeleteOrganizationRequest) Authorization(authorization string) ApiDeleteOrganizationRequest

func (ApiDeleteOrganizationRequest) DPoP

func (ApiDeleteOrganizationRequest) Execute

type ApiDeleteOrganizationTokenRequest

type ApiDeleteOrganizationTokenRequest struct {
	ApiService *OrganizationTokenApiApiService
	// contains filtered or unexported fields
}

func (ApiDeleteOrganizationTokenRequest) Authorization

func (ApiDeleteOrganizationTokenRequest) DPoP

func (ApiDeleteOrganizationTokenRequest) DeleteOrganizationTokenRequest

func (r ApiDeleteOrganizationTokenRequest) DeleteOrganizationTokenRequest(deleteOrganizationTokenRequest DeleteOrganizationTokenRequest) ApiDeleteOrganizationTokenRequest

func (ApiDeleteOrganizationTokenRequest) Execute

type ApiDeleteServiceRequest

type ApiDeleteServiceRequest struct {
	ApiService *ServiceApiApiService
	// contains filtered or unexported fields
}

func (ApiDeleteServiceRequest) Authorization

func (r ApiDeleteServiceRequest) Authorization(authorization string) ApiDeleteServiceRequest

func (ApiDeleteServiceRequest) DPoP

func (ApiDeleteServiceRequest) DeleteServiceRequest

func (r ApiDeleteServiceRequest) DeleteServiceRequest(deleteServiceRequest DeleteServiceRequest) ApiDeleteServiceRequest

func (ApiDeleteServiceRequest) Execute

func (r ApiDeleteServiceRequest) Execute() (*http.Response, error)

type ApiDeleteUserRequest

type ApiDeleteUserRequest struct {
	ApiService *UserApiApiService
	// contains filtered or unexported fields
}

func (ApiDeleteUserRequest) Execute

func (r ApiDeleteUserRequest) Execute() (*http.Response, error)

type ApiFindServiceRequest

type ApiFindServiceRequest struct {
	ApiService *ServiceApiApiService
	// contains filtered or unexported fields
}

func (ApiFindServiceRequest) Authorization

func (r ApiFindServiceRequest) Authorization(authorization string) ApiFindServiceRequest

func (ApiFindServiceRequest) DPoP

func (ApiFindServiceRequest) Execute

type ApiGetAccessMapRequest

type ApiGetAccessMapRequest struct {
	ApiService *AccessMapApiApiService
	// contains filtered or unexported fields
}

func (ApiGetAccessMapRequest) Authorization

func (r ApiGetAccessMapRequest) Authorization(authorization string) ApiGetAccessMapRequest

func (ApiGetAccessMapRequest) DPoP

func (ApiGetAccessMapRequest) Execute

type ApiGetAll1Request

type ApiGetAll1Request struct {
	ApiService *ApiServerApiApiService
	// contains filtered or unexported fields
}

func (ApiGetAll1Request) Authorization

func (r ApiGetAll1Request) Authorization(authorization string) ApiGetAll1Request

func (ApiGetAll1Request) DPoP

func (ApiGetAll1Request) Execute

type ApiGetAllRequest

type ApiGetAllRequest struct {
	ApiService *OrganizationApiApiService
	// contains filtered or unexported fields
}

func (ApiGetAllRequest) Authorization

func (r ApiGetAllRequest) Authorization(authorization string) ApiGetAllRequest

func (ApiGetAllRequest) DPoP

func (ApiGetAllRequest) Execute

type ApiGetApiServerRequest

type ApiGetApiServerRequest struct {
	ApiService *ApiServerApiApiService
	// contains filtered or unexported fields
}

func (ApiGetApiServerRequest) Authorization

func (r ApiGetApiServerRequest) Authorization(authorization string) ApiGetApiServerRequest

func (ApiGetApiServerRequest) DPoP

func (ApiGetApiServerRequest) Execute

type ApiGetConfigurationRequest

type ApiGetConfigurationRequest struct {
	ApiService *DiscoveryEndpointApiService
	// contains filtered or unexported fields
}

func (ApiGetConfigurationRequest) Execute

type ApiGetCurrentAuthorizationResponseRequest

type ApiGetCurrentAuthorizationResponseRequest struct {
	ApiService *AuthorizeApiApiService
	// contains filtered or unexported fields
}

func (ApiGetCurrentAuthorizationResponseRequest) Execute

type ApiGetCurrentUserRequest

type ApiGetCurrentUserRequest struct {
	ApiService *SessionApiApiService
	// contains filtered or unexported fields
}

func (ApiGetCurrentUserRequest) Execute

type ApiGetInvitationRequest

type ApiGetInvitationRequest struct {
	ApiService *AccessApiApiService
	// contains filtered or unexported fields
}

func (ApiGetInvitationRequest) Authorization

func (r ApiGetInvitationRequest) Authorization(authorization string) ApiGetInvitationRequest

func (ApiGetInvitationRequest) DPoP

func (ApiGetInvitationRequest) Execute

type ApiGetJsonWebKeySetRequest

type ApiGetJsonWebKeySetRequest struct {
	ApiService *JsonWebKeySetEndpointApiService
	// contains filtered or unexported fields
}

func (ApiGetJsonWebKeySetRequest) Execute

type ApiGetOrganizationRequest

type ApiGetOrganizationRequest struct {
	ApiService *OrganizationApiApiService
	// contains filtered or unexported fields
}

func (ApiGetOrganizationRequest) Authorization

func (r ApiGetOrganizationRequest) Authorization(authorization string) ApiGetOrganizationRequest

func (ApiGetOrganizationRequest) DPoP

func (ApiGetOrganizationRequest) Execute

type ApiGetOrphansRequest

type ApiGetOrphansRequest struct {
	ApiService *ServiceApiApiService
	// contains filtered or unexported fields
}

func (ApiGetOrphansRequest) Authorization

func (r ApiGetOrphansRequest) Authorization(authorization string) ApiGetOrphansRequest

func (ApiGetOrphansRequest) DPoP

func (ApiGetOrphansRequest) Execute

type ApiGetReceivedInvitationsRequest

type ApiGetReceivedInvitationsRequest struct {
	ApiService *AccessApiApiService
	// contains filtered or unexported fields
}

func (ApiGetReceivedInvitationsRequest) Authorization

func (ApiGetReceivedInvitationsRequest) DPoP

func (ApiGetReceivedInvitationsRequest) Execute

type ApiGetRequest

type ApiGetRequest struct {
	ApiService *AuthorizationEndpointApiService
	// contains filtered or unexported fields
}

func (ApiGetRequest) Execute

func (r ApiGetRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiGetSentInvitationsRequest

type ApiGetSentInvitationsRequest struct {
	ApiService *AccessApiApiService
	// contains filtered or unexported fields
}

func (ApiGetSentInvitationsRequest) Authorization

func (r ApiGetSentInvitationsRequest) Authorization(authorization string) ApiGetSentInvitationsRequest

func (ApiGetSentInvitationsRequest) DPoP

func (ApiGetSentInvitationsRequest) Execute

type ApiGetTokensForService1Request

type ApiGetTokensForService1Request struct {
	ApiService *OrganizationTokenApiApiService
	// contains filtered or unexported fields
}

func (ApiGetTokensForService1Request) Authorization

func (ApiGetTokensForService1Request) DPoP

func (ApiGetTokensForService1Request) Execute

func (ApiGetTokensForService1Request) GetOrganizationTokensRequest

func (r ApiGetTokensForService1Request) GetOrganizationTokensRequest(getOrganizationTokensRequest GetOrganizationTokensRequest) ApiGetTokensForService1Request

type ApiGetTokensForServiceRequest

type ApiGetTokensForServiceRequest struct {
	ApiService *ServiceTokenApiApiService
	// contains filtered or unexported fields
}

func (ApiGetTokensForServiceRequest) Authorization

func (ApiGetTokensForServiceRequest) DPoP

func (ApiGetTokensForServiceRequest) Execute

func (ApiGetTokensForServiceRequest) GetServiceTokensRequest

func (r ApiGetTokensForServiceRequest) GetServiceTokensRequest(getServiceTokensRequest GetServiceTokensRequest) ApiGetTokensForServiceRequest

type ApiIntrospectRequest

type ApiIntrospectRequest struct {
	ApiService *IntrospectionEndpointApiService
	// contains filtered or unexported fields
}

func (ApiIntrospectRequest) Empty

func (ApiIntrospectRequest) Execute

func (r ApiIntrospectRequest) Execute() (string, *http.Response, error)

type ApiInviteByEmailRequest

type ApiInviteByEmailRequest struct {
	ApiService *AccessApiApiService
	// contains filtered or unexported fields
}

func (ApiInviteByEmailRequest) Authorization

func (r ApiInviteByEmailRequest) Authorization(authorization string) ApiInviteByEmailRequest

func (ApiInviteByEmailRequest) DPoP

func (ApiInviteByEmailRequest) Execute

func (ApiInviteByEmailRequest) InviteRequest

func (r ApiInviteByEmailRequest) InviteRequest(inviteRequest InviteRequest) ApiInviteByEmailRequest

type ApiLogInRequest

type ApiLogInRequest struct {
	ApiService *SessionApiApiService
	// contains filtered or unexported fields
}

func (ApiLogInRequest) Execute

func (r ApiLogInRequest) Execute() (*LogInResponse, *http.Response, error)

func (ApiLogInRequest) LogInRequest

func (r ApiLogInRequest) LogInRequest(logInRequest LogInRequest) ApiLogInRequest

type ApiLogOutRequest

type ApiLogOutRequest struct {
	ApiService *SessionApiApiService
	// contains filtered or unexported fields
}

func (ApiLogOutRequest) Execute

func (r ApiLogOutRequest) Execute() (*http.Response, error)

type ApiMoveServiceRequest

type ApiMoveServiceRequest struct {
	ApiService *ServiceApiApiService
	// contains filtered or unexported fields
}

func (ApiMoveServiceRequest) Authorization

func (r ApiMoveServiceRequest) Authorization(authorization string) ApiMoveServiceRequest

func (ApiMoveServiceRequest) DPoP

func (ApiMoveServiceRequest) Execute

func (ApiMoveServiceRequest) MoveServiceRequest

func (r ApiMoveServiceRequest) MoveServiceRequest(moveServiceRequest MoveServiceRequest) ApiMoveServiceRequest

type ApiRemoveApiServerPrivilegesRequest

type ApiRemoveApiServerPrivilegesRequest struct {
	ApiService *AccessApiApiService
	// contains filtered or unexported fields
}

func (ApiRemoveApiServerPrivilegesRequest) Authorization

func (ApiRemoveApiServerPrivilegesRequest) DPoP

func (ApiRemoveApiServerPrivilegesRequest) Execute

func (ApiRemoveApiServerPrivilegesRequest) RemoveApiServerPrivilegesRequest

func (r ApiRemoveApiServerPrivilegesRequest) RemoveApiServerPrivilegesRequest(removeApiServerPrivilegesRequest RemoveApiServerPrivilegesRequest) ApiRemoveApiServerPrivilegesRequest

type ApiRemoveClientPrivilegesRequest

type ApiRemoveClientPrivilegesRequest struct {
	ApiService *AccessApiApiService
	// contains filtered or unexported fields
}

func (ApiRemoveClientPrivilegesRequest) Authorization

func (ApiRemoveClientPrivilegesRequest) DPoP

func (ApiRemoveClientPrivilegesRequest) Execute

func (ApiRemoveClientPrivilegesRequest) RemoveClientPrivilegesRequest

func (r ApiRemoveClientPrivilegesRequest) RemoveClientPrivilegesRequest(removeClientPrivilegesRequest RemoveClientPrivilegesRequest) ApiRemoveClientPrivilegesRequest

type ApiRemoveOrganizationPrivilegesRequest

type ApiRemoveOrganizationPrivilegesRequest struct {
	ApiService *AccessApiApiService
	// contains filtered or unexported fields
}

func (ApiRemoveOrganizationPrivilegesRequest) Authorization

func (ApiRemoveOrganizationPrivilegesRequest) DPoP

func (ApiRemoveOrganizationPrivilegesRequest) Execute

func (ApiRemoveOrganizationPrivilegesRequest) RemoveOrganizationPrivilegesRequest

func (r ApiRemoveOrganizationPrivilegesRequest) RemoveOrganizationPrivilegesRequest(removeOrganizationPrivilegesRequest RemoveOrganizationPrivilegesRequest) ApiRemoveOrganizationPrivilegesRequest

type ApiRemoveOrphanServiceRequest

type ApiRemoveOrphanServiceRequest struct {
	ApiService *ServiceApiApiService
	// contains filtered or unexported fields
}

func (ApiRemoveOrphanServiceRequest) Authorization

func (ApiRemoveOrphanServiceRequest) DPoP

func (ApiRemoveOrphanServiceRequest) Execute

func (ApiRemoveOrphanServiceRequest) RemoveOrphanRequest

func (r ApiRemoveOrphanServiceRequest) RemoveOrphanRequest(removeOrphanRequest RemoveOrphanRequest) ApiRemoveOrphanServiceRequest

type ApiRemoveServicePrivilegesRequest

type ApiRemoveServicePrivilegesRequest struct {
	ApiService *AccessApiApiService
	// contains filtered or unexported fields
}

func (ApiRemoveServicePrivilegesRequest) Authorization

func (ApiRemoveServicePrivilegesRequest) DPoP

func (ApiRemoveServicePrivilegesRequest) Execute

func (ApiRemoveServicePrivilegesRequest) RemoveServicePrivilegesRequest

func (r ApiRemoveServicePrivilegesRequest) RemoveServicePrivilegesRequest(removeServicePrivilegesRequest RemoveServicePrivilegesRequest) ApiRemoveServicePrivilegesRequest

type ApiRenameServiceTokenRequest

type ApiRenameServiceTokenRequest struct {
	ApiService *ServiceTokenApiApiService
	// contains filtered or unexported fields
}

func (ApiRenameServiceTokenRequest) Authorization

func (r ApiRenameServiceTokenRequest) Authorization(authorization string) ApiRenameServiceTokenRequest

func (ApiRenameServiceTokenRequest) DPoP

func (ApiRenameServiceTokenRequest) Execute

func (ApiRenameServiceTokenRequest) RenameServiceTokenRequest

func (r ApiRenameServiceTokenRequest) RenameServiceTokenRequest(renameServiceTokenRequest RenameServiceTokenRequest) ApiRenameServiceTokenRequest

type ApiRenameTokenForServiceRequest

type ApiRenameTokenForServiceRequest struct {
	ApiService *OrganizationTokenApiApiService
	// contains filtered or unexported fields
}

func (ApiRenameTokenForServiceRequest) Authorization

func (ApiRenameTokenForServiceRequest) DPoP

func (ApiRenameTokenForServiceRequest) Execute

func (ApiRenameTokenForServiceRequest) RenameOrganizationTokenRequest

func (r ApiRenameTokenForServiceRequest) RenameOrganizationTokenRequest(renameOrganizationTokenRequest RenameOrganizationTokenRequest) ApiRenameTokenForServiceRequest

type ApiRevokeServiceTokenRequest

type ApiRevokeServiceTokenRequest struct {
	ApiService *ServiceTokenApiApiService
	// contains filtered or unexported fields
}

func (ApiRevokeServiceTokenRequest) Authorization

func (r ApiRevokeServiceTokenRequest) Authorization(authorization string) ApiRevokeServiceTokenRequest

func (ApiRevokeServiceTokenRequest) DPoP

func (ApiRevokeServiceTokenRequest) DeleteServiceTokenRequest

func (r ApiRevokeServiceTokenRequest) DeleteServiceTokenRequest(deleteServiceTokenRequest DeleteServiceTokenRequest) ApiRevokeServiceTokenRequest

func (ApiRevokeServiceTokenRequest) Execute

type ApiRotateServiceTokenRequest

type ApiRotateServiceTokenRequest struct {
	ApiService *ServiceTokenApiApiService
	// contains filtered or unexported fields
}

func (ApiRotateServiceTokenRequest) Authorization

func (r ApiRotateServiceTokenRequest) Authorization(authorization string) ApiRotateServiceTokenRequest

func (ApiRotateServiceTokenRequest) DPoP

func (ApiRotateServiceTokenRequest) Execute

func (ApiRotateServiceTokenRequest) RotateServiceTokenRequest

func (r ApiRotateServiceTokenRequest) RotateServiceTokenRequest(rotateServiceTokenRequest RotateServiceTokenRequest) ApiRotateServiceTokenRequest

type ApiRotateTokenForOrganizationRequest

type ApiRotateTokenForOrganizationRequest struct {
	ApiService *OrganizationTokenApiApiService
	// contains filtered or unexported fields
}

func (ApiRotateTokenForOrganizationRequest) Authorization

func (ApiRotateTokenForOrganizationRequest) DPoP

func (ApiRotateTokenForOrganizationRequest) Execute

func (ApiRotateTokenForOrganizationRequest) RotateOrganizationTokenRequest

func (r ApiRotateTokenForOrganizationRequest) RotateOrganizationTokenRequest(rotateOrganizationTokenRequest RotateOrganizationTokenRequest) ApiRotateTokenForOrganizationRequest

type ApiServerAccess

type ApiServerAccess struct {
	Id                   *int64          `json:"id,omitempty"`
	Privileges           []string        `json:"privileges,omitempty"`
	AllServicePrivileges []string        `json:"allServicePrivileges,omitempty"`
	AllClientPrivileges  []string        `json:"allClientPrivileges,omitempty"`
	ServiceAccess        []ServiceAccess `json:"serviceAccess,omitempty"`
	OrganizationAccessId *int64          `json:"organization_access_id,omitempty"`
	ApiServerId          *int64          `json:"api_server_id,omitempty"`
}

ApiServerAccess struct for ApiServerAccess

func NewApiServerAccess

func NewApiServerAccess() *ApiServerAccess

NewApiServerAccess instantiates a new ApiServerAccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApiServerAccessWithDefaults

func NewApiServerAccessWithDefaults() *ApiServerAccess

NewApiServerAccessWithDefaults instantiates a new ApiServerAccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApiServerAccess) GetAllClientPrivileges

func (o *ApiServerAccess) GetAllClientPrivileges() []string

GetAllClientPrivileges returns the AllClientPrivileges field value if set, zero value otherwise.

func (*ApiServerAccess) GetAllClientPrivilegesOk

func (o *ApiServerAccess) GetAllClientPrivilegesOk() ([]string, bool)

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

func (*ApiServerAccess) GetAllServicePrivileges

func (o *ApiServerAccess) GetAllServicePrivileges() []string

GetAllServicePrivileges returns the AllServicePrivileges field value if set, zero value otherwise.

func (*ApiServerAccess) GetAllServicePrivilegesOk

func (o *ApiServerAccess) GetAllServicePrivilegesOk() ([]string, bool)

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

func (*ApiServerAccess) GetApiServerId

func (o *ApiServerAccess) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value if set, zero value otherwise.

func (*ApiServerAccess) GetApiServerIdOk

func (o *ApiServerAccess) GetApiServerIdOk() (*int64, bool)

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

func (*ApiServerAccess) GetId

func (o *ApiServerAccess) GetId() int64

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

func (*ApiServerAccess) GetIdOk

func (o *ApiServerAccess) GetIdOk() (*int64, bool)

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

func (*ApiServerAccess) GetOrganizationAccessId

func (o *ApiServerAccess) GetOrganizationAccessId() int64

GetOrganizationAccessId returns the OrganizationAccessId field value if set, zero value otherwise.

func (*ApiServerAccess) GetOrganizationAccessIdOk

func (o *ApiServerAccess) GetOrganizationAccessIdOk() (*int64, bool)

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

func (*ApiServerAccess) GetPrivileges

func (o *ApiServerAccess) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*ApiServerAccess) GetPrivilegesOk

func (o *ApiServerAccess) GetPrivilegesOk() ([]string, bool)

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

func (*ApiServerAccess) GetServiceAccess

func (o *ApiServerAccess) GetServiceAccess() []ServiceAccess

GetServiceAccess returns the ServiceAccess field value if set, zero value otherwise.

func (*ApiServerAccess) GetServiceAccessOk

func (o *ApiServerAccess) GetServiceAccessOk() ([]ServiceAccess, bool)

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

func (*ApiServerAccess) HasAllClientPrivileges

func (o *ApiServerAccess) HasAllClientPrivileges() bool

HasAllClientPrivileges returns a boolean if a field has been set.

func (*ApiServerAccess) HasAllServicePrivileges

func (o *ApiServerAccess) HasAllServicePrivileges() bool

HasAllServicePrivileges returns a boolean if a field has been set.

func (*ApiServerAccess) HasApiServerId

func (o *ApiServerAccess) HasApiServerId() bool

HasApiServerId returns a boolean if a field has been set.

func (*ApiServerAccess) HasId

func (o *ApiServerAccess) HasId() bool

HasId returns a boolean if a field has been set.

func (*ApiServerAccess) HasOrganizationAccessId

func (o *ApiServerAccess) HasOrganizationAccessId() bool

HasOrganizationAccessId returns a boolean if a field has been set.

func (*ApiServerAccess) HasPrivileges

func (o *ApiServerAccess) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (*ApiServerAccess) HasServiceAccess

func (o *ApiServerAccess) HasServiceAccess() bool

HasServiceAccess returns a boolean if a field has been set.

func (ApiServerAccess) MarshalJSON

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

func (*ApiServerAccess) SetAllClientPrivileges

func (o *ApiServerAccess) SetAllClientPrivileges(v []string)

SetAllClientPrivileges gets a reference to the given []string and assigns it to the AllClientPrivileges field.

func (*ApiServerAccess) SetAllServicePrivileges

func (o *ApiServerAccess) SetAllServicePrivileges(v []string)

SetAllServicePrivileges gets a reference to the given []string and assigns it to the AllServicePrivileges field.

func (*ApiServerAccess) SetApiServerId

func (o *ApiServerAccess) SetApiServerId(v int64)

SetApiServerId gets a reference to the given int64 and assigns it to the ApiServerId field.

func (*ApiServerAccess) SetId

func (o *ApiServerAccess) SetId(v int64)

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

func (*ApiServerAccess) SetOrganizationAccessId

func (o *ApiServerAccess) SetOrganizationAccessId(v int64)

SetOrganizationAccessId gets a reference to the given int64 and assigns it to the OrganizationAccessId field.

func (*ApiServerAccess) SetPrivileges

func (o *ApiServerAccess) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*ApiServerAccess) SetServiceAccess

func (o *ApiServerAccess) SetServiceAccess(v []ServiceAccess)

SetServiceAccess gets a reference to the given []ServiceAccess and assigns it to the ServiceAccess field.

type ApiServerAccessResponse

type ApiServerAccessResponse struct {
	UserId               *int64                     `json:"userId,omitempty"`
	OrganizationId       *int64                     `json:"organizationId,omitempty"`
	ApiServerId          *int64                     `json:"apiServerId,omitempty"`
	Privileges           []string                   `json:"privileges,omitempty"`
	AllServicePrivileges []string                   `json:"allServicePrivileges,omitempty"`
	AllClientPrivileges  []string                   `json:"allClientPrivileges,omitempty"`
	ApiServer            *AuthleteApiServerResponse `json:"apiServer,omitempty"`
	ServiceAccess        []ServiceAccessResponse    `json:"serviceAccess,omitempty"`
}

ApiServerAccessResponse struct for ApiServerAccessResponse

func NewApiServerAccessResponse

func NewApiServerAccessResponse() *ApiServerAccessResponse

NewApiServerAccessResponse instantiates a new ApiServerAccessResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApiServerAccessResponseWithDefaults

func NewApiServerAccessResponseWithDefaults() *ApiServerAccessResponse

NewApiServerAccessResponseWithDefaults instantiates a new ApiServerAccessResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApiServerAccessResponse) GetAllClientPrivileges

func (o *ApiServerAccessResponse) GetAllClientPrivileges() []string

GetAllClientPrivileges returns the AllClientPrivileges field value if set, zero value otherwise.

func (*ApiServerAccessResponse) GetAllClientPrivilegesOk

func (o *ApiServerAccessResponse) GetAllClientPrivilegesOk() ([]string, bool)

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

func (*ApiServerAccessResponse) GetAllServicePrivileges

func (o *ApiServerAccessResponse) GetAllServicePrivileges() []string

GetAllServicePrivileges returns the AllServicePrivileges field value if set, zero value otherwise.

func (*ApiServerAccessResponse) GetAllServicePrivilegesOk

func (o *ApiServerAccessResponse) GetAllServicePrivilegesOk() ([]string, bool)

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

func (*ApiServerAccessResponse) GetApiServer

GetApiServer returns the ApiServer field value if set, zero value otherwise.

func (*ApiServerAccessResponse) GetApiServerId

func (o *ApiServerAccessResponse) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value if set, zero value otherwise.

func (*ApiServerAccessResponse) GetApiServerIdOk

func (o *ApiServerAccessResponse) GetApiServerIdOk() (*int64, bool)

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

func (*ApiServerAccessResponse) GetApiServerOk

func (o *ApiServerAccessResponse) GetApiServerOk() (*AuthleteApiServerResponse, bool)

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

func (*ApiServerAccessResponse) GetOrganizationId

func (o *ApiServerAccessResponse) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*ApiServerAccessResponse) GetOrganizationIdOk

func (o *ApiServerAccessResponse) GetOrganizationIdOk() (*int64, bool)

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

func (*ApiServerAccessResponse) GetPrivileges

func (o *ApiServerAccessResponse) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*ApiServerAccessResponse) GetPrivilegesOk

func (o *ApiServerAccessResponse) GetPrivilegesOk() ([]string, bool)

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

func (*ApiServerAccessResponse) GetServiceAccess

func (o *ApiServerAccessResponse) GetServiceAccess() []ServiceAccessResponse

GetServiceAccess returns the ServiceAccess field value if set, zero value otherwise.

func (*ApiServerAccessResponse) GetServiceAccessOk

func (o *ApiServerAccessResponse) GetServiceAccessOk() ([]ServiceAccessResponse, bool)

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

func (*ApiServerAccessResponse) GetUserId

func (o *ApiServerAccessResponse) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*ApiServerAccessResponse) GetUserIdOk

func (o *ApiServerAccessResponse) GetUserIdOk() (*int64, bool)

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

func (*ApiServerAccessResponse) HasAllClientPrivileges

func (o *ApiServerAccessResponse) HasAllClientPrivileges() bool

HasAllClientPrivileges returns a boolean if a field has been set.

func (*ApiServerAccessResponse) HasAllServicePrivileges

func (o *ApiServerAccessResponse) HasAllServicePrivileges() bool

HasAllServicePrivileges returns a boolean if a field has been set.

func (*ApiServerAccessResponse) HasApiServer

func (o *ApiServerAccessResponse) HasApiServer() bool

HasApiServer returns a boolean if a field has been set.

func (*ApiServerAccessResponse) HasApiServerId

func (o *ApiServerAccessResponse) HasApiServerId() bool

HasApiServerId returns a boolean if a field has been set.

func (*ApiServerAccessResponse) HasOrganizationId

func (o *ApiServerAccessResponse) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*ApiServerAccessResponse) HasPrivileges

func (o *ApiServerAccessResponse) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (*ApiServerAccessResponse) HasServiceAccess

func (o *ApiServerAccessResponse) HasServiceAccess() bool

HasServiceAccess returns a boolean if a field has been set.

func (*ApiServerAccessResponse) HasUserId

func (o *ApiServerAccessResponse) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (ApiServerAccessResponse) MarshalJSON

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

func (*ApiServerAccessResponse) SetAllClientPrivileges

func (o *ApiServerAccessResponse) SetAllClientPrivileges(v []string)

SetAllClientPrivileges gets a reference to the given []string and assigns it to the AllClientPrivileges field.

func (*ApiServerAccessResponse) SetAllServicePrivileges

func (o *ApiServerAccessResponse) SetAllServicePrivileges(v []string)

SetAllServicePrivileges gets a reference to the given []string and assigns it to the AllServicePrivileges field.

func (*ApiServerAccessResponse) SetApiServer

SetApiServer gets a reference to the given AuthleteApiServerResponse and assigns it to the ApiServer field.

func (*ApiServerAccessResponse) SetApiServerId

func (o *ApiServerAccessResponse) SetApiServerId(v int64)

SetApiServerId gets a reference to the given int64 and assigns it to the ApiServerId field.

func (*ApiServerAccessResponse) SetOrganizationId

func (o *ApiServerAccessResponse) SetOrganizationId(v int64)

SetOrganizationId gets a reference to the given int64 and assigns it to the OrganizationId field.

func (*ApiServerAccessResponse) SetPrivileges

func (o *ApiServerAccessResponse) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*ApiServerAccessResponse) SetServiceAccess

func (o *ApiServerAccessResponse) SetServiceAccess(v []ServiceAccessResponse)

SetServiceAccess gets a reference to the given []ServiceAccessResponse and assigns it to the ServiceAccess field.

func (*ApiServerAccessResponse) SetUserId

func (o *ApiServerAccessResponse) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

type ApiServerApiApiService

type ApiServerApiApiService service

ApiServerApiApiService ApiServerApiApi service

func (*ApiServerApiApiService) CreateApiServer

CreateApiServer Method for CreateApiServer

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

func (*ApiServerApiApiService) CreateApiServerExecute

Execute executes the request

@return AuthleteApiServerUpdateResponse

func (*ApiServerApiApiService) DeleteApiServer

DeleteApiServer Method for DeleteApiServer

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

func (*ApiServerApiApiService) DeleteApiServerExecute

func (a *ApiServerApiApiService) DeleteApiServerExecute(r ApiDeleteApiServerRequest) (*http.Response, error)

Execute executes the request

func (*ApiServerApiApiService) GetAll1

GetAll1 Method for GetAll1

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

func (*ApiServerApiApiService) GetAll1Execute

Execute executes the request

@return []AuthleteApiServerUpdateResponse

func (*ApiServerApiApiService) GetApiServer

GetApiServer Method for GetApiServer

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

func (*ApiServerApiApiService) GetApiServerExecute

Execute executes the request

@return AuthleteApiServerUpdateResponse

func (*ApiServerApiApiService) UpdateApiServer

UpdateApiServer Method for UpdateApiServer

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

func (*ApiServerApiApiService) UpdateApiServerExecute

Execute executes the request

@return AuthleteApiServerUpdateResponse

type ApiServerMembershipResponse

type ApiServerMembershipResponse struct {
	ApiServerId *int64                              `json:"apiServerId,omitempty"`
	Url         *string                             `json:"url,omitempty"`
	Description *string                             `json:"description,omitempty"`
	Privileges  []string                            `json:"privileges,omitempty"`
	Services    []ServiceInstanceMembershipResponse `json:"services,omitempty"`
}

ApiServerMembershipResponse struct for ApiServerMembershipResponse

func NewApiServerMembershipResponse

func NewApiServerMembershipResponse() *ApiServerMembershipResponse

NewApiServerMembershipResponse instantiates a new ApiServerMembershipResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApiServerMembershipResponseWithDefaults

func NewApiServerMembershipResponseWithDefaults() *ApiServerMembershipResponse

NewApiServerMembershipResponseWithDefaults instantiates a new ApiServerMembershipResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApiServerMembershipResponse) GetApiServerId

func (o *ApiServerMembershipResponse) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value if set, zero value otherwise.

func (*ApiServerMembershipResponse) GetApiServerIdOk

func (o *ApiServerMembershipResponse) GetApiServerIdOk() (*int64, bool)

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

func (*ApiServerMembershipResponse) GetDescription

func (o *ApiServerMembershipResponse) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ApiServerMembershipResponse) GetDescriptionOk

func (o *ApiServerMembershipResponse) GetDescriptionOk() (*string, bool)

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

func (*ApiServerMembershipResponse) GetPrivileges

func (o *ApiServerMembershipResponse) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*ApiServerMembershipResponse) GetPrivilegesOk

func (o *ApiServerMembershipResponse) GetPrivilegesOk() ([]string, bool)

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

func (*ApiServerMembershipResponse) GetServices

GetServices returns the Services field value if set, zero value otherwise.

func (*ApiServerMembershipResponse) GetServicesOk

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

func (*ApiServerMembershipResponse) GetUrl

func (o *ApiServerMembershipResponse) GetUrl() string

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

func (*ApiServerMembershipResponse) GetUrlOk

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

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

func (*ApiServerMembershipResponse) HasApiServerId

func (o *ApiServerMembershipResponse) HasApiServerId() bool

HasApiServerId returns a boolean if a field has been set.

func (*ApiServerMembershipResponse) HasDescription

func (o *ApiServerMembershipResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ApiServerMembershipResponse) HasPrivileges

func (o *ApiServerMembershipResponse) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (*ApiServerMembershipResponse) HasServices

func (o *ApiServerMembershipResponse) HasServices() bool

HasServices returns a boolean if a field has been set.

func (*ApiServerMembershipResponse) HasUrl

func (o *ApiServerMembershipResponse) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (ApiServerMembershipResponse) MarshalJSON

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

func (*ApiServerMembershipResponse) SetApiServerId

func (o *ApiServerMembershipResponse) SetApiServerId(v int64)

SetApiServerId gets a reference to the given int64 and assigns it to the ApiServerId field.

func (*ApiServerMembershipResponse) SetDescription

func (o *ApiServerMembershipResponse) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ApiServerMembershipResponse) SetPrivileges

func (o *ApiServerMembershipResponse) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*ApiServerMembershipResponse) SetServices

SetServices gets a reference to the given []ServiceInstanceMembershipResponse and assigns it to the Services field.

func (*ApiServerMembershipResponse) SetUrl

func (o *ApiServerMembershipResponse) SetUrl(v string)

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

type ApiSetAdminRequest

type ApiSetAdminRequest struct {
	ApiService *UserApiApiService
	// contains filtered or unexported fields
}

func (ApiSetAdminRequest) Authorization

func (r ApiSetAdminRequest) Authorization(authorization string) ApiSetAdminRequest

func (ApiSetAdminRequest) DPoP

func (ApiSetAdminRequest) Execute

type ApiSubmitUserDecisionRequest

type ApiSubmitUserDecisionRequest struct {
	ApiService *AuthorizeApiApiService
	// contains filtered or unexported fields
}

func (ApiSubmitUserDecisionRequest) Approval

func (ApiSubmitUserDecisionRequest) Execute

func (r ApiSubmitUserDecisionRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiTokenEndpointRequest

type ApiTokenEndpointRequest struct {
	ApiService *TokenEndpointApiService
	// contains filtered or unexported fields
}

func (ApiTokenEndpointRequest) Authorization

func (r ApiTokenEndpointRequest) Authorization(authorization string) ApiTokenEndpointRequest

func (ApiTokenEndpointRequest) DPoP

func (ApiTokenEndpointRequest) Empty

func (ApiTokenEndpointRequest) Execute

type ApiUnsetAdminRequest

type ApiUnsetAdminRequest struct {
	ApiService *UserApiApiService
	// contains filtered or unexported fields
}

func (ApiUnsetAdminRequest) Authorization

func (r ApiUnsetAdminRequest) Authorization(authorization string) ApiUnsetAdminRequest

func (ApiUnsetAdminRequest) DPoP

func (ApiUnsetAdminRequest) Execute

type ApiUpdateApiServerPrivilegesRequest

type ApiUpdateApiServerPrivilegesRequest struct {
	ApiService *AccessApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateApiServerPrivilegesRequest) Authorization

func (ApiUpdateApiServerPrivilegesRequest) DPoP

func (ApiUpdateApiServerPrivilegesRequest) Execute

func (ApiUpdateApiServerPrivilegesRequest) UpdateApiServerPrivilegesRequest

func (r ApiUpdateApiServerPrivilegesRequest) UpdateApiServerPrivilegesRequest(updateApiServerPrivilegesRequest UpdateApiServerPrivilegesRequest) ApiUpdateApiServerPrivilegesRequest

type ApiUpdateApiServerRequest

type ApiUpdateApiServerRequest struct {
	ApiService *ApiServerApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateApiServerRequest) Authorization

func (r ApiUpdateApiServerRequest) Authorization(authorization string) ApiUpdateApiServerRequest

func (ApiUpdateApiServerRequest) DPoP

func (ApiUpdateApiServerRequest) Execute

func (ApiUpdateApiServerRequest) UpdateApiServerRequest

func (r ApiUpdateApiServerRequest) UpdateApiServerRequest(updateApiServerRequest UpdateApiServerRequest) ApiUpdateApiServerRequest

type ApiUpdateClientPrivilegesRequest

type ApiUpdateClientPrivilegesRequest struct {
	ApiService *AccessApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateClientPrivilegesRequest) Authorization

func (ApiUpdateClientPrivilegesRequest) DPoP

func (ApiUpdateClientPrivilegesRequest) Execute

func (ApiUpdateClientPrivilegesRequest) UpdateClientPrivilegesRequest

func (r ApiUpdateClientPrivilegesRequest) UpdateClientPrivilegesRequest(updateClientPrivilegesRequest UpdateClientPrivilegesRequest) ApiUpdateClientPrivilegesRequest

type ApiUpdateOrganizationPrivilegesRequest

type ApiUpdateOrganizationPrivilegesRequest struct {
	ApiService *AccessApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateOrganizationPrivilegesRequest) Authorization

func (ApiUpdateOrganizationPrivilegesRequest) DPoP

func (ApiUpdateOrganizationPrivilegesRequest) Execute

func (ApiUpdateOrganizationPrivilegesRequest) UpdateOrganizationPrivilegesRequest

func (r ApiUpdateOrganizationPrivilegesRequest) UpdateOrganizationPrivilegesRequest(updateOrganizationPrivilegesRequest UpdateOrganizationPrivilegesRequest) ApiUpdateOrganizationPrivilegesRequest

type ApiUpdateOrganizationRequest

type ApiUpdateOrganizationRequest struct {
	ApiService *OrganizationApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateOrganizationRequest) Authorization

func (r ApiUpdateOrganizationRequest) Authorization(authorization string) ApiUpdateOrganizationRequest

func (ApiUpdateOrganizationRequest) DPoP

func (ApiUpdateOrganizationRequest) Execute

func (ApiUpdateOrganizationRequest) UpdateOrganizationRequest

func (r ApiUpdateOrganizationRequest) UpdateOrganizationRequest(updateOrganizationRequest UpdateOrganizationRequest) ApiUpdateOrganizationRequest

type ApiUpdateServicePrivilegesRequest

type ApiUpdateServicePrivilegesRequest struct {
	ApiService *AccessApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateServicePrivilegesRequest) Authorization

func (ApiUpdateServicePrivilegesRequest) DPoP

func (ApiUpdateServicePrivilegesRequest) Execute

func (ApiUpdateServicePrivilegesRequest) UpdateServicePrivilegesRequest

func (r ApiUpdateServicePrivilegesRequest) UpdateServicePrivilegesRequest(updateServicePrivilegesRequest UpdateServicePrivilegesRequest) ApiUpdateServicePrivilegesRequest

type ApiUpdateUserRequest

type ApiUpdateUserRequest struct {
	ApiService *UserApiApiService
	// contains filtered or unexported fields
}

func (ApiUpdateUserRequest) Execute

func (ApiUpdateUserRequest) UpdateUserRequest

func (r ApiUpdateUserRequest) UpdateUserRequest(updateUserRequest UpdateUserRequest) ApiUpdateUserRequest

type ApiUserInfoRequest

type ApiUserInfoRequest struct {
	ApiService *UserInfoEndpointApiService
	// contains filtered or unexported fields
}

func (ApiUserInfoRequest) Authorization

func (r ApiUserInfoRequest) Authorization(authorization string) ApiUserInfoRequest

func (ApiUserInfoRequest) DPoP

func (ApiUserInfoRequest) Execute

func (r ApiUserInfoRequest) Execute() (string, *http.Response, error)

type Approval

type Approval struct {
	Approved bool     `json:"approved"`
	Ticket   string   `json:"ticket"`
	Scopes   []string `json:"scopes,omitempty"`
}

Approval struct for Approval

func NewApproval

func NewApproval(approved bool, ticket string) *Approval

NewApproval instantiates a new Approval object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApprovalWithDefaults

func NewApprovalWithDefaults() *Approval

NewApprovalWithDefaults instantiates a new Approval object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Approval) GetApproved

func (o *Approval) GetApproved() bool

GetApproved returns the Approved field value

func (*Approval) GetApprovedOk

func (o *Approval) GetApprovedOk() (*bool, bool)

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

func (*Approval) GetScopes

func (o *Approval) GetScopes() []string

GetScopes returns the Scopes field value if set, zero value otherwise.

func (*Approval) GetScopesOk

func (o *Approval) GetScopesOk() ([]string, bool)

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

func (*Approval) GetTicket

func (o *Approval) GetTicket() string

GetTicket returns the Ticket field value

func (*Approval) GetTicketOk

func (o *Approval) GetTicketOk() (*string, bool)

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

func (*Approval) HasScopes

func (o *Approval) HasScopes() bool

HasScopes returns a boolean if a field has been set.

func (Approval) MarshalJSON

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

func (*Approval) SetApproved

func (o *Approval) SetApproved(v bool)

SetApproved sets field value

func (*Approval) SetScopes

func (o *Approval) SetScopes(v []string)

SetScopes gets a reference to the given []string and assigns it to the Scopes field.

func (*Approval) SetTicket

func (o *Approval) SetTicket(v string)

SetTicket sets field value

type AuthleteApiServerResponse

type AuthleteApiServerResponse struct {
	Id           *int64  `json:"id,omitempty"`
	ApiServerUrl *string `json:"apiServerUrl,omitempty"`
	Description  *string `json:"description,omitempty"`
	OwnedBy      *int64  `json:"ownedBy,omitempty"`
}

AuthleteApiServerResponse struct for AuthleteApiServerResponse

func NewAuthleteApiServerResponse

func NewAuthleteApiServerResponse() *AuthleteApiServerResponse

NewAuthleteApiServerResponse instantiates a new AuthleteApiServerResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthleteApiServerResponseWithDefaults

func NewAuthleteApiServerResponseWithDefaults() *AuthleteApiServerResponse

NewAuthleteApiServerResponseWithDefaults instantiates a new AuthleteApiServerResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthleteApiServerResponse) GetApiServerUrl

func (o *AuthleteApiServerResponse) GetApiServerUrl() string

GetApiServerUrl returns the ApiServerUrl field value if set, zero value otherwise.

func (*AuthleteApiServerResponse) GetApiServerUrlOk

func (o *AuthleteApiServerResponse) GetApiServerUrlOk() (*string, bool)

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

func (*AuthleteApiServerResponse) GetDescription

func (o *AuthleteApiServerResponse) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*AuthleteApiServerResponse) GetDescriptionOk

func (o *AuthleteApiServerResponse) GetDescriptionOk() (*string, bool)

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

func (*AuthleteApiServerResponse) GetId

func (o *AuthleteApiServerResponse) GetId() int64

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

func (*AuthleteApiServerResponse) GetIdOk

func (o *AuthleteApiServerResponse) GetIdOk() (*int64, bool)

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

func (*AuthleteApiServerResponse) GetOwnedBy

func (o *AuthleteApiServerResponse) GetOwnedBy() int64

GetOwnedBy returns the OwnedBy field value if set, zero value otherwise.

func (*AuthleteApiServerResponse) GetOwnedByOk

func (o *AuthleteApiServerResponse) GetOwnedByOk() (*int64, bool)

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

func (*AuthleteApiServerResponse) HasApiServerUrl

func (o *AuthleteApiServerResponse) HasApiServerUrl() bool

HasApiServerUrl returns a boolean if a field has been set.

func (*AuthleteApiServerResponse) HasDescription

func (o *AuthleteApiServerResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AuthleteApiServerResponse) HasId

func (o *AuthleteApiServerResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*AuthleteApiServerResponse) HasOwnedBy

func (o *AuthleteApiServerResponse) HasOwnedBy() bool

HasOwnedBy returns a boolean if a field has been set.

func (AuthleteApiServerResponse) MarshalJSON

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

func (*AuthleteApiServerResponse) SetApiServerUrl

func (o *AuthleteApiServerResponse) SetApiServerUrl(v string)

SetApiServerUrl gets a reference to the given string and assigns it to the ApiServerUrl field.

func (*AuthleteApiServerResponse) SetDescription

func (o *AuthleteApiServerResponse) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*AuthleteApiServerResponse) SetId

func (o *AuthleteApiServerResponse) SetId(v int64)

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

func (*AuthleteApiServerResponse) SetOwnedBy

func (o *AuthleteApiServerResponse) SetOwnedBy(v int64)

SetOwnedBy gets a reference to the given int64 and assigns it to the OwnedBy field.

type AuthleteApiServerUpdateResponse

type AuthleteApiServerUpdateResponse struct {
	ApiServerUrl *string `json:"apiServerUrl,omitempty"`
	Description  *string `json:"description,omitempty"`
	Id           *int64  `json:"id,omitempty"`
}

AuthleteApiServerUpdateResponse struct for AuthleteApiServerUpdateResponse

func NewAuthleteApiServerUpdateResponse

func NewAuthleteApiServerUpdateResponse() *AuthleteApiServerUpdateResponse

NewAuthleteApiServerUpdateResponse instantiates a new AuthleteApiServerUpdateResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthleteApiServerUpdateResponseWithDefaults

func NewAuthleteApiServerUpdateResponseWithDefaults() *AuthleteApiServerUpdateResponse

NewAuthleteApiServerUpdateResponseWithDefaults instantiates a new AuthleteApiServerUpdateResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthleteApiServerUpdateResponse) GetApiServerUrl

func (o *AuthleteApiServerUpdateResponse) GetApiServerUrl() string

GetApiServerUrl returns the ApiServerUrl field value if set, zero value otherwise.

func (*AuthleteApiServerUpdateResponse) GetApiServerUrlOk

func (o *AuthleteApiServerUpdateResponse) GetApiServerUrlOk() (*string, bool)

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

func (*AuthleteApiServerUpdateResponse) GetDescription

func (o *AuthleteApiServerUpdateResponse) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*AuthleteApiServerUpdateResponse) GetDescriptionOk

func (o *AuthleteApiServerUpdateResponse) GetDescriptionOk() (*string, bool)

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

func (*AuthleteApiServerUpdateResponse) GetId

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

func (*AuthleteApiServerUpdateResponse) GetIdOk

func (o *AuthleteApiServerUpdateResponse) GetIdOk() (*int64, bool)

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

func (*AuthleteApiServerUpdateResponse) HasApiServerUrl

func (o *AuthleteApiServerUpdateResponse) HasApiServerUrl() bool

HasApiServerUrl returns a boolean if a field has been set.

func (*AuthleteApiServerUpdateResponse) HasDescription

func (o *AuthleteApiServerUpdateResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*AuthleteApiServerUpdateResponse) HasId

HasId returns a boolean if a field has been set.

func (AuthleteApiServerUpdateResponse) MarshalJSON

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

func (*AuthleteApiServerUpdateResponse) SetApiServerUrl

func (o *AuthleteApiServerUpdateResponse) SetApiServerUrl(v string)

SetApiServerUrl gets a reference to the given string and assigns it to the ApiServerUrl field.

func (*AuthleteApiServerUpdateResponse) SetDescription

func (o *AuthleteApiServerUpdateResponse) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*AuthleteApiServerUpdateResponse) SetId

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

type AuthleteUser

type AuthleteUser struct {
	Id                  *int64             `json:"id,omitempty"`
	Xid                 *int64             `json:"xid,omitempty"`
	GivenName           *string            `json:"givenName,omitempty"`
	FamilyName          *string            `json:"familyName,omitempty"`
	Email               *string            `json:"email,omitempty"`
	LastAuthTime        *time.Time         `json:"lastAuthTime,omitempty"`
	Admin               *bool              `json:"admin,omitempty"`
	WebAuthenticators   *map[string]string `json:"webAuthenticators,omitempty"`
	LastAuthTimeAsLong  *int64             `json:"lastAuthTimeAsLong,omitempty"`
	WebAuthenticatorIDs []string           `json:"webAuthenticatorIDs,omitempty"`
	TotpEnabled         *bool              `json:"totpEnabled,omitempty"`
	WebAuthnEnabled     *bool              `json:"webAuthnEnabled,omitempty"`
}

AuthleteUser struct for AuthleteUser

func NewAuthleteUser

func NewAuthleteUser() *AuthleteUser

NewAuthleteUser instantiates a new AuthleteUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthleteUserWithDefaults

func NewAuthleteUserWithDefaults() *AuthleteUser

NewAuthleteUserWithDefaults instantiates a new AuthleteUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthleteUser) GetAdmin

func (o *AuthleteUser) GetAdmin() bool

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*AuthleteUser) GetAdminOk

func (o *AuthleteUser) GetAdminOk() (*bool, bool)

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

func (*AuthleteUser) GetEmail

func (o *AuthleteUser) GetEmail() string

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

func (*AuthleteUser) GetEmailOk

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

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

func (*AuthleteUser) GetFamilyName

func (o *AuthleteUser) GetFamilyName() string

GetFamilyName returns the FamilyName field value if set, zero value otherwise.

func (*AuthleteUser) GetFamilyNameOk

func (o *AuthleteUser) GetFamilyNameOk() (*string, bool)

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

func (*AuthleteUser) GetGivenName

func (o *AuthleteUser) GetGivenName() string

GetGivenName returns the GivenName field value if set, zero value otherwise.

func (*AuthleteUser) GetGivenNameOk

func (o *AuthleteUser) GetGivenNameOk() (*string, bool)

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

func (*AuthleteUser) GetId

func (o *AuthleteUser) GetId() int64

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

func (*AuthleteUser) GetIdOk

func (o *AuthleteUser) GetIdOk() (*int64, bool)

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

func (*AuthleteUser) GetLastAuthTime

func (o *AuthleteUser) GetLastAuthTime() time.Time

GetLastAuthTime returns the LastAuthTime field value if set, zero value otherwise.

func (*AuthleteUser) GetLastAuthTimeAsLong

func (o *AuthleteUser) GetLastAuthTimeAsLong() int64

GetLastAuthTimeAsLong returns the LastAuthTimeAsLong field value if set, zero value otherwise.

func (*AuthleteUser) GetLastAuthTimeAsLongOk

func (o *AuthleteUser) GetLastAuthTimeAsLongOk() (*int64, bool)

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

func (*AuthleteUser) GetLastAuthTimeOk

func (o *AuthleteUser) GetLastAuthTimeOk() (*time.Time, bool)

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

func (*AuthleteUser) GetTotpEnabled

func (o *AuthleteUser) GetTotpEnabled() bool

GetTotpEnabled returns the TotpEnabled field value if set, zero value otherwise.

func (*AuthleteUser) GetTotpEnabledOk

func (o *AuthleteUser) GetTotpEnabledOk() (*bool, bool)

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

func (*AuthleteUser) GetWebAuthenticatorIDs

func (o *AuthleteUser) GetWebAuthenticatorIDs() []string

GetWebAuthenticatorIDs returns the WebAuthenticatorIDs field value if set, zero value otherwise.

func (*AuthleteUser) GetWebAuthenticatorIDsOk

func (o *AuthleteUser) GetWebAuthenticatorIDsOk() ([]string, bool)

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

func (*AuthleteUser) GetWebAuthenticators

func (o *AuthleteUser) GetWebAuthenticators() map[string]string

GetWebAuthenticators returns the WebAuthenticators field value if set, zero value otherwise.

func (*AuthleteUser) GetWebAuthenticatorsOk

func (o *AuthleteUser) GetWebAuthenticatorsOk() (*map[string]string, bool)

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

func (*AuthleteUser) GetWebAuthnEnabled

func (o *AuthleteUser) GetWebAuthnEnabled() bool

GetWebAuthnEnabled returns the WebAuthnEnabled field value if set, zero value otherwise.

func (*AuthleteUser) GetWebAuthnEnabledOk

func (o *AuthleteUser) GetWebAuthnEnabledOk() (*bool, bool)

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

func (*AuthleteUser) GetXid

func (o *AuthleteUser) GetXid() int64

GetXid returns the Xid field value if set, zero value otherwise.

func (*AuthleteUser) GetXidOk

func (o *AuthleteUser) GetXidOk() (*int64, bool)

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

func (*AuthleteUser) HasAdmin

func (o *AuthleteUser) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*AuthleteUser) HasEmail

func (o *AuthleteUser) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*AuthleteUser) HasFamilyName

func (o *AuthleteUser) HasFamilyName() bool

HasFamilyName returns a boolean if a field has been set.

func (*AuthleteUser) HasGivenName

func (o *AuthleteUser) HasGivenName() bool

HasGivenName returns a boolean if a field has been set.

func (*AuthleteUser) HasId

func (o *AuthleteUser) HasId() bool

HasId returns a boolean if a field has been set.

func (*AuthleteUser) HasLastAuthTime

func (o *AuthleteUser) HasLastAuthTime() bool

HasLastAuthTime returns a boolean if a field has been set.

func (*AuthleteUser) HasLastAuthTimeAsLong

func (o *AuthleteUser) HasLastAuthTimeAsLong() bool

HasLastAuthTimeAsLong returns a boolean if a field has been set.

func (*AuthleteUser) HasTotpEnabled

func (o *AuthleteUser) HasTotpEnabled() bool

HasTotpEnabled returns a boolean if a field has been set.

func (*AuthleteUser) HasWebAuthenticatorIDs

func (o *AuthleteUser) HasWebAuthenticatorIDs() bool

HasWebAuthenticatorIDs returns a boolean if a field has been set.

func (*AuthleteUser) HasWebAuthenticators

func (o *AuthleteUser) HasWebAuthenticators() bool

HasWebAuthenticators returns a boolean if a field has been set.

func (*AuthleteUser) HasWebAuthnEnabled

func (o *AuthleteUser) HasWebAuthnEnabled() bool

HasWebAuthnEnabled returns a boolean if a field has been set.

func (*AuthleteUser) HasXid

func (o *AuthleteUser) HasXid() bool

HasXid returns a boolean if a field has been set.

func (AuthleteUser) MarshalJSON

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

func (*AuthleteUser) SetAdmin

func (o *AuthleteUser) SetAdmin(v bool)

SetAdmin gets a reference to the given bool and assigns it to the Admin field.

func (*AuthleteUser) SetEmail

func (o *AuthleteUser) SetEmail(v string)

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

func (*AuthleteUser) SetFamilyName

func (o *AuthleteUser) SetFamilyName(v string)

SetFamilyName gets a reference to the given string and assigns it to the FamilyName field.

func (*AuthleteUser) SetGivenName

func (o *AuthleteUser) SetGivenName(v string)

SetGivenName gets a reference to the given string and assigns it to the GivenName field.

func (*AuthleteUser) SetId

func (o *AuthleteUser) SetId(v int64)

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

func (*AuthleteUser) SetLastAuthTime

func (o *AuthleteUser) SetLastAuthTime(v time.Time)

SetLastAuthTime gets a reference to the given time.Time and assigns it to the LastAuthTime field.

func (*AuthleteUser) SetLastAuthTimeAsLong

func (o *AuthleteUser) SetLastAuthTimeAsLong(v int64)

SetLastAuthTimeAsLong gets a reference to the given int64 and assigns it to the LastAuthTimeAsLong field.

func (*AuthleteUser) SetTotpEnabled

func (o *AuthleteUser) SetTotpEnabled(v bool)

SetTotpEnabled gets a reference to the given bool and assigns it to the TotpEnabled field.

func (*AuthleteUser) SetWebAuthenticatorIDs

func (o *AuthleteUser) SetWebAuthenticatorIDs(v []string)

SetWebAuthenticatorIDs gets a reference to the given []string and assigns it to the WebAuthenticatorIDs field.

func (*AuthleteUser) SetWebAuthenticators

func (o *AuthleteUser) SetWebAuthenticators(v map[string]string)

SetWebAuthenticators gets a reference to the given map[string]string and assigns it to the WebAuthenticators field.

func (*AuthleteUser) SetWebAuthnEnabled

func (o *AuthleteUser) SetWebAuthnEnabled(v bool)

SetWebAuthnEnabled gets a reference to the given bool and assigns it to the WebAuthnEnabled field.

func (*AuthleteUser) SetXid

func (o *AuthleteUser) SetXid(v int64)

SetXid gets a reference to the given int64 and assigns it to the Xid field.

type AuthorizationEndpointApiService

type AuthorizationEndpointApiService service

AuthorizationEndpointApiService AuthorizationEndpointApi service

func (*AuthorizationEndpointApiService) Get

Get Method for Get

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

func (*AuthorizationEndpointApiService) GetExecute

func (a *AuthorizationEndpointApiService) GetExecute(r ApiGetRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

type AuthorizationResponse

type AuthorizationResponse struct {
	ResultCode         *string        `json:"resultCode,omitempty"`
	ResultMessage      *string        `json:"resultMessage,omitempty"`
	Action             *string        `json:"action,omitempty"`
	Service            *Service       `json:"service,omitempty"`
	Client             *Client        `json:"client,omitempty"`
	Display            *string        `json:"display,omitempty"`
	MaxAge             *int32         `json:"maxAge,omitempty"`
	Scopes             []Scope        `json:"scopes,omitempty"`
	DynamicScopes      []DynamicScope `json:"dynamicScopes,omitempty"`
	UiLocales          []string       `json:"uiLocales,omitempty"`
	ClaimsLocales      []string       `json:"claimsLocales,omitempty"`
	Claims             []string       `json:"claims,omitempty"`
	ClaimsAtUserInfo   []string       `json:"claimsAtUserInfo,omitempty"`
	AcrEssential       *bool          `json:"acrEssential,omitempty"`
	ClientIdAliasUsed  *bool          `json:"clientIdAliasUsed,omitempty"`
	ClientEntityIdUsed *bool          `json:"clientEntityIdUsed,omitempty"`
	Acrs               []string       `json:"acrs,omitempty"`
	Subject            *string        `json:"subject,omitempty"`
	LoginHint          *string        `json:"loginHint,omitempty"`
	// Deprecated
	LowestPrompt                 *string       `json:"lowestPrompt,omitempty"`
	Prompts                      []string      `json:"prompts,omitempty"`
	RequestObjectPayload         *string       `json:"requestObjectPayload,omitempty"`
	IdTokenClaims                *string       `json:"idTokenClaims,omitempty"`
	UserInfoClaims               *string       `json:"userInfoClaims,omitempty"`
	TransformedClaims            *string       `json:"transformedClaims,omitempty"`
	Resources                    []string      `json:"resources,omitempty"`
	AuthorizationDetails         *AuthzDetails `json:"authorizationDetails,omitempty"`
	Purpose                      *string       `json:"purpose,omitempty"`
	GmAction                     *string       `json:"gmAction,omitempty"`
	GrantId                      *string       `json:"grantId,omitempty"`
	GrantSubject                 *string       `json:"grantSubject,omitempty"`
	Grant                        *Grant        `json:"grant,omitempty"`
	RequestedClaimsForTx         []string      `json:"requestedClaimsForTx,omitempty"`
	RequestedVerifiedClaimsForTx []StringArray `json:"requestedVerifiedClaimsForTx,omitempty"`
	ResponseContent              *string       `json:"responseContent,omitempty"`
	Ticket                       *string       `json:"ticket,omitempty"`
}

AuthorizationResponse struct for AuthorizationResponse

func NewAuthorizationResponse

func NewAuthorizationResponse() *AuthorizationResponse

NewAuthorizationResponse instantiates a new AuthorizationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorizationResponseWithDefaults

func NewAuthorizationResponseWithDefaults() *AuthorizationResponse

NewAuthorizationResponseWithDefaults instantiates a new AuthorizationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorizationResponse) GetAcrEssential

func (o *AuthorizationResponse) GetAcrEssential() bool

GetAcrEssential returns the AcrEssential field value if set, zero value otherwise.

func (*AuthorizationResponse) GetAcrEssentialOk

func (o *AuthorizationResponse) GetAcrEssentialOk() (*bool, bool)

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

func (*AuthorizationResponse) GetAcrs

func (o *AuthorizationResponse) GetAcrs() []string

GetAcrs returns the Acrs field value if set, zero value otherwise.

func (*AuthorizationResponse) GetAcrsOk

func (o *AuthorizationResponse) GetAcrsOk() ([]string, bool)

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

func (*AuthorizationResponse) GetAction

func (o *AuthorizationResponse) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*AuthorizationResponse) GetActionOk

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

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

func (*AuthorizationResponse) GetAuthorizationDetails

func (o *AuthorizationResponse) GetAuthorizationDetails() AuthzDetails

GetAuthorizationDetails returns the AuthorizationDetails field value if set, zero value otherwise.

func (*AuthorizationResponse) GetAuthorizationDetailsOk

func (o *AuthorizationResponse) GetAuthorizationDetailsOk() (*AuthzDetails, bool)

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

func (*AuthorizationResponse) GetClaims

func (o *AuthorizationResponse) GetClaims() []string

GetClaims returns the Claims field value if set, zero value otherwise.

func (*AuthorizationResponse) GetClaimsAtUserInfo

func (o *AuthorizationResponse) GetClaimsAtUserInfo() []string

GetClaimsAtUserInfo returns the ClaimsAtUserInfo field value if set, zero value otherwise.

func (*AuthorizationResponse) GetClaimsAtUserInfoOk

func (o *AuthorizationResponse) GetClaimsAtUserInfoOk() ([]string, bool)

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

func (*AuthorizationResponse) GetClaimsLocales

func (o *AuthorizationResponse) GetClaimsLocales() []string

GetClaimsLocales returns the ClaimsLocales field value if set, zero value otherwise.

func (*AuthorizationResponse) GetClaimsLocalesOk

func (o *AuthorizationResponse) GetClaimsLocalesOk() ([]string, bool)

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

func (*AuthorizationResponse) GetClaimsOk

func (o *AuthorizationResponse) GetClaimsOk() ([]string, bool)

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

func (*AuthorizationResponse) GetClient

func (o *AuthorizationResponse) GetClient() Client

GetClient returns the Client field value if set, zero value otherwise.

func (*AuthorizationResponse) GetClientEntityIdUsed

func (o *AuthorizationResponse) GetClientEntityIdUsed() bool

GetClientEntityIdUsed returns the ClientEntityIdUsed field value if set, zero value otherwise.

func (*AuthorizationResponse) GetClientEntityIdUsedOk

func (o *AuthorizationResponse) GetClientEntityIdUsedOk() (*bool, bool)

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

func (*AuthorizationResponse) GetClientIdAliasUsed

func (o *AuthorizationResponse) GetClientIdAliasUsed() bool

GetClientIdAliasUsed returns the ClientIdAliasUsed field value if set, zero value otherwise.

func (*AuthorizationResponse) GetClientIdAliasUsedOk

func (o *AuthorizationResponse) GetClientIdAliasUsedOk() (*bool, bool)

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

func (*AuthorizationResponse) GetClientOk

func (o *AuthorizationResponse) GetClientOk() (*Client, bool)

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

func (*AuthorizationResponse) GetDisplay

func (o *AuthorizationResponse) GetDisplay() string

GetDisplay returns the Display field value if set, zero value otherwise.

func (*AuthorizationResponse) GetDisplayOk

func (o *AuthorizationResponse) GetDisplayOk() (*string, bool)

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

func (*AuthorizationResponse) GetDynamicScopes

func (o *AuthorizationResponse) GetDynamicScopes() []DynamicScope

GetDynamicScopes returns the DynamicScopes field value if set, zero value otherwise.

func (*AuthorizationResponse) GetDynamicScopesOk

func (o *AuthorizationResponse) GetDynamicScopesOk() ([]DynamicScope, bool)

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

func (*AuthorizationResponse) GetGmAction

func (o *AuthorizationResponse) GetGmAction() string

GetGmAction returns the GmAction field value if set, zero value otherwise.

func (*AuthorizationResponse) GetGmActionOk

func (o *AuthorizationResponse) GetGmActionOk() (*string, bool)

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

func (*AuthorizationResponse) GetGrant

func (o *AuthorizationResponse) GetGrant() Grant

GetGrant returns the Grant field value if set, zero value otherwise.

func (*AuthorizationResponse) GetGrantId

func (o *AuthorizationResponse) GetGrantId() string

GetGrantId returns the GrantId field value if set, zero value otherwise.

func (*AuthorizationResponse) GetGrantIdOk

func (o *AuthorizationResponse) GetGrantIdOk() (*string, bool)

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

func (*AuthorizationResponse) GetGrantOk

func (o *AuthorizationResponse) GetGrantOk() (*Grant, bool)

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

func (*AuthorizationResponse) GetGrantSubject

func (o *AuthorizationResponse) GetGrantSubject() string

GetGrantSubject returns the GrantSubject field value if set, zero value otherwise.

func (*AuthorizationResponse) GetGrantSubjectOk

func (o *AuthorizationResponse) GetGrantSubjectOk() (*string, bool)

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

func (*AuthorizationResponse) GetIdTokenClaims

func (o *AuthorizationResponse) GetIdTokenClaims() string

GetIdTokenClaims returns the IdTokenClaims field value if set, zero value otherwise.

func (*AuthorizationResponse) GetIdTokenClaimsOk

func (o *AuthorizationResponse) GetIdTokenClaimsOk() (*string, bool)

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

func (*AuthorizationResponse) GetLoginHint

func (o *AuthorizationResponse) GetLoginHint() string

GetLoginHint returns the LoginHint field value if set, zero value otherwise.

func (*AuthorizationResponse) GetLoginHintOk

func (o *AuthorizationResponse) GetLoginHintOk() (*string, bool)

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

func (*AuthorizationResponse) GetLowestPrompt

func (o *AuthorizationResponse) GetLowestPrompt() string

GetLowestPrompt returns the LowestPrompt field value if set, zero value otherwise. Deprecated

func (*AuthorizationResponse) GetLowestPromptOk

func (o *AuthorizationResponse) GetLowestPromptOk() (*string, bool)

GetLowestPromptOk returns a tuple with the LowestPrompt field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*AuthorizationResponse) GetMaxAge

func (o *AuthorizationResponse) GetMaxAge() int32

GetMaxAge returns the MaxAge field value if set, zero value otherwise.

func (*AuthorizationResponse) GetMaxAgeOk

func (o *AuthorizationResponse) GetMaxAgeOk() (*int32, bool)

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

func (*AuthorizationResponse) GetPrompts

func (o *AuthorizationResponse) GetPrompts() []string

GetPrompts returns the Prompts field value if set, zero value otherwise.

func (*AuthorizationResponse) GetPromptsOk

func (o *AuthorizationResponse) GetPromptsOk() ([]string, bool)

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

func (*AuthorizationResponse) GetPurpose

func (o *AuthorizationResponse) GetPurpose() string

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*AuthorizationResponse) GetPurposeOk

func (o *AuthorizationResponse) GetPurposeOk() (*string, bool)

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

func (*AuthorizationResponse) GetRequestObjectPayload

func (o *AuthorizationResponse) GetRequestObjectPayload() string

GetRequestObjectPayload returns the RequestObjectPayload field value if set, zero value otherwise.

func (*AuthorizationResponse) GetRequestObjectPayloadOk

func (o *AuthorizationResponse) GetRequestObjectPayloadOk() (*string, bool)

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

func (*AuthorizationResponse) GetRequestedClaimsForTx

func (o *AuthorizationResponse) GetRequestedClaimsForTx() []string

GetRequestedClaimsForTx returns the RequestedClaimsForTx field value if set, zero value otherwise.

func (*AuthorizationResponse) GetRequestedClaimsForTxOk

func (o *AuthorizationResponse) GetRequestedClaimsForTxOk() ([]string, bool)

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

func (*AuthorizationResponse) GetRequestedVerifiedClaimsForTx

func (o *AuthorizationResponse) GetRequestedVerifiedClaimsForTx() []StringArray

GetRequestedVerifiedClaimsForTx returns the RequestedVerifiedClaimsForTx field value if set, zero value otherwise.

func (*AuthorizationResponse) GetRequestedVerifiedClaimsForTxOk

func (o *AuthorizationResponse) GetRequestedVerifiedClaimsForTxOk() ([]StringArray, bool)

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

func (*AuthorizationResponse) GetResources

func (o *AuthorizationResponse) GetResources() []string

GetResources returns the Resources field value if set, zero value otherwise.

func (*AuthorizationResponse) GetResourcesOk

func (o *AuthorizationResponse) GetResourcesOk() ([]string, bool)

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

func (*AuthorizationResponse) GetResponseContent

func (o *AuthorizationResponse) GetResponseContent() string

GetResponseContent returns the ResponseContent field value if set, zero value otherwise.

func (*AuthorizationResponse) GetResponseContentOk

func (o *AuthorizationResponse) GetResponseContentOk() (*string, bool)

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

func (*AuthorizationResponse) GetResultCode

func (o *AuthorizationResponse) GetResultCode() string

GetResultCode returns the ResultCode field value if set, zero value otherwise.

func (*AuthorizationResponse) GetResultCodeOk

func (o *AuthorizationResponse) GetResultCodeOk() (*string, bool)

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

func (*AuthorizationResponse) GetResultMessage

func (o *AuthorizationResponse) GetResultMessage() string

GetResultMessage returns the ResultMessage field value if set, zero value otherwise.

func (*AuthorizationResponse) GetResultMessageOk

func (o *AuthorizationResponse) GetResultMessageOk() (*string, bool)

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

func (*AuthorizationResponse) GetScopes

func (o *AuthorizationResponse) GetScopes() []Scope

GetScopes returns the Scopes field value if set, zero value otherwise.

func (*AuthorizationResponse) GetScopesOk

func (o *AuthorizationResponse) GetScopesOk() ([]Scope, bool)

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

func (*AuthorizationResponse) GetService

func (o *AuthorizationResponse) GetService() Service

GetService returns the Service field value if set, zero value otherwise.

func (*AuthorizationResponse) GetServiceOk

func (o *AuthorizationResponse) GetServiceOk() (*Service, bool)

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

func (*AuthorizationResponse) GetSubject

func (o *AuthorizationResponse) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*AuthorizationResponse) GetSubjectOk

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

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

func (*AuthorizationResponse) GetTicket

func (o *AuthorizationResponse) GetTicket() string

GetTicket returns the Ticket field value if set, zero value otherwise.

func (*AuthorizationResponse) GetTicketOk

func (o *AuthorizationResponse) GetTicketOk() (*string, bool)

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

func (*AuthorizationResponse) GetTransformedClaims

func (o *AuthorizationResponse) GetTransformedClaims() string

GetTransformedClaims returns the TransformedClaims field value if set, zero value otherwise.

func (*AuthorizationResponse) GetTransformedClaimsOk

func (o *AuthorizationResponse) GetTransformedClaimsOk() (*string, bool)

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

func (*AuthorizationResponse) GetUiLocales

func (o *AuthorizationResponse) GetUiLocales() []string

GetUiLocales returns the UiLocales field value if set, zero value otherwise.

func (*AuthorizationResponse) GetUiLocalesOk

func (o *AuthorizationResponse) GetUiLocalesOk() ([]string, bool)

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

func (*AuthorizationResponse) GetUserInfoClaims

func (o *AuthorizationResponse) GetUserInfoClaims() string

GetUserInfoClaims returns the UserInfoClaims field value if set, zero value otherwise.

func (*AuthorizationResponse) GetUserInfoClaimsOk

func (o *AuthorizationResponse) GetUserInfoClaimsOk() (*string, bool)

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

func (*AuthorizationResponse) HasAcrEssential

func (o *AuthorizationResponse) HasAcrEssential() bool

HasAcrEssential returns a boolean if a field has been set.

func (*AuthorizationResponse) HasAcrs

func (o *AuthorizationResponse) HasAcrs() bool

HasAcrs returns a boolean if a field has been set.

func (*AuthorizationResponse) HasAction

func (o *AuthorizationResponse) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*AuthorizationResponse) HasAuthorizationDetails

func (o *AuthorizationResponse) HasAuthorizationDetails() bool

HasAuthorizationDetails returns a boolean if a field has been set.

func (*AuthorizationResponse) HasClaims

func (o *AuthorizationResponse) HasClaims() bool

HasClaims returns a boolean if a field has been set.

func (*AuthorizationResponse) HasClaimsAtUserInfo

func (o *AuthorizationResponse) HasClaimsAtUserInfo() bool

HasClaimsAtUserInfo returns a boolean if a field has been set.

func (*AuthorizationResponse) HasClaimsLocales

func (o *AuthorizationResponse) HasClaimsLocales() bool

HasClaimsLocales returns a boolean if a field has been set.

func (*AuthorizationResponse) HasClient

func (o *AuthorizationResponse) HasClient() bool

HasClient returns a boolean if a field has been set.

func (*AuthorizationResponse) HasClientEntityIdUsed

func (o *AuthorizationResponse) HasClientEntityIdUsed() bool

HasClientEntityIdUsed returns a boolean if a field has been set.

func (*AuthorizationResponse) HasClientIdAliasUsed

func (o *AuthorizationResponse) HasClientIdAliasUsed() bool

HasClientIdAliasUsed returns a boolean if a field has been set.

func (*AuthorizationResponse) HasDisplay

func (o *AuthorizationResponse) HasDisplay() bool

HasDisplay returns a boolean if a field has been set.

func (*AuthorizationResponse) HasDynamicScopes

func (o *AuthorizationResponse) HasDynamicScopes() bool

HasDynamicScopes returns a boolean if a field has been set.

func (*AuthorizationResponse) HasGmAction

func (o *AuthorizationResponse) HasGmAction() bool

HasGmAction returns a boolean if a field has been set.

func (*AuthorizationResponse) HasGrant

func (o *AuthorizationResponse) HasGrant() bool

HasGrant returns a boolean if a field has been set.

func (*AuthorizationResponse) HasGrantId

func (o *AuthorizationResponse) HasGrantId() bool

HasGrantId returns a boolean if a field has been set.

func (*AuthorizationResponse) HasGrantSubject

func (o *AuthorizationResponse) HasGrantSubject() bool

HasGrantSubject returns a boolean if a field has been set.

func (*AuthorizationResponse) HasIdTokenClaims

func (o *AuthorizationResponse) HasIdTokenClaims() bool

HasIdTokenClaims returns a boolean if a field has been set.

func (*AuthorizationResponse) HasLoginHint

func (o *AuthorizationResponse) HasLoginHint() bool

HasLoginHint returns a boolean if a field has been set.

func (*AuthorizationResponse) HasLowestPrompt

func (o *AuthorizationResponse) HasLowestPrompt() bool

HasLowestPrompt returns a boolean if a field has been set.

func (*AuthorizationResponse) HasMaxAge

func (o *AuthorizationResponse) HasMaxAge() bool

HasMaxAge returns a boolean if a field has been set.

func (*AuthorizationResponse) HasPrompts

func (o *AuthorizationResponse) HasPrompts() bool

HasPrompts returns a boolean if a field has been set.

func (*AuthorizationResponse) HasPurpose

func (o *AuthorizationResponse) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (*AuthorizationResponse) HasRequestObjectPayload

func (o *AuthorizationResponse) HasRequestObjectPayload() bool

HasRequestObjectPayload returns a boolean if a field has been set.

func (*AuthorizationResponse) HasRequestedClaimsForTx

func (o *AuthorizationResponse) HasRequestedClaimsForTx() bool

HasRequestedClaimsForTx returns a boolean if a field has been set.

func (*AuthorizationResponse) HasRequestedVerifiedClaimsForTx

func (o *AuthorizationResponse) HasRequestedVerifiedClaimsForTx() bool

HasRequestedVerifiedClaimsForTx returns a boolean if a field has been set.

func (*AuthorizationResponse) HasResources

func (o *AuthorizationResponse) HasResources() bool

HasResources returns a boolean if a field has been set.

func (*AuthorizationResponse) HasResponseContent

func (o *AuthorizationResponse) HasResponseContent() bool

HasResponseContent returns a boolean if a field has been set.

func (*AuthorizationResponse) HasResultCode

func (o *AuthorizationResponse) HasResultCode() bool

HasResultCode returns a boolean if a field has been set.

func (*AuthorizationResponse) HasResultMessage

func (o *AuthorizationResponse) HasResultMessage() bool

HasResultMessage returns a boolean if a field has been set.

func (*AuthorizationResponse) HasScopes

func (o *AuthorizationResponse) HasScopes() bool

HasScopes returns a boolean if a field has been set.

func (*AuthorizationResponse) HasService

func (o *AuthorizationResponse) HasService() bool

HasService returns a boolean if a field has been set.

func (*AuthorizationResponse) HasSubject

func (o *AuthorizationResponse) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*AuthorizationResponse) HasTicket

func (o *AuthorizationResponse) HasTicket() bool

HasTicket returns a boolean if a field has been set.

func (*AuthorizationResponse) HasTransformedClaims

func (o *AuthorizationResponse) HasTransformedClaims() bool

HasTransformedClaims returns a boolean if a field has been set.

func (*AuthorizationResponse) HasUiLocales

func (o *AuthorizationResponse) HasUiLocales() bool

HasUiLocales returns a boolean if a field has been set.

func (*AuthorizationResponse) HasUserInfoClaims

func (o *AuthorizationResponse) HasUserInfoClaims() bool

HasUserInfoClaims returns a boolean if a field has been set.

func (AuthorizationResponse) MarshalJSON

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

func (*AuthorizationResponse) SetAcrEssential

func (o *AuthorizationResponse) SetAcrEssential(v bool)

SetAcrEssential gets a reference to the given bool and assigns it to the AcrEssential field.

func (*AuthorizationResponse) SetAcrs

func (o *AuthorizationResponse) SetAcrs(v []string)

SetAcrs gets a reference to the given []string and assigns it to the Acrs field.

func (*AuthorizationResponse) SetAction

func (o *AuthorizationResponse) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*AuthorizationResponse) SetAuthorizationDetails

func (o *AuthorizationResponse) SetAuthorizationDetails(v AuthzDetails)

SetAuthorizationDetails gets a reference to the given AuthzDetails and assigns it to the AuthorizationDetails field.

func (*AuthorizationResponse) SetClaims

func (o *AuthorizationResponse) SetClaims(v []string)

SetClaims gets a reference to the given []string and assigns it to the Claims field.

func (*AuthorizationResponse) SetClaimsAtUserInfo

func (o *AuthorizationResponse) SetClaimsAtUserInfo(v []string)

SetClaimsAtUserInfo gets a reference to the given []string and assigns it to the ClaimsAtUserInfo field.

func (*AuthorizationResponse) SetClaimsLocales

func (o *AuthorizationResponse) SetClaimsLocales(v []string)

SetClaimsLocales gets a reference to the given []string and assigns it to the ClaimsLocales field.

func (*AuthorizationResponse) SetClient

func (o *AuthorizationResponse) SetClient(v Client)

SetClient gets a reference to the given Client and assigns it to the Client field.

func (*AuthorizationResponse) SetClientEntityIdUsed

func (o *AuthorizationResponse) SetClientEntityIdUsed(v bool)

SetClientEntityIdUsed gets a reference to the given bool and assigns it to the ClientEntityIdUsed field.

func (*AuthorizationResponse) SetClientIdAliasUsed

func (o *AuthorizationResponse) SetClientIdAliasUsed(v bool)

SetClientIdAliasUsed gets a reference to the given bool and assigns it to the ClientIdAliasUsed field.

func (*AuthorizationResponse) SetDisplay

func (o *AuthorizationResponse) SetDisplay(v string)

SetDisplay gets a reference to the given string and assigns it to the Display field.

func (*AuthorizationResponse) SetDynamicScopes

func (o *AuthorizationResponse) SetDynamicScopes(v []DynamicScope)

SetDynamicScopes gets a reference to the given []DynamicScope and assigns it to the DynamicScopes field.

func (*AuthorizationResponse) SetGmAction

func (o *AuthorizationResponse) SetGmAction(v string)

SetGmAction gets a reference to the given string and assigns it to the GmAction field.

func (*AuthorizationResponse) SetGrant

func (o *AuthorizationResponse) SetGrant(v Grant)

SetGrant gets a reference to the given Grant and assigns it to the Grant field.

func (*AuthorizationResponse) SetGrantId

func (o *AuthorizationResponse) SetGrantId(v string)

SetGrantId gets a reference to the given string and assigns it to the GrantId field.

func (*AuthorizationResponse) SetGrantSubject

func (o *AuthorizationResponse) SetGrantSubject(v string)

SetGrantSubject gets a reference to the given string and assigns it to the GrantSubject field.

func (*AuthorizationResponse) SetIdTokenClaims

func (o *AuthorizationResponse) SetIdTokenClaims(v string)

SetIdTokenClaims gets a reference to the given string and assigns it to the IdTokenClaims field.

func (*AuthorizationResponse) SetLoginHint

func (o *AuthorizationResponse) SetLoginHint(v string)

SetLoginHint gets a reference to the given string and assigns it to the LoginHint field.

func (*AuthorizationResponse) SetLowestPrompt

func (o *AuthorizationResponse) SetLowestPrompt(v string)

SetLowestPrompt gets a reference to the given string and assigns it to the LowestPrompt field. Deprecated

func (*AuthorizationResponse) SetMaxAge

func (o *AuthorizationResponse) SetMaxAge(v int32)

SetMaxAge gets a reference to the given int32 and assigns it to the MaxAge field.

func (*AuthorizationResponse) SetPrompts

func (o *AuthorizationResponse) SetPrompts(v []string)

SetPrompts gets a reference to the given []string and assigns it to the Prompts field.

func (*AuthorizationResponse) SetPurpose

func (o *AuthorizationResponse) SetPurpose(v string)

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (*AuthorizationResponse) SetRequestObjectPayload

func (o *AuthorizationResponse) SetRequestObjectPayload(v string)

SetRequestObjectPayload gets a reference to the given string and assigns it to the RequestObjectPayload field.

func (*AuthorizationResponse) SetRequestedClaimsForTx

func (o *AuthorizationResponse) SetRequestedClaimsForTx(v []string)

SetRequestedClaimsForTx gets a reference to the given []string and assigns it to the RequestedClaimsForTx field.

func (*AuthorizationResponse) SetRequestedVerifiedClaimsForTx

func (o *AuthorizationResponse) SetRequestedVerifiedClaimsForTx(v []StringArray)

SetRequestedVerifiedClaimsForTx gets a reference to the given []StringArray and assigns it to the RequestedVerifiedClaimsForTx field.

func (*AuthorizationResponse) SetResources

func (o *AuthorizationResponse) SetResources(v []string)

SetResources gets a reference to the given []string and assigns it to the Resources field.

func (*AuthorizationResponse) SetResponseContent

func (o *AuthorizationResponse) SetResponseContent(v string)

SetResponseContent gets a reference to the given string and assigns it to the ResponseContent field.

func (*AuthorizationResponse) SetResultCode

func (o *AuthorizationResponse) SetResultCode(v string)

SetResultCode gets a reference to the given string and assigns it to the ResultCode field.

func (*AuthorizationResponse) SetResultMessage

func (o *AuthorizationResponse) SetResultMessage(v string)

SetResultMessage gets a reference to the given string and assigns it to the ResultMessage field.

func (*AuthorizationResponse) SetScopes

func (o *AuthorizationResponse) SetScopes(v []Scope)

SetScopes gets a reference to the given []Scope and assigns it to the Scopes field.

func (*AuthorizationResponse) SetService

func (o *AuthorizationResponse) SetService(v Service)

SetService gets a reference to the given Service and assigns it to the Service field.

func (*AuthorizationResponse) SetSubject

func (o *AuthorizationResponse) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (*AuthorizationResponse) SetTicket

func (o *AuthorizationResponse) SetTicket(v string)

SetTicket gets a reference to the given string and assigns it to the Ticket field.

func (*AuthorizationResponse) SetTransformedClaims

func (o *AuthorizationResponse) SetTransformedClaims(v string)

SetTransformedClaims gets a reference to the given string and assigns it to the TransformedClaims field.

func (*AuthorizationResponse) SetUiLocales

func (o *AuthorizationResponse) SetUiLocales(v []string)

SetUiLocales gets a reference to the given []string and assigns it to the UiLocales field.

func (*AuthorizationResponse) SetUserInfoClaims

func (o *AuthorizationResponse) SetUserInfoClaims(v string)

SetUserInfoClaims gets a reference to the given string and assigns it to the UserInfoClaims field.

type AuthorizeApiApiService

type AuthorizeApiApiService service

AuthorizeApiApiService AuthorizeApiApi service

func (*AuthorizeApiApiService) GetCurrentAuthorizationResponse

func (a *AuthorizeApiApiService) GetCurrentAuthorizationResponse(ctx context.Context) ApiGetCurrentAuthorizationResponseRequest

GetCurrentAuthorizationResponse Method for GetCurrentAuthorizationResponse

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

func (*AuthorizeApiApiService) GetCurrentAuthorizationResponseExecute

Execute executes the request

@return PendingAuthorization

func (*AuthorizeApiApiService) SubmitUserDecision

SubmitUserDecision Method for SubmitUserDecision

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

func (*AuthorizeApiApiService) SubmitUserDecisionExecute

func (a *AuthorizeApiApiService) SubmitUserDecisionExecute(r ApiSubmitUserDecisionRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

type AuthzDetails

type AuthzDetails struct {
	Elements []AuthzDetailsElement `json:"elements,omitempty"`
}

AuthzDetails struct for AuthzDetails

func NewAuthzDetails

func NewAuthzDetails() *AuthzDetails

NewAuthzDetails instantiates a new AuthzDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthzDetailsWithDefaults

func NewAuthzDetailsWithDefaults() *AuthzDetails

NewAuthzDetailsWithDefaults instantiates a new AuthzDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthzDetails) GetElements

func (o *AuthzDetails) GetElements() []AuthzDetailsElement

GetElements returns the Elements field value if set, zero value otherwise.

func (*AuthzDetails) GetElementsOk

func (o *AuthzDetails) GetElementsOk() ([]AuthzDetailsElement, bool)

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

func (*AuthzDetails) HasElements

func (o *AuthzDetails) HasElements() bool

HasElements returns a boolean if a field has been set.

func (AuthzDetails) MarshalJSON

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

func (*AuthzDetails) SetElements

func (o *AuthzDetails) SetElements(v []AuthzDetailsElement)

SetElements gets a reference to the given []AuthzDetailsElement and assigns it to the Elements field.

type AuthzDetailsElement

type AuthzDetailsElement struct {
	Type               *string                           `json:"type,omitempty"`
	Locations          []string                          `json:"locations,omitempty"`
	Actions            []string                          `json:"actions,omitempty"`
	DataTypes          []string                          `json:"dataTypes,omitempty"`
	Identifier         *string                           `json:"identifier,omitempty"`
	Privileges         []string                          `json:"privileges,omitempty"`
	OtherFields        *string                           `json:"otherFields,omitempty"`
	OtherFieldsFromMap *AuthzDetailsElement              `json:"otherFieldsFromMap,omitempty"`
	OtherFieldsAsMap   map[string]map[string]interface{} `json:"otherFieldsAsMap,omitempty"`
}

AuthzDetailsElement struct for AuthzDetailsElement

func NewAuthzDetailsElement

func NewAuthzDetailsElement() *AuthzDetailsElement

NewAuthzDetailsElement instantiates a new AuthzDetailsElement object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthzDetailsElementWithDefaults

func NewAuthzDetailsElementWithDefaults() *AuthzDetailsElement

NewAuthzDetailsElementWithDefaults instantiates a new AuthzDetailsElement object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthzDetailsElement) GetActions

func (o *AuthzDetailsElement) GetActions() []string

GetActions returns the Actions field value if set, zero value otherwise.

func (*AuthzDetailsElement) GetActionsOk

func (o *AuthzDetailsElement) GetActionsOk() ([]string, bool)

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

func (*AuthzDetailsElement) GetDataTypes

func (o *AuthzDetailsElement) GetDataTypes() []string

GetDataTypes returns the DataTypes field value if set, zero value otherwise.

func (*AuthzDetailsElement) GetDataTypesOk

func (o *AuthzDetailsElement) GetDataTypesOk() ([]string, bool)

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

func (*AuthzDetailsElement) GetIdentifier

func (o *AuthzDetailsElement) GetIdentifier() string

GetIdentifier returns the Identifier field value if set, zero value otherwise.

func (*AuthzDetailsElement) GetIdentifierOk

func (o *AuthzDetailsElement) GetIdentifierOk() (*string, bool)

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

func (*AuthzDetailsElement) GetLocations

func (o *AuthzDetailsElement) GetLocations() []string

GetLocations returns the Locations field value if set, zero value otherwise.

func (*AuthzDetailsElement) GetLocationsOk

func (o *AuthzDetailsElement) GetLocationsOk() ([]string, bool)

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

func (*AuthzDetailsElement) GetOtherFields

func (o *AuthzDetailsElement) GetOtherFields() string

GetOtherFields returns the OtherFields field value if set, zero value otherwise.

func (*AuthzDetailsElement) GetOtherFieldsAsMap

func (o *AuthzDetailsElement) GetOtherFieldsAsMap() map[string]map[string]interface{}

GetOtherFieldsAsMap returns the OtherFieldsAsMap field value if set, zero value otherwise.

func (*AuthzDetailsElement) GetOtherFieldsAsMapOk

func (o *AuthzDetailsElement) GetOtherFieldsAsMapOk() (map[string]map[string]interface{}, bool)

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

func (*AuthzDetailsElement) GetOtherFieldsFromMap

func (o *AuthzDetailsElement) GetOtherFieldsFromMap() AuthzDetailsElement

GetOtherFieldsFromMap returns the OtherFieldsFromMap field value if set, zero value otherwise.

func (*AuthzDetailsElement) GetOtherFieldsFromMapOk

func (o *AuthzDetailsElement) GetOtherFieldsFromMapOk() (*AuthzDetailsElement, bool)

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

func (*AuthzDetailsElement) GetOtherFieldsOk

func (o *AuthzDetailsElement) GetOtherFieldsOk() (*string, bool)

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

func (*AuthzDetailsElement) GetPrivileges

func (o *AuthzDetailsElement) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*AuthzDetailsElement) GetPrivilegesOk

func (o *AuthzDetailsElement) GetPrivilegesOk() ([]string, bool)

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

func (*AuthzDetailsElement) GetType

func (o *AuthzDetailsElement) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*AuthzDetailsElement) GetTypeOk

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

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

func (*AuthzDetailsElement) HasActions

func (o *AuthzDetailsElement) HasActions() bool

HasActions returns a boolean if a field has been set.

func (*AuthzDetailsElement) HasDataTypes

func (o *AuthzDetailsElement) HasDataTypes() bool

HasDataTypes returns a boolean if a field has been set.

func (*AuthzDetailsElement) HasIdentifier

func (o *AuthzDetailsElement) HasIdentifier() bool

HasIdentifier returns a boolean if a field has been set.

func (*AuthzDetailsElement) HasLocations

func (o *AuthzDetailsElement) HasLocations() bool

HasLocations returns a boolean if a field has been set.

func (*AuthzDetailsElement) HasOtherFields

func (o *AuthzDetailsElement) HasOtherFields() bool

HasOtherFields returns a boolean if a field has been set.

func (*AuthzDetailsElement) HasOtherFieldsAsMap

func (o *AuthzDetailsElement) HasOtherFieldsAsMap() bool

HasOtherFieldsAsMap returns a boolean if a field has been set.

func (*AuthzDetailsElement) HasOtherFieldsFromMap

func (o *AuthzDetailsElement) HasOtherFieldsFromMap() bool

HasOtherFieldsFromMap returns a boolean if a field has been set.

func (*AuthzDetailsElement) HasPrivileges

func (o *AuthzDetailsElement) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (*AuthzDetailsElement) HasType

func (o *AuthzDetailsElement) HasType() bool

HasType returns a boolean if a field has been set.

func (AuthzDetailsElement) MarshalJSON

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

func (*AuthzDetailsElement) SetActions

func (o *AuthzDetailsElement) SetActions(v []string)

SetActions gets a reference to the given []string and assigns it to the Actions field.

func (*AuthzDetailsElement) SetDataTypes

func (o *AuthzDetailsElement) SetDataTypes(v []string)

SetDataTypes gets a reference to the given []string and assigns it to the DataTypes field.

func (*AuthzDetailsElement) SetIdentifier

func (o *AuthzDetailsElement) SetIdentifier(v string)

SetIdentifier gets a reference to the given string and assigns it to the Identifier field.

func (*AuthzDetailsElement) SetLocations

func (o *AuthzDetailsElement) SetLocations(v []string)

SetLocations gets a reference to the given []string and assigns it to the Locations field.

func (*AuthzDetailsElement) SetOtherFields

func (o *AuthzDetailsElement) SetOtherFields(v string)

SetOtherFields gets a reference to the given string and assigns it to the OtherFields field.

func (*AuthzDetailsElement) SetOtherFieldsAsMap

func (o *AuthzDetailsElement) SetOtherFieldsAsMap(v map[string]map[string]interface{})

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

func (*AuthzDetailsElement) SetOtherFieldsFromMap

func (o *AuthzDetailsElement) SetOtherFieldsFromMap(v AuthzDetailsElement)

SetOtherFieldsFromMap gets a reference to the given AuthzDetailsElement and assigns it to the OtherFieldsFromMap field.

func (*AuthzDetailsElement) SetPrivileges

func (o *AuthzDetailsElement) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*AuthzDetailsElement) SetType

func (o *AuthzDetailsElement) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type BasicAuth

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

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

type BindTotpCredentialsRequest

type BindTotpCredentialsRequest struct {
	Totp int32 `json:"totp"`
}

BindTotpCredentialsRequest struct for BindTotpCredentialsRequest

func NewBindTotpCredentialsRequest

func NewBindTotpCredentialsRequest(totp int32) *BindTotpCredentialsRequest

NewBindTotpCredentialsRequest instantiates a new BindTotpCredentialsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBindTotpCredentialsRequestWithDefaults

func NewBindTotpCredentialsRequestWithDefaults() *BindTotpCredentialsRequest

NewBindTotpCredentialsRequestWithDefaults instantiates a new BindTotpCredentialsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BindTotpCredentialsRequest) GetTotp

func (o *BindTotpCredentialsRequest) GetTotp() int32

GetTotp returns the Totp field value

func (*BindTotpCredentialsRequest) GetTotpOk

func (o *BindTotpCredentialsRequest) GetTotpOk() (*int32, bool)

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

func (BindTotpCredentialsRequest) MarshalJSON

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

func (*BindTotpCredentialsRequest) SetTotp

func (o *BindTotpCredentialsRequest) SetTotp(v int32)

SetTotp sets field value

type Challenge

type Challenge struct {
	Value []string `json:"value,omitempty"`
}

Challenge struct for Challenge

func NewChallenge

func NewChallenge() *Challenge

NewChallenge instantiates a new Challenge object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewChallengeWithDefaults

func NewChallengeWithDefaults() *Challenge

NewChallengeWithDefaults instantiates a new Challenge object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Challenge) GetValue

func (o *Challenge) GetValue() []string

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

func (*Challenge) GetValueOk

func (o *Challenge) GetValueOk() ([]string, bool)

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

func (*Challenge) HasValue

func (o *Challenge) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Challenge) MarshalJSON

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

func (*Challenge) SetValue

func (o *Challenge) SetValue(v []string)

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

type Client

type Client struct {
	Number                                      *int32           `json:"number,omitempty"`
	ServiceNumber                               *int32           `json:"serviceNumber,omitempty"`
	Developer                                   *string          `json:"developer,omitempty"`
	ClientId                                    *int64           `json:"clientId,omitempty"`
	ClientIdAlias                               *string          `json:"clientIdAlias,omitempty"`
	ClientIdAliasEnabled                        *bool            `json:"clientIdAliasEnabled,omitempty"`
	ClientSecret                                *string          `json:"clientSecret,omitempty"`
	ClientType                                  *string          `json:"clientType,omitempty"`
	RedirectUris                                []string         `json:"redirectUris,omitempty"`
	ResponseTypes                               []string         `json:"responseTypes,omitempty"`
	GrantTypes                                  []string         `json:"grantTypes,omitempty"`
	ApplicationType                             *string          `json:"applicationType,omitempty"`
	Contacts                                    []string         `json:"contacts,omitempty"`
	ClientName                                  *string          `json:"clientName,omitempty"`
	ClientNames                                 []TaggedValue    `json:"clientNames,omitempty"`
	LogoUri                                     *string          `json:"logoUri,omitempty"`
	LogoUris                                    []TaggedValue    `json:"logoUris,omitempty"`
	ClientUri                                   *string          `json:"clientUri,omitempty"`
	ClientUris                                  []TaggedValue    `json:"clientUris,omitempty"`
	PolicyUri                                   *string          `json:"policyUri,omitempty"`
	PolicyUris                                  []TaggedValue    `json:"policyUris,omitempty"`
	TosUri                                      *string          `json:"tosUri,omitempty"`
	TosUris                                     []TaggedValue    `json:"tosUris,omitempty"`
	JwksUri                                     *string          `json:"jwksUri,omitempty"`
	Jwks                                        *string          `json:"jwks,omitempty"`
	DerivedSectorIdentifier                     *string          `json:"derivedSectorIdentifier,omitempty"`
	SectorIdentifierUri                         *string          `json:"sectorIdentifierUri,omitempty"`
	SubjectType                                 *string          `json:"subjectType,omitempty"`
	IdTokenSignAlg                              *string          `json:"idTokenSignAlg,omitempty"`
	IdTokenEncryptionAlg                        *string          `json:"idTokenEncryptionAlg,omitempty"`
	IdTokenEncryptionEnc                        *string          `json:"idTokenEncryptionEnc,omitempty"`
	UserInfoSignAlg                             *string          `json:"userInfoSignAlg,omitempty"`
	UserInfoEncryptionAlg                       *string          `json:"userInfoEncryptionAlg,omitempty"`
	UserInfoEncryptionEnc                       *string          `json:"userInfoEncryptionEnc,omitempty"`
	RequestSignAlg                              *string          `json:"requestSignAlg,omitempty"`
	RequestEncryptionAlg                        *string          `json:"requestEncryptionAlg,omitempty"`
	RequestEncryptionEnc                        *string          `json:"requestEncryptionEnc,omitempty"`
	TokenAuthMethod                             *string          `json:"tokenAuthMethod,omitempty"`
	TokenAuthSignAlg                            *string          `json:"tokenAuthSignAlg,omitempty"`
	DefaultMaxAge                               *int32           `json:"defaultMaxAge,omitempty"`
	DefaultAcrs                                 []string         `json:"defaultAcrs,omitempty"`
	AuthTimeRequired                            *bool            `json:"authTimeRequired,omitempty"`
	LoginUri                                    *string          `json:"loginUri,omitempty"`
	RequestUris                                 []string         `json:"requestUris,omitempty"`
	Description                                 *string          `json:"description,omitempty"`
	Descriptions                                []TaggedValue    `json:"descriptions,omitempty"`
	CreatedAt                                   *int64           `json:"createdAt,omitempty"`
	ModifiedAt                                  *int64           `json:"modifiedAt,omitempty"`
	Extension                                   *ClientExtension `json:"extension,omitempty"`
	TlsClientAuthSubjectDn                      *string          `json:"tlsClientAuthSubjectDn,omitempty"`
	TlsClientAuthSanDns                         *string          `json:"tlsClientAuthSanDns,omitempty"`
	TlsClientAuthSanUri                         *string          `json:"tlsClientAuthSanUri,omitempty"`
	TlsClientAuthSanIp                          *string          `json:"tlsClientAuthSanIp,omitempty"`
	TlsClientAuthSanEmail                       *string          `json:"tlsClientAuthSanEmail,omitempty"`
	TlsClientCertificateBoundAccessTokens       *bool            `json:"tlsClientCertificateBoundAccessTokens,omitempty"`
	SelfSignedCertificateKeyId                  *string          `json:"selfSignedCertificateKeyId,omitempty"`
	SoftwareId                                  *string          `json:"softwareId,omitempty"`
	SoftwareVersion                             *string          `json:"softwareVersion,omitempty"`
	AuthorizationSignAlg                        *string          `json:"authorizationSignAlg,omitempty"`
	AuthorizationEncryptionAlg                  *string          `json:"authorizationEncryptionAlg,omitempty"`
	AuthorizationEncryptionEnc                  *string          `json:"authorizationEncryptionEnc,omitempty"`
	BcDeliveryMode                              *string          `json:"bcDeliveryMode,omitempty"`
	BcNotificationEndpoint                      *string          `json:"bcNotificationEndpoint,omitempty"`
	BcRequestSignAlg                            *string          `json:"bcRequestSignAlg,omitempty"`
	BcUserCodeRequired                          *bool            `json:"bcUserCodeRequired,omitempty"`
	DynamicallyRegistered                       *bool            `json:"dynamicallyRegistered,omitempty"`
	RegistrationAccessTokenHash                 *string          `json:"registrationAccessTokenHash,omitempty"`
	AuthorizationDetailsTypes                   []string         `json:"authorizationDetailsTypes,omitempty"`
	ParRequired                                 *bool            `json:"parRequired,omitempty"`
	RequestObjectRequired                       *bool            `json:"requestObjectRequired,omitempty"`
	Attributes                                  []Pair           `json:"attributes,omitempty"`
	CustomMetadata                              *string          `json:"customMetadata,omitempty"`
	FrontChannelRequestObjectEncryptionRequired *bool            `json:"frontChannelRequestObjectEncryptionRequired,omitempty"`
	RequestObjectEncryptionAlgMatchRequired     *bool            `json:"requestObjectEncryptionAlgMatchRequired,omitempty"`
	RequestObjectEncryptionEncMatchRequired     *bool            `json:"requestObjectEncryptionEncMatchRequired,omitempty"`
	DigestAlgorithm                             *string          `json:"digestAlgorithm,omitempty"`
	SingleAccessTokenPerSubject                 *bool            `json:"singleAccessTokenPerSubject,omitempty"`
	PkceRequired                                *bool            `json:"pkceRequired,omitempty"`
	PkceS256Required                            *bool            `json:"pkceS256Required,omitempty"`
	RsSignedRequestKeyId                        *string          `json:"rsSignedRequestKeyId,omitempty"`
	RsRequestSigned                             *bool            `json:"rsRequestSigned,omitempty"`
	DpopRequired                                *bool            `json:"dpopRequired,omitempty"`
	EntityId                                    *string          `json:"entityId,omitempty"`
	TrustAnchorId                               *string          `json:"trustAnchorId,omitempty"`
	TrustChain                                  []string         `json:"trustChain,omitempty"`
	TrustChainExpiresAt                         *int64           `json:"trustChainExpiresAt,omitempty"`
	TrustChainUpdatedAt                         *int64           `json:"trustChainUpdatedAt,omitempty"`
	OrganizationName                            *string          `json:"organizationName,omitempty"`
	SignedJwksUri                               *string          `json:"signedJwksUri,omitempty"`
	ClientRegistrationTypes                     []string         `json:"clientRegistrationTypes,omitempty"`
	AutomaticallyRegistered                     *bool            `json:"automaticallyRegistered,omitempty"`
	ExplicitlyRegistered                        *bool            `json:"explicitlyRegistered,omitempty"`
	CredentialOfferEndpoint                     *string          `json:"credentialOfferEndpoint,omitempty"`
	// Deprecated
	SectorIdentifier *string `json:"sectorIdentifier,omitempty"`
}

Client struct for Client

func NewClient

func NewClient() *Client

NewClient instantiates a new Client object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewClientWithDefaults

func NewClientWithDefaults() *Client

NewClientWithDefaults instantiates a new Client object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Client) GetApplicationType

func (o *Client) GetApplicationType() string

GetApplicationType returns the ApplicationType field value if set, zero value otherwise.

func (*Client) GetApplicationTypeOk

func (o *Client) GetApplicationTypeOk() (*string, bool)

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

func (*Client) GetAttributes

func (o *Client) GetAttributes() []Pair

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*Client) GetAttributesOk

func (o *Client) GetAttributesOk() ([]Pair, bool)

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

func (*Client) GetAuthTimeRequired

func (o *Client) GetAuthTimeRequired() bool

GetAuthTimeRequired returns the AuthTimeRequired field value if set, zero value otherwise.

func (*Client) GetAuthTimeRequiredOk

func (o *Client) GetAuthTimeRequiredOk() (*bool, bool)

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

func (*Client) GetAuthorizationDetailsTypes

func (o *Client) GetAuthorizationDetailsTypes() []string

GetAuthorizationDetailsTypes returns the AuthorizationDetailsTypes field value if set, zero value otherwise.

func (*Client) GetAuthorizationDetailsTypesOk

func (o *Client) GetAuthorizationDetailsTypesOk() ([]string, bool)

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

func (*Client) GetAuthorizationEncryptionAlg

func (o *Client) GetAuthorizationEncryptionAlg() string

GetAuthorizationEncryptionAlg returns the AuthorizationEncryptionAlg field value if set, zero value otherwise.

func (*Client) GetAuthorizationEncryptionAlgOk

func (o *Client) GetAuthorizationEncryptionAlgOk() (*string, bool)

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

func (*Client) GetAuthorizationEncryptionEnc

func (o *Client) GetAuthorizationEncryptionEnc() string

GetAuthorizationEncryptionEnc returns the AuthorizationEncryptionEnc field value if set, zero value otherwise.

func (*Client) GetAuthorizationEncryptionEncOk

func (o *Client) GetAuthorizationEncryptionEncOk() (*string, bool)

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

func (*Client) GetAuthorizationSignAlg

func (o *Client) GetAuthorizationSignAlg() string

GetAuthorizationSignAlg returns the AuthorizationSignAlg field value if set, zero value otherwise.

func (*Client) GetAuthorizationSignAlgOk

func (o *Client) GetAuthorizationSignAlgOk() (*string, bool)

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

func (*Client) GetAutomaticallyRegistered

func (o *Client) GetAutomaticallyRegistered() bool

GetAutomaticallyRegistered returns the AutomaticallyRegistered field value if set, zero value otherwise.

func (*Client) GetAutomaticallyRegisteredOk

func (o *Client) GetAutomaticallyRegisteredOk() (*bool, bool)

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

func (*Client) GetBcDeliveryMode

func (o *Client) GetBcDeliveryMode() string

GetBcDeliveryMode returns the BcDeliveryMode field value if set, zero value otherwise.

func (*Client) GetBcDeliveryModeOk

func (o *Client) GetBcDeliveryModeOk() (*string, bool)

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

func (*Client) GetBcNotificationEndpoint

func (o *Client) GetBcNotificationEndpoint() string

GetBcNotificationEndpoint returns the BcNotificationEndpoint field value if set, zero value otherwise.

func (*Client) GetBcNotificationEndpointOk

func (o *Client) GetBcNotificationEndpointOk() (*string, bool)

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

func (*Client) GetBcRequestSignAlg

func (o *Client) GetBcRequestSignAlg() string

GetBcRequestSignAlg returns the BcRequestSignAlg field value if set, zero value otherwise.

func (*Client) GetBcRequestSignAlgOk

func (o *Client) GetBcRequestSignAlgOk() (*string, bool)

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

func (*Client) GetBcUserCodeRequired

func (o *Client) GetBcUserCodeRequired() bool

GetBcUserCodeRequired returns the BcUserCodeRequired field value if set, zero value otherwise.

func (*Client) GetBcUserCodeRequiredOk

func (o *Client) GetBcUserCodeRequiredOk() (*bool, bool)

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

func (*Client) GetClientId

func (o *Client) GetClientId() int64

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*Client) GetClientIdAlias

func (o *Client) GetClientIdAlias() string

GetClientIdAlias returns the ClientIdAlias field value if set, zero value otherwise.

func (*Client) GetClientIdAliasEnabled

func (o *Client) GetClientIdAliasEnabled() bool

GetClientIdAliasEnabled returns the ClientIdAliasEnabled field value if set, zero value otherwise.

func (*Client) GetClientIdAliasEnabledOk

func (o *Client) GetClientIdAliasEnabledOk() (*bool, bool)

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

func (*Client) GetClientIdAliasOk

func (o *Client) GetClientIdAliasOk() (*string, bool)

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

func (*Client) GetClientIdOk

func (o *Client) GetClientIdOk() (*int64, bool)

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

func (*Client) GetClientName

func (o *Client) GetClientName() string

GetClientName returns the ClientName field value if set, zero value otherwise.

func (*Client) GetClientNameOk

func (o *Client) GetClientNameOk() (*string, bool)

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

func (*Client) GetClientNames

func (o *Client) GetClientNames() []TaggedValue

GetClientNames returns the ClientNames field value if set, zero value otherwise.

func (*Client) GetClientNamesOk

func (o *Client) GetClientNamesOk() ([]TaggedValue, bool)

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

func (*Client) GetClientRegistrationTypes

func (o *Client) GetClientRegistrationTypes() []string

GetClientRegistrationTypes returns the ClientRegistrationTypes field value if set, zero value otherwise.

func (*Client) GetClientRegistrationTypesOk

func (o *Client) GetClientRegistrationTypesOk() ([]string, bool)

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

func (*Client) GetClientSecret

func (o *Client) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*Client) GetClientSecretOk

func (o *Client) GetClientSecretOk() (*string, bool)

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

func (*Client) GetClientType

func (o *Client) GetClientType() string

GetClientType returns the ClientType field value if set, zero value otherwise.

func (*Client) GetClientTypeOk

func (o *Client) GetClientTypeOk() (*string, bool)

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

func (*Client) GetClientUri

func (o *Client) GetClientUri() string

GetClientUri returns the ClientUri field value if set, zero value otherwise.

func (*Client) GetClientUriOk

func (o *Client) GetClientUriOk() (*string, bool)

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

func (*Client) GetClientUris

func (o *Client) GetClientUris() []TaggedValue

GetClientUris returns the ClientUris field value if set, zero value otherwise.

func (*Client) GetClientUrisOk

func (o *Client) GetClientUrisOk() ([]TaggedValue, bool)

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

func (*Client) GetContacts

func (o *Client) GetContacts() []string

GetContacts returns the Contacts field value if set, zero value otherwise.

func (*Client) GetContactsOk

func (o *Client) GetContactsOk() ([]string, bool)

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

func (*Client) GetCreatedAt

func (o *Client) GetCreatedAt() int64

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

func (*Client) GetCreatedAtOk

func (o *Client) GetCreatedAtOk() (*int64, bool)

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

func (*Client) GetCredentialOfferEndpoint

func (o *Client) GetCredentialOfferEndpoint() string

GetCredentialOfferEndpoint returns the CredentialOfferEndpoint field value if set, zero value otherwise.

func (*Client) GetCredentialOfferEndpointOk

func (o *Client) GetCredentialOfferEndpointOk() (*string, bool)

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

func (*Client) GetCustomMetadata

func (o *Client) GetCustomMetadata() string

GetCustomMetadata returns the CustomMetadata field value if set, zero value otherwise.

func (*Client) GetCustomMetadataOk

func (o *Client) GetCustomMetadataOk() (*string, bool)

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

func (*Client) GetDefaultAcrs

func (o *Client) GetDefaultAcrs() []string

GetDefaultAcrs returns the DefaultAcrs field value if set, zero value otherwise.

func (*Client) GetDefaultAcrsOk

func (o *Client) GetDefaultAcrsOk() ([]string, bool)

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

func (*Client) GetDefaultMaxAge

func (o *Client) GetDefaultMaxAge() int32

GetDefaultMaxAge returns the DefaultMaxAge field value if set, zero value otherwise.

func (*Client) GetDefaultMaxAgeOk

func (o *Client) GetDefaultMaxAgeOk() (*int32, bool)

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

func (*Client) GetDerivedSectorIdentifier

func (o *Client) GetDerivedSectorIdentifier() string

GetDerivedSectorIdentifier returns the DerivedSectorIdentifier field value if set, zero value otherwise.

func (*Client) GetDerivedSectorIdentifierOk

func (o *Client) GetDerivedSectorIdentifierOk() (*string, bool)

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

func (*Client) GetDescription

func (o *Client) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Client) GetDescriptionOk

func (o *Client) GetDescriptionOk() (*string, bool)

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

func (*Client) GetDescriptions

func (o *Client) GetDescriptions() []TaggedValue

GetDescriptions returns the Descriptions field value if set, zero value otherwise.

func (*Client) GetDescriptionsOk

func (o *Client) GetDescriptionsOk() ([]TaggedValue, bool)

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

func (*Client) GetDeveloper

func (o *Client) GetDeveloper() string

GetDeveloper returns the Developer field value if set, zero value otherwise.

func (*Client) GetDeveloperOk

func (o *Client) GetDeveloperOk() (*string, bool)

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

func (*Client) GetDigestAlgorithm

func (o *Client) GetDigestAlgorithm() string

GetDigestAlgorithm returns the DigestAlgorithm field value if set, zero value otherwise.

func (*Client) GetDigestAlgorithmOk

func (o *Client) GetDigestAlgorithmOk() (*string, bool)

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

func (*Client) GetDpopRequired

func (o *Client) GetDpopRequired() bool

GetDpopRequired returns the DpopRequired field value if set, zero value otherwise.

func (*Client) GetDpopRequiredOk

func (o *Client) GetDpopRequiredOk() (*bool, bool)

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

func (*Client) GetDynamicallyRegistered

func (o *Client) GetDynamicallyRegistered() bool

GetDynamicallyRegistered returns the DynamicallyRegistered field value if set, zero value otherwise.

func (*Client) GetDynamicallyRegisteredOk

func (o *Client) GetDynamicallyRegisteredOk() (*bool, bool)

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

func (*Client) GetEntityId

func (o *Client) GetEntityId() string

GetEntityId returns the EntityId field value if set, zero value otherwise.

func (*Client) GetEntityIdOk

func (o *Client) GetEntityIdOk() (*string, bool)

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

func (*Client) GetExplicitlyRegistered

func (o *Client) GetExplicitlyRegistered() bool

GetExplicitlyRegistered returns the ExplicitlyRegistered field value if set, zero value otherwise.

func (*Client) GetExplicitlyRegisteredOk

func (o *Client) GetExplicitlyRegisteredOk() (*bool, bool)

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

func (*Client) GetExtension

func (o *Client) GetExtension() ClientExtension

GetExtension returns the Extension field value if set, zero value otherwise.

func (*Client) GetExtensionOk

func (o *Client) GetExtensionOk() (*ClientExtension, bool)

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

func (*Client) GetFrontChannelRequestObjectEncryptionRequired

func (o *Client) GetFrontChannelRequestObjectEncryptionRequired() bool

GetFrontChannelRequestObjectEncryptionRequired returns the FrontChannelRequestObjectEncryptionRequired field value if set, zero value otherwise.

func (*Client) GetFrontChannelRequestObjectEncryptionRequiredOk

func (o *Client) GetFrontChannelRequestObjectEncryptionRequiredOk() (*bool, bool)

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

func (*Client) GetGrantTypes

func (o *Client) GetGrantTypes() []string

GetGrantTypes returns the GrantTypes field value if set, zero value otherwise.

func (*Client) GetGrantTypesOk

func (o *Client) GetGrantTypesOk() ([]string, bool)

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

func (*Client) GetIdTokenEncryptionAlg

func (o *Client) GetIdTokenEncryptionAlg() string

GetIdTokenEncryptionAlg returns the IdTokenEncryptionAlg field value if set, zero value otherwise.

func (*Client) GetIdTokenEncryptionAlgOk

func (o *Client) GetIdTokenEncryptionAlgOk() (*string, bool)

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

func (*Client) GetIdTokenEncryptionEnc

func (o *Client) GetIdTokenEncryptionEnc() string

GetIdTokenEncryptionEnc returns the IdTokenEncryptionEnc field value if set, zero value otherwise.

func (*Client) GetIdTokenEncryptionEncOk

func (o *Client) GetIdTokenEncryptionEncOk() (*string, bool)

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

func (*Client) GetIdTokenSignAlg

func (o *Client) GetIdTokenSignAlg() string

GetIdTokenSignAlg returns the IdTokenSignAlg field value if set, zero value otherwise.

func (*Client) GetIdTokenSignAlgOk

func (o *Client) GetIdTokenSignAlgOk() (*string, bool)

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

func (*Client) GetJwks

func (o *Client) GetJwks() string

GetJwks returns the Jwks field value if set, zero value otherwise.

func (*Client) GetJwksOk

func (o *Client) GetJwksOk() (*string, bool)

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

func (*Client) GetJwksUri

func (o *Client) GetJwksUri() string

GetJwksUri returns the JwksUri field value if set, zero value otherwise.

func (*Client) GetJwksUriOk

func (o *Client) GetJwksUriOk() (*string, bool)

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

func (*Client) GetLoginUri

func (o *Client) GetLoginUri() string

GetLoginUri returns the LoginUri field value if set, zero value otherwise.

func (*Client) GetLoginUriOk

func (o *Client) GetLoginUriOk() (*string, bool)

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

func (*Client) GetLogoUri

func (o *Client) GetLogoUri() string

GetLogoUri returns the LogoUri field value if set, zero value otherwise.

func (*Client) GetLogoUriOk

func (o *Client) GetLogoUriOk() (*string, bool)

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

func (*Client) GetLogoUris

func (o *Client) GetLogoUris() []TaggedValue

GetLogoUris returns the LogoUris field value if set, zero value otherwise.

func (*Client) GetLogoUrisOk

func (o *Client) GetLogoUrisOk() ([]TaggedValue, bool)

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

func (*Client) GetModifiedAt

func (o *Client) GetModifiedAt() int64

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise.

func (*Client) GetModifiedAtOk

func (o *Client) GetModifiedAtOk() (*int64, bool)

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

func (*Client) GetNumber

func (o *Client) GetNumber() int32

GetNumber returns the Number field value if set, zero value otherwise.

func (*Client) GetNumberOk

func (o *Client) GetNumberOk() (*int32, bool)

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

func (*Client) GetOrganizationName

func (o *Client) GetOrganizationName() string

GetOrganizationName returns the OrganizationName field value if set, zero value otherwise.

func (*Client) GetOrganizationNameOk

func (o *Client) GetOrganizationNameOk() (*string, bool)

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

func (*Client) GetParRequired

func (o *Client) GetParRequired() bool

GetParRequired returns the ParRequired field value if set, zero value otherwise.

func (*Client) GetParRequiredOk

func (o *Client) GetParRequiredOk() (*bool, bool)

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

func (*Client) GetPkceRequired

func (o *Client) GetPkceRequired() bool

GetPkceRequired returns the PkceRequired field value if set, zero value otherwise.

func (*Client) GetPkceRequiredOk

func (o *Client) GetPkceRequiredOk() (*bool, bool)

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

func (*Client) GetPkceS256Required

func (o *Client) GetPkceS256Required() bool

GetPkceS256Required returns the PkceS256Required field value if set, zero value otherwise.

func (*Client) GetPkceS256RequiredOk

func (o *Client) GetPkceS256RequiredOk() (*bool, bool)

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

func (*Client) GetPolicyUri

func (o *Client) GetPolicyUri() string

GetPolicyUri returns the PolicyUri field value if set, zero value otherwise.

func (*Client) GetPolicyUriOk

func (o *Client) GetPolicyUriOk() (*string, bool)

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

func (*Client) GetPolicyUris

func (o *Client) GetPolicyUris() []TaggedValue

GetPolicyUris returns the PolicyUris field value if set, zero value otherwise.

func (*Client) GetPolicyUrisOk

func (o *Client) GetPolicyUrisOk() ([]TaggedValue, bool)

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

func (*Client) GetRedirectUris

func (o *Client) GetRedirectUris() []string

GetRedirectUris returns the RedirectUris field value if set, zero value otherwise.

func (*Client) GetRedirectUrisOk

func (o *Client) GetRedirectUrisOk() ([]string, bool)

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

func (*Client) GetRegistrationAccessTokenHash

func (o *Client) GetRegistrationAccessTokenHash() string

GetRegistrationAccessTokenHash returns the RegistrationAccessTokenHash field value if set, zero value otherwise.

func (*Client) GetRegistrationAccessTokenHashOk

func (o *Client) GetRegistrationAccessTokenHashOk() (*string, bool)

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

func (*Client) GetRequestEncryptionAlg

func (o *Client) GetRequestEncryptionAlg() string

GetRequestEncryptionAlg returns the RequestEncryptionAlg field value if set, zero value otherwise.

func (*Client) GetRequestEncryptionAlgOk

func (o *Client) GetRequestEncryptionAlgOk() (*string, bool)

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

func (*Client) GetRequestEncryptionEnc

func (o *Client) GetRequestEncryptionEnc() string

GetRequestEncryptionEnc returns the RequestEncryptionEnc field value if set, zero value otherwise.

func (*Client) GetRequestEncryptionEncOk

func (o *Client) GetRequestEncryptionEncOk() (*string, bool)

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

func (*Client) GetRequestObjectEncryptionAlgMatchRequired

func (o *Client) GetRequestObjectEncryptionAlgMatchRequired() bool

GetRequestObjectEncryptionAlgMatchRequired returns the RequestObjectEncryptionAlgMatchRequired field value if set, zero value otherwise.

func (*Client) GetRequestObjectEncryptionAlgMatchRequiredOk

func (o *Client) GetRequestObjectEncryptionAlgMatchRequiredOk() (*bool, bool)

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

func (*Client) GetRequestObjectEncryptionEncMatchRequired

func (o *Client) GetRequestObjectEncryptionEncMatchRequired() bool

GetRequestObjectEncryptionEncMatchRequired returns the RequestObjectEncryptionEncMatchRequired field value if set, zero value otherwise.

func (*Client) GetRequestObjectEncryptionEncMatchRequiredOk

func (o *Client) GetRequestObjectEncryptionEncMatchRequiredOk() (*bool, bool)

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

func (*Client) GetRequestObjectRequired

func (o *Client) GetRequestObjectRequired() bool

GetRequestObjectRequired returns the RequestObjectRequired field value if set, zero value otherwise.

func (*Client) GetRequestObjectRequiredOk

func (o *Client) GetRequestObjectRequiredOk() (*bool, bool)

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

func (*Client) GetRequestSignAlg

func (o *Client) GetRequestSignAlg() string

GetRequestSignAlg returns the RequestSignAlg field value if set, zero value otherwise.

func (*Client) GetRequestSignAlgOk

func (o *Client) GetRequestSignAlgOk() (*string, bool)

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

func (*Client) GetRequestUris

func (o *Client) GetRequestUris() []string

GetRequestUris returns the RequestUris field value if set, zero value otherwise.

func (*Client) GetRequestUrisOk

func (o *Client) GetRequestUrisOk() ([]string, bool)

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

func (*Client) GetResponseTypes

func (o *Client) GetResponseTypes() []string

GetResponseTypes returns the ResponseTypes field value if set, zero value otherwise.

func (*Client) GetResponseTypesOk

func (o *Client) GetResponseTypesOk() ([]string, bool)

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

func (*Client) GetRsRequestSigned

func (o *Client) GetRsRequestSigned() bool

GetRsRequestSigned returns the RsRequestSigned field value if set, zero value otherwise.

func (*Client) GetRsRequestSignedOk

func (o *Client) GetRsRequestSignedOk() (*bool, bool)

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

func (*Client) GetRsSignedRequestKeyId

func (o *Client) GetRsSignedRequestKeyId() string

GetRsSignedRequestKeyId returns the RsSignedRequestKeyId field value if set, zero value otherwise.

func (*Client) GetRsSignedRequestKeyIdOk

func (o *Client) GetRsSignedRequestKeyIdOk() (*string, bool)

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

func (*Client) GetSectorIdentifier

func (o *Client) GetSectorIdentifier() string

GetSectorIdentifier returns the SectorIdentifier field value if set, zero value otherwise. Deprecated

func (*Client) GetSectorIdentifierOk

func (o *Client) GetSectorIdentifierOk() (*string, bool)

GetSectorIdentifierOk returns a tuple with the SectorIdentifier field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*Client) GetSectorIdentifierUri

func (o *Client) GetSectorIdentifierUri() string

GetSectorIdentifierUri returns the SectorIdentifierUri field value if set, zero value otherwise.

func (*Client) GetSectorIdentifierUriOk

func (o *Client) GetSectorIdentifierUriOk() (*string, bool)

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

func (*Client) GetSelfSignedCertificateKeyId

func (o *Client) GetSelfSignedCertificateKeyId() string

GetSelfSignedCertificateKeyId returns the SelfSignedCertificateKeyId field value if set, zero value otherwise.

func (*Client) GetSelfSignedCertificateKeyIdOk

func (o *Client) GetSelfSignedCertificateKeyIdOk() (*string, bool)

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

func (*Client) GetServiceNumber

func (o *Client) GetServiceNumber() int32

GetServiceNumber returns the ServiceNumber field value if set, zero value otherwise.

func (*Client) GetServiceNumberOk

func (o *Client) GetServiceNumberOk() (*int32, bool)

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

func (*Client) GetSignedJwksUri

func (o *Client) GetSignedJwksUri() string

GetSignedJwksUri returns the SignedJwksUri field value if set, zero value otherwise.

func (*Client) GetSignedJwksUriOk

func (o *Client) GetSignedJwksUriOk() (*string, bool)

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

func (*Client) GetSingleAccessTokenPerSubject

func (o *Client) GetSingleAccessTokenPerSubject() bool

GetSingleAccessTokenPerSubject returns the SingleAccessTokenPerSubject field value if set, zero value otherwise.

func (*Client) GetSingleAccessTokenPerSubjectOk

func (o *Client) GetSingleAccessTokenPerSubjectOk() (*bool, bool)

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

func (*Client) GetSoftwareId

func (o *Client) GetSoftwareId() string

GetSoftwareId returns the SoftwareId field value if set, zero value otherwise.

func (*Client) GetSoftwareIdOk

func (o *Client) GetSoftwareIdOk() (*string, bool)

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

func (*Client) GetSoftwareVersion

func (o *Client) GetSoftwareVersion() string

GetSoftwareVersion returns the SoftwareVersion field value if set, zero value otherwise.

func (*Client) GetSoftwareVersionOk

func (o *Client) GetSoftwareVersionOk() (*string, bool)

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

func (*Client) GetSubjectType

func (o *Client) GetSubjectType() string

GetSubjectType returns the SubjectType field value if set, zero value otherwise.

func (*Client) GetSubjectTypeOk

func (o *Client) GetSubjectTypeOk() (*string, bool)

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

func (*Client) GetTlsClientAuthSanDns

func (o *Client) GetTlsClientAuthSanDns() string

GetTlsClientAuthSanDns returns the TlsClientAuthSanDns field value if set, zero value otherwise.

func (*Client) GetTlsClientAuthSanDnsOk

func (o *Client) GetTlsClientAuthSanDnsOk() (*string, bool)

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

func (*Client) GetTlsClientAuthSanEmail

func (o *Client) GetTlsClientAuthSanEmail() string

GetTlsClientAuthSanEmail returns the TlsClientAuthSanEmail field value if set, zero value otherwise.

func (*Client) GetTlsClientAuthSanEmailOk

func (o *Client) GetTlsClientAuthSanEmailOk() (*string, bool)

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

func (*Client) GetTlsClientAuthSanIp

func (o *Client) GetTlsClientAuthSanIp() string

GetTlsClientAuthSanIp returns the TlsClientAuthSanIp field value if set, zero value otherwise.

func (*Client) GetTlsClientAuthSanIpOk

func (o *Client) GetTlsClientAuthSanIpOk() (*string, bool)

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

func (*Client) GetTlsClientAuthSanUri

func (o *Client) GetTlsClientAuthSanUri() string

GetTlsClientAuthSanUri returns the TlsClientAuthSanUri field value if set, zero value otherwise.

func (*Client) GetTlsClientAuthSanUriOk

func (o *Client) GetTlsClientAuthSanUriOk() (*string, bool)

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

func (*Client) GetTlsClientAuthSubjectDn

func (o *Client) GetTlsClientAuthSubjectDn() string

GetTlsClientAuthSubjectDn returns the TlsClientAuthSubjectDn field value if set, zero value otherwise.

func (*Client) GetTlsClientAuthSubjectDnOk

func (o *Client) GetTlsClientAuthSubjectDnOk() (*string, bool)

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

func (*Client) GetTlsClientCertificateBoundAccessTokens

func (o *Client) GetTlsClientCertificateBoundAccessTokens() bool

GetTlsClientCertificateBoundAccessTokens returns the TlsClientCertificateBoundAccessTokens field value if set, zero value otherwise.

func (*Client) GetTlsClientCertificateBoundAccessTokensOk

func (o *Client) GetTlsClientCertificateBoundAccessTokensOk() (*bool, bool)

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

func (*Client) GetTokenAuthMethod

func (o *Client) GetTokenAuthMethod() string

GetTokenAuthMethod returns the TokenAuthMethod field value if set, zero value otherwise.

func (*Client) GetTokenAuthMethodOk

func (o *Client) GetTokenAuthMethodOk() (*string, bool)

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

func (*Client) GetTokenAuthSignAlg

func (o *Client) GetTokenAuthSignAlg() string

GetTokenAuthSignAlg returns the TokenAuthSignAlg field value if set, zero value otherwise.

func (*Client) GetTokenAuthSignAlgOk

func (o *Client) GetTokenAuthSignAlgOk() (*string, bool)

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

func (*Client) GetTosUri

func (o *Client) GetTosUri() string

GetTosUri returns the TosUri field value if set, zero value otherwise.

func (*Client) GetTosUriOk

func (o *Client) GetTosUriOk() (*string, bool)

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

func (*Client) GetTosUris

func (o *Client) GetTosUris() []TaggedValue

GetTosUris returns the TosUris field value if set, zero value otherwise.

func (*Client) GetTosUrisOk

func (o *Client) GetTosUrisOk() ([]TaggedValue, bool)

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

func (*Client) GetTrustAnchorId

func (o *Client) GetTrustAnchorId() string

GetTrustAnchorId returns the TrustAnchorId field value if set, zero value otherwise.

func (*Client) GetTrustAnchorIdOk

func (o *Client) GetTrustAnchorIdOk() (*string, bool)

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

func (*Client) GetTrustChain

func (o *Client) GetTrustChain() []string

GetTrustChain returns the TrustChain field value if set, zero value otherwise.

func (*Client) GetTrustChainExpiresAt

func (o *Client) GetTrustChainExpiresAt() int64

GetTrustChainExpiresAt returns the TrustChainExpiresAt field value if set, zero value otherwise.

func (*Client) GetTrustChainExpiresAtOk

func (o *Client) GetTrustChainExpiresAtOk() (*int64, bool)

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

func (*Client) GetTrustChainOk

func (o *Client) GetTrustChainOk() ([]string, bool)

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

func (*Client) GetTrustChainUpdatedAt

func (o *Client) GetTrustChainUpdatedAt() int64

GetTrustChainUpdatedAt returns the TrustChainUpdatedAt field value if set, zero value otherwise.

func (*Client) GetTrustChainUpdatedAtOk

func (o *Client) GetTrustChainUpdatedAtOk() (*int64, bool)

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

func (*Client) GetUserInfoEncryptionAlg

func (o *Client) GetUserInfoEncryptionAlg() string

GetUserInfoEncryptionAlg returns the UserInfoEncryptionAlg field value if set, zero value otherwise.

func (*Client) GetUserInfoEncryptionAlgOk

func (o *Client) GetUserInfoEncryptionAlgOk() (*string, bool)

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

func (*Client) GetUserInfoEncryptionEnc

func (o *Client) GetUserInfoEncryptionEnc() string

GetUserInfoEncryptionEnc returns the UserInfoEncryptionEnc field value if set, zero value otherwise.

func (*Client) GetUserInfoEncryptionEncOk

func (o *Client) GetUserInfoEncryptionEncOk() (*string, bool)

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

func (*Client) GetUserInfoSignAlg

func (o *Client) GetUserInfoSignAlg() string

GetUserInfoSignAlg returns the UserInfoSignAlg field value if set, zero value otherwise.

func (*Client) GetUserInfoSignAlgOk

func (o *Client) GetUserInfoSignAlgOk() (*string, bool)

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

func (*Client) HasApplicationType

func (o *Client) HasApplicationType() bool

HasApplicationType returns a boolean if a field has been set.

func (*Client) HasAttributes

func (o *Client) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*Client) HasAuthTimeRequired

func (o *Client) HasAuthTimeRequired() bool

HasAuthTimeRequired returns a boolean if a field has been set.

func (*Client) HasAuthorizationDetailsTypes

func (o *Client) HasAuthorizationDetailsTypes() bool

HasAuthorizationDetailsTypes returns a boolean if a field has been set.

func (*Client) HasAuthorizationEncryptionAlg

func (o *Client) HasAuthorizationEncryptionAlg() bool

HasAuthorizationEncryptionAlg returns a boolean if a field has been set.

func (*Client) HasAuthorizationEncryptionEnc

func (o *Client) HasAuthorizationEncryptionEnc() bool

HasAuthorizationEncryptionEnc returns a boolean if a field has been set.

func (*Client) HasAuthorizationSignAlg

func (o *Client) HasAuthorizationSignAlg() bool

HasAuthorizationSignAlg returns a boolean if a field has been set.

func (*Client) HasAutomaticallyRegistered

func (o *Client) HasAutomaticallyRegistered() bool

HasAutomaticallyRegistered returns a boolean if a field has been set.

func (*Client) HasBcDeliveryMode

func (o *Client) HasBcDeliveryMode() bool

HasBcDeliveryMode returns a boolean if a field has been set.

func (*Client) HasBcNotificationEndpoint

func (o *Client) HasBcNotificationEndpoint() bool

HasBcNotificationEndpoint returns a boolean if a field has been set.

func (*Client) HasBcRequestSignAlg

func (o *Client) HasBcRequestSignAlg() bool

HasBcRequestSignAlg returns a boolean if a field has been set.

func (*Client) HasBcUserCodeRequired

func (o *Client) HasBcUserCodeRequired() bool

HasBcUserCodeRequired returns a boolean if a field has been set.

func (*Client) HasClientId

func (o *Client) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*Client) HasClientIdAlias

func (o *Client) HasClientIdAlias() bool

HasClientIdAlias returns a boolean if a field has been set.

func (*Client) HasClientIdAliasEnabled

func (o *Client) HasClientIdAliasEnabled() bool

HasClientIdAliasEnabled returns a boolean if a field has been set.

func (*Client) HasClientName

func (o *Client) HasClientName() bool

HasClientName returns a boolean if a field has been set.

func (*Client) HasClientNames

func (o *Client) HasClientNames() bool

HasClientNames returns a boolean if a field has been set.

func (*Client) HasClientRegistrationTypes

func (o *Client) HasClientRegistrationTypes() bool

HasClientRegistrationTypes returns a boolean if a field has been set.

func (*Client) HasClientSecret

func (o *Client) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*Client) HasClientType

func (o *Client) HasClientType() bool

HasClientType returns a boolean if a field has been set.

func (*Client) HasClientUri

func (o *Client) HasClientUri() bool

HasClientUri returns a boolean if a field has been set.

func (*Client) HasClientUris

func (o *Client) HasClientUris() bool

HasClientUris returns a boolean if a field has been set.

func (*Client) HasContacts

func (o *Client) HasContacts() bool

HasContacts returns a boolean if a field has been set.

func (*Client) HasCreatedAt

func (o *Client) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Client) HasCredentialOfferEndpoint

func (o *Client) HasCredentialOfferEndpoint() bool

HasCredentialOfferEndpoint returns a boolean if a field has been set.

func (*Client) HasCustomMetadata

func (o *Client) HasCustomMetadata() bool

HasCustomMetadata returns a boolean if a field has been set.

func (*Client) HasDefaultAcrs

func (o *Client) HasDefaultAcrs() bool

HasDefaultAcrs returns a boolean if a field has been set.

func (*Client) HasDefaultMaxAge

func (o *Client) HasDefaultMaxAge() bool

HasDefaultMaxAge returns a boolean if a field has been set.

func (*Client) HasDerivedSectorIdentifier

func (o *Client) HasDerivedSectorIdentifier() bool

HasDerivedSectorIdentifier returns a boolean if a field has been set.

func (*Client) HasDescription

func (o *Client) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Client) HasDescriptions

func (o *Client) HasDescriptions() bool

HasDescriptions returns a boolean if a field has been set.

func (*Client) HasDeveloper

func (o *Client) HasDeveloper() bool

HasDeveloper returns a boolean if a field has been set.

func (*Client) HasDigestAlgorithm

func (o *Client) HasDigestAlgorithm() bool

HasDigestAlgorithm returns a boolean if a field has been set.

func (*Client) HasDpopRequired

func (o *Client) HasDpopRequired() bool

HasDpopRequired returns a boolean if a field has been set.

func (*Client) HasDynamicallyRegistered

func (o *Client) HasDynamicallyRegistered() bool

HasDynamicallyRegistered returns a boolean if a field has been set.

func (*Client) HasEntityId

func (o *Client) HasEntityId() bool

HasEntityId returns a boolean if a field has been set.

func (*Client) HasExplicitlyRegistered

func (o *Client) HasExplicitlyRegistered() bool

HasExplicitlyRegistered returns a boolean if a field has been set.

func (*Client) HasExtension

func (o *Client) HasExtension() bool

HasExtension returns a boolean if a field has been set.

func (*Client) HasFrontChannelRequestObjectEncryptionRequired

func (o *Client) HasFrontChannelRequestObjectEncryptionRequired() bool

HasFrontChannelRequestObjectEncryptionRequired returns a boolean if a field has been set.

func (*Client) HasGrantTypes

func (o *Client) HasGrantTypes() bool

HasGrantTypes returns a boolean if a field has been set.

func (*Client) HasIdTokenEncryptionAlg

func (o *Client) HasIdTokenEncryptionAlg() bool

HasIdTokenEncryptionAlg returns a boolean if a field has been set.

func (*Client) HasIdTokenEncryptionEnc

func (o *Client) HasIdTokenEncryptionEnc() bool

HasIdTokenEncryptionEnc returns a boolean if a field has been set.

func (*Client) HasIdTokenSignAlg

func (o *Client) HasIdTokenSignAlg() bool

HasIdTokenSignAlg returns a boolean if a field has been set.

func (*Client) HasJwks

func (o *Client) HasJwks() bool

HasJwks returns a boolean if a field has been set.

func (*Client) HasJwksUri

func (o *Client) HasJwksUri() bool

HasJwksUri returns a boolean if a field has been set.

func (*Client) HasLoginUri

func (o *Client) HasLoginUri() bool

HasLoginUri returns a boolean if a field has been set.

func (*Client) HasLogoUri

func (o *Client) HasLogoUri() bool

HasLogoUri returns a boolean if a field has been set.

func (*Client) HasLogoUris

func (o *Client) HasLogoUris() bool

HasLogoUris returns a boolean if a field has been set.

func (*Client) HasModifiedAt

func (o *Client) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*Client) HasNumber

func (o *Client) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*Client) HasOrganizationName

func (o *Client) HasOrganizationName() bool

HasOrganizationName returns a boolean if a field has been set.

func (*Client) HasParRequired

func (o *Client) HasParRequired() bool

HasParRequired returns a boolean if a field has been set.

func (*Client) HasPkceRequired

func (o *Client) HasPkceRequired() bool

HasPkceRequired returns a boolean if a field has been set.

func (*Client) HasPkceS256Required

func (o *Client) HasPkceS256Required() bool

HasPkceS256Required returns a boolean if a field has been set.

func (*Client) HasPolicyUri

func (o *Client) HasPolicyUri() bool

HasPolicyUri returns a boolean if a field has been set.

func (*Client) HasPolicyUris

func (o *Client) HasPolicyUris() bool

HasPolicyUris returns a boolean if a field has been set.

func (*Client) HasRedirectUris

func (o *Client) HasRedirectUris() bool

HasRedirectUris returns a boolean if a field has been set.

func (*Client) HasRegistrationAccessTokenHash

func (o *Client) HasRegistrationAccessTokenHash() bool

HasRegistrationAccessTokenHash returns a boolean if a field has been set.

func (*Client) HasRequestEncryptionAlg

func (o *Client) HasRequestEncryptionAlg() bool

HasRequestEncryptionAlg returns a boolean if a field has been set.

func (*Client) HasRequestEncryptionEnc

func (o *Client) HasRequestEncryptionEnc() bool

HasRequestEncryptionEnc returns a boolean if a field has been set.

func (*Client) HasRequestObjectEncryptionAlgMatchRequired

func (o *Client) HasRequestObjectEncryptionAlgMatchRequired() bool

HasRequestObjectEncryptionAlgMatchRequired returns a boolean if a field has been set.

func (*Client) HasRequestObjectEncryptionEncMatchRequired

func (o *Client) HasRequestObjectEncryptionEncMatchRequired() bool

HasRequestObjectEncryptionEncMatchRequired returns a boolean if a field has been set.

func (*Client) HasRequestObjectRequired

func (o *Client) HasRequestObjectRequired() bool

HasRequestObjectRequired returns a boolean if a field has been set.

func (*Client) HasRequestSignAlg

func (o *Client) HasRequestSignAlg() bool

HasRequestSignAlg returns a boolean if a field has been set.

func (*Client) HasRequestUris

func (o *Client) HasRequestUris() bool

HasRequestUris returns a boolean if a field has been set.

func (*Client) HasResponseTypes

func (o *Client) HasResponseTypes() bool

HasResponseTypes returns a boolean if a field has been set.

func (*Client) HasRsRequestSigned

func (o *Client) HasRsRequestSigned() bool

HasRsRequestSigned returns a boolean if a field has been set.

func (*Client) HasRsSignedRequestKeyId

func (o *Client) HasRsSignedRequestKeyId() bool

HasRsSignedRequestKeyId returns a boolean if a field has been set.

func (*Client) HasSectorIdentifier

func (o *Client) HasSectorIdentifier() bool

HasSectorIdentifier returns a boolean if a field has been set.

func (*Client) HasSectorIdentifierUri

func (o *Client) HasSectorIdentifierUri() bool

HasSectorIdentifierUri returns a boolean if a field has been set.

func (*Client) HasSelfSignedCertificateKeyId

func (o *Client) HasSelfSignedCertificateKeyId() bool

HasSelfSignedCertificateKeyId returns a boolean if a field has been set.

func (*Client) HasServiceNumber

func (o *Client) HasServiceNumber() bool

HasServiceNumber returns a boolean if a field has been set.

func (*Client) HasSignedJwksUri

func (o *Client) HasSignedJwksUri() bool

HasSignedJwksUri returns a boolean if a field has been set.

func (*Client) HasSingleAccessTokenPerSubject

func (o *Client) HasSingleAccessTokenPerSubject() bool

HasSingleAccessTokenPerSubject returns a boolean if a field has been set.

func (*Client) HasSoftwareId

func (o *Client) HasSoftwareId() bool

HasSoftwareId returns a boolean if a field has been set.

func (*Client) HasSoftwareVersion

func (o *Client) HasSoftwareVersion() bool

HasSoftwareVersion returns a boolean if a field has been set.

func (*Client) HasSubjectType

func (o *Client) HasSubjectType() bool

HasSubjectType returns a boolean if a field has been set.

func (*Client) HasTlsClientAuthSanDns

func (o *Client) HasTlsClientAuthSanDns() bool

HasTlsClientAuthSanDns returns a boolean if a field has been set.

func (*Client) HasTlsClientAuthSanEmail

func (o *Client) HasTlsClientAuthSanEmail() bool

HasTlsClientAuthSanEmail returns a boolean if a field has been set.

func (*Client) HasTlsClientAuthSanIp

func (o *Client) HasTlsClientAuthSanIp() bool

HasTlsClientAuthSanIp returns a boolean if a field has been set.

func (*Client) HasTlsClientAuthSanUri

func (o *Client) HasTlsClientAuthSanUri() bool

HasTlsClientAuthSanUri returns a boolean if a field has been set.

func (*Client) HasTlsClientAuthSubjectDn

func (o *Client) HasTlsClientAuthSubjectDn() bool

HasTlsClientAuthSubjectDn returns a boolean if a field has been set.

func (*Client) HasTlsClientCertificateBoundAccessTokens

func (o *Client) HasTlsClientCertificateBoundAccessTokens() bool

HasTlsClientCertificateBoundAccessTokens returns a boolean if a field has been set.

func (*Client) HasTokenAuthMethod

func (o *Client) HasTokenAuthMethod() bool

HasTokenAuthMethod returns a boolean if a field has been set.

func (*Client) HasTokenAuthSignAlg

func (o *Client) HasTokenAuthSignAlg() bool

HasTokenAuthSignAlg returns a boolean if a field has been set.

func (*Client) HasTosUri

func (o *Client) HasTosUri() bool

HasTosUri returns a boolean if a field has been set.

func (*Client) HasTosUris

func (o *Client) HasTosUris() bool

HasTosUris returns a boolean if a field has been set.

func (*Client) HasTrustAnchorId

func (o *Client) HasTrustAnchorId() bool

HasTrustAnchorId returns a boolean if a field has been set.

func (*Client) HasTrustChain

func (o *Client) HasTrustChain() bool

HasTrustChain returns a boolean if a field has been set.

func (*Client) HasTrustChainExpiresAt

func (o *Client) HasTrustChainExpiresAt() bool

HasTrustChainExpiresAt returns a boolean if a field has been set.

func (*Client) HasTrustChainUpdatedAt

func (o *Client) HasTrustChainUpdatedAt() bool

HasTrustChainUpdatedAt returns a boolean if a field has been set.

func (*Client) HasUserInfoEncryptionAlg

func (o *Client) HasUserInfoEncryptionAlg() bool

HasUserInfoEncryptionAlg returns a boolean if a field has been set.

func (*Client) HasUserInfoEncryptionEnc

func (o *Client) HasUserInfoEncryptionEnc() bool

HasUserInfoEncryptionEnc returns a boolean if a field has been set.

func (*Client) HasUserInfoSignAlg

func (o *Client) HasUserInfoSignAlg() bool

HasUserInfoSignAlg returns a boolean if a field has been set.

func (Client) MarshalJSON

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

func (*Client) SetApplicationType

func (o *Client) SetApplicationType(v string)

SetApplicationType gets a reference to the given string and assigns it to the ApplicationType field.

func (*Client) SetAttributes

func (o *Client) SetAttributes(v []Pair)

SetAttributes gets a reference to the given []Pair and assigns it to the Attributes field.

func (*Client) SetAuthTimeRequired

func (o *Client) SetAuthTimeRequired(v bool)

SetAuthTimeRequired gets a reference to the given bool and assigns it to the AuthTimeRequired field.

func (*Client) SetAuthorizationDetailsTypes

func (o *Client) SetAuthorizationDetailsTypes(v []string)

SetAuthorizationDetailsTypes gets a reference to the given []string and assigns it to the AuthorizationDetailsTypes field.

func (*Client) SetAuthorizationEncryptionAlg

func (o *Client) SetAuthorizationEncryptionAlg(v string)

SetAuthorizationEncryptionAlg gets a reference to the given string and assigns it to the AuthorizationEncryptionAlg field.

func (*Client) SetAuthorizationEncryptionEnc

func (o *Client) SetAuthorizationEncryptionEnc(v string)

SetAuthorizationEncryptionEnc gets a reference to the given string and assigns it to the AuthorizationEncryptionEnc field.

func (*Client) SetAuthorizationSignAlg

func (o *Client) SetAuthorizationSignAlg(v string)

SetAuthorizationSignAlg gets a reference to the given string and assigns it to the AuthorizationSignAlg field.

func (*Client) SetAutomaticallyRegistered

func (o *Client) SetAutomaticallyRegistered(v bool)

SetAutomaticallyRegistered gets a reference to the given bool and assigns it to the AutomaticallyRegistered field.

func (*Client) SetBcDeliveryMode

func (o *Client) SetBcDeliveryMode(v string)

SetBcDeliveryMode gets a reference to the given string and assigns it to the BcDeliveryMode field.

func (*Client) SetBcNotificationEndpoint

func (o *Client) SetBcNotificationEndpoint(v string)

SetBcNotificationEndpoint gets a reference to the given string and assigns it to the BcNotificationEndpoint field.

func (*Client) SetBcRequestSignAlg

func (o *Client) SetBcRequestSignAlg(v string)

SetBcRequestSignAlg gets a reference to the given string and assigns it to the BcRequestSignAlg field.

func (*Client) SetBcUserCodeRequired

func (o *Client) SetBcUserCodeRequired(v bool)

SetBcUserCodeRequired gets a reference to the given bool and assigns it to the BcUserCodeRequired field.

func (*Client) SetClientId

func (o *Client) SetClientId(v int64)

SetClientId gets a reference to the given int64 and assigns it to the ClientId field.

func (*Client) SetClientIdAlias

func (o *Client) SetClientIdAlias(v string)

SetClientIdAlias gets a reference to the given string and assigns it to the ClientIdAlias field.

func (*Client) SetClientIdAliasEnabled

func (o *Client) SetClientIdAliasEnabled(v bool)

SetClientIdAliasEnabled gets a reference to the given bool and assigns it to the ClientIdAliasEnabled field.

func (*Client) SetClientName

func (o *Client) SetClientName(v string)

SetClientName gets a reference to the given string and assigns it to the ClientName field.

func (*Client) SetClientNames

func (o *Client) SetClientNames(v []TaggedValue)

SetClientNames gets a reference to the given []TaggedValue and assigns it to the ClientNames field.

func (*Client) SetClientRegistrationTypes

func (o *Client) SetClientRegistrationTypes(v []string)

SetClientRegistrationTypes gets a reference to the given []string and assigns it to the ClientRegistrationTypes field.

func (*Client) SetClientSecret

func (o *Client) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*Client) SetClientType

func (o *Client) SetClientType(v string)

SetClientType gets a reference to the given string and assigns it to the ClientType field.

func (*Client) SetClientUri

func (o *Client) SetClientUri(v string)

SetClientUri gets a reference to the given string and assigns it to the ClientUri field.

func (*Client) SetClientUris

func (o *Client) SetClientUris(v []TaggedValue)

SetClientUris gets a reference to the given []TaggedValue and assigns it to the ClientUris field.

func (*Client) SetContacts

func (o *Client) SetContacts(v []string)

SetContacts gets a reference to the given []string and assigns it to the Contacts field.

func (*Client) SetCreatedAt

func (o *Client) SetCreatedAt(v int64)

SetCreatedAt gets a reference to the given int64 and assigns it to the CreatedAt field.

func (*Client) SetCredentialOfferEndpoint

func (o *Client) SetCredentialOfferEndpoint(v string)

SetCredentialOfferEndpoint gets a reference to the given string and assigns it to the CredentialOfferEndpoint field.

func (*Client) SetCustomMetadata

func (o *Client) SetCustomMetadata(v string)

SetCustomMetadata gets a reference to the given string and assigns it to the CustomMetadata field.

func (*Client) SetDefaultAcrs

func (o *Client) SetDefaultAcrs(v []string)

SetDefaultAcrs gets a reference to the given []string and assigns it to the DefaultAcrs field.

func (*Client) SetDefaultMaxAge

func (o *Client) SetDefaultMaxAge(v int32)

SetDefaultMaxAge gets a reference to the given int32 and assigns it to the DefaultMaxAge field.

func (*Client) SetDerivedSectorIdentifier

func (o *Client) SetDerivedSectorIdentifier(v string)

SetDerivedSectorIdentifier gets a reference to the given string and assigns it to the DerivedSectorIdentifier field.

func (*Client) SetDescription

func (o *Client) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Client) SetDescriptions

func (o *Client) SetDescriptions(v []TaggedValue)

SetDescriptions gets a reference to the given []TaggedValue and assigns it to the Descriptions field.

func (*Client) SetDeveloper

func (o *Client) SetDeveloper(v string)

SetDeveloper gets a reference to the given string and assigns it to the Developer field.

func (*Client) SetDigestAlgorithm

func (o *Client) SetDigestAlgorithm(v string)

SetDigestAlgorithm gets a reference to the given string and assigns it to the DigestAlgorithm field.

func (*Client) SetDpopRequired

func (o *Client) SetDpopRequired(v bool)

SetDpopRequired gets a reference to the given bool and assigns it to the DpopRequired field.

func (*Client) SetDynamicallyRegistered

func (o *Client) SetDynamicallyRegistered(v bool)

SetDynamicallyRegistered gets a reference to the given bool and assigns it to the DynamicallyRegistered field.

func (*Client) SetEntityId

func (o *Client) SetEntityId(v string)

SetEntityId gets a reference to the given string and assigns it to the EntityId field.

func (*Client) SetExplicitlyRegistered

func (o *Client) SetExplicitlyRegistered(v bool)

SetExplicitlyRegistered gets a reference to the given bool and assigns it to the ExplicitlyRegistered field.

func (*Client) SetExtension

func (o *Client) SetExtension(v ClientExtension)

SetExtension gets a reference to the given ClientExtension and assigns it to the Extension field.

func (*Client) SetFrontChannelRequestObjectEncryptionRequired

func (o *Client) SetFrontChannelRequestObjectEncryptionRequired(v bool)

SetFrontChannelRequestObjectEncryptionRequired gets a reference to the given bool and assigns it to the FrontChannelRequestObjectEncryptionRequired field.

func (*Client) SetGrantTypes

func (o *Client) SetGrantTypes(v []string)

SetGrantTypes gets a reference to the given []string and assigns it to the GrantTypes field.

func (*Client) SetIdTokenEncryptionAlg

func (o *Client) SetIdTokenEncryptionAlg(v string)

SetIdTokenEncryptionAlg gets a reference to the given string and assigns it to the IdTokenEncryptionAlg field.

func (*Client) SetIdTokenEncryptionEnc

func (o *Client) SetIdTokenEncryptionEnc(v string)

SetIdTokenEncryptionEnc gets a reference to the given string and assigns it to the IdTokenEncryptionEnc field.

func (*Client) SetIdTokenSignAlg

func (o *Client) SetIdTokenSignAlg(v string)

SetIdTokenSignAlg gets a reference to the given string and assigns it to the IdTokenSignAlg field.

func (*Client) SetJwks

func (o *Client) SetJwks(v string)

SetJwks gets a reference to the given string and assigns it to the Jwks field.

func (*Client) SetJwksUri

func (o *Client) SetJwksUri(v string)

SetJwksUri gets a reference to the given string and assigns it to the JwksUri field.

func (*Client) SetLoginUri

func (o *Client) SetLoginUri(v string)

SetLoginUri gets a reference to the given string and assigns it to the LoginUri field.

func (*Client) SetLogoUri

func (o *Client) SetLogoUri(v string)

SetLogoUri gets a reference to the given string and assigns it to the LogoUri field.

func (*Client) SetLogoUris

func (o *Client) SetLogoUris(v []TaggedValue)

SetLogoUris gets a reference to the given []TaggedValue and assigns it to the LogoUris field.

func (*Client) SetModifiedAt

func (o *Client) SetModifiedAt(v int64)

SetModifiedAt gets a reference to the given int64 and assigns it to the ModifiedAt field.

func (*Client) SetNumber

func (o *Client) SetNumber(v int32)

SetNumber gets a reference to the given int32 and assigns it to the Number field.

func (*Client) SetOrganizationName

func (o *Client) SetOrganizationName(v string)

SetOrganizationName gets a reference to the given string and assigns it to the OrganizationName field.

func (*Client) SetParRequired

func (o *Client) SetParRequired(v bool)

SetParRequired gets a reference to the given bool and assigns it to the ParRequired field.

func (*Client) SetPkceRequired

func (o *Client) SetPkceRequired(v bool)

SetPkceRequired gets a reference to the given bool and assigns it to the PkceRequired field.

func (*Client) SetPkceS256Required

func (o *Client) SetPkceS256Required(v bool)

SetPkceS256Required gets a reference to the given bool and assigns it to the PkceS256Required field.

func (*Client) SetPolicyUri

func (o *Client) SetPolicyUri(v string)

SetPolicyUri gets a reference to the given string and assigns it to the PolicyUri field.

func (*Client) SetPolicyUris

func (o *Client) SetPolicyUris(v []TaggedValue)

SetPolicyUris gets a reference to the given []TaggedValue and assigns it to the PolicyUris field.

func (*Client) SetRedirectUris

func (o *Client) SetRedirectUris(v []string)

SetRedirectUris gets a reference to the given []string and assigns it to the RedirectUris field.

func (*Client) SetRegistrationAccessTokenHash

func (o *Client) SetRegistrationAccessTokenHash(v string)

SetRegistrationAccessTokenHash gets a reference to the given string and assigns it to the RegistrationAccessTokenHash field.

func (*Client) SetRequestEncryptionAlg

func (o *Client) SetRequestEncryptionAlg(v string)

SetRequestEncryptionAlg gets a reference to the given string and assigns it to the RequestEncryptionAlg field.

func (*Client) SetRequestEncryptionEnc

func (o *Client) SetRequestEncryptionEnc(v string)

SetRequestEncryptionEnc gets a reference to the given string and assigns it to the RequestEncryptionEnc field.

func (*Client) SetRequestObjectEncryptionAlgMatchRequired

func (o *Client) SetRequestObjectEncryptionAlgMatchRequired(v bool)

SetRequestObjectEncryptionAlgMatchRequired gets a reference to the given bool and assigns it to the RequestObjectEncryptionAlgMatchRequired field.

func (*Client) SetRequestObjectEncryptionEncMatchRequired

func (o *Client) SetRequestObjectEncryptionEncMatchRequired(v bool)

SetRequestObjectEncryptionEncMatchRequired gets a reference to the given bool and assigns it to the RequestObjectEncryptionEncMatchRequired field.

func (*Client) SetRequestObjectRequired

func (o *Client) SetRequestObjectRequired(v bool)

SetRequestObjectRequired gets a reference to the given bool and assigns it to the RequestObjectRequired field.

func (*Client) SetRequestSignAlg

func (o *Client) SetRequestSignAlg(v string)

SetRequestSignAlg gets a reference to the given string and assigns it to the RequestSignAlg field.

func (*Client) SetRequestUris

func (o *Client) SetRequestUris(v []string)

SetRequestUris gets a reference to the given []string and assigns it to the RequestUris field.

func (*Client) SetResponseTypes

func (o *Client) SetResponseTypes(v []string)

SetResponseTypes gets a reference to the given []string and assigns it to the ResponseTypes field.

func (*Client) SetRsRequestSigned

func (o *Client) SetRsRequestSigned(v bool)

SetRsRequestSigned gets a reference to the given bool and assigns it to the RsRequestSigned field.

func (*Client) SetRsSignedRequestKeyId

func (o *Client) SetRsSignedRequestKeyId(v string)

SetRsSignedRequestKeyId gets a reference to the given string and assigns it to the RsSignedRequestKeyId field.

func (*Client) SetSectorIdentifier

func (o *Client) SetSectorIdentifier(v string)

SetSectorIdentifier gets a reference to the given string and assigns it to the SectorIdentifier field. Deprecated

func (*Client) SetSectorIdentifierUri

func (o *Client) SetSectorIdentifierUri(v string)

SetSectorIdentifierUri gets a reference to the given string and assigns it to the SectorIdentifierUri field.

func (*Client) SetSelfSignedCertificateKeyId

func (o *Client) SetSelfSignedCertificateKeyId(v string)

SetSelfSignedCertificateKeyId gets a reference to the given string and assigns it to the SelfSignedCertificateKeyId field.

func (*Client) SetServiceNumber

func (o *Client) SetServiceNumber(v int32)

SetServiceNumber gets a reference to the given int32 and assigns it to the ServiceNumber field.

func (*Client) SetSignedJwksUri

func (o *Client) SetSignedJwksUri(v string)

SetSignedJwksUri gets a reference to the given string and assigns it to the SignedJwksUri field.

func (*Client) SetSingleAccessTokenPerSubject

func (o *Client) SetSingleAccessTokenPerSubject(v bool)

SetSingleAccessTokenPerSubject gets a reference to the given bool and assigns it to the SingleAccessTokenPerSubject field.

func (*Client) SetSoftwareId

func (o *Client) SetSoftwareId(v string)

SetSoftwareId gets a reference to the given string and assigns it to the SoftwareId field.

func (*Client) SetSoftwareVersion

func (o *Client) SetSoftwareVersion(v string)

SetSoftwareVersion gets a reference to the given string and assigns it to the SoftwareVersion field.

func (*Client) SetSubjectType

func (o *Client) SetSubjectType(v string)

SetSubjectType gets a reference to the given string and assigns it to the SubjectType field.

func (*Client) SetTlsClientAuthSanDns

func (o *Client) SetTlsClientAuthSanDns(v string)

SetTlsClientAuthSanDns gets a reference to the given string and assigns it to the TlsClientAuthSanDns field.

func (*Client) SetTlsClientAuthSanEmail

func (o *Client) SetTlsClientAuthSanEmail(v string)

SetTlsClientAuthSanEmail gets a reference to the given string and assigns it to the TlsClientAuthSanEmail field.

func (*Client) SetTlsClientAuthSanIp

func (o *Client) SetTlsClientAuthSanIp(v string)

SetTlsClientAuthSanIp gets a reference to the given string and assigns it to the TlsClientAuthSanIp field.

func (*Client) SetTlsClientAuthSanUri

func (o *Client) SetTlsClientAuthSanUri(v string)

SetTlsClientAuthSanUri gets a reference to the given string and assigns it to the TlsClientAuthSanUri field.

func (*Client) SetTlsClientAuthSubjectDn

func (o *Client) SetTlsClientAuthSubjectDn(v string)

SetTlsClientAuthSubjectDn gets a reference to the given string and assigns it to the TlsClientAuthSubjectDn field.

func (*Client) SetTlsClientCertificateBoundAccessTokens

func (o *Client) SetTlsClientCertificateBoundAccessTokens(v bool)

SetTlsClientCertificateBoundAccessTokens gets a reference to the given bool and assigns it to the TlsClientCertificateBoundAccessTokens field.

func (*Client) SetTokenAuthMethod

func (o *Client) SetTokenAuthMethod(v string)

SetTokenAuthMethod gets a reference to the given string and assigns it to the TokenAuthMethod field.

func (*Client) SetTokenAuthSignAlg

func (o *Client) SetTokenAuthSignAlg(v string)

SetTokenAuthSignAlg gets a reference to the given string and assigns it to the TokenAuthSignAlg field.

func (*Client) SetTosUri

func (o *Client) SetTosUri(v string)

SetTosUri gets a reference to the given string and assigns it to the TosUri field.

func (*Client) SetTosUris

func (o *Client) SetTosUris(v []TaggedValue)

SetTosUris gets a reference to the given []TaggedValue and assigns it to the TosUris field.

func (*Client) SetTrustAnchorId

func (o *Client) SetTrustAnchorId(v string)

SetTrustAnchorId gets a reference to the given string and assigns it to the TrustAnchorId field.

func (*Client) SetTrustChain

func (o *Client) SetTrustChain(v []string)

SetTrustChain gets a reference to the given []string and assigns it to the TrustChain field.

func (*Client) SetTrustChainExpiresAt

func (o *Client) SetTrustChainExpiresAt(v int64)

SetTrustChainExpiresAt gets a reference to the given int64 and assigns it to the TrustChainExpiresAt field.

func (*Client) SetTrustChainUpdatedAt

func (o *Client) SetTrustChainUpdatedAt(v int64)

SetTrustChainUpdatedAt gets a reference to the given int64 and assigns it to the TrustChainUpdatedAt field.

func (*Client) SetUserInfoEncryptionAlg

func (o *Client) SetUserInfoEncryptionAlg(v string)

SetUserInfoEncryptionAlg gets a reference to the given string and assigns it to the UserInfoEncryptionAlg field.

func (*Client) SetUserInfoEncryptionEnc

func (o *Client) SetUserInfoEncryptionEnc(v string)

SetUserInfoEncryptionEnc gets a reference to the given string and assigns it to the UserInfoEncryptionEnc field.

func (*Client) SetUserInfoSignAlg

func (o *Client) SetUserInfoSignAlg(v string)

SetUserInfoSignAlg gets a reference to the given string and assigns it to the UserInfoSignAlg field.

type ClientAccess

type ClientAccess struct {
	Id              *int64   `json:"id,omitempty"`
	ClientId        *int64   `json:"clientId,omitempty"`
	Privileges      []string `json:"privileges,omitempty"`
	ServiceAccessId *int64   `json:"service_access_id,omitempty"`
}

ClientAccess struct for ClientAccess

func NewClientAccess

func NewClientAccess() *ClientAccess

NewClientAccess instantiates a new ClientAccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewClientAccessWithDefaults

func NewClientAccessWithDefaults() *ClientAccess

NewClientAccessWithDefaults instantiates a new ClientAccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ClientAccess) GetClientId

func (o *ClientAccess) GetClientId() int64

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*ClientAccess) GetClientIdOk

func (o *ClientAccess) GetClientIdOk() (*int64, bool)

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

func (*ClientAccess) GetId

func (o *ClientAccess) GetId() int64

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

func (*ClientAccess) GetIdOk

func (o *ClientAccess) GetIdOk() (*int64, bool)

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

func (*ClientAccess) GetPrivileges

func (o *ClientAccess) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*ClientAccess) GetPrivilegesOk

func (o *ClientAccess) GetPrivilegesOk() ([]string, bool)

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

func (*ClientAccess) GetServiceAccessId

func (o *ClientAccess) GetServiceAccessId() int64

GetServiceAccessId returns the ServiceAccessId field value if set, zero value otherwise.

func (*ClientAccess) GetServiceAccessIdOk

func (o *ClientAccess) GetServiceAccessIdOk() (*int64, bool)

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

func (*ClientAccess) HasClientId

func (o *ClientAccess) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*ClientAccess) HasId

func (o *ClientAccess) HasId() bool

HasId returns a boolean if a field has been set.

func (*ClientAccess) HasPrivileges

func (o *ClientAccess) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (*ClientAccess) HasServiceAccessId

func (o *ClientAccess) HasServiceAccessId() bool

HasServiceAccessId returns a boolean if a field has been set.

func (ClientAccess) MarshalJSON

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

func (*ClientAccess) SetClientId

func (o *ClientAccess) SetClientId(v int64)

SetClientId gets a reference to the given int64 and assigns it to the ClientId field.

func (*ClientAccess) SetId

func (o *ClientAccess) SetId(v int64)

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

func (*ClientAccess) SetPrivileges

func (o *ClientAccess) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*ClientAccess) SetServiceAccessId

func (o *ClientAccess) SetServiceAccessId(v int64)

SetServiceAccessId gets a reference to the given int64 and assigns it to the ServiceAccessId field.

type ClientAccessResponse

type ClientAccessResponse struct {
	ApiServerId    *int64   `json:"apiServerId,omitempty"`
	OrganizationId *int64   `json:"organizationId,omitempty"`
	UserId         *int64   `json:"userId,omitempty"`
	ServiceId      *int64   `json:"serviceId,omitempty"`
	ClientId       *int64   `json:"clientId,omitempty"`
	Privileges     []string `json:"privileges,omitempty"`
}

ClientAccessResponse struct for ClientAccessResponse

func NewClientAccessResponse

func NewClientAccessResponse() *ClientAccessResponse

NewClientAccessResponse instantiates a new ClientAccessResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewClientAccessResponseWithDefaults

func NewClientAccessResponseWithDefaults() *ClientAccessResponse

NewClientAccessResponseWithDefaults instantiates a new ClientAccessResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ClientAccessResponse) GetApiServerId

func (o *ClientAccessResponse) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value if set, zero value otherwise.

func (*ClientAccessResponse) GetApiServerIdOk

func (o *ClientAccessResponse) GetApiServerIdOk() (*int64, bool)

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

func (*ClientAccessResponse) GetClientId

func (o *ClientAccessResponse) GetClientId() int64

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*ClientAccessResponse) GetClientIdOk

func (o *ClientAccessResponse) GetClientIdOk() (*int64, bool)

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

func (*ClientAccessResponse) GetOrganizationId

func (o *ClientAccessResponse) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*ClientAccessResponse) GetOrganizationIdOk

func (o *ClientAccessResponse) GetOrganizationIdOk() (*int64, bool)

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

func (*ClientAccessResponse) GetPrivileges

func (o *ClientAccessResponse) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*ClientAccessResponse) GetPrivilegesOk

func (o *ClientAccessResponse) GetPrivilegesOk() ([]string, bool)

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

func (*ClientAccessResponse) GetServiceId

func (o *ClientAccessResponse) GetServiceId() int64

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*ClientAccessResponse) GetServiceIdOk

func (o *ClientAccessResponse) GetServiceIdOk() (*int64, bool)

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

func (*ClientAccessResponse) GetUserId

func (o *ClientAccessResponse) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*ClientAccessResponse) GetUserIdOk

func (o *ClientAccessResponse) GetUserIdOk() (*int64, bool)

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

func (*ClientAccessResponse) HasApiServerId

func (o *ClientAccessResponse) HasApiServerId() bool

HasApiServerId returns a boolean if a field has been set.

func (*ClientAccessResponse) HasClientId

func (o *ClientAccessResponse) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*ClientAccessResponse) HasOrganizationId

func (o *ClientAccessResponse) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*ClientAccessResponse) HasPrivileges

func (o *ClientAccessResponse) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (*ClientAccessResponse) HasServiceId

func (o *ClientAccessResponse) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*ClientAccessResponse) HasUserId

func (o *ClientAccessResponse) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (ClientAccessResponse) MarshalJSON

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

func (*ClientAccessResponse) SetApiServerId

func (o *ClientAccessResponse) SetApiServerId(v int64)

SetApiServerId gets a reference to the given int64 and assigns it to the ApiServerId field.

func (*ClientAccessResponse) SetClientId

func (o *ClientAccessResponse) SetClientId(v int64)

SetClientId gets a reference to the given int64 and assigns it to the ClientId field.

func (*ClientAccessResponse) SetOrganizationId

func (o *ClientAccessResponse) SetOrganizationId(v int64)

SetOrganizationId gets a reference to the given int64 and assigns it to the OrganizationId field.

func (*ClientAccessResponse) SetPrivileges

func (o *ClientAccessResponse) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*ClientAccessResponse) SetServiceId

func (o *ClientAccessResponse) SetServiceId(v int64)

SetServiceId gets a reference to the given int64 and assigns it to the ServiceId field.

func (*ClientAccessResponse) SetUserId

func (o *ClientAccessResponse) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

type ClientExtension

type ClientExtension struct {
	RequestableScopesEnabled *bool    `json:"requestableScopesEnabled,omitempty"`
	RequestableScopes        []string `json:"requestableScopes,omitempty"`
	AccessTokenDuration      *int64   `json:"accessTokenDuration,omitempty"`
	RefreshTokenDuration     *int64   `json:"refreshTokenDuration,omitempty"`
	TokenExchangePermitted   *bool    `json:"tokenExchangePermitted,omitempty"`
}

ClientExtension struct for ClientExtension

func NewClientExtension

func NewClientExtension() *ClientExtension

NewClientExtension instantiates a new ClientExtension object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewClientExtensionWithDefaults

func NewClientExtensionWithDefaults() *ClientExtension

NewClientExtensionWithDefaults instantiates a new ClientExtension object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ClientExtension) GetAccessTokenDuration

func (o *ClientExtension) GetAccessTokenDuration() int64

GetAccessTokenDuration returns the AccessTokenDuration field value if set, zero value otherwise.

func (*ClientExtension) GetAccessTokenDurationOk

func (o *ClientExtension) GetAccessTokenDurationOk() (*int64, bool)

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

func (*ClientExtension) GetRefreshTokenDuration

func (o *ClientExtension) GetRefreshTokenDuration() int64

GetRefreshTokenDuration returns the RefreshTokenDuration field value if set, zero value otherwise.

func (*ClientExtension) GetRefreshTokenDurationOk

func (o *ClientExtension) GetRefreshTokenDurationOk() (*int64, bool)

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

func (*ClientExtension) GetRequestableScopes

func (o *ClientExtension) GetRequestableScopes() []string

GetRequestableScopes returns the RequestableScopes field value if set, zero value otherwise.

func (*ClientExtension) GetRequestableScopesEnabled

func (o *ClientExtension) GetRequestableScopesEnabled() bool

GetRequestableScopesEnabled returns the RequestableScopesEnabled field value if set, zero value otherwise.

func (*ClientExtension) GetRequestableScopesEnabledOk

func (o *ClientExtension) GetRequestableScopesEnabledOk() (*bool, bool)

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

func (*ClientExtension) GetRequestableScopesOk

func (o *ClientExtension) GetRequestableScopesOk() ([]string, bool)

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

func (*ClientExtension) GetTokenExchangePermitted

func (o *ClientExtension) GetTokenExchangePermitted() bool

GetTokenExchangePermitted returns the TokenExchangePermitted field value if set, zero value otherwise.

func (*ClientExtension) GetTokenExchangePermittedOk

func (o *ClientExtension) GetTokenExchangePermittedOk() (*bool, bool)

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

func (*ClientExtension) HasAccessTokenDuration

func (o *ClientExtension) HasAccessTokenDuration() bool

HasAccessTokenDuration returns a boolean if a field has been set.

func (*ClientExtension) HasRefreshTokenDuration

func (o *ClientExtension) HasRefreshTokenDuration() bool

HasRefreshTokenDuration returns a boolean if a field has been set.

func (*ClientExtension) HasRequestableScopes

func (o *ClientExtension) HasRequestableScopes() bool

HasRequestableScopes returns a boolean if a field has been set.

func (*ClientExtension) HasRequestableScopesEnabled

func (o *ClientExtension) HasRequestableScopesEnabled() bool

HasRequestableScopesEnabled returns a boolean if a field has been set.

func (*ClientExtension) HasTokenExchangePermitted

func (o *ClientExtension) HasTokenExchangePermitted() bool

HasTokenExchangePermitted returns a boolean if a field has been set.

func (ClientExtension) MarshalJSON

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

func (*ClientExtension) SetAccessTokenDuration

func (o *ClientExtension) SetAccessTokenDuration(v int64)

SetAccessTokenDuration gets a reference to the given int64 and assigns it to the AccessTokenDuration field.

func (*ClientExtension) SetRefreshTokenDuration

func (o *ClientExtension) SetRefreshTokenDuration(v int64)

SetRefreshTokenDuration gets a reference to the given int64 and assigns it to the RefreshTokenDuration field.

func (*ClientExtension) SetRequestableScopes

func (o *ClientExtension) SetRequestableScopes(v []string)

SetRequestableScopes gets a reference to the given []string and assigns it to the RequestableScopes field.

func (*ClientExtension) SetRequestableScopesEnabled

func (o *ClientExtension) SetRequestableScopesEnabled(v bool)

SetRequestableScopesEnabled gets a reference to the given bool and assigns it to the RequestableScopesEnabled field.

func (*ClientExtension) SetTokenExchangePermitted

func (o *ClientExtension) SetTokenExchangePermitted(v bool)

SetTokenExchangePermitted gets a reference to the given bool and assigns it to the TokenExchangePermitted field.

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type CreateApiServerRequest

type CreateApiServerRequest struct {
	ApiServerUrl string `json:"apiServerUrl"`
	Description  string `json:"description"`
	OwnedBy      *int64 `json:"ownedBy,omitempty"`
}

CreateApiServerRequest struct for CreateApiServerRequest

func NewCreateApiServerRequest

func NewCreateApiServerRequest(apiServerUrl string, description string) *CreateApiServerRequest

NewCreateApiServerRequest instantiates a new CreateApiServerRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateApiServerRequestWithDefaults

func NewCreateApiServerRequestWithDefaults() *CreateApiServerRequest

NewCreateApiServerRequestWithDefaults instantiates a new CreateApiServerRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateApiServerRequest) GetApiServerUrl

func (o *CreateApiServerRequest) GetApiServerUrl() string

GetApiServerUrl returns the ApiServerUrl field value

func (*CreateApiServerRequest) GetApiServerUrlOk

func (o *CreateApiServerRequest) GetApiServerUrlOk() (*string, bool)

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

func (*CreateApiServerRequest) GetDescription

func (o *CreateApiServerRequest) GetDescription() string

GetDescription returns the Description field value

func (*CreateApiServerRequest) GetDescriptionOk

func (o *CreateApiServerRequest) GetDescriptionOk() (*string, bool)

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

func (*CreateApiServerRequest) GetOwnedBy

func (o *CreateApiServerRequest) GetOwnedBy() int64

GetOwnedBy returns the OwnedBy field value if set, zero value otherwise.

func (*CreateApiServerRequest) GetOwnedByOk

func (o *CreateApiServerRequest) GetOwnedByOk() (*int64, bool)

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

func (*CreateApiServerRequest) HasOwnedBy

func (o *CreateApiServerRequest) HasOwnedBy() bool

HasOwnedBy returns a boolean if a field has been set.

func (CreateApiServerRequest) MarshalJSON

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

func (*CreateApiServerRequest) SetApiServerUrl

func (o *CreateApiServerRequest) SetApiServerUrl(v string)

SetApiServerUrl sets field value

func (*CreateApiServerRequest) SetDescription

func (o *CreateApiServerRequest) SetDescription(v string)

SetDescription sets field value

func (*CreateApiServerRequest) SetOwnedBy

func (o *CreateApiServerRequest) SetOwnedBy(v int64)

SetOwnedBy gets a reference to the given int64 and assigns it to the OwnedBy field.

type CreateOrganizationTokenRequest

type CreateOrganizationTokenRequest struct {
	OrganizationId int64  `json:"organizationId"`
	Description    string `json:"description"`
}

CreateOrganizationTokenRequest struct for CreateOrganizationTokenRequest

func NewCreateOrganizationTokenRequest

func NewCreateOrganizationTokenRequest(organizationId int64, description string) *CreateOrganizationTokenRequest

NewCreateOrganizationTokenRequest instantiates a new CreateOrganizationTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateOrganizationTokenRequestWithDefaults

func NewCreateOrganizationTokenRequestWithDefaults() *CreateOrganizationTokenRequest

NewCreateOrganizationTokenRequestWithDefaults instantiates a new CreateOrganizationTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateOrganizationTokenRequest) GetDescription

func (o *CreateOrganizationTokenRequest) GetDescription() string

GetDescription returns the Description field value

func (*CreateOrganizationTokenRequest) GetDescriptionOk

func (o *CreateOrganizationTokenRequest) GetDescriptionOk() (*string, bool)

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

func (*CreateOrganizationTokenRequest) GetOrganizationId

func (o *CreateOrganizationTokenRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*CreateOrganizationTokenRequest) GetOrganizationIdOk

func (o *CreateOrganizationTokenRequest) GetOrganizationIdOk() (*int64, bool)

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

func (CreateOrganizationTokenRequest) MarshalJSON

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

func (*CreateOrganizationTokenRequest) SetDescription

func (o *CreateOrganizationTokenRequest) SetDescription(v string)

SetDescription sets field value

func (*CreateOrganizationTokenRequest) SetOrganizationId

func (o *CreateOrganizationTokenRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

type CreateServiceRequest

type CreateServiceRequest struct {
	ApiServerId    int64    `json:"apiServerId"`
	OrganizationId int64    `json:"organizationId"`
	Service        *Service `json:"service,omitempty"`
}

CreateServiceRequest struct for CreateServiceRequest

func NewCreateServiceRequest

func NewCreateServiceRequest(apiServerId int64, organizationId int64) *CreateServiceRequest

NewCreateServiceRequest instantiates a new CreateServiceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateServiceRequestWithDefaults

func NewCreateServiceRequestWithDefaults() *CreateServiceRequest

NewCreateServiceRequestWithDefaults instantiates a new CreateServiceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateServiceRequest) GetApiServerId

func (o *CreateServiceRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value

func (*CreateServiceRequest) GetApiServerIdOk

func (o *CreateServiceRequest) GetApiServerIdOk() (*int64, bool)

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

func (*CreateServiceRequest) GetOrganizationId

func (o *CreateServiceRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*CreateServiceRequest) GetOrganizationIdOk

func (o *CreateServiceRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*CreateServiceRequest) GetService

func (o *CreateServiceRequest) GetService() Service

GetService returns the Service field value if set, zero value otherwise.

func (*CreateServiceRequest) GetServiceOk

func (o *CreateServiceRequest) GetServiceOk() (*Service, bool)

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

func (*CreateServiceRequest) HasService

func (o *CreateServiceRequest) HasService() bool

HasService returns a boolean if a field has been set.

func (CreateServiceRequest) MarshalJSON

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

func (*CreateServiceRequest) SetApiServerId

func (o *CreateServiceRequest) SetApiServerId(v int64)

SetApiServerId sets field value

func (*CreateServiceRequest) SetOrganizationId

func (o *CreateServiceRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*CreateServiceRequest) SetService

func (o *CreateServiceRequest) SetService(v Service)

SetService gets a reference to the given Service and assigns it to the Service field.

type CreateServiceTokenRequest

type CreateServiceTokenRequest struct {
	ServiceId      int64  `json:"serviceId"`
	OrganizationId int64  `json:"organizationId"`
	ApiServerId    int64  `json:"apiServerId"`
	Description    string `json:"description"`
}

CreateServiceTokenRequest struct for CreateServiceTokenRequest

func NewCreateServiceTokenRequest

func NewCreateServiceTokenRequest(serviceId int64, organizationId int64, apiServerId int64, description string) *CreateServiceTokenRequest

NewCreateServiceTokenRequest instantiates a new CreateServiceTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateServiceTokenRequestWithDefaults

func NewCreateServiceTokenRequestWithDefaults() *CreateServiceTokenRequest

NewCreateServiceTokenRequestWithDefaults instantiates a new CreateServiceTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateServiceTokenRequest) GetApiServerId

func (o *CreateServiceTokenRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value

func (*CreateServiceTokenRequest) GetApiServerIdOk

func (o *CreateServiceTokenRequest) GetApiServerIdOk() (*int64, bool)

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

func (*CreateServiceTokenRequest) GetDescription

func (o *CreateServiceTokenRequest) GetDescription() string

GetDescription returns the Description field value

func (*CreateServiceTokenRequest) GetDescriptionOk

func (o *CreateServiceTokenRequest) GetDescriptionOk() (*string, bool)

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

func (*CreateServiceTokenRequest) GetOrganizationId

func (o *CreateServiceTokenRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*CreateServiceTokenRequest) GetOrganizationIdOk

func (o *CreateServiceTokenRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*CreateServiceTokenRequest) GetServiceId

func (o *CreateServiceTokenRequest) GetServiceId() int64

GetServiceId returns the ServiceId field value

func (*CreateServiceTokenRequest) GetServiceIdOk

func (o *CreateServiceTokenRequest) GetServiceIdOk() (*int64, bool)

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

func (CreateServiceTokenRequest) MarshalJSON

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

func (*CreateServiceTokenRequest) SetApiServerId

func (o *CreateServiceTokenRequest) SetApiServerId(v int64)

SetApiServerId sets field value

func (*CreateServiceTokenRequest) SetDescription

func (o *CreateServiceTokenRequest) SetDescription(v string)

SetDescription sets field value

func (*CreateServiceTokenRequest) SetOrganizationId

func (o *CreateServiceTokenRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*CreateServiceTokenRequest) SetServiceId

func (o *CreateServiceTokenRequest) SetServiceId(v int64)

SetServiceId sets field value

type CreateUserRequest

type CreateUserRequest struct {
	Email      string  `json:"email"`
	Password   string  `json:"password"`
	GivenName  *string `json:"givenName,omitempty"`
	FamilyName *string `json:"familyName,omitempty"`
}

CreateUserRequest struct for CreateUserRequest

func NewCreateUserRequest

func NewCreateUserRequest(email string, password string) *CreateUserRequest

NewCreateUserRequest instantiates a new CreateUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateUserRequestWithDefaults

func NewCreateUserRequestWithDefaults() *CreateUserRequest

NewCreateUserRequestWithDefaults instantiates a new CreateUserRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateUserRequest) GetEmail

func (o *CreateUserRequest) GetEmail() string

GetEmail returns the Email field value

func (*CreateUserRequest) GetEmailOk

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

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

func (*CreateUserRequest) GetFamilyName

func (o *CreateUserRequest) GetFamilyName() string

GetFamilyName returns the FamilyName field value if set, zero value otherwise.

func (*CreateUserRequest) GetFamilyNameOk

func (o *CreateUserRequest) GetFamilyNameOk() (*string, bool)

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

func (*CreateUserRequest) GetGivenName

func (o *CreateUserRequest) GetGivenName() string

GetGivenName returns the GivenName field value if set, zero value otherwise.

func (*CreateUserRequest) GetGivenNameOk

func (o *CreateUserRequest) GetGivenNameOk() (*string, bool)

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

func (*CreateUserRequest) GetPassword

func (o *CreateUserRequest) GetPassword() string

GetPassword returns the Password field value

func (*CreateUserRequest) GetPasswordOk

func (o *CreateUserRequest) GetPasswordOk() (*string, bool)

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

func (*CreateUserRequest) HasFamilyName

func (o *CreateUserRequest) HasFamilyName() bool

HasFamilyName returns a boolean if a field has been set.

func (*CreateUserRequest) HasGivenName

func (o *CreateUserRequest) HasGivenName() bool

HasGivenName returns a boolean if a field has been set.

func (CreateUserRequest) MarshalJSON

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

func (*CreateUserRequest) SetEmail

func (o *CreateUserRequest) SetEmail(v string)

SetEmail sets field value

func (*CreateUserRequest) SetFamilyName

func (o *CreateUserRequest) SetFamilyName(v string)

SetFamilyName gets a reference to the given string and assigns it to the FamilyName field.

func (*CreateUserRequest) SetGivenName

func (o *CreateUserRequest) SetGivenName(v string)

SetGivenName gets a reference to the given string and assigns it to the GivenName field.

func (*CreateUserRequest) SetPassword

func (o *CreateUserRequest) SetPassword(v string)

SetPassword sets field value

type CreateUserResponse

type CreateUserResponse struct {
	User *AuthleteUser `json:"user,omitempty"`
}

CreateUserResponse struct for CreateUserResponse

func NewCreateUserResponse

func NewCreateUserResponse() *CreateUserResponse

NewCreateUserResponse instantiates a new CreateUserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateUserResponseWithDefaults

func NewCreateUserResponseWithDefaults() *CreateUserResponse

NewCreateUserResponseWithDefaults instantiates a new CreateUserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateUserResponse) GetUser

func (o *CreateUserResponse) GetUser() AuthleteUser

GetUser returns the User field value if set, zero value otherwise.

func (*CreateUserResponse) GetUserOk

func (o *CreateUserResponse) GetUserOk() (*AuthleteUser, bool)

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

func (*CreateUserResponse) HasUser

func (o *CreateUserResponse) HasUser() bool

HasUser returns a boolean if a field has been set.

func (CreateUserResponse) MarshalJSON

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

func (*CreateUserResponse) SetUser

func (o *CreateUserResponse) SetUser(v AuthleteUser)

SetUser gets a reference to the given AuthleteUser and assigns it to the User field.

type CredentialIssuerMetadata

type CredentialIssuerMetadata struct {
	CredentialIssuer           *string `json:"credentialIssuer,omitempty"`
	AuthorizationServer        *string `json:"authorizationServer,omitempty"`
	CredentialEndpoint         *string `json:"credentialEndpoint,omitempty"`
	BatchCredentialEndpoint    *string `json:"batchCredentialEndpoint,omitempty"`
	DeferredCredentialEndpoint *string `json:"deferredCredentialEndpoint,omitempty"`
	CredentialsSupported       *string `json:"credentialsSupported,omitempty"`
	Empty                      *bool   `json:"empty,omitempty"`
}

CredentialIssuerMetadata struct for CredentialIssuerMetadata

func NewCredentialIssuerMetadata

func NewCredentialIssuerMetadata() *CredentialIssuerMetadata

NewCredentialIssuerMetadata instantiates a new CredentialIssuerMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCredentialIssuerMetadataWithDefaults

func NewCredentialIssuerMetadataWithDefaults() *CredentialIssuerMetadata

NewCredentialIssuerMetadataWithDefaults instantiates a new CredentialIssuerMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CredentialIssuerMetadata) GetAuthorizationServer

func (o *CredentialIssuerMetadata) GetAuthorizationServer() string

GetAuthorizationServer returns the AuthorizationServer field value if set, zero value otherwise.

func (*CredentialIssuerMetadata) GetAuthorizationServerOk

func (o *CredentialIssuerMetadata) GetAuthorizationServerOk() (*string, bool)

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

func (*CredentialIssuerMetadata) GetBatchCredentialEndpoint

func (o *CredentialIssuerMetadata) GetBatchCredentialEndpoint() string

GetBatchCredentialEndpoint returns the BatchCredentialEndpoint field value if set, zero value otherwise.

func (*CredentialIssuerMetadata) GetBatchCredentialEndpointOk

func (o *CredentialIssuerMetadata) GetBatchCredentialEndpointOk() (*string, bool)

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

func (*CredentialIssuerMetadata) GetCredentialEndpoint

func (o *CredentialIssuerMetadata) GetCredentialEndpoint() string

GetCredentialEndpoint returns the CredentialEndpoint field value if set, zero value otherwise.

func (*CredentialIssuerMetadata) GetCredentialEndpointOk

func (o *CredentialIssuerMetadata) GetCredentialEndpointOk() (*string, bool)

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

func (*CredentialIssuerMetadata) GetCredentialIssuer

func (o *CredentialIssuerMetadata) GetCredentialIssuer() string

GetCredentialIssuer returns the CredentialIssuer field value if set, zero value otherwise.

func (*CredentialIssuerMetadata) GetCredentialIssuerOk

func (o *CredentialIssuerMetadata) GetCredentialIssuerOk() (*string, bool)

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

func (*CredentialIssuerMetadata) GetCredentialsSupported

func (o *CredentialIssuerMetadata) GetCredentialsSupported() string

GetCredentialsSupported returns the CredentialsSupported field value if set, zero value otherwise.

func (*CredentialIssuerMetadata) GetCredentialsSupportedOk

func (o *CredentialIssuerMetadata) GetCredentialsSupportedOk() (*string, bool)

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

func (*CredentialIssuerMetadata) GetDeferredCredentialEndpoint

func (o *CredentialIssuerMetadata) GetDeferredCredentialEndpoint() string

GetDeferredCredentialEndpoint returns the DeferredCredentialEndpoint field value if set, zero value otherwise.

func (*CredentialIssuerMetadata) GetDeferredCredentialEndpointOk

func (o *CredentialIssuerMetadata) GetDeferredCredentialEndpointOk() (*string, bool)

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

func (*CredentialIssuerMetadata) GetEmpty

func (o *CredentialIssuerMetadata) GetEmpty() bool

GetEmpty returns the Empty field value if set, zero value otherwise.

func (*CredentialIssuerMetadata) GetEmptyOk

func (o *CredentialIssuerMetadata) GetEmptyOk() (*bool, bool)

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

func (*CredentialIssuerMetadata) HasAuthorizationServer

func (o *CredentialIssuerMetadata) HasAuthorizationServer() bool

HasAuthorizationServer returns a boolean if a field has been set.

func (*CredentialIssuerMetadata) HasBatchCredentialEndpoint

func (o *CredentialIssuerMetadata) HasBatchCredentialEndpoint() bool

HasBatchCredentialEndpoint returns a boolean if a field has been set.

func (*CredentialIssuerMetadata) HasCredentialEndpoint

func (o *CredentialIssuerMetadata) HasCredentialEndpoint() bool

HasCredentialEndpoint returns a boolean if a field has been set.

func (*CredentialIssuerMetadata) HasCredentialIssuer

func (o *CredentialIssuerMetadata) HasCredentialIssuer() bool

HasCredentialIssuer returns a boolean if a field has been set.

func (*CredentialIssuerMetadata) HasCredentialsSupported

func (o *CredentialIssuerMetadata) HasCredentialsSupported() bool

HasCredentialsSupported returns a boolean if a field has been set.

func (*CredentialIssuerMetadata) HasDeferredCredentialEndpoint

func (o *CredentialIssuerMetadata) HasDeferredCredentialEndpoint() bool

HasDeferredCredentialEndpoint returns a boolean if a field has been set.

func (*CredentialIssuerMetadata) HasEmpty

func (o *CredentialIssuerMetadata) HasEmpty() bool

HasEmpty returns a boolean if a field has been set.

func (CredentialIssuerMetadata) MarshalJSON

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

func (*CredentialIssuerMetadata) SetAuthorizationServer

func (o *CredentialIssuerMetadata) SetAuthorizationServer(v string)

SetAuthorizationServer gets a reference to the given string and assigns it to the AuthorizationServer field.

func (*CredentialIssuerMetadata) SetBatchCredentialEndpoint

func (o *CredentialIssuerMetadata) SetBatchCredentialEndpoint(v string)

SetBatchCredentialEndpoint gets a reference to the given string and assigns it to the BatchCredentialEndpoint field.

func (*CredentialIssuerMetadata) SetCredentialEndpoint

func (o *CredentialIssuerMetadata) SetCredentialEndpoint(v string)

SetCredentialEndpoint gets a reference to the given string and assigns it to the CredentialEndpoint field.

func (*CredentialIssuerMetadata) SetCredentialIssuer

func (o *CredentialIssuerMetadata) SetCredentialIssuer(v string)

SetCredentialIssuer gets a reference to the given string and assigns it to the CredentialIssuer field.

func (*CredentialIssuerMetadata) SetCredentialsSupported

func (o *CredentialIssuerMetadata) SetCredentialsSupported(v string)

SetCredentialsSupported gets a reference to the given string and assigns it to the CredentialsSupported field.

func (*CredentialIssuerMetadata) SetDeferredCredentialEndpoint

func (o *CredentialIssuerMetadata) SetDeferredCredentialEndpoint(v string)

SetDeferredCredentialEndpoint gets a reference to the given string and assigns it to the DeferredCredentialEndpoint field.

func (*CredentialIssuerMetadata) SetEmpty

func (o *CredentialIssuerMetadata) SetEmpty(v bool)

SetEmpty gets a reference to the given bool and assigns it to the Empty field.

type DeleteOrganizationTokenRequest

type DeleteOrganizationTokenRequest struct {
	OrganizationId *int64  `json:"organizationId,omitempty"`
	TokenId        *string `json:"tokenId,omitempty"`
	Description    *string `json:"description,omitempty"`
}

DeleteOrganizationTokenRequest struct for DeleteOrganizationTokenRequest

func NewDeleteOrganizationTokenRequest

func NewDeleteOrganizationTokenRequest() *DeleteOrganizationTokenRequest

NewDeleteOrganizationTokenRequest instantiates a new DeleteOrganizationTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeleteOrganizationTokenRequestWithDefaults

func NewDeleteOrganizationTokenRequestWithDefaults() *DeleteOrganizationTokenRequest

NewDeleteOrganizationTokenRequestWithDefaults instantiates a new DeleteOrganizationTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeleteOrganizationTokenRequest) GetDescription

func (o *DeleteOrganizationTokenRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*DeleteOrganizationTokenRequest) GetDescriptionOk

func (o *DeleteOrganizationTokenRequest) GetDescriptionOk() (*string, bool)

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

func (*DeleteOrganizationTokenRequest) GetOrganizationId

func (o *DeleteOrganizationTokenRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*DeleteOrganizationTokenRequest) GetOrganizationIdOk

func (o *DeleteOrganizationTokenRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*DeleteOrganizationTokenRequest) GetTokenId

func (o *DeleteOrganizationTokenRequest) GetTokenId() string

GetTokenId returns the TokenId field value if set, zero value otherwise.

func (*DeleteOrganizationTokenRequest) GetTokenIdOk

func (o *DeleteOrganizationTokenRequest) GetTokenIdOk() (*string, bool)

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

func (*DeleteOrganizationTokenRequest) HasDescription

func (o *DeleteOrganizationTokenRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DeleteOrganizationTokenRequest) HasOrganizationId

func (o *DeleteOrganizationTokenRequest) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*DeleteOrganizationTokenRequest) HasTokenId

func (o *DeleteOrganizationTokenRequest) HasTokenId() bool

HasTokenId returns a boolean if a field has been set.

func (DeleteOrganizationTokenRequest) MarshalJSON

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

func (*DeleteOrganizationTokenRequest) SetDescription

func (o *DeleteOrganizationTokenRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*DeleteOrganizationTokenRequest) SetOrganizationId

func (o *DeleteOrganizationTokenRequest) SetOrganizationId(v int64)

SetOrganizationId gets a reference to the given int64 and assigns it to the OrganizationId field.

func (*DeleteOrganizationTokenRequest) SetTokenId

func (o *DeleteOrganizationTokenRequest) SetTokenId(v string)

SetTokenId gets a reference to the given string and assigns it to the TokenId field.

type DeleteServiceRequest

type DeleteServiceRequest struct {
	ApiServerId    int64 `json:"apiServerId"`
	OrganizationId int64 `json:"organizationId"`
	ServiceId      int64 `json:"serviceId"`
}

DeleteServiceRequest struct for DeleteServiceRequest

func NewDeleteServiceRequest

func NewDeleteServiceRequest(apiServerId int64, organizationId int64, serviceId int64) *DeleteServiceRequest

NewDeleteServiceRequest instantiates a new DeleteServiceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeleteServiceRequestWithDefaults

func NewDeleteServiceRequestWithDefaults() *DeleteServiceRequest

NewDeleteServiceRequestWithDefaults instantiates a new DeleteServiceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeleteServiceRequest) GetApiServerId

func (o *DeleteServiceRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value

func (*DeleteServiceRequest) GetApiServerIdOk

func (o *DeleteServiceRequest) GetApiServerIdOk() (*int64, bool)

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

func (*DeleteServiceRequest) GetOrganizationId

func (o *DeleteServiceRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*DeleteServiceRequest) GetOrganizationIdOk

func (o *DeleteServiceRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*DeleteServiceRequest) GetServiceId

func (o *DeleteServiceRequest) GetServiceId() int64

GetServiceId returns the ServiceId field value

func (*DeleteServiceRequest) GetServiceIdOk

func (o *DeleteServiceRequest) GetServiceIdOk() (*int64, bool)

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

func (DeleteServiceRequest) MarshalJSON

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

func (*DeleteServiceRequest) SetApiServerId

func (o *DeleteServiceRequest) SetApiServerId(v int64)

SetApiServerId sets field value

func (*DeleteServiceRequest) SetOrganizationId

func (o *DeleteServiceRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*DeleteServiceRequest) SetServiceId

func (o *DeleteServiceRequest) SetServiceId(v int64)

SetServiceId sets field value

type DeleteServiceTokenRequest

type DeleteServiceTokenRequest struct {
	ServiceId      *int64  `json:"serviceId,omitempty"`
	OrganizationId *int64  `json:"organizationId,omitempty"`
	ApiServerId    *int64  `json:"apiServerId,omitempty"`
	TokenId        *string `json:"tokenId,omitempty"`
	Description    *string `json:"description,omitempty"`
}

DeleteServiceTokenRequest struct for DeleteServiceTokenRequest

func NewDeleteServiceTokenRequest

func NewDeleteServiceTokenRequest() *DeleteServiceTokenRequest

NewDeleteServiceTokenRequest instantiates a new DeleteServiceTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDeleteServiceTokenRequestWithDefaults

func NewDeleteServiceTokenRequestWithDefaults() *DeleteServiceTokenRequest

NewDeleteServiceTokenRequestWithDefaults instantiates a new DeleteServiceTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DeleteServiceTokenRequest) GetApiServerId

func (o *DeleteServiceTokenRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value if set, zero value otherwise.

func (*DeleteServiceTokenRequest) GetApiServerIdOk

func (o *DeleteServiceTokenRequest) GetApiServerIdOk() (*int64, bool)

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

func (*DeleteServiceTokenRequest) GetDescription

func (o *DeleteServiceTokenRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*DeleteServiceTokenRequest) GetDescriptionOk

func (o *DeleteServiceTokenRequest) GetDescriptionOk() (*string, bool)

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

func (*DeleteServiceTokenRequest) GetOrganizationId

func (o *DeleteServiceTokenRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*DeleteServiceTokenRequest) GetOrganizationIdOk

func (o *DeleteServiceTokenRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*DeleteServiceTokenRequest) GetServiceId

func (o *DeleteServiceTokenRequest) GetServiceId() int64

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*DeleteServiceTokenRequest) GetServiceIdOk

func (o *DeleteServiceTokenRequest) GetServiceIdOk() (*int64, bool)

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

func (*DeleteServiceTokenRequest) GetTokenId

func (o *DeleteServiceTokenRequest) GetTokenId() string

GetTokenId returns the TokenId field value if set, zero value otherwise.

func (*DeleteServiceTokenRequest) GetTokenIdOk

func (o *DeleteServiceTokenRequest) GetTokenIdOk() (*string, bool)

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

func (*DeleteServiceTokenRequest) HasApiServerId

func (o *DeleteServiceTokenRequest) HasApiServerId() bool

HasApiServerId returns a boolean if a field has been set.

func (*DeleteServiceTokenRequest) HasDescription

func (o *DeleteServiceTokenRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DeleteServiceTokenRequest) HasOrganizationId

func (o *DeleteServiceTokenRequest) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*DeleteServiceTokenRequest) HasServiceId

func (o *DeleteServiceTokenRequest) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*DeleteServiceTokenRequest) HasTokenId

func (o *DeleteServiceTokenRequest) HasTokenId() bool

HasTokenId returns a boolean if a field has been set.

func (DeleteServiceTokenRequest) MarshalJSON

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

func (*DeleteServiceTokenRequest) SetApiServerId

func (o *DeleteServiceTokenRequest) SetApiServerId(v int64)

SetApiServerId gets a reference to the given int64 and assigns it to the ApiServerId field.

func (*DeleteServiceTokenRequest) SetDescription

func (o *DeleteServiceTokenRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*DeleteServiceTokenRequest) SetOrganizationId

func (o *DeleteServiceTokenRequest) SetOrganizationId(v int64)

SetOrganizationId gets a reference to the given int64 and assigns it to the OrganizationId field.

func (*DeleteServiceTokenRequest) SetServiceId

func (o *DeleteServiceTokenRequest) SetServiceId(v int64)

SetServiceId gets a reference to the given int64 and assigns it to the ServiceId field.

func (*DeleteServiceTokenRequest) SetTokenId

func (o *DeleteServiceTokenRequest) SetTokenId(v string)

SetTokenId gets a reference to the given string and assigns it to the TokenId field.

type DiscoveryEndpointApiService

type DiscoveryEndpointApiService service

DiscoveryEndpointApiService DiscoveryEndpointApi service

func (*DiscoveryEndpointApiService) GetConfiguration

GetConfiguration Method for GetConfiguration

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

func (*DiscoveryEndpointApiService) GetConfigurationExecute

Execute executes the request

@return string

type DynamicScope

type DynamicScope struct {
	Name  *string `json:"name,omitempty"`
	Value *string `json:"value,omitempty"`
}

DynamicScope struct for DynamicScope

func NewDynamicScope

func NewDynamicScope() *DynamicScope

NewDynamicScope instantiates a new DynamicScope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDynamicScopeWithDefaults

func NewDynamicScopeWithDefaults() *DynamicScope

NewDynamicScopeWithDefaults instantiates a new DynamicScope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DynamicScope) GetName

func (o *DynamicScope) GetName() string

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

func (*DynamicScope) GetNameOk

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

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

func (*DynamicScope) GetValue

func (o *DynamicScope) GetValue() string

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

func (*DynamicScope) GetValueOk

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

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

func (*DynamicScope) HasName

func (o *DynamicScope) HasName() bool

HasName returns a boolean if a field has been set.

func (*DynamicScope) HasValue

func (o *DynamicScope) HasValue() bool

HasValue returns a boolean if a field has been set.

func (DynamicScope) MarshalJSON

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

func (*DynamicScope) SetName

func (o *DynamicScope) SetName(v string)

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

func (*DynamicScope) SetValue

func (o *DynamicScope) SetValue(v string)

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

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GetOrganizationTokensRequest

type GetOrganizationTokensRequest struct {
	OrganizationId int64 `json:"organizationId"`
}

GetOrganizationTokensRequest struct for GetOrganizationTokensRequest

func NewGetOrganizationTokensRequest

func NewGetOrganizationTokensRequest(organizationId int64) *GetOrganizationTokensRequest

NewGetOrganizationTokensRequest instantiates a new GetOrganizationTokensRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetOrganizationTokensRequestWithDefaults

func NewGetOrganizationTokensRequestWithDefaults() *GetOrganizationTokensRequest

NewGetOrganizationTokensRequestWithDefaults instantiates a new GetOrganizationTokensRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetOrganizationTokensRequest) GetOrganizationId

func (o *GetOrganizationTokensRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*GetOrganizationTokensRequest) GetOrganizationIdOk

func (o *GetOrganizationTokensRequest) GetOrganizationIdOk() (*int64, bool)

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

func (GetOrganizationTokensRequest) MarshalJSON

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

func (*GetOrganizationTokensRequest) SetOrganizationId

func (o *GetOrganizationTokensRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

type GetServiceTokensRequest

type GetServiceTokensRequest struct {
	ServiceId      int64 `json:"serviceId"`
	OrganizationId int64 `json:"organizationId"`
	ApiServerId    int64 `json:"apiServerId"`
}

GetServiceTokensRequest struct for GetServiceTokensRequest

func NewGetServiceTokensRequest

func NewGetServiceTokensRequest(serviceId int64, organizationId int64, apiServerId int64) *GetServiceTokensRequest

NewGetServiceTokensRequest instantiates a new GetServiceTokensRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetServiceTokensRequestWithDefaults

func NewGetServiceTokensRequestWithDefaults() *GetServiceTokensRequest

NewGetServiceTokensRequestWithDefaults instantiates a new GetServiceTokensRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetServiceTokensRequest) GetApiServerId

func (o *GetServiceTokensRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value

func (*GetServiceTokensRequest) GetApiServerIdOk

func (o *GetServiceTokensRequest) GetApiServerIdOk() (*int64, bool)

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

func (*GetServiceTokensRequest) GetOrganizationId

func (o *GetServiceTokensRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*GetServiceTokensRequest) GetOrganizationIdOk

func (o *GetServiceTokensRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*GetServiceTokensRequest) GetServiceId

func (o *GetServiceTokensRequest) GetServiceId() int64

GetServiceId returns the ServiceId field value

func (*GetServiceTokensRequest) GetServiceIdOk

func (o *GetServiceTokensRequest) GetServiceIdOk() (*int64, bool)

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

func (GetServiceTokensRequest) MarshalJSON

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

func (*GetServiceTokensRequest) SetApiServerId

func (o *GetServiceTokensRequest) SetApiServerId(v int64)

SetApiServerId sets field value

func (*GetServiceTokensRequest) SetOrganizationId

func (o *GetServiceTokensRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*GetServiceTokensRequest) SetServiceId

func (o *GetServiceTokensRequest) SetServiceId(v int64)

SetServiceId sets field value

type GoogleAuthenticatorConfig

type GoogleAuthenticatorConfig struct {
	TimeStepSizeInMillis *int64  `json:"timeStepSizeInMillis,omitempty"`
	WindowSize           *int32  `json:"windowSize,omitempty"`
	CodeDigits           *int32  `json:"codeDigits,omitempty"`
	NumberOfScratchCodes *int32  `json:"numberOfScratchCodes,omitempty"`
	KeyModulus           *int32  `json:"keyModulus,omitempty"`
	SecretBits           *int32  `json:"secretBits,omitempty"`
	KeyRepresentation    *string `json:"keyRepresentation,omitempty"`
	HmacHashFunction     *string `json:"hmacHashFunction,omitempty"`
}

GoogleAuthenticatorConfig struct for GoogleAuthenticatorConfig

func NewGoogleAuthenticatorConfig

func NewGoogleAuthenticatorConfig() *GoogleAuthenticatorConfig

NewGoogleAuthenticatorConfig instantiates a new GoogleAuthenticatorConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGoogleAuthenticatorConfigWithDefaults

func NewGoogleAuthenticatorConfigWithDefaults() *GoogleAuthenticatorConfig

NewGoogleAuthenticatorConfigWithDefaults instantiates a new GoogleAuthenticatorConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GoogleAuthenticatorConfig) GetCodeDigits

func (o *GoogleAuthenticatorConfig) GetCodeDigits() int32

GetCodeDigits returns the CodeDigits field value if set, zero value otherwise.

func (*GoogleAuthenticatorConfig) GetCodeDigitsOk

func (o *GoogleAuthenticatorConfig) GetCodeDigitsOk() (*int32, bool)

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

func (*GoogleAuthenticatorConfig) GetHmacHashFunction

func (o *GoogleAuthenticatorConfig) GetHmacHashFunction() string

GetHmacHashFunction returns the HmacHashFunction field value if set, zero value otherwise.

func (*GoogleAuthenticatorConfig) GetHmacHashFunctionOk

func (o *GoogleAuthenticatorConfig) GetHmacHashFunctionOk() (*string, bool)

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

func (*GoogleAuthenticatorConfig) GetKeyModulus

func (o *GoogleAuthenticatorConfig) GetKeyModulus() int32

GetKeyModulus returns the KeyModulus field value if set, zero value otherwise.

func (*GoogleAuthenticatorConfig) GetKeyModulusOk

func (o *GoogleAuthenticatorConfig) GetKeyModulusOk() (*int32, bool)

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

func (*GoogleAuthenticatorConfig) GetKeyRepresentation

func (o *GoogleAuthenticatorConfig) GetKeyRepresentation() string

GetKeyRepresentation returns the KeyRepresentation field value if set, zero value otherwise.

func (*GoogleAuthenticatorConfig) GetKeyRepresentationOk

func (o *GoogleAuthenticatorConfig) GetKeyRepresentationOk() (*string, bool)

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

func (*GoogleAuthenticatorConfig) GetNumberOfScratchCodes

func (o *GoogleAuthenticatorConfig) GetNumberOfScratchCodes() int32

GetNumberOfScratchCodes returns the NumberOfScratchCodes field value if set, zero value otherwise.

func (*GoogleAuthenticatorConfig) GetNumberOfScratchCodesOk

func (o *GoogleAuthenticatorConfig) GetNumberOfScratchCodesOk() (*int32, bool)

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

func (*GoogleAuthenticatorConfig) GetSecretBits

func (o *GoogleAuthenticatorConfig) GetSecretBits() int32

GetSecretBits returns the SecretBits field value if set, zero value otherwise.

func (*GoogleAuthenticatorConfig) GetSecretBitsOk

func (o *GoogleAuthenticatorConfig) GetSecretBitsOk() (*int32, bool)

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

func (*GoogleAuthenticatorConfig) GetTimeStepSizeInMillis

func (o *GoogleAuthenticatorConfig) GetTimeStepSizeInMillis() int64

GetTimeStepSizeInMillis returns the TimeStepSizeInMillis field value if set, zero value otherwise.

func (*GoogleAuthenticatorConfig) GetTimeStepSizeInMillisOk

func (o *GoogleAuthenticatorConfig) GetTimeStepSizeInMillisOk() (*int64, bool)

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

func (*GoogleAuthenticatorConfig) GetWindowSize

func (o *GoogleAuthenticatorConfig) GetWindowSize() int32

GetWindowSize returns the WindowSize field value if set, zero value otherwise.

func (*GoogleAuthenticatorConfig) GetWindowSizeOk

func (o *GoogleAuthenticatorConfig) GetWindowSizeOk() (*int32, bool)

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

func (*GoogleAuthenticatorConfig) HasCodeDigits

func (o *GoogleAuthenticatorConfig) HasCodeDigits() bool

HasCodeDigits returns a boolean if a field has been set.

func (*GoogleAuthenticatorConfig) HasHmacHashFunction

func (o *GoogleAuthenticatorConfig) HasHmacHashFunction() bool

HasHmacHashFunction returns a boolean if a field has been set.

func (*GoogleAuthenticatorConfig) HasKeyModulus

func (o *GoogleAuthenticatorConfig) HasKeyModulus() bool

HasKeyModulus returns a boolean if a field has been set.

func (*GoogleAuthenticatorConfig) HasKeyRepresentation

func (o *GoogleAuthenticatorConfig) HasKeyRepresentation() bool

HasKeyRepresentation returns a boolean if a field has been set.

func (*GoogleAuthenticatorConfig) HasNumberOfScratchCodes

func (o *GoogleAuthenticatorConfig) HasNumberOfScratchCodes() bool

HasNumberOfScratchCodes returns a boolean if a field has been set.

func (*GoogleAuthenticatorConfig) HasSecretBits

func (o *GoogleAuthenticatorConfig) HasSecretBits() bool

HasSecretBits returns a boolean if a field has been set.

func (*GoogleAuthenticatorConfig) HasTimeStepSizeInMillis

func (o *GoogleAuthenticatorConfig) HasTimeStepSizeInMillis() bool

HasTimeStepSizeInMillis returns a boolean if a field has been set.

func (*GoogleAuthenticatorConfig) HasWindowSize

func (o *GoogleAuthenticatorConfig) HasWindowSize() bool

HasWindowSize returns a boolean if a field has been set.

func (GoogleAuthenticatorConfig) MarshalJSON

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

func (*GoogleAuthenticatorConfig) SetCodeDigits

func (o *GoogleAuthenticatorConfig) SetCodeDigits(v int32)

SetCodeDigits gets a reference to the given int32 and assigns it to the CodeDigits field.

func (*GoogleAuthenticatorConfig) SetHmacHashFunction

func (o *GoogleAuthenticatorConfig) SetHmacHashFunction(v string)

SetHmacHashFunction gets a reference to the given string and assigns it to the HmacHashFunction field.

func (*GoogleAuthenticatorConfig) SetKeyModulus

func (o *GoogleAuthenticatorConfig) SetKeyModulus(v int32)

SetKeyModulus gets a reference to the given int32 and assigns it to the KeyModulus field.

func (*GoogleAuthenticatorConfig) SetKeyRepresentation

func (o *GoogleAuthenticatorConfig) SetKeyRepresentation(v string)

SetKeyRepresentation gets a reference to the given string and assigns it to the KeyRepresentation field.

func (*GoogleAuthenticatorConfig) SetNumberOfScratchCodes

func (o *GoogleAuthenticatorConfig) SetNumberOfScratchCodes(v int32)

SetNumberOfScratchCodes gets a reference to the given int32 and assigns it to the NumberOfScratchCodes field.

func (*GoogleAuthenticatorConfig) SetSecretBits

func (o *GoogleAuthenticatorConfig) SetSecretBits(v int32)

SetSecretBits gets a reference to the given int32 and assigns it to the SecretBits field.

func (*GoogleAuthenticatorConfig) SetTimeStepSizeInMillis

func (o *GoogleAuthenticatorConfig) SetTimeStepSizeInMillis(v int64)

SetTimeStepSizeInMillis gets a reference to the given int64 and assigns it to the TimeStepSizeInMillis field.

func (*GoogleAuthenticatorConfig) SetWindowSize

func (o *GoogleAuthenticatorConfig) SetWindowSize(v int32)

SetWindowSize gets a reference to the given int32 and assigns it to the WindowSize field.

type GoogleAuthenticatorKey

type GoogleAuthenticatorKey struct {
	Config           *GoogleAuthenticatorConfig `json:"config,omitempty"`
	Key              *string                    `json:"key,omitempty"`
	VerificationCode *int32                     `json:"verificationCode,omitempty"`
	ScratchCodes     []int32                    `json:"scratchCodes,omitempty"`
}

GoogleAuthenticatorKey struct for GoogleAuthenticatorKey

func NewGoogleAuthenticatorKey

func NewGoogleAuthenticatorKey() *GoogleAuthenticatorKey

NewGoogleAuthenticatorKey instantiates a new GoogleAuthenticatorKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGoogleAuthenticatorKeyWithDefaults

func NewGoogleAuthenticatorKeyWithDefaults() *GoogleAuthenticatorKey

NewGoogleAuthenticatorKeyWithDefaults instantiates a new GoogleAuthenticatorKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GoogleAuthenticatorKey) GetConfig

GetConfig returns the Config field value if set, zero value otherwise.

func (*GoogleAuthenticatorKey) GetConfigOk

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

func (*GoogleAuthenticatorKey) GetKey

func (o *GoogleAuthenticatorKey) GetKey() string

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

func (*GoogleAuthenticatorKey) GetKeyOk

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

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

func (*GoogleAuthenticatorKey) GetScratchCodes

func (o *GoogleAuthenticatorKey) GetScratchCodes() []int32

GetScratchCodes returns the ScratchCodes field value if set, zero value otherwise.

func (*GoogleAuthenticatorKey) GetScratchCodesOk

func (o *GoogleAuthenticatorKey) GetScratchCodesOk() ([]int32, bool)

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

func (*GoogleAuthenticatorKey) GetVerificationCode

func (o *GoogleAuthenticatorKey) GetVerificationCode() int32

GetVerificationCode returns the VerificationCode field value if set, zero value otherwise.

func (*GoogleAuthenticatorKey) GetVerificationCodeOk

func (o *GoogleAuthenticatorKey) GetVerificationCodeOk() (*int32, bool)

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

func (*GoogleAuthenticatorKey) HasConfig

func (o *GoogleAuthenticatorKey) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (*GoogleAuthenticatorKey) HasKey

func (o *GoogleAuthenticatorKey) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*GoogleAuthenticatorKey) HasScratchCodes

func (o *GoogleAuthenticatorKey) HasScratchCodes() bool

HasScratchCodes returns a boolean if a field has been set.

func (*GoogleAuthenticatorKey) HasVerificationCode

func (o *GoogleAuthenticatorKey) HasVerificationCode() bool

HasVerificationCode returns a boolean if a field has been set.

func (GoogleAuthenticatorKey) MarshalJSON

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

func (*GoogleAuthenticatorKey) SetConfig

SetConfig gets a reference to the given GoogleAuthenticatorConfig and assigns it to the Config field.

func (*GoogleAuthenticatorKey) SetKey

func (o *GoogleAuthenticatorKey) SetKey(v string)

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

func (*GoogleAuthenticatorKey) SetScratchCodes

func (o *GoogleAuthenticatorKey) SetScratchCodes(v []int32)

SetScratchCodes gets a reference to the given []int32 and assigns it to the ScratchCodes field.

func (*GoogleAuthenticatorKey) SetVerificationCode

func (o *GoogleAuthenticatorKey) SetVerificationCode(v int32)

SetVerificationCode gets a reference to the given int32 and assigns it to the VerificationCode field.

type Grant

type Grant struct {
	Scopes               []GrantScope  `json:"scopes,omitempty"`
	Claims               []string      `json:"claims,omitempty"`
	AuthorizationDetails *AuthzDetails `json:"authorizationDetails,omitempty"`
}

Grant struct for Grant

func NewGrant

func NewGrant() *Grant

NewGrant instantiates a new Grant object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGrantWithDefaults

func NewGrantWithDefaults() *Grant

NewGrantWithDefaults instantiates a new Grant object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Grant) GetAuthorizationDetails

func (o *Grant) GetAuthorizationDetails() AuthzDetails

GetAuthorizationDetails returns the AuthorizationDetails field value if set, zero value otherwise.

func (*Grant) GetAuthorizationDetailsOk

func (o *Grant) GetAuthorizationDetailsOk() (*AuthzDetails, bool)

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

func (*Grant) GetClaims

func (o *Grant) GetClaims() []string

GetClaims returns the Claims field value if set, zero value otherwise.

func (*Grant) GetClaimsOk

func (o *Grant) GetClaimsOk() ([]string, bool)

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

func (*Grant) GetScopes

func (o *Grant) GetScopes() []GrantScope

GetScopes returns the Scopes field value if set, zero value otherwise.

func (*Grant) GetScopesOk

func (o *Grant) GetScopesOk() ([]GrantScope, bool)

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

func (*Grant) HasAuthorizationDetails

func (o *Grant) HasAuthorizationDetails() bool

HasAuthorizationDetails returns a boolean if a field has been set.

func (*Grant) HasClaims

func (o *Grant) HasClaims() bool

HasClaims returns a boolean if a field has been set.

func (*Grant) HasScopes

func (o *Grant) HasScopes() bool

HasScopes returns a boolean if a field has been set.

func (Grant) MarshalJSON

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

func (*Grant) SetAuthorizationDetails

func (o *Grant) SetAuthorizationDetails(v AuthzDetails)

SetAuthorizationDetails gets a reference to the given AuthzDetails and assigns it to the AuthorizationDetails field.

func (*Grant) SetClaims

func (o *Grant) SetClaims(v []string)

SetClaims gets a reference to the given []string and assigns it to the Claims field.

func (*Grant) SetScopes

func (o *Grant) SetScopes(v []GrantScope)

SetScopes gets a reference to the given []GrantScope and assigns it to the Scopes field.

type GrantScope

type GrantScope struct {
	Scope    *string  `json:"scope,omitempty"`
	Resource []string `json:"resource,omitempty"`
}

GrantScope struct for GrantScope

func NewGrantScope

func NewGrantScope() *GrantScope

NewGrantScope instantiates a new GrantScope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGrantScopeWithDefaults

func NewGrantScopeWithDefaults() *GrantScope

NewGrantScopeWithDefaults instantiates a new GrantScope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GrantScope) GetResource

func (o *GrantScope) GetResource() []string

GetResource returns the Resource field value if set, zero value otherwise.

func (*GrantScope) GetResourceOk

func (o *GrantScope) GetResourceOk() ([]string, bool)

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

func (*GrantScope) GetScope

func (o *GrantScope) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*GrantScope) GetScopeOk

func (o *GrantScope) GetScopeOk() (*string, bool)

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

func (*GrantScope) HasResource

func (o *GrantScope) HasResource() bool

HasResource returns a boolean if a field has been set.

func (*GrantScope) HasScope

func (o *GrantScope) HasScope() bool

HasScope returns a boolean if a field has been set.

func (GrantScope) MarshalJSON

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

func (*GrantScope) SetResource

func (o *GrantScope) SetResource(v []string)

SetResource gets a reference to the given []string and assigns it to the Resource field.

func (*GrantScope) SetScope

func (o *GrantScope) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

type Hsk

type Hsk struct {
	Kty       *string `json:"kty,omitempty"`
	Use       *string `json:"use,omitempty"`
	Alg       *string `json:"alg,omitempty"`
	Kid       *string `json:"kid,omitempty"`
	HsmName   *string `json:"hsmName,omitempty"`
	Handle    *string `json:"handle,omitempty"`
	PublicKey *string `json:"publicKey,omitempty"`
}

Hsk struct for Hsk

func NewHsk

func NewHsk() *Hsk

NewHsk instantiates a new Hsk object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewHskWithDefaults

func NewHskWithDefaults() *Hsk

NewHskWithDefaults instantiates a new Hsk object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Hsk) GetAlg

func (o *Hsk) GetAlg() string

GetAlg returns the Alg field value if set, zero value otherwise.

func (*Hsk) GetAlgOk

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

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

func (*Hsk) GetHandle

func (o *Hsk) GetHandle() string

GetHandle returns the Handle field value if set, zero value otherwise.

func (*Hsk) GetHandleOk

func (o *Hsk) GetHandleOk() (*string, bool)

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

func (*Hsk) GetHsmName

func (o *Hsk) GetHsmName() string

GetHsmName returns the HsmName field value if set, zero value otherwise.

func (*Hsk) GetHsmNameOk

func (o *Hsk) GetHsmNameOk() (*string, bool)

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

func (*Hsk) GetKid

func (o *Hsk) GetKid() string

GetKid returns the Kid field value if set, zero value otherwise.

func (*Hsk) GetKidOk

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

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

func (*Hsk) GetKty

func (o *Hsk) GetKty() string

GetKty returns the Kty field value if set, zero value otherwise.

func (*Hsk) GetKtyOk

func (o *Hsk) GetKtyOk() (*string, bool)

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

func (*Hsk) GetPublicKey

func (o *Hsk) GetPublicKey() string

GetPublicKey returns the PublicKey field value if set, zero value otherwise.

func (*Hsk) GetPublicKeyOk

func (o *Hsk) GetPublicKeyOk() (*string, bool)

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

func (*Hsk) GetUse

func (o *Hsk) GetUse() string

GetUse returns the Use field value if set, zero value otherwise.

func (*Hsk) GetUseOk

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

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

func (*Hsk) HasAlg

func (o *Hsk) HasAlg() bool

HasAlg returns a boolean if a field has been set.

func (*Hsk) HasHandle

func (o *Hsk) HasHandle() bool

HasHandle returns a boolean if a field has been set.

func (*Hsk) HasHsmName

func (o *Hsk) HasHsmName() bool

HasHsmName returns a boolean if a field has been set.

func (*Hsk) HasKid

func (o *Hsk) HasKid() bool

HasKid returns a boolean if a field has been set.

func (*Hsk) HasKty

func (o *Hsk) HasKty() bool

HasKty returns a boolean if a field has been set.

func (*Hsk) HasPublicKey

func (o *Hsk) HasPublicKey() bool

HasPublicKey returns a boolean if a field has been set.

func (*Hsk) HasUse

func (o *Hsk) HasUse() bool

HasUse returns a boolean if a field has been set.

func (Hsk) MarshalJSON

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

func (*Hsk) SetAlg

func (o *Hsk) SetAlg(v string)

SetAlg gets a reference to the given string and assigns it to the Alg field.

func (*Hsk) SetHandle

func (o *Hsk) SetHandle(v string)

SetHandle gets a reference to the given string and assigns it to the Handle field.

func (*Hsk) SetHsmName

func (o *Hsk) SetHsmName(v string)

SetHsmName gets a reference to the given string and assigns it to the HsmName field.

func (*Hsk) SetKid

func (o *Hsk) SetKid(v string)

SetKid gets a reference to the given string and assigns it to the Kid field.

func (*Hsk) SetKty

func (o *Hsk) SetKty(v string)

SetKty gets a reference to the given string and assigns it to the Kty field.

func (*Hsk) SetPublicKey

func (o *Hsk) SetPublicKey(v string)

SetPublicKey gets a reference to the given string and assigns it to the PublicKey field.

func (*Hsk) SetUse

func (o *Hsk) SetUse(v string)

SetUse gets a reference to the given string and assigns it to the Use field.

type IntrospectionEndpointApiService

type IntrospectionEndpointApiService service

IntrospectionEndpointApiService IntrospectionEndpointApi service

func (*IntrospectionEndpointApiService) Introspect

Introspect Method for Introspect

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

func (*IntrospectionEndpointApiService) IntrospectExecute

Execute executes the request

@return string

type InvitationResponse

type InvitationResponse struct {
	Id                     *int64         `json:"id,omitempty"`
	Organization           *Organization  `json:"organization,omitempty"`
	Email                  *string        `json:"email,omitempty"`
	Inviter                *LogInResponse `json:"inviter,omitempty"`
	OrganizationPrivileges []string       `json:"organizationPrivileges,omitempty"`
	ApiServerPrivileges    []string       `json:"apiServerPrivileges,omitempty"`
	ServicePrivileges      []string       `json:"servicePrivileges,omitempty"`
	ClientPrivileges       []string       `json:"clientPrivileges,omitempty"`
}

InvitationResponse struct for InvitationResponse

func NewInvitationResponse

func NewInvitationResponse() *InvitationResponse

NewInvitationResponse instantiates a new InvitationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInvitationResponseWithDefaults

func NewInvitationResponseWithDefaults() *InvitationResponse

NewInvitationResponseWithDefaults instantiates a new InvitationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InvitationResponse) GetApiServerPrivileges

func (o *InvitationResponse) GetApiServerPrivileges() []string

GetApiServerPrivileges returns the ApiServerPrivileges field value if set, zero value otherwise.

func (*InvitationResponse) GetApiServerPrivilegesOk

func (o *InvitationResponse) GetApiServerPrivilegesOk() ([]string, bool)

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

func (*InvitationResponse) GetClientPrivileges

func (o *InvitationResponse) GetClientPrivileges() []string

GetClientPrivileges returns the ClientPrivileges field value if set, zero value otherwise.

func (*InvitationResponse) GetClientPrivilegesOk

func (o *InvitationResponse) GetClientPrivilegesOk() ([]string, bool)

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

func (*InvitationResponse) GetEmail

func (o *InvitationResponse) GetEmail() string

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

func (*InvitationResponse) GetEmailOk

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

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

func (*InvitationResponse) GetId

func (o *InvitationResponse) GetId() int64

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

func (*InvitationResponse) GetIdOk

func (o *InvitationResponse) GetIdOk() (*int64, bool)

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

func (*InvitationResponse) GetInviter

func (o *InvitationResponse) GetInviter() LogInResponse

GetInviter returns the Inviter field value if set, zero value otherwise.

func (*InvitationResponse) GetInviterOk

func (o *InvitationResponse) GetInviterOk() (*LogInResponse, bool)

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

func (*InvitationResponse) GetOrganization

func (o *InvitationResponse) GetOrganization() Organization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*InvitationResponse) GetOrganizationOk

func (o *InvitationResponse) GetOrganizationOk() (*Organization, bool)

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

func (*InvitationResponse) GetOrganizationPrivileges

func (o *InvitationResponse) GetOrganizationPrivileges() []string

GetOrganizationPrivileges returns the OrganizationPrivileges field value if set, zero value otherwise.

func (*InvitationResponse) GetOrganizationPrivilegesOk

func (o *InvitationResponse) GetOrganizationPrivilegesOk() ([]string, bool)

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

func (*InvitationResponse) GetServicePrivileges

func (o *InvitationResponse) GetServicePrivileges() []string

GetServicePrivileges returns the ServicePrivileges field value if set, zero value otherwise.

func (*InvitationResponse) GetServicePrivilegesOk

func (o *InvitationResponse) GetServicePrivilegesOk() ([]string, bool)

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

func (*InvitationResponse) HasApiServerPrivileges

func (o *InvitationResponse) HasApiServerPrivileges() bool

HasApiServerPrivileges returns a boolean if a field has been set.

func (*InvitationResponse) HasClientPrivileges

func (o *InvitationResponse) HasClientPrivileges() bool

HasClientPrivileges returns a boolean if a field has been set.

func (*InvitationResponse) HasEmail

func (o *InvitationResponse) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*InvitationResponse) HasId

func (o *InvitationResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*InvitationResponse) HasInviter

func (o *InvitationResponse) HasInviter() bool

HasInviter returns a boolean if a field has been set.

func (*InvitationResponse) HasOrganization

func (o *InvitationResponse) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (*InvitationResponse) HasOrganizationPrivileges

func (o *InvitationResponse) HasOrganizationPrivileges() bool

HasOrganizationPrivileges returns a boolean if a field has been set.

func (*InvitationResponse) HasServicePrivileges

func (o *InvitationResponse) HasServicePrivileges() bool

HasServicePrivileges returns a boolean if a field has been set.

func (InvitationResponse) MarshalJSON

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

func (*InvitationResponse) SetApiServerPrivileges

func (o *InvitationResponse) SetApiServerPrivileges(v []string)

SetApiServerPrivileges gets a reference to the given []string and assigns it to the ApiServerPrivileges field.

func (*InvitationResponse) SetClientPrivileges

func (o *InvitationResponse) SetClientPrivileges(v []string)

SetClientPrivileges gets a reference to the given []string and assigns it to the ClientPrivileges field.

func (*InvitationResponse) SetEmail

func (o *InvitationResponse) SetEmail(v string)

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

func (*InvitationResponse) SetId

func (o *InvitationResponse) SetId(v int64)

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

func (*InvitationResponse) SetInviter

func (o *InvitationResponse) SetInviter(v LogInResponse)

SetInviter gets a reference to the given LogInResponse and assigns it to the Inviter field.

func (*InvitationResponse) SetOrganization

func (o *InvitationResponse) SetOrganization(v Organization)

SetOrganization gets a reference to the given Organization and assigns it to the Organization field.

func (*InvitationResponse) SetOrganizationPrivileges

func (o *InvitationResponse) SetOrganizationPrivileges(v []string)

SetOrganizationPrivileges gets a reference to the given []string and assigns it to the OrganizationPrivileges field.

func (*InvitationResponse) SetServicePrivileges

func (o *InvitationResponse) SetServicePrivileges(v []string)

SetServicePrivileges gets a reference to the given []string and assigns it to the ServicePrivileges field.

type InviteRequest

type InviteRequest struct {
	OrganizationId         int64    `json:"organizationId"`
	Email                  string   `json:"email"`
	OrganizationPrivileges []string `json:"organizationPrivileges,omitempty"`
	ApiServerPrivileges    []string `json:"apiServerPrivileges,omitempty"`
	ServicePrivileges      []string `json:"servicePrivileges,omitempty"`
	ClientPrivileges       []string `json:"clientPrivileges,omitempty"`
}

InviteRequest struct for InviteRequest

func NewInviteRequest

func NewInviteRequest(organizationId int64, email string) *InviteRequest

NewInviteRequest instantiates a new InviteRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInviteRequestWithDefaults

func NewInviteRequestWithDefaults() *InviteRequest

NewInviteRequestWithDefaults instantiates a new InviteRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InviteRequest) GetApiServerPrivileges

func (o *InviteRequest) GetApiServerPrivileges() []string

GetApiServerPrivileges returns the ApiServerPrivileges field value if set, zero value otherwise.

func (*InviteRequest) GetApiServerPrivilegesOk

func (o *InviteRequest) GetApiServerPrivilegesOk() ([]string, bool)

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

func (*InviteRequest) GetClientPrivileges

func (o *InviteRequest) GetClientPrivileges() []string

GetClientPrivileges returns the ClientPrivileges field value if set, zero value otherwise.

func (*InviteRequest) GetClientPrivilegesOk

func (o *InviteRequest) GetClientPrivilegesOk() ([]string, bool)

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

func (*InviteRequest) GetEmail

func (o *InviteRequest) GetEmail() string

GetEmail returns the Email field value

func (*InviteRequest) GetEmailOk

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

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

func (*InviteRequest) GetOrganizationId

func (o *InviteRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*InviteRequest) GetOrganizationIdOk

func (o *InviteRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*InviteRequest) GetOrganizationPrivileges

func (o *InviteRequest) GetOrganizationPrivileges() []string

GetOrganizationPrivileges returns the OrganizationPrivileges field value if set, zero value otherwise.

func (*InviteRequest) GetOrganizationPrivilegesOk

func (o *InviteRequest) GetOrganizationPrivilegesOk() ([]string, bool)

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

func (*InviteRequest) GetServicePrivileges

func (o *InviteRequest) GetServicePrivileges() []string

GetServicePrivileges returns the ServicePrivileges field value if set, zero value otherwise.

func (*InviteRequest) GetServicePrivilegesOk

func (o *InviteRequest) GetServicePrivilegesOk() ([]string, bool)

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

func (*InviteRequest) HasApiServerPrivileges

func (o *InviteRequest) HasApiServerPrivileges() bool

HasApiServerPrivileges returns a boolean if a field has been set.

func (*InviteRequest) HasClientPrivileges

func (o *InviteRequest) HasClientPrivileges() bool

HasClientPrivileges returns a boolean if a field has been set.

func (*InviteRequest) HasOrganizationPrivileges

func (o *InviteRequest) HasOrganizationPrivileges() bool

HasOrganizationPrivileges returns a boolean if a field has been set.

func (*InviteRequest) HasServicePrivileges

func (o *InviteRequest) HasServicePrivileges() bool

HasServicePrivileges returns a boolean if a field has been set.

func (InviteRequest) MarshalJSON

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

func (*InviteRequest) SetApiServerPrivileges

func (o *InviteRequest) SetApiServerPrivileges(v []string)

SetApiServerPrivileges gets a reference to the given []string and assigns it to the ApiServerPrivileges field.

func (*InviteRequest) SetClientPrivileges

func (o *InviteRequest) SetClientPrivileges(v []string)

SetClientPrivileges gets a reference to the given []string and assigns it to the ClientPrivileges field.

func (*InviteRequest) SetEmail

func (o *InviteRequest) SetEmail(v string)

SetEmail sets field value

func (*InviteRequest) SetOrganizationId

func (o *InviteRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*InviteRequest) SetOrganizationPrivileges

func (o *InviteRequest) SetOrganizationPrivileges(v []string)

SetOrganizationPrivileges gets a reference to the given []string and assigns it to the OrganizationPrivileges field.

func (*InviteRequest) SetServicePrivileges

func (o *InviteRequest) SetServicePrivileges(v []string)

SetServicePrivileges gets a reference to the given []string and assigns it to the ServicePrivileges field.

type JsonWebKeySetEndpointApiService

type JsonWebKeySetEndpointApiService service

JsonWebKeySetEndpointApiService JsonWebKeySetEndpointApi service

func (*JsonWebKeySetEndpointApiService) GetJsonWebKeySet

GetJsonWebKeySet Method for GetJsonWebKeySet

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

func (*JsonWebKeySetEndpointApiService) GetJsonWebKeySetExecute

Execute executes the request

@return string

type LogInRequest

type LogInRequest struct {
	Username string                    `json:"username"`
	Password string                    `json:"password"`
	Totp     *int32                    `json:"totp,omitempty"`
	Webauthn *WebAuthnChallengeRequest `json:"webauthn,omitempty"`
}

LogInRequest struct for LogInRequest

func NewLogInRequest

func NewLogInRequest(username string, password string) *LogInRequest

NewLogInRequest instantiates a new LogInRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewLogInRequestWithDefaults

func NewLogInRequestWithDefaults() *LogInRequest

NewLogInRequestWithDefaults instantiates a new LogInRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*LogInRequest) GetPassword

func (o *LogInRequest) GetPassword() string

GetPassword returns the Password field value

func (*LogInRequest) GetPasswordOk

func (o *LogInRequest) GetPasswordOk() (*string, bool)

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

func (*LogInRequest) GetTotp

func (o *LogInRequest) GetTotp() int32

GetTotp returns the Totp field value if set, zero value otherwise.

func (*LogInRequest) GetTotpOk

func (o *LogInRequest) GetTotpOk() (*int32, bool)

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

func (*LogInRequest) GetUsername

func (o *LogInRequest) GetUsername() string

GetUsername returns the Username field value

func (*LogInRequest) GetUsernameOk

func (o *LogInRequest) GetUsernameOk() (*string, bool)

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

func (*LogInRequest) GetWebauthn

func (o *LogInRequest) GetWebauthn() WebAuthnChallengeRequest

GetWebauthn returns the Webauthn field value if set, zero value otherwise.

func (*LogInRequest) GetWebauthnOk

func (o *LogInRequest) GetWebauthnOk() (*WebAuthnChallengeRequest, bool)

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

func (*LogInRequest) HasTotp

func (o *LogInRequest) HasTotp() bool

HasTotp returns a boolean if a field has been set.

func (*LogInRequest) HasWebauthn

func (o *LogInRequest) HasWebauthn() bool

HasWebauthn returns a boolean if a field has been set.

func (LogInRequest) MarshalJSON

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

func (*LogInRequest) SetPassword

func (o *LogInRequest) SetPassword(v string)

SetPassword sets field value

func (*LogInRequest) SetTotp

func (o *LogInRequest) SetTotp(v int32)

SetTotp gets a reference to the given int32 and assigns it to the Totp field.

func (*LogInRequest) SetUsername

func (o *LogInRequest) SetUsername(v string)

SetUsername sets field value

func (*LogInRequest) SetWebauthn

func (o *LogInRequest) SetWebauthn(v WebAuthnChallengeRequest)

SetWebauthn gets a reference to the given WebAuthnChallengeRequest and assigns it to the Webauthn field.

type LogInResponse

type LogInResponse struct {
	Id           *int64                     `json:"id,omitempty"`
	GivenName    *string                    `json:"givenName,omitempty"`
	FamilyName   *string                    `json:"familyName,omitempty"`
	DisplayName  *string                    `json:"displayName,omitempty"`
	Email        *string                    `json:"email,omitempty"`
	LastAuthTime *time.Time                 `json:"lastAuthTime,omitempty"`
	AuthnMethods []string                   `json:"authnMethods,omitempty"`
	Webauthn     *WebAuthnChallengeResponse `json:"webauthn,omitempty"`
}

LogInResponse struct for LogInResponse

func NewLogInResponse

func NewLogInResponse() *LogInResponse

NewLogInResponse instantiates a new LogInResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewLogInResponseWithDefaults

func NewLogInResponseWithDefaults() *LogInResponse

NewLogInResponseWithDefaults instantiates a new LogInResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*LogInResponse) GetAuthnMethods

func (o *LogInResponse) GetAuthnMethods() []string

GetAuthnMethods returns the AuthnMethods field value if set, zero value otherwise.

func (*LogInResponse) GetAuthnMethodsOk

func (o *LogInResponse) GetAuthnMethodsOk() ([]string, bool)

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

func (*LogInResponse) GetDisplayName

func (o *LogInResponse) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*LogInResponse) GetDisplayNameOk

func (o *LogInResponse) GetDisplayNameOk() (*string, bool)

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

func (*LogInResponse) GetEmail

func (o *LogInResponse) GetEmail() string

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

func (*LogInResponse) GetEmailOk

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

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

func (*LogInResponse) GetFamilyName

func (o *LogInResponse) GetFamilyName() string

GetFamilyName returns the FamilyName field value if set, zero value otherwise.

func (*LogInResponse) GetFamilyNameOk

func (o *LogInResponse) GetFamilyNameOk() (*string, bool)

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

func (*LogInResponse) GetGivenName

func (o *LogInResponse) GetGivenName() string

GetGivenName returns the GivenName field value if set, zero value otherwise.

func (*LogInResponse) GetGivenNameOk

func (o *LogInResponse) GetGivenNameOk() (*string, bool)

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

func (*LogInResponse) GetId

func (o *LogInResponse) GetId() int64

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

func (*LogInResponse) GetIdOk

func (o *LogInResponse) GetIdOk() (*int64, bool)

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

func (*LogInResponse) GetLastAuthTime

func (o *LogInResponse) GetLastAuthTime() time.Time

GetLastAuthTime returns the LastAuthTime field value if set, zero value otherwise.

func (*LogInResponse) GetLastAuthTimeOk

func (o *LogInResponse) GetLastAuthTimeOk() (*time.Time, bool)

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

func (*LogInResponse) GetWebauthn

func (o *LogInResponse) GetWebauthn() WebAuthnChallengeResponse

GetWebauthn returns the Webauthn field value if set, zero value otherwise.

func (*LogInResponse) GetWebauthnOk

func (o *LogInResponse) GetWebauthnOk() (*WebAuthnChallengeResponse, bool)

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

func (*LogInResponse) HasAuthnMethods

func (o *LogInResponse) HasAuthnMethods() bool

HasAuthnMethods returns a boolean if a field has been set.

func (*LogInResponse) HasDisplayName

func (o *LogInResponse) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*LogInResponse) HasEmail

func (o *LogInResponse) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*LogInResponse) HasFamilyName

func (o *LogInResponse) HasFamilyName() bool

HasFamilyName returns a boolean if a field has been set.

func (*LogInResponse) HasGivenName

func (o *LogInResponse) HasGivenName() bool

HasGivenName returns a boolean if a field has been set.

func (*LogInResponse) HasId

func (o *LogInResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*LogInResponse) HasLastAuthTime

func (o *LogInResponse) HasLastAuthTime() bool

HasLastAuthTime returns a boolean if a field has been set.

func (*LogInResponse) HasWebauthn

func (o *LogInResponse) HasWebauthn() bool

HasWebauthn returns a boolean if a field has been set.

func (LogInResponse) MarshalJSON

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

func (*LogInResponse) SetAuthnMethods

func (o *LogInResponse) SetAuthnMethods(v []string)

SetAuthnMethods gets a reference to the given []string and assigns it to the AuthnMethods field.

func (*LogInResponse) SetDisplayName

func (o *LogInResponse) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*LogInResponse) SetEmail

func (o *LogInResponse) SetEmail(v string)

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

func (*LogInResponse) SetFamilyName

func (o *LogInResponse) SetFamilyName(v string)

SetFamilyName gets a reference to the given string and assigns it to the FamilyName field.

func (*LogInResponse) SetGivenName

func (o *LogInResponse) SetGivenName(v string)

SetGivenName gets a reference to the given string and assigns it to the GivenName field.

func (*LogInResponse) SetId

func (o *LogInResponse) SetId(v int64)

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

func (*LogInResponse) SetLastAuthTime

func (o *LogInResponse) SetLastAuthTime(v time.Time)

SetLastAuthTime gets a reference to the given time.Time and assigns it to the LastAuthTime field.

func (*LogInResponse) SetWebauthn

func (o *LogInResponse) SetWebauthn(v WebAuthnChallengeResponse)

SetWebauthn gets a reference to the given WebAuthnChallengeResponse and assigns it to the Webauthn field.

type MoveServiceRequest

type MoveServiceRequest struct {
	OrganizationId    int64 `json:"organizationId"`
	ApiServerId       int64 `json:"apiServerId"`
	ServiceId         int64 `json:"serviceId"`
	NewOrganizationId int64 `json:"newOrganizationId"`
}

MoveServiceRequest struct for MoveServiceRequest

func NewMoveServiceRequest

func NewMoveServiceRequest(organizationId int64, apiServerId int64, serviceId int64, newOrganizationId int64) *MoveServiceRequest

NewMoveServiceRequest instantiates a new MoveServiceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMoveServiceRequestWithDefaults

func NewMoveServiceRequestWithDefaults() *MoveServiceRequest

NewMoveServiceRequestWithDefaults instantiates a new MoveServiceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MoveServiceRequest) GetApiServerId

func (o *MoveServiceRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value

func (*MoveServiceRequest) GetApiServerIdOk

func (o *MoveServiceRequest) GetApiServerIdOk() (*int64, bool)

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

func (*MoveServiceRequest) GetNewOrganizationId

func (o *MoveServiceRequest) GetNewOrganizationId() int64

GetNewOrganizationId returns the NewOrganizationId field value

func (*MoveServiceRequest) GetNewOrganizationIdOk

func (o *MoveServiceRequest) GetNewOrganizationIdOk() (*int64, bool)

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

func (*MoveServiceRequest) GetOrganizationId

func (o *MoveServiceRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*MoveServiceRequest) GetOrganizationIdOk

func (o *MoveServiceRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*MoveServiceRequest) GetServiceId

func (o *MoveServiceRequest) GetServiceId() int64

GetServiceId returns the ServiceId field value

func (*MoveServiceRequest) GetServiceIdOk

func (o *MoveServiceRequest) GetServiceIdOk() (*int64, bool)

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

func (MoveServiceRequest) MarshalJSON

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

func (*MoveServiceRequest) SetApiServerId

func (o *MoveServiceRequest) SetApiServerId(v int64)

SetApiServerId sets field value

func (*MoveServiceRequest) SetNewOrganizationId

func (o *MoveServiceRequest) SetNewOrganizationId(v int64)

SetNewOrganizationId sets field value

func (*MoveServiceRequest) SetOrganizationId

func (o *MoveServiceRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*MoveServiceRequest) SetServiceId

func (o *MoveServiceRequest) SetServiceId(v int64)

SetServiceId sets field value

type NamedUri

type NamedUri struct {
	Name *string `json:"name,omitempty"`
	Uri  *string `json:"uri,omitempty"`
}

NamedUri struct for NamedUri

func NewNamedUri

func NewNamedUri() *NamedUri

NewNamedUri instantiates a new NamedUri object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewNamedUriWithDefaults

func NewNamedUriWithDefaults() *NamedUri

NewNamedUriWithDefaults instantiates a new NamedUri object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*NamedUri) GetName

func (o *NamedUri) GetName() string

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

func (*NamedUri) GetNameOk

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

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

func (*NamedUri) GetUri

func (o *NamedUri) GetUri() string

GetUri returns the Uri field value if set, zero value otherwise.

func (*NamedUri) GetUriOk

func (o *NamedUri) GetUriOk() (*string, bool)

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

func (*NamedUri) HasName

func (o *NamedUri) HasName() bool

HasName returns a boolean if a field has been set.

func (*NamedUri) HasUri

func (o *NamedUri) HasUri() bool

HasUri returns a boolean if a field has been set.

func (NamedUri) MarshalJSON

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

func (*NamedUri) SetName

func (o *NamedUri) SetName(v string)

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

func (*NamedUri) SetUri

func (o *NamedUri) SetUri(v string)

SetUri gets a reference to the given string and assigns it to the Uri field.

type NullableAdoptServiceRequest

type NullableAdoptServiceRequest struct {
	// contains filtered or unexported fields
}

func NewNullableAdoptServiceRequest

func NewNullableAdoptServiceRequest(val *AdoptServiceRequest) *NullableAdoptServiceRequest

func (NullableAdoptServiceRequest) Get

func (NullableAdoptServiceRequest) IsSet

func (NullableAdoptServiceRequest) MarshalJSON

func (v NullableAdoptServiceRequest) MarshalJSON() ([]byte, error)

func (*NullableAdoptServiceRequest) Set

func (*NullableAdoptServiceRequest) UnmarshalJSON

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

func (*NullableAdoptServiceRequest) Unset

func (v *NullableAdoptServiceRequest) Unset()

type NullableApiServerAccess

type NullableApiServerAccess struct {
	// contains filtered or unexported fields
}

func NewNullableApiServerAccess

func NewNullableApiServerAccess(val *ApiServerAccess) *NullableApiServerAccess

func (NullableApiServerAccess) Get

func (NullableApiServerAccess) IsSet

func (v NullableApiServerAccess) IsSet() bool

func (NullableApiServerAccess) MarshalJSON

func (v NullableApiServerAccess) MarshalJSON() ([]byte, error)

func (*NullableApiServerAccess) Set

func (*NullableApiServerAccess) UnmarshalJSON

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

func (*NullableApiServerAccess) Unset

func (v *NullableApiServerAccess) Unset()

type NullableApiServerAccessResponse

type NullableApiServerAccessResponse struct {
	// contains filtered or unexported fields
}

func (NullableApiServerAccessResponse) Get

func (NullableApiServerAccessResponse) IsSet

func (NullableApiServerAccessResponse) MarshalJSON

func (v NullableApiServerAccessResponse) MarshalJSON() ([]byte, error)

func (*NullableApiServerAccessResponse) Set

func (*NullableApiServerAccessResponse) UnmarshalJSON

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

func (*NullableApiServerAccessResponse) Unset

type NullableApiServerMembershipResponse

type NullableApiServerMembershipResponse struct {
	// contains filtered or unexported fields
}

func (NullableApiServerMembershipResponse) Get

func (NullableApiServerMembershipResponse) IsSet

func (NullableApiServerMembershipResponse) MarshalJSON

func (v NullableApiServerMembershipResponse) MarshalJSON() ([]byte, error)

func (*NullableApiServerMembershipResponse) Set

func (*NullableApiServerMembershipResponse) UnmarshalJSON

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

func (*NullableApiServerMembershipResponse) Unset

type NullableApproval

type NullableApproval struct {
	// contains filtered or unexported fields
}

func NewNullableApproval

func NewNullableApproval(val *Approval) *NullableApproval

func (NullableApproval) Get

func (v NullableApproval) Get() *Approval

func (NullableApproval) IsSet

func (v NullableApproval) IsSet() bool

func (NullableApproval) MarshalJSON

func (v NullableApproval) MarshalJSON() ([]byte, error)

func (*NullableApproval) Set

func (v *NullableApproval) Set(val *Approval)

func (*NullableApproval) UnmarshalJSON

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

func (*NullableApproval) Unset

func (v *NullableApproval) Unset()

type NullableAuthleteApiServerResponse

type NullableAuthleteApiServerResponse struct {
	// contains filtered or unexported fields
}

func (NullableAuthleteApiServerResponse) Get

func (NullableAuthleteApiServerResponse) IsSet

func (NullableAuthleteApiServerResponse) MarshalJSON

func (v NullableAuthleteApiServerResponse) MarshalJSON() ([]byte, error)

func (*NullableAuthleteApiServerResponse) Set

func (*NullableAuthleteApiServerResponse) UnmarshalJSON

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

func (*NullableAuthleteApiServerResponse) Unset

type NullableAuthleteApiServerUpdateResponse

type NullableAuthleteApiServerUpdateResponse struct {
	// contains filtered or unexported fields
}

func (NullableAuthleteApiServerUpdateResponse) Get

func (NullableAuthleteApiServerUpdateResponse) IsSet

func (NullableAuthleteApiServerUpdateResponse) MarshalJSON

func (v NullableAuthleteApiServerUpdateResponse) MarshalJSON() ([]byte, error)

func (*NullableAuthleteApiServerUpdateResponse) Set

func (*NullableAuthleteApiServerUpdateResponse) UnmarshalJSON

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

func (*NullableAuthleteApiServerUpdateResponse) Unset

type NullableAuthleteUser

type NullableAuthleteUser struct {
	// contains filtered or unexported fields
}

func NewNullableAuthleteUser

func NewNullableAuthleteUser(val *AuthleteUser) *NullableAuthleteUser

func (NullableAuthleteUser) Get

func (NullableAuthleteUser) IsSet

func (v NullableAuthleteUser) IsSet() bool

func (NullableAuthleteUser) MarshalJSON

func (v NullableAuthleteUser) MarshalJSON() ([]byte, error)

func (*NullableAuthleteUser) Set

func (v *NullableAuthleteUser) Set(val *AuthleteUser)

func (*NullableAuthleteUser) UnmarshalJSON

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

func (*NullableAuthleteUser) Unset

func (v *NullableAuthleteUser) Unset()

type NullableAuthorizationResponse

type NullableAuthorizationResponse struct {
	// contains filtered or unexported fields
}

func (NullableAuthorizationResponse) Get

func (NullableAuthorizationResponse) IsSet

func (NullableAuthorizationResponse) MarshalJSON

func (v NullableAuthorizationResponse) MarshalJSON() ([]byte, error)

func (*NullableAuthorizationResponse) Set

func (*NullableAuthorizationResponse) UnmarshalJSON

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

func (*NullableAuthorizationResponse) Unset

func (v *NullableAuthorizationResponse) Unset()

type NullableAuthzDetails

type NullableAuthzDetails struct {
	// contains filtered or unexported fields
}

func NewNullableAuthzDetails

func NewNullableAuthzDetails(val *AuthzDetails) *NullableAuthzDetails

func (NullableAuthzDetails) Get

func (NullableAuthzDetails) IsSet

func (v NullableAuthzDetails) IsSet() bool

func (NullableAuthzDetails) MarshalJSON

func (v NullableAuthzDetails) MarshalJSON() ([]byte, error)

func (*NullableAuthzDetails) Set

func (v *NullableAuthzDetails) Set(val *AuthzDetails)

func (*NullableAuthzDetails) UnmarshalJSON

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

func (*NullableAuthzDetails) Unset

func (v *NullableAuthzDetails) Unset()

type NullableAuthzDetailsElement

type NullableAuthzDetailsElement struct {
	// contains filtered or unexported fields
}

func NewNullableAuthzDetailsElement

func NewNullableAuthzDetailsElement(val *AuthzDetailsElement) *NullableAuthzDetailsElement

func (NullableAuthzDetailsElement) Get

func (NullableAuthzDetailsElement) IsSet

func (NullableAuthzDetailsElement) MarshalJSON

func (v NullableAuthzDetailsElement) MarshalJSON() ([]byte, error)

func (*NullableAuthzDetailsElement) Set

func (*NullableAuthzDetailsElement) UnmarshalJSON

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

func (*NullableAuthzDetailsElement) Unset

func (v *NullableAuthzDetailsElement) Unset()

type NullableBindTotpCredentialsRequest

type NullableBindTotpCredentialsRequest struct {
	// contains filtered or unexported fields
}

func (NullableBindTotpCredentialsRequest) Get

func (NullableBindTotpCredentialsRequest) IsSet

func (NullableBindTotpCredentialsRequest) MarshalJSON

func (v NullableBindTotpCredentialsRequest) MarshalJSON() ([]byte, error)

func (*NullableBindTotpCredentialsRequest) Set

func (*NullableBindTotpCredentialsRequest) UnmarshalJSON

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

func (*NullableBindTotpCredentialsRequest) Unset

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableChallenge

type NullableChallenge struct {
	// contains filtered or unexported fields
}

func NewNullableChallenge

func NewNullableChallenge(val *Challenge) *NullableChallenge

func (NullableChallenge) Get

func (v NullableChallenge) Get() *Challenge

func (NullableChallenge) IsSet

func (v NullableChallenge) IsSet() bool

func (NullableChallenge) MarshalJSON

func (v NullableChallenge) MarshalJSON() ([]byte, error)

func (*NullableChallenge) Set

func (v *NullableChallenge) Set(val *Challenge)

func (*NullableChallenge) UnmarshalJSON

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

func (*NullableChallenge) Unset

func (v *NullableChallenge) Unset()

type NullableClient

type NullableClient struct {
	// contains filtered or unexported fields
}

func NewNullableClient

func NewNullableClient(val *Client) *NullableClient

func (NullableClient) Get

func (v NullableClient) Get() *Client

func (NullableClient) IsSet

func (v NullableClient) IsSet() bool

func (NullableClient) MarshalJSON

func (v NullableClient) MarshalJSON() ([]byte, error)

func (*NullableClient) Set

func (v *NullableClient) Set(val *Client)

func (*NullableClient) UnmarshalJSON

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

func (*NullableClient) Unset

func (v *NullableClient) Unset()

type NullableClientAccess

type NullableClientAccess struct {
	// contains filtered or unexported fields
}

func NewNullableClientAccess

func NewNullableClientAccess(val *ClientAccess) *NullableClientAccess

func (NullableClientAccess) Get

func (NullableClientAccess) IsSet

func (v NullableClientAccess) IsSet() bool

func (NullableClientAccess) MarshalJSON

func (v NullableClientAccess) MarshalJSON() ([]byte, error)

func (*NullableClientAccess) Set

func (v *NullableClientAccess) Set(val *ClientAccess)

func (*NullableClientAccess) UnmarshalJSON

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

func (*NullableClientAccess) Unset

func (v *NullableClientAccess) Unset()

type NullableClientAccessResponse

type NullableClientAccessResponse struct {
	// contains filtered or unexported fields
}

func NewNullableClientAccessResponse

func NewNullableClientAccessResponse(val *ClientAccessResponse) *NullableClientAccessResponse

func (NullableClientAccessResponse) Get

func (NullableClientAccessResponse) IsSet

func (NullableClientAccessResponse) MarshalJSON

func (v NullableClientAccessResponse) MarshalJSON() ([]byte, error)

func (*NullableClientAccessResponse) Set

func (*NullableClientAccessResponse) UnmarshalJSON

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

func (*NullableClientAccessResponse) Unset

func (v *NullableClientAccessResponse) Unset()

type NullableClientExtension

type NullableClientExtension struct {
	// contains filtered or unexported fields
}

func NewNullableClientExtension

func NewNullableClientExtension(val *ClientExtension) *NullableClientExtension

func (NullableClientExtension) Get

func (NullableClientExtension) IsSet

func (v NullableClientExtension) IsSet() bool

func (NullableClientExtension) MarshalJSON

func (v NullableClientExtension) MarshalJSON() ([]byte, error)

func (*NullableClientExtension) Set

func (*NullableClientExtension) UnmarshalJSON

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

func (*NullableClientExtension) Unset

func (v *NullableClientExtension) Unset()

type NullableCreateApiServerRequest

type NullableCreateApiServerRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateApiServerRequest) Get

func (NullableCreateApiServerRequest) IsSet

func (NullableCreateApiServerRequest) MarshalJSON

func (v NullableCreateApiServerRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateApiServerRequest) Set

func (*NullableCreateApiServerRequest) UnmarshalJSON

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

func (*NullableCreateApiServerRequest) Unset

func (v *NullableCreateApiServerRequest) Unset()

type NullableCreateOrganizationTokenRequest

type NullableCreateOrganizationTokenRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateOrganizationTokenRequest) Get

func (NullableCreateOrganizationTokenRequest) IsSet

func (NullableCreateOrganizationTokenRequest) MarshalJSON

func (v NullableCreateOrganizationTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateOrganizationTokenRequest) Set

func (*NullableCreateOrganizationTokenRequest) UnmarshalJSON

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

func (*NullableCreateOrganizationTokenRequest) Unset

type NullableCreateServiceRequest

type NullableCreateServiceRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateServiceRequest

func NewNullableCreateServiceRequest(val *CreateServiceRequest) *NullableCreateServiceRequest

func (NullableCreateServiceRequest) Get

func (NullableCreateServiceRequest) IsSet

func (NullableCreateServiceRequest) MarshalJSON

func (v NullableCreateServiceRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateServiceRequest) Set

func (*NullableCreateServiceRequest) UnmarshalJSON

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

func (*NullableCreateServiceRequest) Unset

func (v *NullableCreateServiceRequest) Unset()

type NullableCreateServiceTokenRequest

type NullableCreateServiceTokenRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateServiceTokenRequest) Get

func (NullableCreateServiceTokenRequest) IsSet

func (NullableCreateServiceTokenRequest) MarshalJSON

func (v NullableCreateServiceTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateServiceTokenRequest) Set

func (*NullableCreateServiceTokenRequest) UnmarshalJSON

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

func (*NullableCreateServiceTokenRequest) Unset

type NullableCreateUserRequest

type NullableCreateUserRequest struct {
	// contains filtered or unexported fields
}

func NewNullableCreateUserRequest

func NewNullableCreateUserRequest(val *CreateUserRequest) *NullableCreateUserRequest

func (NullableCreateUserRequest) Get

func (NullableCreateUserRequest) IsSet

func (v NullableCreateUserRequest) IsSet() bool

func (NullableCreateUserRequest) MarshalJSON

func (v NullableCreateUserRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateUserRequest) Set

func (*NullableCreateUserRequest) UnmarshalJSON

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

func (*NullableCreateUserRequest) Unset

func (v *NullableCreateUserRequest) Unset()

type NullableCreateUserResponse

type NullableCreateUserResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCreateUserResponse

func NewNullableCreateUserResponse(val *CreateUserResponse) *NullableCreateUserResponse

func (NullableCreateUserResponse) Get

func (NullableCreateUserResponse) IsSet

func (v NullableCreateUserResponse) IsSet() bool

func (NullableCreateUserResponse) MarshalJSON

func (v NullableCreateUserResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateUserResponse) Set

func (*NullableCreateUserResponse) UnmarshalJSON

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

func (*NullableCreateUserResponse) Unset

func (v *NullableCreateUserResponse) Unset()

type NullableCredentialIssuerMetadata

type NullableCredentialIssuerMetadata struct {
	// contains filtered or unexported fields
}

func (NullableCredentialIssuerMetadata) Get

func (NullableCredentialIssuerMetadata) IsSet

func (NullableCredentialIssuerMetadata) MarshalJSON

func (v NullableCredentialIssuerMetadata) MarshalJSON() ([]byte, error)

func (*NullableCredentialIssuerMetadata) Set

func (*NullableCredentialIssuerMetadata) UnmarshalJSON

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

func (*NullableCredentialIssuerMetadata) Unset

type NullableDeleteOrganizationTokenRequest

type NullableDeleteOrganizationTokenRequest struct {
	// contains filtered or unexported fields
}

func (NullableDeleteOrganizationTokenRequest) Get

func (NullableDeleteOrganizationTokenRequest) IsSet

func (NullableDeleteOrganizationTokenRequest) MarshalJSON

func (v NullableDeleteOrganizationTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableDeleteOrganizationTokenRequest) Set

func (*NullableDeleteOrganizationTokenRequest) UnmarshalJSON

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

func (*NullableDeleteOrganizationTokenRequest) Unset

type NullableDeleteServiceRequest

type NullableDeleteServiceRequest struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteServiceRequest

func NewNullableDeleteServiceRequest(val *DeleteServiceRequest) *NullableDeleteServiceRequest

func (NullableDeleteServiceRequest) Get

func (NullableDeleteServiceRequest) IsSet

func (NullableDeleteServiceRequest) MarshalJSON

func (v NullableDeleteServiceRequest) MarshalJSON() ([]byte, error)

func (*NullableDeleteServiceRequest) Set

func (*NullableDeleteServiceRequest) UnmarshalJSON

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

func (*NullableDeleteServiceRequest) Unset

func (v *NullableDeleteServiceRequest) Unset()

type NullableDeleteServiceTokenRequest

type NullableDeleteServiceTokenRequest struct {
	// contains filtered or unexported fields
}

func (NullableDeleteServiceTokenRequest) Get

func (NullableDeleteServiceTokenRequest) IsSet

func (NullableDeleteServiceTokenRequest) MarshalJSON

func (v NullableDeleteServiceTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableDeleteServiceTokenRequest) Set

func (*NullableDeleteServiceTokenRequest) UnmarshalJSON

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

func (*NullableDeleteServiceTokenRequest) Unset

type NullableDynamicScope

type NullableDynamicScope struct {
	// contains filtered or unexported fields
}

func NewNullableDynamicScope

func NewNullableDynamicScope(val *DynamicScope) *NullableDynamicScope

func (NullableDynamicScope) Get

func (NullableDynamicScope) IsSet

func (v NullableDynamicScope) IsSet() bool

func (NullableDynamicScope) MarshalJSON

func (v NullableDynamicScope) MarshalJSON() ([]byte, error)

func (*NullableDynamicScope) Set

func (v *NullableDynamicScope) Set(val *DynamicScope)

func (*NullableDynamicScope) UnmarshalJSON

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

func (*NullableDynamicScope) Unset

func (v *NullableDynamicScope) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGetOrganizationTokensRequest

type NullableGetOrganizationTokensRequest struct {
	// contains filtered or unexported fields
}

func (NullableGetOrganizationTokensRequest) Get

func (NullableGetOrganizationTokensRequest) IsSet

func (NullableGetOrganizationTokensRequest) MarshalJSON

func (v NullableGetOrganizationTokensRequest) MarshalJSON() ([]byte, error)

func (*NullableGetOrganizationTokensRequest) Set

func (*NullableGetOrganizationTokensRequest) UnmarshalJSON

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

func (*NullableGetOrganizationTokensRequest) Unset

type NullableGetServiceTokensRequest

type NullableGetServiceTokensRequest struct {
	// contains filtered or unexported fields
}

func (NullableGetServiceTokensRequest) Get

func (NullableGetServiceTokensRequest) IsSet

func (NullableGetServiceTokensRequest) MarshalJSON

func (v NullableGetServiceTokensRequest) MarshalJSON() ([]byte, error)

func (*NullableGetServiceTokensRequest) Set

func (*NullableGetServiceTokensRequest) UnmarshalJSON

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

func (*NullableGetServiceTokensRequest) Unset

type NullableGoogleAuthenticatorConfig

type NullableGoogleAuthenticatorConfig struct {
	// contains filtered or unexported fields
}

func (NullableGoogleAuthenticatorConfig) Get

func (NullableGoogleAuthenticatorConfig) IsSet

func (NullableGoogleAuthenticatorConfig) MarshalJSON

func (v NullableGoogleAuthenticatorConfig) MarshalJSON() ([]byte, error)

func (*NullableGoogleAuthenticatorConfig) Set

func (*NullableGoogleAuthenticatorConfig) UnmarshalJSON

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

func (*NullableGoogleAuthenticatorConfig) Unset

type NullableGoogleAuthenticatorKey

type NullableGoogleAuthenticatorKey struct {
	// contains filtered or unexported fields
}

func (NullableGoogleAuthenticatorKey) Get

func (NullableGoogleAuthenticatorKey) IsSet

func (NullableGoogleAuthenticatorKey) MarshalJSON

func (v NullableGoogleAuthenticatorKey) MarshalJSON() ([]byte, error)

func (*NullableGoogleAuthenticatorKey) Set

func (*NullableGoogleAuthenticatorKey) UnmarshalJSON

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

func (*NullableGoogleAuthenticatorKey) Unset

func (v *NullableGoogleAuthenticatorKey) Unset()

type NullableGrant

type NullableGrant struct {
	// contains filtered or unexported fields
}

func NewNullableGrant

func NewNullableGrant(val *Grant) *NullableGrant

func (NullableGrant) Get

func (v NullableGrant) Get() *Grant

func (NullableGrant) IsSet

func (v NullableGrant) IsSet() bool

func (NullableGrant) MarshalJSON

func (v NullableGrant) MarshalJSON() ([]byte, error)

func (*NullableGrant) Set

func (v *NullableGrant) Set(val *Grant)

func (*NullableGrant) UnmarshalJSON

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

func (*NullableGrant) Unset

func (v *NullableGrant) Unset()

type NullableGrantScope

type NullableGrantScope struct {
	// contains filtered or unexported fields
}

func NewNullableGrantScope

func NewNullableGrantScope(val *GrantScope) *NullableGrantScope

func (NullableGrantScope) Get

func (v NullableGrantScope) Get() *GrantScope

func (NullableGrantScope) IsSet

func (v NullableGrantScope) IsSet() bool

func (NullableGrantScope) MarshalJSON

func (v NullableGrantScope) MarshalJSON() ([]byte, error)

func (*NullableGrantScope) Set

func (v *NullableGrantScope) Set(val *GrantScope)

func (*NullableGrantScope) UnmarshalJSON

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

func (*NullableGrantScope) Unset

func (v *NullableGrantScope) Unset()

type NullableHsk

type NullableHsk struct {
	// contains filtered or unexported fields
}

func NewNullableHsk

func NewNullableHsk(val *Hsk) *NullableHsk

func (NullableHsk) Get

func (v NullableHsk) Get() *Hsk

func (NullableHsk) IsSet

func (v NullableHsk) IsSet() bool

func (NullableHsk) MarshalJSON

func (v NullableHsk) MarshalJSON() ([]byte, error)

func (*NullableHsk) Set

func (v *NullableHsk) Set(val *Hsk)

func (*NullableHsk) UnmarshalJSON

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

func (*NullableHsk) Unset

func (v *NullableHsk) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableInvitationResponse

type NullableInvitationResponse struct {
	// contains filtered or unexported fields
}

func NewNullableInvitationResponse

func NewNullableInvitationResponse(val *InvitationResponse) *NullableInvitationResponse

func (NullableInvitationResponse) Get

func (NullableInvitationResponse) IsSet

func (v NullableInvitationResponse) IsSet() bool

func (NullableInvitationResponse) MarshalJSON

func (v NullableInvitationResponse) MarshalJSON() ([]byte, error)

func (*NullableInvitationResponse) Set

func (*NullableInvitationResponse) UnmarshalJSON

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

func (*NullableInvitationResponse) Unset

func (v *NullableInvitationResponse) Unset()

type NullableInviteRequest

type NullableInviteRequest struct {
	// contains filtered or unexported fields
}

func NewNullableInviteRequest

func NewNullableInviteRequest(val *InviteRequest) *NullableInviteRequest

func (NullableInviteRequest) Get

func (NullableInviteRequest) IsSet

func (v NullableInviteRequest) IsSet() bool

func (NullableInviteRequest) MarshalJSON

func (v NullableInviteRequest) MarshalJSON() ([]byte, error)

func (*NullableInviteRequest) Set

func (v *NullableInviteRequest) Set(val *InviteRequest)

func (*NullableInviteRequest) UnmarshalJSON

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

func (*NullableInviteRequest) Unset

func (v *NullableInviteRequest) Unset()

type NullableLogInRequest

type NullableLogInRequest struct {
	// contains filtered or unexported fields
}

func NewNullableLogInRequest

func NewNullableLogInRequest(val *LogInRequest) *NullableLogInRequest

func (NullableLogInRequest) Get

func (NullableLogInRequest) IsSet

func (v NullableLogInRequest) IsSet() bool

func (NullableLogInRequest) MarshalJSON

func (v NullableLogInRequest) MarshalJSON() ([]byte, error)

func (*NullableLogInRequest) Set

func (v *NullableLogInRequest) Set(val *LogInRequest)

func (*NullableLogInRequest) UnmarshalJSON

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

func (*NullableLogInRequest) Unset

func (v *NullableLogInRequest) Unset()

type NullableLogInResponse

type NullableLogInResponse struct {
	// contains filtered or unexported fields
}

func NewNullableLogInResponse

func NewNullableLogInResponse(val *LogInResponse) *NullableLogInResponse

func (NullableLogInResponse) Get

func (NullableLogInResponse) IsSet

func (v NullableLogInResponse) IsSet() bool

func (NullableLogInResponse) MarshalJSON

func (v NullableLogInResponse) MarshalJSON() ([]byte, error)

func (*NullableLogInResponse) Set

func (v *NullableLogInResponse) Set(val *LogInResponse)

func (*NullableLogInResponse) UnmarshalJSON

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

func (*NullableLogInResponse) Unset

func (v *NullableLogInResponse) Unset()

type NullableMoveServiceRequest

type NullableMoveServiceRequest struct {
	// contains filtered or unexported fields
}

func NewNullableMoveServiceRequest

func NewNullableMoveServiceRequest(val *MoveServiceRequest) *NullableMoveServiceRequest

func (NullableMoveServiceRequest) Get

func (NullableMoveServiceRequest) IsSet

func (v NullableMoveServiceRequest) IsSet() bool

func (NullableMoveServiceRequest) MarshalJSON

func (v NullableMoveServiceRequest) MarshalJSON() ([]byte, error)

func (*NullableMoveServiceRequest) Set

func (*NullableMoveServiceRequest) UnmarshalJSON

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

func (*NullableMoveServiceRequest) Unset

func (v *NullableMoveServiceRequest) Unset()

type NullableNamedUri

type NullableNamedUri struct {
	// contains filtered or unexported fields
}

func NewNullableNamedUri

func NewNullableNamedUri(val *NamedUri) *NullableNamedUri

func (NullableNamedUri) Get

func (v NullableNamedUri) Get() *NamedUri

func (NullableNamedUri) IsSet

func (v NullableNamedUri) IsSet() bool

func (NullableNamedUri) MarshalJSON

func (v NullableNamedUri) MarshalJSON() ([]byte, error)

func (*NullableNamedUri) Set

func (v *NullableNamedUri) Set(val *NamedUri)

func (*NullableNamedUri) UnmarshalJSON

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

func (*NullableNamedUri) Unset

func (v *NullableNamedUri) Unset()

type NullableOrganization

type NullableOrganization struct {
	// contains filtered or unexported fields
}

func NewNullableOrganization

func NewNullableOrganization(val *Organization) *NullableOrganization

func (NullableOrganization) Get

func (NullableOrganization) IsSet

func (v NullableOrganization) IsSet() bool

func (NullableOrganization) MarshalJSON

func (v NullableOrganization) MarshalJSON() ([]byte, error)

func (*NullableOrganization) Set

func (v *NullableOrganization) Set(val *Organization)

func (*NullableOrganization) UnmarshalJSON

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

func (*NullableOrganization) Unset

func (v *NullableOrganization) Unset()

type NullableOrganizationAccess

type NullableOrganizationAccess struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationAccess

func NewNullableOrganizationAccess(val *OrganizationAccess) *NullableOrganizationAccess

func (NullableOrganizationAccess) Get

func (NullableOrganizationAccess) IsSet

func (v NullableOrganizationAccess) IsSet() bool

func (NullableOrganizationAccess) MarshalJSON

func (v NullableOrganizationAccess) MarshalJSON() ([]byte, error)

func (*NullableOrganizationAccess) Set

func (*NullableOrganizationAccess) UnmarshalJSON

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

func (*NullableOrganizationAccess) Unset

func (v *NullableOrganizationAccess) Unset()

type NullableOrganizationAccessResponse

type NullableOrganizationAccessResponse struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationAccessResponse) Get

func (NullableOrganizationAccessResponse) IsSet

func (NullableOrganizationAccessResponse) MarshalJSON

func (v NullableOrganizationAccessResponse) MarshalJSON() ([]byte, error)

func (*NullableOrganizationAccessResponse) Set

func (*NullableOrganizationAccessResponse) UnmarshalJSON

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

func (*NullableOrganizationAccessResponse) Unset

type NullableOrganizationMembershipResponse

type NullableOrganizationMembershipResponse struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationMembershipResponse) Get

func (NullableOrganizationMembershipResponse) IsSet

func (NullableOrganizationMembershipResponse) MarshalJSON

func (v NullableOrganizationMembershipResponse) MarshalJSON() ([]byte, error)

func (*NullableOrganizationMembershipResponse) Set

func (*NullableOrganizationMembershipResponse) UnmarshalJSON

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

func (*NullableOrganizationMembershipResponse) Unset

type NullableOrganizationResponse

type NullableOrganizationResponse struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationResponse

func NewNullableOrganizationResponse(val *OrganizationResponse) *NullableOrganizationResponse

func (NullableOrganizationResponse) Get

func (NullableOrganizationResponse) IsSet

func (NullableOrganizationResponse) MarshalJSON

func (v NullableOrganizationResponse) MarshalJSON() ([]byte, error)

func (*NullableOrganizationResponse) Set

func (*NullableOrganizationResponse) UnmarshalJSON

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

func (*NullableOrganizationResponse) Unset

func (v *NullableOrganizationResponse) Unset()

type NullableOrganizationTokenResponse

type NullableOrganizationTokenResponse struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationTokenResponse) Get

func (NullableOrganizationTokenResponse) IsSet

func (NullableOrganizationTokenResponse) MarshalJSON

func (v NullableOrganizationTokenResponse) MarshalJSON() ([]byte, error)

func (*NullableOrganizationTokenResponse) Set

func (*NullableOrganizationTokenResponse) UnmarshalJSON

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

func (*NullableOrganizationTokenResponse) Unset

type NullableOrphanService

type NullableOrphanService struct {
	// contains filtered or unexported fields
}

func NewNullableOrphanService

func NewNullableOrphanService(val *OrphanService) *NullableOrphanService

func (NullableOrphanService) Get

func (NullableOrphanService) IsSet

func (v NullableOrphanService) IsSet() bool

func (NullableOrphanService) MarshalJSON

func (v NullableOrphanService) MarshalJSON() ([]byte, error)

func (*NullableOrphanService) Set

func (v *NullableOrphanService) Set(val *OrphanService)

func (*NullableOrphanService) UnmarshalJSON

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

func (*NullableOrphanService) Unset

func (v *NullableOrphanService) Unset()

type NullableOrphanServiceResponse

type NullableOrphanServiceResponse struct {
	// contains filtered or unexported fields
}

func (NullableOrphanServiceResponse) Get

func (NullableOrphanServiceResponse) IsSet

func (NullableOrphanServiceResponse) MarshalJSON

func (v NullableOrphanServiceResponse) MarshalJSON() ([]byte, error)

func (*NullableOrphanServiceResponse) Set

func (*NullableOrphanServiceResponse) UnmarshalJSON

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

func (*NullableOrphanServiceResponse) Unset

func (v *NullableOrphanServiceResponse) Unset()

type NullablePair

type NullablePair struct {
	// contains filtered or unexported fields
}

func NewNullablePair

func NewNullablePair(val *Pair) *NullablePair

func (NullablePair) Get

func (v NullablePair) Get() *Pair

func (NullablePair) IsSet

func (v NullablePair) IsSet() bool

func (NullablePair) MarshalJSON

func (v NullablePair) MarshalJSON() ([]byte, error)

func (*NullablePair) Set

func (v *NullablePair) Set(val *Pair)

func (*NullablePair) UnmarshalJSON

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

func (*NullablePair) Unset

func (v *NullablePair) Unset()

type NullablePendingAuthorization

type NullablePendingAuthorization struct {
	// contains filtered or unexported fields
}

func NewNullablePendingAuthorization

func NewNullablePendingAuthorization(val *PendingAuthorization) *NullablePendingAuthorization

func (NullablePendingAuthorization) Get

func (NullablePendingAuthorization) IsSet

func (NullablePendingAuthorization) MarshalJSON

func (v NullablePendingAuthorization) MarshalJSON() ([]byte, error)

func (*NullablePendingAuthorization) Set

func (*NullablePendingAuthorization) UnmarshalJSON

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

func (*NullablePendingAuthorization) Unset

func (v *NullablePendingAuthorization) Unset()

type NullableRemoveApiServerPrivilegesRequest

type NullableRemoveApiServerPrivilegesRequest struct {
	// contains filtered or unexported fields
}

func (NullableRemoveApiServerPrivilegesRequest) Get

func (NullableRemoveApiServerPrivilegesRequest) IsSet

func (NullableRemoveApiServerPrivilegesRequest) MarshalJSON

func (*NullableRemoveApiServerPrivilegesRequest) Set

func (*NullableRemoveApiServerPrivilegesRequest) UnmarshalJSON

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

func (*NullableRemoveApiServerPrivilegesRequest) Unset

type NullableRemoveClientPrivilegesRequest

type NullableRemoveClientPrivilegesRequest struct {
	// contains filtered or unexported fields
}

func (NullableRemoveClientPrivilegesRequest) Get

func (NullableRemoveClientPrivilegesRequest) IsSet

func (NullableRemoveClientPrivilegesRequest) MarshalJSON

func (v NullableRemoveClientPrivilegesRequest) MarshalJSON() ([]byte, error)

func (*NullableRemoveClientPrivilegesRequest) Set

func (*NullableRemoveClientPrivilegesRequest) UnmarshalJSON

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

func (*NullableRemoveClientPrivilegesRequest) Unset

type NullableRemoveOrganizationPrivilegesRequest

type NullableRemoveOrganizationPrivilegesRequest struct {
	// contains filtered or unexported fields
}

func (NullableRemoveOrganizationPrivilegesRequest) Get

func (NullableRemoveOrganizationPrivilegesRequest) IsSet

func (NullableRemoveOrganizationPrivilegesRequest) MarshalJSON

func (*NullableRemoveOrganizationPrivilegesRequest) Set

func (*NullableRemoveOrganizationPrivilegesRequest) UnmarshalJSON

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

func (*NullableRemoveOrganizationPrivilegesRequest) Unset

type NullableRemoveOrphanRequest

type NullableRemoveOrphanRequest struct {
	// contains filtered or unexported fields
}

func NewNullableRemoveOrphanRequest

func NewNullableRemoveOrphanRequest(val *RemoveOrphanRequest) *NullableRemoveOrphanRequest

func (NullableRemoveOrphanRequest) Get

func (NullableRemoveOrphanRequest) IsSet

func (NullableRemoveOrphanRequest) MarshalJSON

func (v NullableRemoveOrphanRequest) MarshalJSON() ([]byte, error)

func (*NullableRemoveOrphanRequest) Set

func (*NullableRemoveOrphanRequest) UnmarshalJSON

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

func (*NullableRemoveOrphanRequest) Unset

func (v *NullableRemoveOrphanRequest) Unset()

type NullableRemoveServicePrivilegesRequest

type NullableRemoveServicePrivilegesRequest struct {
	// contains filtered or unexported fields
}

func (NullableRemoveServicePrivilegesRequest) Get

func (NullableRemoveServicePrivilegesRequest) IsSet

func (NullableRemoveServicePrivilegesRequest) MarshalJSON

func (v NullableRemoveServicePrivilegesRequest) MarshalJSON() ([]byte, error)

func (*NullableRemoveServicePrivilegesRequest) Set

func (*NullableRemoveServicePrivilegesRequest) UnmarshalJSON

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

func (*NullableRemoveServicePrivilegesRequest) Unset

type NullableRenameOrganizationTokenRequest

type NullableRenameOrganizationTokenRequest struct {
	// contains filtered or unexported fields
}

func (NullableRenameOrganizationTokenRequest) Get

func (NullableRenameOrganizationTokenRequest) IsSet

func (NullableRenameOrganizationTokenRequest) MarshalJSON

func (v NullableRenameOrganizationTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableRenameOrganizationTokenRequest) Set

func (*NullableRenameOrganizationTokenRequest) UnmarshalJSON

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

func (*NullableRenameOrganizationTokenRequest) Unset

type NullableRenameServiceTokenRequest

type NullableRenameServiceTokenRequest struct {
	// contains filtered or unexported fields
}

func (NullableRenameServiceTokenRequest) Get

func (NullableRenameServiceTokenRequest) IsSet

func (NullableRenameServiceTokenRequest) MarshalJSON

func (v NullableRenameServiceTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableRenameServiceTokenRequest) Set

func (*NullableRenameServiceTokenRequest) UnmarshalJSON

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

func (*NullableRenameServiceTokenRequest) Unset

type NullableRotateOrganizationTokenRequest

type NullableRotateOrganizationTokenRequest struct {
	// contains filtered or unexported fields
}

func (NullableRotateOrganizationTokenRequest) Get

func (NullableRotateOrganizationTokenRequest) IsSet

func (NullableRotateOrganizationTokenRequest) MarshalJSON

func (v NullableRotateOrganizationTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableRotateOrganizationTokenRequest) Set

func (*NullableRotateOrganizationTokenRequest) UnmarshalJSON

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

func (*NullableRotateOrganizationTokenRequest) Unset

type NullableRotateServiceTokenRequest

type NullableRotateServiceTokenRequest struct {
	// contains filtered or unexported fields
}

func (NullableRotateServiceTokenRequest) Get

func (NullableRotateServiceTokenRequest) IsSet

func (NullableRotateServiceTokenRequest) MarshalJSON

func (v NullableRotateServiceTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableRotateServiceTokenRequest) Set

func (*NullableRotateServiceTokenRequest) UnmarshalJSON

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

func (*NullableRotateServiceTokenRequest) Unset

type NullableScope

type NullableScope struct {
	// contains filtered or unexported fields
}

func NewNullableScope

func NewNullableScope(val *Scope) *NullableScope

func (NullableScope) Get

func (v NullableScope) Get() *Scope

func (NullableScope) IsSet

func (v NullableScope) IsSet() bool

func (NullableScope) MarshalJSON

func (v NullableScope) MarshalJSON() ([]byte, error)

func (*NullableScope) Set

func (v *NullableScope) Set(val *Scope)

func (*NullableScope) UnmarshalJSON

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

func (*NullableScope) Unset

func (v *NullableScope) Unset()

type NullableService

type NullableService struct {
	// contains filtered or unexported fields
}

func NewNullableService

func NewNullableService(val *Service) *NullableService

func (NullableService) Get

func (v NullableService) Get() *Service

func (NullableService) IsSet

func (v NullableService) IsSet() bool

func (NullableService) MarshalJSON

func (v NullableService) MarshalJSON() ([]byte, error)

func (*NullableService) Set

func (v *NullableService) Set(val *Service)

func (*NullableService) UnmarshalJSON

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

func (*NullableService) Unset

func (v *NullableService) Unset()

type NullableServiceAccess

type NullableServiceAccess struct {
	// contains filtered or unexported fields
}

func NewNullableServiceAccess

func NewNullableServiceAccess(val *ServiceAccess) *NullableServiceAccess

func (NullableServiceAccess) Get

func (NullableServiceAccess) IsSet

func (v NullableServiceAccess) IsSet() bool

func (NullableServiceAccess) MarshalJSON

func (v NullableServiceAccess) MarshalJSON() ([]byte, error)

func (*NullableServiceAccess) Set

func (v *NullableServiceAccess) Set(val *ServiceAccess)

func (*NullableServiceAccess) UnmarshalJSON

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

func (*NullableServiceAccess) Unset

func (v *NullableServiceAccess) Unset()

type NullableServiceAccessResponse

type NullableServiceAccessResponse struct {
	// contains filtered or unexported fields
}

func (NullableServiceAccessResponse) Get

func (NullableServiceAccessResponse) IsSet

func (NullableServiceAccessResponse) MarshalJSON

func (v NullableServiceAccessResponse) MarshalJSON() ([]byte, error)

func (*NullableServiceAccessResponse) Set

func (*NullableServiceAccessResponse) UnmarshalJSON

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

func (*NullableServiceAccessResponse) Unset

func (v *NullableServiceAccessResponse) Unset()

type NullableServiceInstance

type NullableServiceInstance struct {
	// contains filtered or unexported fields
}

func NewNullableServiceInstance

func NewNullableServiceInstance(val *ServiceInstance) *NullableServiceInstance

func (NullableServiceInstance) Get

func (NullableServiceInstance) IsSet

func (v NullableServiceInstance) IsSet() bool

func (NullableServiceInstance) MarshalJSON

func (v NullableServiceInstance) MarshalJSON() ([]byte, error)

func (*NullableServiceInstance) Set

func (*NullableServiceInstance) UnmarshalJSON

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

func (*NullableServiceInstance) Unset

func (v *NullableServiceInstance) Unset()

type NullableServiceInstanceManagementResponse

type NullableServiceInstanceManagementResponse struct {
	// contains filtered or unexported fields
}

func (NullableServiceInstanceManagementResponse) Get

func (NullableServiceInstanceManagementResponse) IsSet

func (NullableServiceInstanceManagementResponse) MarshalJSON

func (*NullableServiceInstanceManagementResponse) Set

func (*NullableServiceInstanceManagementResponse) UnmarshalJSON

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

func (*NullableServiceInstanceManagementResponse) Unset

type NullableServiceInstanceMembershipResponse

type NullableServiceInstanceMembershipResponse struct {
	// contains filtered or unexported fields
}

func (NullableServiceInstanceMembershipResponse) Get

func (NullableServiceInstanceMembershipResponse) IsSet

func (NullableServiceInstanceMembershipResponse) MarshalJSON

func (*NullableServiceInstanceMembershipResponse) Set

func (*NullableServiceInstanceMembershipResponse) UnmarshalJSON

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

func (*NullableServiceInstanceMembershipResponse) Unset

type NullableServiceTokenResponse

type NullableServiceTokenResponse struct {
	// contains filtered or unexported fields
}

func NewNullableServiceTokenResponse

func NewNullableServiceTokenResponse(val *ServiceTokenResponse) *NullableServiceTokenResponse

func (NullableServiceTokenResponse) Get

func (NullableServiceTokenResponse) IsSet

func (NullableServiceTokenResponse) MarshalJSON

func (v NullableServiceTokenResponse) MarshalJSON() ([]byte, error)

func (*NullableServiceTokenResponse) Set

func (*NullableServiceTokenResponse) UnmarshalJSON

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

func (*NullableServiceTokenResponse) Unset

func (v *NullableServiceTokenResponse) Unset()

type NullableSnsCredentials

type NullableSnsCredentials struct {
	// contains filtered or unexported fields
}

func NewNullableSnsCredentials

func NewNullableSnsCredentials(val *SnsCredentials) *NullableSnsCredentials

func (NullableSnsCredentials) Get

func (NullableSnsCredentials) IsSet

func (v NullableSnsCredentials) IsSet() bool

func (NullableSnsCredentials) MarshalJSON

func (v NullableSnsCredentials) MarshalJSON() ([]byte, error)

func (*NullableSnsCredentials) Set

func (*NullableSnsCredentials) UnmarshalJSON

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

func (*NullableSnsCredentials) Unset

func (v *NullableSnsCredentials) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableStringArray

type NullableStringArray struct {
	// contains filtered or unexported fields
}

func NewNullableStringArray

func NewNullableStringArray(val *StringArray) *NullableStringArray

func (NullableStringArray) Get

func (NullableStringArray) IsSet

func (v NullableStringArray) IsSet() bool

func (NullableStringArray) MarshalJSON

func (v NullableStringArray) MarshalJSON() ([]byte, error)

func (*NullableStringArray) Set

func (v *NullableStringArray) Set(val *StringArray)

func (*NullableStringArray) UnmarshalJSON

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

func (*NullableStringArray) Unset

func (v *NullableStringArray) Unset()

type NullableTaggedValue

type NullableTaggedValue struct {
	// contains filtered or unexported fields
}

func NewNullableTaggedValue

func NewNullableTaggedValue(val *TaggedValue) *NullableTaggedValue

func (NullableTaggedValue) Get

func (NullableTaggedValue) IsSet

func (v NullableTaggedValue) IsSet() bool

func (NullableTaggedValue) MarshalJSON

func (v NullableTaggedValue) MarshalJSON() ([]byte, error)

func (*NullableTaggedValue) Set

func (v *NullableTaggedValue) Set(val *TaggedValue)

func (*NullableTaggedValue) UnmarshalJSON

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

func (*NullableTaggedValue) Unset

func (v *NullableTaggedValue) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTrustAnchor

type NullableTrustAnchor struct {
	// contains filtered or unexported fields
}

func NewNullableTrustAnchor

func NewNullableTrustAnchor(val *TrustAnchor) *NullableTrustAnchor

func (NullableTrustAnchor) Get

func (NullableTrustAnchor) IsSet

func (v NullableTrustAnchor) IsSet() bool

func (NullableTrustAnchor) MarshalJSON

func (v NullableTrustAnchor) MarshalJSON() ([]byte, error)

func (*NullableTrustAnchor) Set

func (v *NullableTrustAnchor) Set(val *TrustAnchor)

func (*NullableTrustAnchor) UnmarshalJSON

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

func (*NullableTrustAnchor) Unset

func (v *NullableTrustAnchor) Unset()

type NullableUpdateApiServerPrivilegesRequest

type NullableUpdateApiServerPrivilegesRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateApiServerPrivilegesRequest) Get

func (NullableUpdateApiServerPrivilegesRequest) IsSet

func (NullableUpdateApiServerPrivilegesRequest) MarshalJSON

func (*NullableUpdateApiServerPrivilegesRequest) Set

func (*NullableUpdateApiServerPrivilegesRequest) UnmarshalJSON

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

func (*NullableUpdateApiServerPrivilegesRequest) Unset

type NullableUpdateApiServerRequest

type NullableUpdateApiServerRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateApiServerRequest) Get

func (NullableUpdateApiServerRequest) IsSet

func (NullableUpdateApiServerRequest) MarshalJSON

func (v NullableUpdateApiServerRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateApiServerRequest) Set

func (*NullableUpdateApiServerRequest) UnmarshalJSON

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

func (*NullableUpdateApiServerRequest) Unset

func (v *NullableUpdateApiServerRequest) Unset()

type NullableUpdateClientPrivilegesRequest

type NullableUpdateClientPrivilegesRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateClientPrivilegesRequest) Get

func (NullableUpdateClientPrivilegesRequest) IsSet

func (NullableUpdateClientPrivilegesRequest) MarshalJSON

func (v NullableUpdateClientPrivilegesRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateClientPrivilegesRequest) Set

func (*NullableUpdateClientPrivilegesRequest) UnmarshalJSON

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

func (*NullableUpdateClientPrivilegesRequest) Unset

type NullableUpdateOrganizationPrivilegesRequest

type NullableUpdateOrganizationPrivilegesRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateOrganizationPrivilegesRequest) Get

func (NullableUpdateOrganizationPrivilegesRequest) IsSet

func (NullableUpdateOrganizationPrivilegesRequest) MarshalJSON

func (*NullableUpdateOrganizationPrivilegesRequest) Set

func (*NullableUpdateOrganizationPrivilegesRequest) UnmarshalJSON

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

func (*NullableUpdateOrganizationPrivilegesRequest) Unset

type NullableUpdateOrganizationRequest

type NullableUpdateOrganizationRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateOrganizationRequest) Get

func (NullableUpdateOrganizationRequest) IsSet

func (NullableUpdateOrganizationRequest) MarshalJSON

func (v NullableUpdateOrganizationRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateOrganizationRequest) Set

func (*NullableUpdateOrganizationRequest) UnmarshalJSON

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

func (*NullableUpdateOrganizationRequest) Unset

type NullableUpdateServicePrivilegesRequest

type NullableUpdateServicePrivilegesRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateServicePrivilegesRequest) Get

func (NullableUpdateServicePrivilegesRequest) IsSet

func (NullableUpdateServicePrivilegesRequest) MarshalJSON

func (v NullableUpdateServicePrivilegesRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateServicePrivilegesRequest) Set

func (*NullableUpdateServicePrivilegesRequest) UnmarshalJSON

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

func (*NullableUpdateServicePrivilegesRequest) Unset

type NullableUpdateUserRequest

type NullableUpdateUserRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateUserRequest

func NewNullableUpdateUserRequest(val *UpdateUserRequest) *NullableUpdateUserRequest

func (NullableUpdateUserRequest) Get

func (NullableUpdateUserRequest) IsSet

func (v NullableUpdateUserRequest) IsSet() bool

func (NullableUpdateUserRequest) MarshalJSON

func (v NullableUpdateUserRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateUserRequest) Set

func (*NullableUpdateUserRequest) UnmarshalJSON

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

func (*NullableUpdateUserRequest) Unset

func (v *NullableUpdateUserRequest) Unset()

type NullableUserServiceMembershipResponse

type NullableUserServiceMembershipResponse struct {
	// contains filtered or unexported fields
}

func (NullableUserServiceMembershipResponse) Get

func (NullableUserServiceMembershipResponse) IsSet

func (NullableUserServiceMembershipResponse) MarshalJSON

func (v NullableUserServiceMembershipResponse) MarshalJSON() ([]byte, error)

func (*NullableUserServiceMembershipResponse) Set

func (*NullableUserServiceMembershipResponse) UnmarshalJSON

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

func (*NullableUserServiceMembershipResponse) Unset

type NullableWebAuthnChallengeRequest

type NullableWebAuthnChallengeRequest struct {
	// contains filtered or unexported fields
}

func (NullableWebAuthnChallengeRequest) Get

func (NullableWebAuthnChallengeRequest) IsSet

func (NullableWebAuthnChallengeRequest) MarshalJSON

func (v NullableWebAuthnChallengeRequest) MarshalJSON() ([]byte, error)

func (*NullableWebAuthnChallengeRequest) Set

func (*NullableWebAuthnChallengeRequest) UnmarshalJSON

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

func (*NullableWebAuthnChallengeRequest) Unset

type NullableWebAuthnChallengeResponse

type NullableWebAuthnChallengeResponse struct {
	// contains filtered or unexported fields
}

func (NullableWebAuthnChallengeResponse) Get

func (NullableWebAuthnChallengeResponse) IsSet

func (NullableWebAuthnChallengeResponse) MarshalJSON

func (v NullableWebAuthnChallengeResponse) MarshalJSON() ([]byte, error)

func (*NullableWebAuthnChallengeResponse) Set

func (*NullableWebAuthnChallengeResponse) UnmarshalJSON

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

func (*NullableWebAuthnChallengeResponse) Unset

type Organization

type Organization struct {
	Id             *int64               `json:"id,omitempty"`
	Xid            *int64               `json:"xid,omitempty"`
	Name           *string              `json:"name,omitempty"`
	Plan           *string              `json:"plan,omitempty"`
	ServiceListing []ServiceInstance    `json:"serviceListing,omitempty"`
	Members        []OrganizationAccess `json:"members,omitempty"`
}

Organization struct for Organization

func NewOrganization

func NewOrganization() *Organization

NewOrganization instantiates a new Organization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationWithDefaults

func NewOrganizationWithDefaults() *Organization

NewOrganizationWithDefaults instantiates a new Organization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Organization) GetId

func (o *Organization) GetId() int64

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

func (*Organization) GetIdOk

func (o *Organization) GetIdOk() (*int64, bool)

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

func (*Organization) GetMembers

func (o *Organization) GetMembers() []OrganizationAccess

GetMembers returns the Members field value if set, zero value otherwise.

func (*Organization) GetMembersOk

func (o *Organization) GetMembersOk() ([]OrganizationAccess, bool)

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

func (*Organization) GetName

func (o *Organization) GetName() string

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

func (*Organization) GetNameOk

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

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

func (*Organization) GetPlan

func (o *Organization) GetPlan() string

GetPlan returns the Plan field value if set, zero value otherwise.

func (*Organization) GetPlanOk

func (o *Organization) GetPlanOk() (*string, bool)

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

func (*Organization) GetServiceListing

func (o *Organization) GetServiceListing() []ServiceInstance

GetServiceListing returns the ServiceListing field value if set, zero value otherwise.

func (*Organization) GetServiceListingOk

func (o *Organization) GetServiceListingOk() ([]ServiceInstance, bool)

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

func (*Organization) GetXid

func (o *Organization) GetXid() int64

GetXid returns the Xid field value if set, zero value otherwise.

func (*Organization) GetXidOk

func (o *Organization) GetXidOk() (*int64, bool)

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

func (*Organization) HasId

func (o *Organization) HasId() bool

HasId returns a boolean if a field has been set.

func (*Organization) HasMembers

func (o *Organization) HasMembers() bool

HasMembers returns a boolean if a field has been set.

func (*Organization) HasName

func (o *Organization) HasName() bool

HasName returns a boolean if a field has been set.

func (*Organization) HasPlan

func (o *Organization) HasPlan() bool

HasPlan returns a boolean if a field has been set.

func (*Organization) HasServiceListing

func (o *Organization) HasServiceListing() bool

HasServiceListing returns a boolean if a field has been set.

func (*Organization) HasXid

func (o *Organization) HasXid() bool

HasXid returns a boolean if a field has been set.

func (Organization) MarshalJSON

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

func (*Organization) SetId

func (o *Organization) SetId(v int64)

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

func (*Organization) SetMembers

func (o *Organization) SetMembers(v []OrganizationAccess)

SetMembers gets a reference to the given []OrganizationAccess and assigns it to the Members field.

func (*Organization) SetName

func (o *Organization) SetName(v string)

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

func (*Organization) SetPlan

func (o *Organization) SetPlan(v string)

SetPlan gets a reference to the given string and assigns it to the Plan field.

func (*Organization) SetServiceListing

func (o *Organization) SetServiceListing(v []ServiceInstance)

SetServiceListing gets a reference to the given []ServiceInstance and assigns it to the ServiceListing field.

func (*Organization) SetXid

func (o *Organization) SetXid(v int64)

SetXid gets a reference to the given int64 and assigns it to the Xid field.

type OrganizationAccess

type OrganizationAccess struct {
	Id                     *int64            `json:"id,omitempty"`
	Privileges             []string          `json:"privileges,omitempty"`
	AllApiServerPrivileges []string          `json:"allApiServerPrivileges,omitempty"`
	AllServicePrivileges   []string          `json:"allServicePrivileges,omitempty"`
	AllClientPrivileges    []string          `json:"allClientPrivileges,omitempty"`
	ApiServerAccess        []ApiServerAccess `json:"apiServerAccess,omitempty"`
	OrganizationId         *int64            `json:"organization_id,omitempty"`
	UserId                 *int64            `json:"user_id,omitempty"`
}

OrganizationAccess struct for OrganizationAccess

func NewOrganizationAccess

func NewOrganizationAccess() *OrganizationAccess

NewOrganizationAccess instantiates a new OrganizationAccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationAccessWithDefaults

func NewOrganizationAccessWithDefaults() *OrganizationAccess

NewOrganizationAccessWithDefaults instantiates a new OrganizationAccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationAccess) GetAllApiServerPrivileges

func (o *OrganizationAccess) GetAllApiServerPrivileges() []string

GetAllApiServerPrivileges returns the AllApiServerPrivileges field value if set, zero value otherwise.

func (*OrganizationAccess) GetAllApiServerPrivilegesOk

func (o *OrganizationAccess) GetAllApiServerPrivilegesOk() ([]string, bool)

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

func (*OrganizationAccess) GetAllClientPrivileges

func (o *OrganizationAccess) GetAllClientPrivileges() []string

GetAllClientPrivileges returns the AllClientPrivileges field value if set, zero value otherwise.

func (*OrganizationAccess) GetAllClientPrivilegesOk

func (o *OrganizationAccess) GetAllClientPrivilegesOk() ([]string, bool)

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

func (*OrganizationAccess) GetAllServicePrivileges

func (o *OrganizationAccess) GetAllServicePrivileges() []string

GetAllServicePrivileges returns the AllServicePrivileges field value if set, zero value otherwise.

func (*OrganizationAccess) GetAllServicePrivilegesOk

func (o *OrganizationAccess) GetAllServicePrivilegesOk() ([]string, bool)

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

func (*OrganizationAccess) GetApiServerAccess

func (o *OrganizationAccess) GetApiServerAccess() []ApiServerAccess

GetApiServerAccess returns the ApiServerAccess field value if set, zero value otherwise.

func (*OrganizationAccess) GetApiServerAccessOk

func (o *OrganizationAccess) GetApiServerAccessOk() ([]ApiServerAccess, bool)

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

func (*OrganizationAccess) GetId

func (o *OrganizationAccess) GetId() int64

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

func (*OrganizationAccess) GetIdOk

func (o *OrganizationAccess) GetIdOk() (*int64, bool)

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

func (*OrganizationAccess) GetOrganizationId

func (o *OrganizationAccess) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*OrganizationAccess) GetOrganizationIdOk

func (o *OrganizationAccess) GetOrganizationIdOk() (*int64, bool)

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

func (*OrganizationAccess) GetPrivileges

func (o *OrganizationAccess) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*OrganizationAccess) GetPrivilegesOk

func (o *OrganizationAccess) GetPrivilegesOk() ([]string, bool)

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

func (*OrganizationAccess) GetUserId

func (o *OrganizationAccess) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*OrganizationAccess) GetUserIdOk

func (o *OrganizationAccess) GetUserIdOk() (*int64, bool)

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

func (*OrganizationAccess) HasAllApiServerPrivileges

func (o *OrganizationAccess) HasAllApiServerPrivileges() bool

HasAllApiServerPrivileges returns a boolean if a field has been set.

func (*OrganizationAccess) HasAllClientPrivileges

func (o *OrganizationAccess) HasAllClientPrivileges() bool

HasAllClientPrivileges returns a boolean if a field has been set.

func (*OrganizationAccess) HasAllServicePrivileges

func (o *OrganizationAccess) HasAllServicePrivileges() bool

HasAllServicePrivileges returns a boolean if a field has been set.

func (*OrganizationAccess) HasApiServerAccess

func (o *OrganizationAccess) HasApiServerAccess() bool

HasApiServerAccess returns a boolean if a field has been set.

func (*OrganizationAccess) HasId

func (o *OrganizationAccess) HasId() bool

HasId returns a boolean if a field has been set.

func (*OrganizationAccess) HasOrganizationId

func (o *OrganizationAccess) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*OrganizationAccess) HasPrivileges

func (o *OrganizationAccess) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (*OrganizationAccess) HasUserId

func (o *OrganizationAccess) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (OrganizationAccess) MarshalJSON

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

func (*OrganizationAccess) SetAllApiServerPrivileges

func (o *OrganizationAccess) SetAllApiServerPrivileges(v []string)

SetAllApiServerPrivileges gets a reference to the given []string and assigns it to the AllApiServerPrivileges field.

func (*OrganizationAccess) SetAllClientPrivileges

func (o *OrganizationAccess) SetAllClientPrivileges(v []string)

SetAllClientPrivileges gets a reference to the given []string and assigns it to the AllClientPrivileges field.

func (*OrganizationAccess) SetAllServicePrivileges

func (o *OrganizationAccess) SetAllServicePrivileges(v []string)

SetAllServicePrivileges gets a reference to the given []string and assigns it to the AllServicePrivileges field.

func (*OrganizationAccess) SetApiServerAccess

func (o *OrganizationAccess) SetApiServerAccess(v []ApiServerAccess)

SetApiServerAccess gets a reference to the given []ApiServerAccess and assigns it to the ApiServerAccess field.

func (*OrganizationAccess) SetId

func (o *OrganizationAccess) SetId(v int64)

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

func (*OrganizationAccess) SetOrganizationId

func (o *OrganizationAccess) SetOrganizationId(v int64)

SetOrganizationId gets a reference to the given int64 and assigns it to the OrganizationId field.

func (*OrganizationAccess) SetPrivileges

func (o *OrganizationAccess) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*OrganizationAccess) SetUserId

func (o *OrganizationAccess) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

type OrganizationAccessResponse

type OrganizationAccessResponse struct {
	User                   *LogInResponse            `json:"user,omitempty"`
	UserId                 *int64                    `json:"userId,omitempty"`
	OrganizationId         *int64                    `json:"organizationId,omitempty"`
	Privileges             []string                  `json:"privileges,omitempty"`
	AllApiServerPrivileges []string                  `json:"allApiServerPrivileges,omitempty"`
	AllServicePrivileges   []string                  `json:"allServicePrivileges,omitempty"`
	AllClientPrivileges    []string                  `json:"allClientPrivileges,omitempty"`
	ApiServerAccess        []ApiServerAccessResponse `json:"apiServerAccess,omitempty"`
}

OrganizationAccessResponse struct for OrganizationAccessResponse

func NewOrganizationAccessResponse

func NewOrganizationAccessResponse() *OrganizationAccessResponse

NewOrganizationAccessResponse instantiates a new OrganizationAccessResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationAccessResponseWithDefaults

func NewOrganizationAccessResponseWithDefaults() *OrganizationAccessResponse

NewOrganizationAccessResponseWithDefaults instantiates a new OrganizationAccessResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationAccessResponse) GetAllApiServerPrivileges

func (o *OrganizationAccessResponse) GetAllApiServerPrivileges() []string

GetAllApiServerPrivileges returns the AllApiServerPrivileges field value if set, zero value otherwise.

func (*OrganizationAccessResponse) GetAllApiServerPrivilegesOk

func (o *OrganizationAccessResponse) GetAllApiServerPrivilegesOk() ([]string, bool)

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

func (*OrganizationAccessResponse) GetAllClientPrivileges

func (o *OrganizationAccessResponse) GetAllClientPrivileges() []string

GetAllClientPrivileges returns the AllClientPrivileges field value if set, zero value otherwise.

func (*OrganizationAccessResponse) GetAllClientPrivilegesOk

func (o *OrganizationAccessResponse) GetAllClientPrivilegesOk() ([]string, bool)

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

func (*OrganizationAccessResponse) GetAllServicePrivileges

func (o *OrganizationAccessResponse) GetAllServicePrivileges() []string

GetAllServicePrivileges returns the AllServicePrivileges field value if set, zero value otherwise.

func (*OrganizationAccessResponse) GetAllServicePrivilegesOk

func (o *OrganizationAccessResponse) GetAllServicePrivilegesOk() ([]string, bool)

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

func (*OrganizationAccessResponse) GetApiServerAccess

func (o *OrganizationAccessResponse) GetApiServerAccess() []ApiServerAccessResponse

GetApiServerAccess returns the ApiServerAccess field value if set, zero value otherwise.

func (*OrganizationAccessResponse) GetApiServerAccessOk

func (o *OrganizationAccessResponse) GetApiServerAccessOk() ([]ApiServerAccessResponse, bool)

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

func (*OrganizationAccessResponse) GetOrganizationId

func (o *OrganizationAccessResponse) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*OrganizationAccessResponse) GetOrganizationIdOk

func (o *OrganizationAccessResponse) GetOrganizationIdOk() (*int64, bool)

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

func (*OrganizationAccessResponse) GetPrivileges

func (o *OrganizationAccessResponse) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*OrganizationAccessResponse) GetPrivilegesOk

func (o *OrganizationAccessResponse) GetPrivilegesOk() ([]string, bool)

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

func (*OrganizationAccessResponse) GetUser

GetUser returns the User field value if set, zero value otherwise.

func (*OrganizationAccessResponse) GetUserId

func (o *OrganizationAccessResponse) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*OrganizationAccessResponse) GetUserIdOk

func (o *OrganizationAccessResponse) GetUserIdOk() (*int64, bool)

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

func (*OrganizationAccessResponse) GetUserOk

func (o *OrganizationAccessResponse) GetUserOk() (*LogInResponse, bool)

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

func (*OrganizationAccessResponse) HasAllApiServerPrivileges

func (o *OrganizationAccessResponse) HasAllApiServerPrivileges() bool

HasAllApiServerPrivileges returns a boolean if a field has been set.

func (*OrganizationAccessResponse) HasAllClientPrivileges

func (o *OrganizationAccessResponse) HasAllClientPrivileges() bool

HasAllClientPrivileges returns a boolean if a field has been set.

func (*OrganizationAccessResponse) HasAllServicePrivileges

func (o *OrganizationAccessResponse) HasAllServicePrivileges() bool

HasAllServicePrivileges returns a boolean if a field has been set.

func (*OrganizationAccessResponse) HasApiServerAccess

func (o *OrganizationAccessResponse) HasApiServerAccess() bool

HasApiServerAccess returns a boolean if a field has been set.

func (*OrganizationAccessResponse) HasOrganizationId

func (o *OrganizationAccessResponse) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*OrganizationAccessResponse) HasPrivileges

func (o *OrganizationAccessResponse) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (*OrganizationAccessResponse) HasUser

func (o *OrganizationAccessResponse) HasUser() bool

HasUser returns a boolean if a field has been set.

func (*OrganizationAccessResponse) HasUserId

func (o *OrganizationAccessResponse) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (OrganizationAccessResponse) MarshalJSON

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

func (*OrganizationAccessResponse) SetAllApiServerPrivileges

func (o *OrganizationAccessResponse) SetAllApiServerPrivileges(v []string)

SetAllApiServerPrivileges gets a reference to the given []string and assigns it to the AllApiServerPrivileges field.

func (*OrganizationAccessResponse) SetAllClientPrivileges

func (o *OrganizationAccessResponse) SetAllClientPrivileges(v []string)

SetAllClientPrivileges gets a reference to the given []string and assigns it to the AllClientPrivileges field.

func (*OrganizationAccessResponse) SetAllServicePrivileges

func (o *OrganizationAccessResponse) SetAllServicePrivileges(v []string)

SetAllServicePrivileges gets a reference to the given []string and assigns it to the AllServicePrivileges field.

func (*OrganizationAccessResponse) SetApiServerAccess

func (o *OrganizationAccessResponse) SetApiServerAccess(v []ApiServerAccessResponse)

SetApiServerAccess gets a reference to the given []ApiServerAccessResponse and assigns it to the ApiServerAccess field.

func (*OrganizationAccessResponse) SetOrganizationId

func (o *OrganizationAccessResponse) SetOrganizationId(v int64)

SetOrganizationId gets a reference to the given int64 and assigns it to the OrganizationId field.

func (*OrganizationAccessResponse) SetPrivileges

func (o *OrganizationAccessResponse) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*OrganizationAccessResponse) SetUser

SetUser gets a reference to the given LogInResponse and assigns it to the User field.

func (*OrganizationAccessResponse) SetUserId

func (o *OrganizationAccessResponse) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

type OrganizationApiApiService

type OrganizationApiApiService service

OrganizationApiApiService OrganizationApiApi service

func (*OrganizationApiApiService) CreateOrganization

CreateOrganization Method for CreateOrganization

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

func (*OrganizationApiApiService) CreateOrganizationExecute

Execute executes the request

@return OrganizationResponse

func (*OrganizationApiApiService) DeleteOrganization

DeleteOrganization Method for DeleteOrganization

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

func (*OrganizationApiApiService) DeleteOrganizationExecute

func (a *OrganizationApiApiService) DeleteOrganizationExecute(r ApiDeleteOrganizationRequest) (*http.Response, error)

Execute executes the request

func (*OrganizationApiApiService) GetAll

GetAll Method for GetAll

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

func (*OrganizationApiApiService) GetAllExecute

Execute executes the request

@return []OrganizationResponse

func (*OrganizationApiApiService) GetOrganization

GetOrganization Method for GetOrganization

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

func (*OrganizationApiApiService) GetOrganizationExecute

Execute executes the request

@return OrganizationResponse

func (*OrganizationApiApiService) UpdateOrganization

UpdateOrganization Method for UpdateOrganization

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

func (*OrganizationApiApiService) UpdateOrganizationExecute

Execute executes the request

@return OrganizationResponse

type OrganizationMembershipResponse

type OrganizationMembershipResponse struct {
	OrganizationId *int64                        `json:"organizationId,omitempty"`
	Name           *string                       `json:"name,omitempty"`
	Plan           *string                       `json:"plan,omitempty"`
	Privileges     []string                      `json:"privileges,omitempty"`
	ApiServers     []ApiServerMembershipResponse `json:"apiServers,omitempty"`
}

OrganizationMembershipResponse struct for OrganizationMembershipResponse

func NewOrganizationMembershipResponse

func NewOrganizationMembershipResponse() *OrganizationMembershipResponse

NewOrganizationMembershipResponse instantiates a new OrganizationMembershipResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationMembershipResponseWithDefaults

func NewOrganizationMembershipResponseWithDefaults() *OrganizationMembershipResponse

NewOrganizationMembershipResponseWithDefaults instantiates a new OrganizationMembershipResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationMembershipResponse) GetApiServers

GetApiServers returns the ApiServers field value if set, zero value otherwise.

func (*OrganizationMembershipResponse) GetApiServersOk

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

func (*OrganizationMembershipResponse) GetName

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

func (*OrganizationMembershipResponse) GetNameOk

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

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

func (*OrganizationMembershipResponse) GetOrganizationId

func (o *OrganizationMembershipResponse) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*OrganizationMembershipResponse) GetOrganizationIdOk

func (o *OrganizationMembershipResponse) GetOrganizationIdOk() (*int64, bool)

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

func (*OrganizationMembershipResponse) GetPlan

GetPlan returns the Plan field value if set, zero value otherwise.

func (*OrganizationMembershipResponse) GetPlanOk

func (o *OrganizationMembershipResponse) GetPlanOk() (*string, bool)

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

func (*OrganizationMembershipResponse) GetPrivileges

func (o *OrganizationMembershipResponse) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*OrganizationMembershipResponse) GetPrivilegesOk

func (o *OrganizationMembershipResponse) GetPrivilegesOk() ([]string, bool)

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

func (*OrganizationMembershipResponse) HasApiServers

func (o *OrganizationMembershipResponse) HasApiServers() bool

HasApiServers returns a boolean if a field has been set.

func (*OrganizationMembershipResponse) HasName

func (o *OrganizationMembershipResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*OrganizationMembershipResponse) HasOrganizationId

func (o *OrganizationMembershipResponse) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*OrganizationMembershipResponse) HasPlan

func (o *OrganizationMembershipResponse) HasPlan() bool

HasPlan returns a boolean if a field has been set.

func (*OrganizationMembershipResponse) HasPrivileges

func (o *OrganizationMembershipResponse) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (OrganizationMembershipResponse) MarshalJSON

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

func (*OrganizationMembershipResponse) SetApiServers

SetApiServers gets a reference to the given []ApiServerMembershipResponse and assigns it to the ApiServers field.

func (*OrganizationMembershipResponse) SetName

func (o *OrganizationMembershipResponse) SetName(v string)

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

func (*OrganizationMembershipResponse) SetOrganizationId

func (o *OrganizationMembershipResponse) SetOrganizationId(v int64)

SetOrganizationId gets a reference to the given int64 and assigns it to the OrganizationId field.

func (*OrganizationMembershipResponse) SetPlan

func (o *OrganizationMembershipResponse) SetPlan(v string)

SetPlan gets a reference to the given string and assigns it to the Plan field.

func (*OrganizationMembershipResponse) SetPrivileges

func (o *OrganizationMembershipResponse) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

type OrganizationResponse

type OrganizationResponse struct {
	Id      *int64                       `json:"id,omitempty"`
	Name    *string                      `json:"name,omitempty"`
	Plan    *string                      `json:"plan,omitempty"`
	Members []OrganizationAccessResponse `json:"members,omitempty"`
}

OrganizationResponse struct for OrganizationResponse

func NewOrganizationResponse

func NewOrganizationResponse() *OrganizationResponse

NewOrganizationResponse instantiates a new OrganizationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationResponseWithDefaults

func NewOrganizationResponseWithDefaults() *OrganizationResponse

NewOrganizationResponseWithDefaults instantiates a new OrganizationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationResponse) GetId

func (o *OrganizationResponse) GetId() int64

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

func (*OrganizationResponse) GetIdOk

func (o *OrganizationResponse) GetIdOk() (*int64, bool)

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

func (*OrganizationResponse) GetMembers

GetMembers returns the Members field value if set, zero value otherwise.

func (*OrganizationResponse) GetMembersOk

func (o *OrganizationResponse) GetMembersOk() ([]OrganizationAccessResponse, bool)

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

func (*OrganizationResponse) GetName

func (o *OrganizationResponse) GetName() string

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

func (*OrganizationResponse) GetNameOk

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

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

func (*OrganizationResponse) GetPlan

func (o *OrganizationResponse) GetPlan() string

GetPlan returns the Plan field value if set, zero value otherwise.

func (*OrganizationResponse) GetPlanOk

func (o *OrganizationResponse) GetPlanOk() (*string, bool)

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

func (*OrganizationResponse) HasId

func (o *OrganizationResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*OrganizationResponse) HasMembers

func (o *OrganizationResponse) HasMembers() bool

HasMembers returns a boolean if a field has been set.

func (*OrganizationResponse) HasName

func (o *OrganizationResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*OrganizationResponse) HasPlan

func (o *OrganizationResponse) HasPlan() bool

HasPlan returns a boolean if a field has been set.

func (OrganizationResponse) MarshalJSON

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

func (*OrganizationResponse) SetId

func (o *OrganizationResponse) SetId(v int64)

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

func (*OrganizationResponse) SetMembers

SetMembers gets a reference to the given []OrganizationAccessResponse and assigns it to the Members field.

func (*OrganizationResponse) SetName

func (o *OrganizationResponse) SetName(v string)

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

func (*OrganizationResponse) SetPlan

func (o *OrganizationResponse) SetPlan(v string)

SetPlan gets a reference to the given string and assigns it to the Plan field.

type OrganizationTokenApiApiService

type OrganizationTokenApiApiService service

OrganizationTokenApiApiService OrganizationTokenApiApi service

func (*OrganizationTokenApiApiService) CreateTokenForOrganization

CreateTokenForOrganization Method for CreateTokenForOrganization

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

func (*OrganizationTokenApiApiService) CreateTokenForOrganizationExecute

Execute executes the request

@return OrganizationTokenResponse

func (*OrganizationTokenApiApiService) DeleteOrganizationToken

DeleteOrganizationToken Method for DeleteOrganizationToken

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

func (*OrganizationTokenApiApiService) DeleteOrganizationTokenExecute

func (a *OrganizationTokenApiApiService) DeleteOrganizationTokenExecute(r ApiDeleteOrganizationTokenRequest) (*http.Response, error)

Execute executes the request

func (*OrganizationTokenApiApiService) GetTokensForService1

GetTokensForService1 Method for GetTokensForService1

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

func (*OrganizationTokenApiApiService) GetTokensForService1Execute

Execute executes the request

@return []OrganizationTokenResponse

func (*OrganizationTokenApiApiService) RenameTokenForService

RenameTokenForService Method for RenameTokenForService

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

func (*OrganizationTokenApiApiService) RenameTokenForServiceExecute

Execute executes the request

@return OrganizationTokenResponse

func (*OrganizationTokenApiApiService) RotateTokenForOrganization

RotateTokenForOrganization Method for RotateTokenForOrganization

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

func (*OrganizationTokenApiApiService) RotateTokenForOrganizationExecute

Execute executes the request

@return OrganizationTokenResponse

type OrganizationTokenResponse

type OrganizationTokenResponse struct {
	OrganizationId *int64  `json:"organizationId,omitempty"`
	AccessToken    *string `json:"accessToken,omitempty"`
	TokenId        *string `json:"tokenId,omitempty"`
	Description    *string `json:"description,omitempty"`
}

OrganizationTokenResponse struct for OrganizationTokenResponse

func NewOrganizationTokenResponse

func NewOrganizationTokenResponse() *OrganizationTokenResponse

NewOrganizationTokenResponse instantiates a new OrganizationTokenResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganizationTokenResponseWithDefaults

func NewOrganizationTokenResponseWithDefaults() *OrganizationTokenResponse

NewOrganizationTokenResponseWithDefaults instantiates a new OrganizationTokenResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrganizationTokenResponse) GetAccessToken

func (o *OrganizationTokenResponse) GetAccessToken() string

GetAccessToken returns the AccessToken field value if set, zero value otherwise.

func (*OrganizationTokenResponse) GetAccessTokenOk

func (o *OrganizationTokenResponse) GetAccessTokenOk() (*string, bool)

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

func (*OrganizationTokenResponse) GetDescription

func (o *OrganizationTokenResponse) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*OrganizationTokenResponse) GetDescriptionOk

func (o *OrganizationTokenResponse) GetDescriptionOk() (*string, bool)

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

func (*OrganizationTokenResponse) GetOrganizationId

func (o *OrganizationTokenResponse) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*OrganizationTokenResponse) GetOrganizationIdOk

func (o *OrganizationTokenResponse) GetOrganizationIdOk() (*int64, bool)

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

func (*OrganizationTokenResponse) GetTokenId

func (o *OrganizationTokenResponse) GetTokenId() string

GetTokenId returns the TokenId field value if set, zero value otherwise.

func (*OrganizationTokenResponse) GetTokenIdOk

func (o *OrganizationTokenResponse) GetTokenIdOk() (*string, bool)

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

func (*OrganizationTokenResponse) HasAccessToken

func (o *OrganizationTokenResponse) HasAccessToken() bool

HasAccessToken returns a boolean if a field has been set.

func (*OrganizationTokenResponse) HasDescription

func (o *OrganizationTokenResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*OrganizationTokenResponse) HasOrganizationId

func (o *OrganizationTokenResponse) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*OrganizationTokenResponse) HasTokenId

func (o *OrganizationTokenResponse) HasTokenId() bool

HasTokenId returns a boolean if a field has been set.

func (OrganizationTokenResponse) MarshalJSON

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

func (*OrganizationTokenResponse) SetAccessToken

func (o *OrganizationTokenResponse) SetAccessToken(v string)

SetAccessToken gets a reference to the given string and assigns it to the AccessToken field.

func (*OrganizationTokenResponse) SetDescription

func (o *OrganizationTokenResponse) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*OrganizationTokenResponse) SetOrganizationId

func (o *OrganizationTokenResponse) SetOrganizationId(v int64)

SetOrganizationId gets a reference to the given int64 and assigns it to the OrganizationId field.

func (*OrganizationTokenResponse) SetTokenId

func (o *OrganizationTokenResponse) SetTokenId(v string)

SetTokenId gets a reference to the given string and assigns it to the TokenId field.

type OrphanService

type OrphanService struct {
	ApiServerId *int64 `json:"apiServerId,omitempty"`
	ServiceId   *int64 `json:"serviceId,omitempty"`
}

OrphanService struct for OrphanService

func NewOrphanService

func NewOrphanService() *OrphanService

NewOrphanService instantiates a new OrphanService object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrphanServiceWithDefaults

func NewOrphanServiceWithDefaults() *OrphanService

NewOrphanServiceWithDefaults instantiates a new OrphanService object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrphanService) GetApiServerId

func (o *OrphanService) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value if set, zero value otherwise.

func (*OrphanService) GetApiServerIdOk

func (o *OrphanService) GetApiServerIdOk() (*int64, bool)

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

func (*OrphanService) GetServiceId

func (o *OrphanService) GetServiceId() int64

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*OrphanService) GetServiceIdOk

func (o *OrphanService) GetServiceIdOk() (*int64, bool)

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

func (*OrphanService) HasApiServerId

func (o *OrphanService) HasApiServerId() bool

HasApiServerId returns a boolean if a field has been set.

func (*OrphanService) HasServiceId

func (o *OrphanService) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (OrphanService) MarshalJSON

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

func (*OrphanService) SetApiServerId

func (o *OrphanService) SetApiServerId(v int64)

SetApiServerId gets a reference to the given int64 and assigns it to the ApiServerId field.

func (*OrphanService) SetServiceId

func (o *OrphanService) SetServiceId(v int64)

SetServiceId gets a reference to the given int64 and assigns it to the ServiceId field.

type OrphanServiceResponse

type OrphanServiceResponse struct {
	OnApiButNotOnIdp []OrphanService `json:"onApiButNotOnIdp,omitempty"`
	OnIdPButNotOnApi []OrphanService `json:"onIdPButNotOnApi,omitempty"`
}

OrphanServiceResponse struct for OrphanServiceResponse

func NewOrphanServiceResponse

func NewOrphanServiceResponse() *OrphanServiceResponse

NewOrphanServiceResponse instantiates a new OrphanServiceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrphanServiceResponseWithDefaults

func NewOrphanServiceResponseWithDefaults() *OrphanServiceResponse

NewOrphanServiceResponseWithDefaults instantiates a new OrphanServiceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrphanServiceResponse) GetOnApiButNotOnIdp

func (o *OrphanServiceResponse) GetOnApiButNotOnIdp() []OrphanService

GetOnApiButNotOnIdp returns the OnApiButNotOnIdp field value if set, zero value otherwise.

func (*OrphanServiceResponse) GetOnApiButNotOnIdpOk

func (o *OrphanServiceResponse) GetOnApiButNotOnIdpOk() ([]OrphanService, bool)

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

func (*OrphanServiceResponse) GetOnIdPButNotOnApi

func (o *OrphanServiceResponse) GetOnIdPButNotOnApi() []OrphanService

GetOnIdPButNotOnApi returns the OnIdPButNotOnApi field value if set, zero value otherwise.

func (*OrphanServiceResponse) GetOnIdPButNotOnApiOk

func (o *OrphanServiceResponse) GetOnIdPButNotOnApiOk() ([]OrphanService, bool)

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

func (*OrphanServiceResponse) HasOnApiButNotOnIdp

func (o *OrphanServiceResponse) HasOnApiButNotOnIdp() bool

HasOnApiButNotOnIdp returns a boolean if a field has been set.

func (*OrphanServiceResponse) HasOnIdPButNotOnApi

func (o *OrphanServiceResponse) HasOnIdPButNotOnApi() bool

HasOnIdPButNotOnApi returns a boolean if a field has been set.

func (OrphanServiceResponse) MarshalJSON

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

func (*OrphanServiceResponse) SetOnApiButNotOnIdp

func (o *OrphanServiceResponse) SetOnApiButNotOnIdp(v []OrphanService)

SetOnApiButNotOnIdp gets a reference to the given []OrphanService and assigns it to the OnApiButNotOnIdp field.

func (*OrphanServiceResponse) SetOnIdPButNotOnApi

func (o *OrphanServiceResponse) SetOnIdPButNotOnApi(v []OrphanService)

SetOnIdPButNotOnApi gets a reference to the given []OrphanService and assigns it to the OnIdPButNotOnApi field.

type Pair

type Pair struct {
	Key   *string `json:"key,omitempty"`
	Value *string `json:"value,omitempty"`
}

Pair struct for Pair

func NewPair

func NewPair() *Pair

NewPair instantiates a new Pair object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPairWithDefaults

func NewPairWithDefaults() *Pair

NewPairWithDefaults instantiates a new Pair object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Pair) GetKey

func (o *Pair) GetKey() string

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

func (*Pair) GetKeyOk

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

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

func (*Pair) GetValue

func (o *Pair) GetValue() string

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

func (*Pair) GetValueOk

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

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

func (*Pair) HasKey

func (o *Pair) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*Pair) HasValue

func (o *Pair) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Pair) MarshalJSON

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

func (*Pair) SetKey

func (o *Pair) SetKey(v string)

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

func (*Pair) SetValue

func (o *Pair) SetValue(v string)

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

type PendingAuthorization

type PendingAuthorization struct {
	AuthorizationResponse *AuthorizationResponse `json:"authorizationResponse,omitempty"`
	Audience              *string                `json:"audience,omitempty"`
	Resource              *string                `json:"resource,omitempty"`
}

PendingAuthorization struct for PendingAuthorization

func NewPendingAuthorization

func NewPendingAuthorization() *PendingAuthorization

NewPendingAuthorization instantiates a new PendingAuthorization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPendingAuthorizationWithDefaults

func NewPendingAuthorizationWithDefaults() *PendingAuthorization

NewPendingAuthorizationWithDefaults instantiates a new PendingAuthorization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PendingAuthorization) GetAudience

func (o *PendingAuthorization) GetAudience() string

GetAudience returns the Audience field value if set, zero value otherwise.

func (*PendingAuthorization) GetAudienceOk

func (o *PendingAuthorization) GetAudienceOk() (*string, bool)

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

func (*PendingAuthorization) GetAuthorizationResponse

func (o *PendingAuthorization) GetAuthorizationResponse() AuthorizationResponse

GetAuthorizationResponse returns the AuthorizationResponse field value if set, zero value otherwise.

func (*PendingAuthorization) GetAuthorizationResponseOk

func (o *PendingAuthorization) GetAuthorizationResponseOk() (*AuthorizationResponse, bool)

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

func (*PendingAuthorization) GetResource

func (o *PendingAuthorization) GetResource() string

GetResource returns the Resource field value if set, zero value otherwise.

func (*PendingAuthorization) GetResourceOk

func (o *PendingAuthorization) GetResourceOk() (*string, bool)

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

func (*PendingAuthorization) HasAudience

func (o *PendingAuthorization) HasAudience() bool

HasAudience returns a boolean if a field has been set.

func (*PendingAuthorization) HasAuthorizationResponse

func (o *PendingAuthorization) HasAuthorizationResponse() bool

HasAuthorizationResponse returns a boolean if a field has been set.

func (*PendingAuthorization) HasResource

func (o *PendingAuthorization) HasResource() bool

HasResource returns a boolean if a field has been set.

func (PendingAuthorization) MarshalJSON

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

func (*PendingAuthorization) SetAudience

func (o *PendingAuthorization) SetAudience(v string)

SetAudience gets a reference to the given string and assigns it to the Audience field.

func (*PendingAuthorization) SetAuthorizationResponse

func (o *PendingAuthorization) SetAuthorizationResponse(v AuthorizationResponse)

SetAuthorizationResponse gets a reference to the given AuthorizationResponse and assigns it to the AuthorizationResponse field.

func (*PendingAuthorization) SetResource

func (o *PendingAuthorization) SetResource(v string)

SetResource gets a reference to the given string and assigns it to the Resource field.

type RemoveApiServerPrivilegesRequest

type RemoveApiServerPrivilegesRequest struct {
	ApiServerId    *int64 `json:"apiServerId,omitempty"`
	OrganizationId *int64 `json:"organizationId,omitempty"`
	UserId         *int64 `json:"userId,omitempty"`
}

RemoveApiServerPrivilegesRequest struct for RemoveApiServerPrivilegesRequest

func NewRemoveApiServerPrivilegesRequest

func NewRemoveApiServerPrivilegesRequest() *RemoveApiServerPrivilegesRequest

NewRemoveApiServerPrivilegesRequest instantiates a new RemoveApiServerPrivilegesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRemoveApiServerPrivilegesRequestWithDefaults

func NewRemoveApiServerPrivilegesRequestWithDefaults() *RemoveApiServerPrivilegesRequest

NewRemoveApiServerPrivilegesRequestWithDefaults instantiates a new RemoveApiServerPrivilegesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RemoveApiServerPrivilegesRequest) GetApiServerId

func (o *RemoveApiServerPrivilegesRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value if set, zero value otherwise.

func (*RemoveApiServerPrivilegesRequest) GetApiServerIdOk

func (o *RemoveApiServerPrivilegesRequest) GetApiServerIdOk() (*int64, bool)

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

func (*RemoveApiServerPrivilegesRequest) GetOrganizationId

func (o *RemoveApiServerPrivilegesRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*RemoveApiServerPrivilegesRequest) GetOrganizationIdOk

func (o *RemoveApiServerPrivilegesRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*RemoveApiServerPrivilegesRequest) GetUserId

func (o *RemoveApiServerPrivilegesRequest) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*RemoveApiServerPrivilegesRequest) GetUserIdOk

func (o *RemoveApiServerPrivilegesRequest) GetUserIdOk() (*int64, bool)

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

func (*RemoveApiServerPrivilegesRequest) HasApiServerId

func (o *RemoveApiServerPrivilegesRequest) HasApiServerId() bool

HasApiServerId returns a boolean if a field has been set.

func (*RemoveApiServerPrivilegesRequest) HasOrganizationId

func (o *RemoveApiServerPrivilegesRequest) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*RemoveApiServerPrivilegesRequest) HasUserId

func (o *RemoveApiServerPrivilegesRequest) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (RemoveApiServerPrivilegesRequest) MarshalJSON

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

func (*RemoveApiServerPrivilegesRequest) SetApiServerId

func (o *RemoveApiServerPrivilegesRequest) SetApiServerId(v int64)

SetApiServerId gets a reference to the given int64 and assigns it to the ApiServerId field.

func (*RemoveApiServerPrivilegesRequest) SetOrganizationId

func (o *RemoveApiServerPrivilegesRequest) SetOrganizationId(v int64)

SetOrganizationId gets a reference to the given int64 and assigns it to the OrganizationId field.

func (*RemoveApiServerPrivilegesRequest) SetUserId

func (o *RemoveApiServerPrivilegesRequest) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

type RemoveClientPrivilegesRequest

type RemoveClientPrivilegesRequest struct {
	ApiServerId    int64 `json:"apiServerId"`
	OrganizationId int64 `json:"organizationId"`
	UserId         int64 `json:"userId"`
	ServiceId      int64 `json:"serviceId"`
	ClientId       int64 `json:"clientId"`
}

RemoveClientPrivilegesRequest struct for RemoveClientPrivilegesRequest

func NewRemoveClientPrivilegesRequest

func NewRemoveClientPrivilegesRequest(apiServerId int64, organizationId int64, userId int64, serviceId int64, clientId int64) *RemoveClientPrivilegesRequest

NewRemoveClientPrivilegesRequest instantiates a new RemoveClientPrivilegesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRemoveClientPrivilegesRequestWithDefaults

func NewRemoveClientPrivilegesRequestWithDefaults() *RemoveClientPrivilegesRequest

NewRemoveClientPrivilegesRequestWithDefaults instantiates a new RemoveClientPrivilegesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RemoveClientPrivilegesRequest) GetApiServerId

func (o *RemoveClientPrivilegesRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value

func (*RemoveClientPrivilegesRequest) GetApiServerIdOk

func (o *RemoveClientPrivilegesRequest) GetApiServerIdOk() (*int64, bool)

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

func (*RemoveClientPrivilegesRequest) GetClientId

func (o *RemoveClientPrivilegesRequest) GetClientId() int64

GetClientId returns the ClientId field value

func (*RemoveClientPrivilegesRequest) GetClientIdOk

func (o *RemoveClientPrivilegesRequest) GetClientIdOk() (*int64, bool)

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

func (*RemoveClientPrivilegesRequest) GetOrganizationId

func (o *RemoveClientPrivilegesRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*RemoveClientPrivilegesRequest) GetOrganizationIdOk

func (o *RemoveClientPrivilegesRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*RemoveClientPrivilegesRequest) GetServiceId

func (o *RemoveClientPrivilegesRequest) GetServiceId() int64

GetServiceId returns the ServiceId field value

func (*RemoveClientPrivilegesRequest) GetServiceIdOk

func (o *RemoveClientPrivilegesRequest) GetServiceIdOk() (*int64, bool)

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

func (*RemoveClientPrivilegesRequest) GetUserId

func (o *RemoveClientPrivilegesRequest) GetUserId() int64

GetUserId returns the UserId field value

func (*RemoveClientPrivilegesRequest) GetUserIdOk

func (o *RemoveClientPrivilegesRequest) GetUserIdOk() (*int64, bool)

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

func (RemoveClientPrivilegesRequest) MarshalJSON

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

func (*RemoveClientPrivilegesRequest) SetApiServerId

func (o *RemoveClientPrivilegesRequest) SetApiServerId(v int64)

SetApiServerId sets field value

func (*RemoveClientPrivilegesRequest) SetClientId

func (o *RemoveClientPrivilegesRequest) SetClientId(v int64)

SetClientId sets field value

func (*RemoveClientPrivilegesRequest) SetOrganizationId

func (o *RemoveClientPrivilegesRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*RemoveClientPrivilegesRequest) SetServiceId

func (o *RemoveClientPrivilegesRequest) SetServiceId(v int64)

SetServiceId sets field value

func (*RemoveClientPrivilegesRequest) SetUserId

func (o *RemoveClientPrivilegesRequest) SetUserId(v int64)

SetUserId sets field value

type RemoveOrganizationPrivilegesRequest

type RemoveOrganizationPrivilegesRequest struct {
	OrganizationId int64 `json:"organizationId"`
	UserId         int64 `json:"userId"`
}

RemoveOrganizationPrivilegesRequest struct for RemoveOrganizationPrivilegesRequest

func NewRemoveOrganizationPrivilegesRequest

func NewRemoveOrganizationPrivilegesRequest(organizationId int64, userId int64) *RemoveOrganizationPrivilegesRequest

NewRemoveOrganizationPrivilegesRequest instantiates a new RemoveOrganizationPrivilegesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRemoveOrganizationPrivilegesRequestWithDefaults

func NewRemoveOrganizationPrivilegesRequestWithDefaults() *RemoveOrganizationPrivilegesRequest

NewRemoveOrganizationPrivilegesRequestWithDefaults instantiates a new RemoveOrganizationPrivilegesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RemoveOrganizationPrivilegesRequest) GetOrganizationId

func (o *RemoveOrganizationPrivilegesRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*RemoveOrganizationPrivilegesRequest) GetOrganizationIdOk

func (o *RemoveOrganizationPrivilegesRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*RemoveOrganizationPrivilegesRequest) GetUserId

GetUserId returns the UserId field value

func (*RemoveOrganizationPrivilegesRequest) GetUserIdOk

func (o *RemoveOrganizationPrivilegesRequest) GetUserIdOk() (*int64, bool)

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

func (RemoveOrganizationPrivilegesRequest) MarshalJSON

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

func (*RemoveOrganizationPrivilegesRequest) SetOrganizationId

func (o *RemoveOrganizationPrivilegesRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*RemoveOrganizationPrivilegesRequest) SetUserId

SetUserId sets field value

type RemoveOrphanRequest

type RemoveOrphanRequest struct {
	ApiServerId int64 `json:"apiServerId"`
	ServiceId   int64 `json:"serviceId"`
}

RemoveOrphanRequest struct for RemoveOrphanRequest

func NewRemoveOrphanRequest

func NewRemoveOrphanRequest(apiServerId int64, serviceId int64) *RemoveOrphanRequest

NewRemoveOrphanRequest instantiates a new RemoveOrphanRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRemoveOrphanRequestWithDefaults

func NewRemoveOrphanRequestWithDefaults() *RemoveOrphanRequest

NewRemoveOrphanRequestWithDefaults instantiates a new RemoveOrphanRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RemoveOrphanRequest) GetApiServerId

func (o *RemoveOrphanRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value

func (*RemoveOrphanRequest) GetApiServerIdOk

func (o *RemoveOrphanRequest) GetApiServerIdOk() (*int64, bool)

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

func (*RemoveOrphanRequest) GetServiceId

func (o *RemoveOrphanRequest) GetServiceId() int64

GetServiceId returns the ServiceId field value

func (*RemoveOrphanRequest) GetServiceIdOk

func (o *RemoveOrphanRequest) GetServiceIdOk() (*int64, bool)

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

func (RemoveOrphanRequest) MarshalJSON

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

func (*RemoveOrphanRequest) SetApiServerId

func (o *RemoveOrphanRequest) SetApiServerId(v int64)

SetApiServerId sets field value

func (*RemoveOrphanRequest) SetServiceId

func (o *RemoveOrphanRequest) SetServiceId(v int64)

SetServiceId sets field value

type RemoveServicePrivilegesRequest

type RemoveServicePrivilegesRequest struct {
	ApiServerId    int64 `json:"apiServerId"`
	OrganizationId int64 `json:"organizationId"`
	UserId         int64 `json:"userId"`
	ServiceId      int64 `json:"serviceId"`
}

RemoveServicePrivilegesRequest struct for RemoveServicePrivilegesRequest

func NewRemoveServicePrivilegesRequest

func NewRemoveServicePrivilegesRequest(apiServerId int64, organizationId int64, userId int64, serviceId int64) *RemoveServicePrivilegesRequest

NewRemoveServicePrivilegesRequest instantiates a new RemoveServicePrivilegesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRemoveServicePrivilegesRequestWithDefaults

func NewRemoveServicePrivilegesRequestWithDefaults() *RemoveServicePrivilegesRequest

NewRemoveServicePrivilegesRequestWithDefaults instantiates a new RemoveServicePrivilegesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RemoveServicePrivilegesRequest) GetApiServerId

func (o *RemoveServicePrivilegesRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value

func (*RemoveServicePrivilegesRequest) GetApiServerIdOk

func (o *RemoveServicePrivilegesRequest) GetApiServerIdOk() (*int64, bool)

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

func (*RemoveServicePrivilegesRequest) GetOrganizationId

func (o *RemoveServicePrivilegesRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*RemoveServicePrivilegesRequest) GetOrganizationIdOk

func (o *RemoveServicePrivilegesRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*RemoveServicePrivilegesRequest) GetServiceId

func (o *RemoveServicePrivilegesRequest) GetServiceId() int64

GetServiceId returns the ServiceId field value

func (*RemoveServicePrivilegesRequest) GetServiceIdOk

func (o *RemoveServicePrivilegesRequest) GetServiceIdOk() (*int64, bool)

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

func (*RemoveServicePrivilegesRequest) GetUserId

func (o *RemoveServicePrivilegesRequest) GetUserId() int64

GetUserId returns the UserId field value

func (*RemoveServicePrivilegesRequest) GetUserIdOk

func (o *RemoveServicePrivilegesRequest) GetUserIdOk() (*int64, bool)

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

func (RemoveServicePrivilegesRequest) MarshalJSON

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

func (*RemoveServicePrivilegesRequest) SetApiServerId

func (o *RemoveServicePrivilegesRequest) SetApiServerId(v int64)

SetApiServerId sets field value

func (*RemoveServicePrivilegesRequest) SetOrganizationId

func (o *RemoveServicePrivilegesRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*RemoveServicePrivilegesRequest) SetServiceId

func (o *RemoveServicePrivilegesRequest) SetServiceId(v int64)

SetServiceId sets field value

func (*RemoveServicePrivilegesRequest) SetUserId

func (o *RemoveServicePrivilegesRequest) SetUserId(v int64)

SetUserId sets field value

type RenameOrganizationTokenRequest

type RenameOrganizationTokenRequest struct {
	OrganizationId int64  `json:"organizationId"`
	TokenId        string `json:"tokenId"`
	Description    string `json:"description"`
}

RenameOrganizationTokenRequest struct for RenameOrganizationTokenRequest

func NewRenameOrganizationTokenRequest

func NewRenameOrganizationTokenRequest(organizationId int64, tokenId string, description string) *RenameOrganizationTokenRequest

NewRenameOrganizationTokenRequest instantiates a new RenameOrganizationTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRenameOrganizationTokenRequestWithDefaults

func NewRenameOrganizationTokenRequestWithDefaults() *RenameOrganizationTokenRequest

NewRenameOrganizationTokenRequestWithDefaults instantiates a new RenameOrganizationTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RenameOrganizationTokenRequest) GetDescription

func (o *RenameOrganizationTokenRequest) GetDescription() string

GetDescription returns the Description field value

func (*RenameOrganizationTokenRequest) GetDescriptionOk

func (o *RenameOrganizationTokenRequest) GetDescriptionOk() (*string, bool)

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

func (*RenameOrganizationTokenRequest) GetOrganizationId

func (o *RenameOrganizationTokenRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*RenameOrganizationTokenRequest) GetOrganizationIdOk

func (o *RenameOrganizationTokenRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*RenameOrganizationTokenRequest) GetTokenId

func (o *RenameOrganizationTokenRequest) GetTokenId() string

GetTokenId returns the TokenId field value

func (*RenameOrganizationTokenRequest) GetTokenIdOk

func (o *RenameOrganizationTokenRequest) GetTokenIdOk() (*string, bool)

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

func (RenameOrganizationTokenRequest) MarshalJSON

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

func (*RenameOrganizationTokenRequest) SetDescription

func (o *RenameOrganizationTokenRequest) SetDescription(v string)

SetDescription sets field value

func (*RenameOrganizationTokenRequest) SetOrganizationId

func (o *RenameOrganizationTokenRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*RenameOrganizationTokenRequest) SetTokenId

func (o *RenameOrganizationTokenRequest) SetTokenId(v string)

SetTokenId sets field value

type RenameServiceTokenRequest

type RenameServiceTokenRequest struct {
	ServiceId      int64  `json:"serviceId"`
	OrganizationId int64  `json:"organizationId"`
	ApiServerId    int64  `json:"apiServerId"`
	TokenId        string `json:"tokenId"`
	Description    string `json:"description"`
}

RenameServiceTokenRequest struct for RenameServiceTokenRequest

func NewRenameServiceTokenRequest

func NewRenameServiceTokenRequest(serviceId int64, organizationId int64, apiServerId int64, tokenId string, description string) *RenameServiceTokenRequest

NewRenameServiceTokenRequest instantiates a new RenameServiceTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRenameServiceTokenRequestWithDefaults

func NewRenameServiceTokenRequestWithDefaults() *RenameServiceTokenRequest

NewRenameServiceTokenRequestWithDefaults instantiates a new RenameServiceTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RenameServiceTokenRequest) GetApiServerId

func (o *RenameServiceTokenRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value

func (*RenameServiceTokenRequest) GetApiServerIdOk

func (o *RenameServiceTokenRequest) GetApiServerIdOk() (*int64, bool)

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

func (*RenameServiceTokenRequest) GetDescription

func (o *RenameServiceTokenRequest) GetDescription() string

GetDescription returns the Description field value

func (*RenameServiceTokenRequest) GetDescriptionOk

func (o *RenameServiceTokenRequest) GetDescriptionOk() (*string, bool)

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

func (*RenameServiceTokenRequest) GetOrganizationId

func (o *RenameServiceTokenRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*RenameServiceTokenRequest) GetOrganizationIdOk

func (o *RenameServiceTokenRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*RenameServiceTokenRequest) GetServiceId

func (o *RenameServiceTokenRequest) GetServiceId() int64

GetServiceId returns the ServiceId field value

func (*RenameServiceTokenRequest) GetServiceIdOk

func (o *RenameServiceTokenRequest) GetServiceIdOk() (*int64, bool)

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

func (*RenameServiceTokenRequest) GetTokenId

func (o *RenameServiceTokenRequest) GetTokenId() string

GetTokenId returns the TokenId field value

func (*RenameServiceTokenRequest) GetTokenIdOk

func (o *RenameServiceTokenRequest) GetTokenIdOk() (*string, bool)

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

func (RenameServiceTokenRequest) MarshalJSON

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

func (*RenameServiceTokenRequest) SetApiServerId

func (o *RenameServiceTokenRequest) SetApiServerId(v int64)

SetApiServerId sets field value

func (*RenameServiceTokenRequest) SetDescription

func (o *RenameServiceTokenRequest) SetDescription(v string)

SetDescription sets field value

func (*RenameServiceTokenRequest) SetOrganizationId

func (o *RenameServiceTokenRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*RenameServiceTokenRequest) SetServiceId

func (o *RenameServiceTokenRequest) SetServiceId(v int64)

SetServiceId sets field value

func (*RenameServiceTokenRequest) SetTokenId

func (o *RenameServiceTokenRequest) SetTokenId(v string)

SetTokenId sets field value

type RotateOrganizationTokenRequest

type RotateOrganizationTokenRequest struct {
	OrganizationId int64  `json:"organizationId"`
	TokenId        string `json:"tokenId"`
}

RotateOrganizationTokenRequest struct for RotateOrganizationTokenRequest

func NewRotateOrganizationTokenRequest

func NewRotateOrganizationTokenRequest(organizationId int64, tokenId string) *RotateOrganizationTokenRequest

NewRotateOrganizationTokenRequest instantiates a new RotateOrganizationTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRotateOrganizationTokenRequestWithDefaults

func NewRotateOrganizationTokenRequestWithDefaults() *RotateOrganizationTokenRequest

NewRotateOrganizationTokenRequestWithDefaults instantiates a new RotateOrganizationTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RotateOrganizationTokenRequest) GetOrganizationId

func (o *RotateOrganizationTokenRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*RotateOrganizationTokenRequest) GetOrganizationIdOk

func (o *RotateOrganizationTokenRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*RotateOrganizationTokenRequest) GetTokenId

func (o *RotateOrganizationTokenRequest) GetTokenId() string

GetTokenId returns the TokenId field value

func (*RotateOrganizationTokenRequest) GetTokenIdOk

func (o *RotateOrganizationTokenRequest) GetTokenIdOk() (*string, bool)

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

func (RotateOrganizationTokenRequest) MarshalJSON

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

func (*RotateOrganizationTokenRequest) SetOrganizationId

func (o *RotateOrganizationTokenRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*RotateOrganizationTokenRequest) SetTokenId

func (o *RotateOrganizationTokenRequest) SetTokenId(v string)

SetTokenId sets field value

type RotateServiceTokenRequest

type RotateServiceTokenRequest struct {
	ServiceId      int64  `json:"serviceId"`
	OrganizationId int64  `json:"organizationId"`
	ApiServerId    int64  `json:"apiServerId"`
	TokenId        string `json:"tokenId"`
}

RotateServiceTokenRequest struct for RotateServiceTokenRequest

func NewRotateServiceTokenRequest

func NewRotateServiceTokenRequest(serviceId int64, organizationId int64, apiServerId int64, tokenId string) *RotateServiceTokenRequest

NewRotateServiceTokenRequest instantiates a new RotateServiceTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRotateServiceTokenRequestWithDefaults

func NewRotateServiceTokenRequestWithDefaults() *RotateServiceTokenRequest

NewRotateServiceTokenRequestWithDefaults instantiates a new RotateServiceTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RotateServiceTokenRequest) GetApiServerId

func (o *RotateServiceTokenRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value

func (*RotateServiceTokenRequest) GetApiServerIdOk

func (o *RotateServiceTokenRequest) GetApiServerIdOk() (*int64, bool)

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

func (*RotateServiceTokenRequest) GetOrganizationId

func (o *RotateServiceTokenRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*RotateServiceTokenRequest) GetOrganizationIdOk

func (o *RotateServiceTokenRequest) GetOrganizationIdOk() (*int64, bool)

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

func (*RotateServiceTokenRequest) GetServiceId

func (o *RotateServiceTokenRequest) GetServiceId() int64

GetServiceId returns the ServiceId field value

func (*RotateServiceTokenRequest) GetServiceIdOk

func (o *RotateServiceTokenRequest) GetServiceIdOk() (*int64, bool)

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

func (*RotateServiceTokenRequest) GetTokenId

func (o *RotateServiceTokenRequest) GetTokenId() string

GetTokenId returns the TokenId field value

func (*RotateServiceTokenRequest) GetTokenIdOk

func (o *RotateServiceTokenRequest) GetTokenIdOk() (*string, bool)

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

func (RotateServiceTokenRequest) MarshalJSON

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

func (*RotateServiceTokenRequest) SetApiServerId

func (o *RotateServiceTokenRequest) SetApiServerId(v int64)

SetApiServerId sets field value

func (*RotateServiceTokenRequest) SetOrganizationId

func (o *RotateServiceTokenRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*RotateServiceTokenRequest) SetServiceId

func (o *RotateServiceTokenRequest) SetServiceId(v int64)

SetServiceId sets field value

func (*RotateServiceTokenRequest) SetTokenId

func (o *RotateServiceTokenRequest) SetTokenId(v string)

SetTokenId sets field value

type Scope

type Scope struct {
	Name         *string       `json:"name,omitempty"`
	DefaultEntry *bool         `json:"defaultEntry,omitempty"`
	Description  *string       `json:"description,omitempty"`
	Descriptions []TaggedValue `json:"descriptions,omitempty"`
	Attributes   []Pair        `json:"attributes,omitempty"`
}

Scope struct for Scope

func NewScope

func NewScope() *Scope

NewScope instantiates a new Scope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScopeWithDefaults

func NewScopeWithDefaults() *Scope

NewScopeWithDefaults instantiates a new Scope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Scope) GetAttributes

func (o *Scope) GetAttributes() []Pair

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*Scope) GetAttributesOk

func (o *Scope) GetAttributesOk() ([]Pair, bool)

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

func (*Scope) GetDefaultEntry

func (o *Scope) GetDefaultEntry() bool

GetDefaultEntry returns the DefaultEntry field value if set, zero value otherwise.

func (*Scope) GetDefaultEntryOk

func (o *Scope) GetDefaultEntryOk() (*bool, bool)

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

func (*Scope) GetDescription

func (o *Scope) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Scope) GetDescriptionOk

func (o *Scope) GetDescriptionOk() (*string, bool)

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

func (*Scope) GetDescriptions

func (o *Scope) GetDescriptions() []TaggedValue

GetDescriptions returns the Descriptions field value if set, zero value otherwise.

func (*Scope) GetDescriptionsOk

func (o *Scope) GetDescriptionsOk() ([]TaggedValue, bool)

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

func (*Scope) GetName

func (o *Scope) GetName() string

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

func (*Scope) GetNameOk

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

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

func (*Scope) HasAttributes

func (o *Scope) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*Scope) HasDefaultEntry

func (o *Scope) HasDefaultEntry() bool

HasDefaultEntry returns a boolean if a field has been set.

func (*Scope) HasDescription

func (o *Scope) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Scope) HasDescriptions

func (o *Scope) HasDescriptions() bool

HasDescriptions returns a boolean if a field has been set.

func (*Scope) HasName

func (o *Scope) HasName() bool

HasName returns a boolean if a field has been set.

func (Scope) MarshalJSON

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

func (*Scope) SetAttributes

func (o *Scope) SetAttributes(v []Pair)

SetAttributes gets a reference to the given []Pair and assigns it to the Attributes field.

func (*Scope) SetDefaultEntry

func (o *Scope) SetDefaultEntry(v bool)

SetDefaultEntry gets a reference to the given bool and assigns it to the DefaultEntry field.

func (*Scope) SetDescription

func (o *Scope) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Scope) SetDescriptions

func (o *Scope) SetDescriptions(v []TaggedValue)

SetDescriptions gets a reference to the given []TaggedValue and assigns it to the Descriptions field.

func (*Scope) SetName

func (o *Scope) SetName(v string)

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

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type Service

type Service struct {
	Number                                   *int32           `json:"number,omitempty"`
	ServiceOwnerNumber                       *int32           `json:"serviceOwnerNumber,omitempty"`
	ServiceName                              *string          `json:"serviceName,omitempty"`
	ApiKey                                   *int64           `json:"apiKey,omitempty"`
	ApiSecret                                *string          `json:"apiSecret,omitempty"`
	Issuer                                   *string          `json:"issuer,omitempty"`
	AuthorizationEndpoint                    *string          `json:"authorizationEndpoint,omitempty"`
	TokenEndpoint                            *string          `json:"tokenEndpoint,omitempty"`
	RevocationEndpoint                       *string          `json:"revocationEndpoint,omitempty"`
	SupportedRevocationAuthMethods           []string         `json:"supportedRevocationAuthMethods,omitempty"`
	UserInfoEndpoint                         *string          `json:"userInfoEndpoint,omitempty"`
	JwksUri                                  *string          `json:"jwksUri,omitempty"`
	Jwks                                     *string          `json:"jwks,omitempty"`
	RegistrationEndpoint                     *string          `json:"registrationEndpoint,omitempty"`
	RegistrationManagementEndpoint           *string          `json:"registrationManagementEndpoint,omitempty"`
	SupportedScopes                          []Scope          `json:"supportedScopes,omitempty"`
	SupportedResponseTypes                   []string         `json:"supportedResponseTypes,omitempty"`
	SupportedGrantTypes                      []string         `json:"supportedGrantTypes,omitempty"`
	SupportedAcrs                            []string         `json:"supportedAcrs,omitempty"`
	SupportedTokenAuthMethods                []string         `json:"supportedTokenAuthMethods,omitempty"`
	SupportedDisplays                        []string         `json:"supportedDisplays,omitempty"`
	SupportedClaimTypes                      []string         `json:"supportedClaimTypes,omitempty"`
	SupportedClaims                          []string         `json:"supportedClaims,omitempty"`
	ServiceDocumentation                     *string          `json:"serviceDocumentation,omitempty"`
	SupportedClaimLocales                    []string         `json:"supportedClaimLocales,omitempty"`
	SupportedUiLocales                       []string         `json:"supportedUiLocales,omitempty"`
	PolicyUri                                *string          `json:"policyUri,omitempty"`
	TosUri                                   *string          `json:"tosUri,omitempty"`
	AuthenticationCallbackEndpoint           *string          `json:"authenticationCallbackEndpoint,omitempty"`
	AuthenticationCallbackApiKey             *string          `json:"authenticationCallbackApiKey,omitempty"`
	AuthenticationCallbackApiSecret          *string          `json:"authenticationCallbackApiSecret,omitempty"`
	SupportedSnses                           []string         `json:"supportedSnses,omitempty"`
	SnsCredentials                           []SnsCredentials `json:"snsCredentials,omitempty"`
	CreatedAt                                *int64           `json:"createdAt,omitempty"`
	ModifiedAt                               *int64           `json:"modifiedAt,omitempty"`
	DeveloperAuthenticationCallbackEndpoint  *string          `json:"developerAuthenticationCallbackEndpoint,omitempty"`
	DeveloperAuthenticationCallbackApiKey    *string          `json:"developerAuthenticationCallbackApiKey,omitempty"`
	DeveloperAuthenticationCallbackApiSecret *string          `json:"developerAuthenticationCallbackApiSecret,omitempty"`
	SupportedDeveloperSnses                  []string         `json:"supportedDeveloperSnses,omitempty"`
	DeveloperSnsCredentials                  []SnsCredentials `json:"developerSnsCredentials,omitempty"`
	ClientsPerDeveloper                      *int32           `json:"clientsPerDeveloper,omitempty"`
	DirectAuthorizationEndpointEnabled       *bool            `json:"directAuthorizationEndpointEnabled,omitempty"`
	DirectTokenEndpointEnabled               *bool            `json:"directTokenEndpointEnabled,omitempty"`
	DirectRevocationEndpointEnabled          *bool            `json:"directRevocationEndpointEnabled,omitempty"`
	DirectUserInfoEndpointEnabled            *bool            `json:"directUserInfoEndpointEnabled,omitempty"`
	DirectJwksEndpointEnabled                *bool            `json:"directJwksEndpointEnabled,omitempty"`
	DirectIntrospectionEndpointEnabled       *bool            `json:"directIntrospectionEndpointEnabled,omitempty"`
	SingleAccessTokenPerSubject              *bool            `json:"singleAccessTokenPerSubject,omitempty"`
	PkceRequired                             *bool            `json:"pkceRequired,omitempty"`
	PkceS256Required                         *bool            `json:"pkceS256Required,omitempty"`
	RefreshTokenKept                         *bool            `json:"refreshTokenKept,omitempty"`
	RefreshTokenDurationKept                 *bool            `json:"refreshTokenDurationKept,omitempty"`
	RefreshTokenDurationReset                *bool            `json:"refreshTokenDurationReset,omitempty"`
	ErrorDescriptionOmitted                  *bool            `json:"errorDescriptionOmitted,omitempty"`
	ErrorUriOmitted                          *bool            `json:"errorUriOmitted,omitempty"`
	ClientIdAliasEnabled                     *bool            `json:"clientIdAliasEnabled,omitempty"`
	SupportedServiceProfiles                 []string         `json:"supportedServiceProfiles,omitempty"`
	TlsClientCertificateBoundAccessTokens    *bool            `json:"tlsClientCertificateBoundAccessTokens,omitempty"`
	IntrospectionEndpoint                    *string          `json:"introspectionEndpoint,omitempty"`
	SupportedIntrospectionAuthMethods        []string         `json:"supportedIntrospectionAuthMethods,omitempty"`
	MutualTlsValidatePkiCertChain            *bool            `json:"mutualTlsValidatePkiCertChain,omitempty"`
	TrustedRootCertificates                  []string         `json:"trustedRootCertificates,omitempty"`
	DynamicRegistrationSupported             *bool            `json:"dynamicRegistrationSupported,omitempty"`
	EndSessionEndpoint                       *string          `json:"endSessionEndpoint,omitempty"`
	Description                              *string          `json:"description,omitempty"`
	AccessTokenType                          *string          `json:"accessTokenType,omitempty"`
	AccessTokenSignAlg                       *string          `json:"accessTokenSignAlg,omitempty"`
	AccessTokenDuration                      *int64           `json:"accessTokenDuration,omitempty"`
	RefreshTokenDuration                     *int64           `json:"refreshTokenDuration,omitempty"`
	IdTokenDuration                          *int64           `json:"idTokenDuration,omitempty"`
	AuthorizationResponseDuration            *int64           `json:"authorizationResponseDuration,omitempty"`
	PushedAuthReqDuration                    *int64           `json:"pushedAuthReqDuration,omitempty"`
	Metadata                                 []Pair           `json:"metadata,omitempty"`
	AccessTokenSignatureKeyId                *string          `json:"accessTokenSignatureKeyId,omitempty"`
	AuthorizationSignatureKeyId              *string          `json:"authorizationSignatureKeyId,omitempty"`
	IdTokenSignatureKeyId                    *string          `json:"idTokenSignatureKeyId,omitempty"`
	UserInfoSignatureKeyId                   *string          `json:"userInfoSignatureKeyId,omitempty"`
	SupportedBackchannelTokenDeliveryModes   []string         `json:"supportedBackchannelTokenDeliveryModes,omitempty"`
	BackchannelAuthenticationEndpoint        *string          `json:"backchannelAuthenticationEndpoint,omitempty"`
	BackchannelUserCodeParameterSupported    *bool            `json:"backchannelUserCodeParameterSupported,omitempty"`
	BackchannelAuthReqIdDuration             *int32           `json:"backchannelAuthReqIdDuration,omitempty"`
	BackchannelPollingInterval               *int32           `json:"backchannelPollingInterval,omitempty"`
	BackchannelBindingMessageRequiredInFapi  *bool            `json:"backchannelBindingMessageRequiredInFapi,omitempty"`
	AllowableClockSkew                       *int32           `json:"allowableClockSkew,omitempty"`
	DeviceAuthorizationEndpoint              *string          `json:"deviceAuthorizationEndpoint,omitempty"`
	DeviceVerificationUri                    *string          `json:"deviceVerificationUri,omitempty"`
	DeviceVerificationUriComplete            *string          `json:"deviceVerificationUriComplete,omitempty"`
	DeviceFlowCodeDuration                   *int32           `json:"deviceFlowCodeDuration,omitempty"`
	DeviceFlowPollingInterval                *int32           `json:"deviceFlowPollingInterval,omitempty"`
	UserCodeCharset                          *string          `json:"userCodeCharset,omitempty"`
	UserCodeLength                           *int32           `json:"userCodeLength,omitempty"`
	PushedAuthReqEndpoint                    *string          `json:"pushedAuthReqEndpoint,omitempty"`
	MtlsEndpointAliases                      []NamedUri       `json:"mtlsEndpointAliases,omitempty"`
	SupportedAuthorizationDetailsTypes       []string         `json:"supportedAuthorizationDetailsTypes,omitempty"`
	SupportedTrustFrameworks                 []string         `json:"supportedTrustFrameworks,omitempty"`
	SupportedEvidence                        []string         `json:"supportedEvidence,omitempty"`
	// Deprecated
	SupportedIdentityDocuments []string `json:"supportedIdentityDocuments,omitempty"`
	SupportedDocuments         []string `json:"supportedDocuments,omitempty"`
	// Deprecated
	SupportedVerificationMethods []string `json:"supportedVerificationMethods,omitempty"`
	SupportedDocumentsMethods    []string `json:"supportedDocumentsMethods,omitempty"`
	// Deprecated
	SupportedDocumentsValidationMethods []string `json:"supportedDocumentsValidationMethods,omitempty"`
	// Deprecated
	SupportedDocumentsVerificationMethods       []string                  `json:"supportedDocumentsVerificationMethods,omitempty"`
	SupportedDocumentsCheckMethods              []string                  `json:"supportedDocumentsCheckMethods,omitempty"`
	SupportedElectronicRecords                  []string                  `json:"supportedElectronicRecords,omitempty"`
	SupportedVerifiedClaims                     []string                  `json:"supportedVerifiedClaims,omitempty"`
	SupportedAttachments                        []string                  `json:"supportedAttachments,omitempty"`
	SupportedDigestAlgorithms                   []string                  `json:"supportedDigestAlgorithms,omitempty"`
	MissingClientIdAllowed                      *bool                     `json:"missingClientIdAllowed,omitempty"`
	ParRequired                                 *bool                     `json:"parRequired,omitempty"`
	RequestObjectRequired                       *bool                     `json:"requestObjectRequired,omitempty"`
	TraditionalRequestObjectProcessingApplied   *bool                     `json:"traditionalRequestObjectProcessingApplied,omitempty"`
	ClaimShortcutRestrictive                    *bool                     `json:"claimShortcutRestrictive,omitempty"`
	ScopeRequired                               *bool                     `json:"scopeRequired,omitempty"`
	NbfOptional                                 *bool                     `json:"nbfOptional,omitempty"`
	IssSuppressed                               *bool                     `json:"issSuppressed,omitempty"`
	Attributes                                  []Pair                    `json:"attributes,omitempty"`
	SupportedCustomClientMetadata               []string                  `json:"supportedCustomClientMetadata,omitempty"`
	TokenExpirationLinked                       *bool                     `json:"tokenExpirationLinked,omitempty"`
	FrontChannelRequestObjectEncryptionRequired *bool                     `json:"frontChannelRequestObjectEncryptionRequired,omitempty"`
	RequestObjectEncryptionAlgMatchRequired     *bool                     `json:"requestObjectEncryptionAlgMatchRequired,omitempty"`
	RequestObjectEncryptionEncMatchRequired     *bool                     `json:"requestObjectEncryptionEncMatchRequired,omitempty"`
	HsmEnabled                                  *bool                     `json:"hsmEnabled,omitempty"`
	Hsks                                        []Hsk                     `json:"hsks,omitempty"`
	GrantManagementEndpoint                     *string                   `json:"grantManagementEndpoint,omitempty"`
	GrantManagementActionRequired               *bool                     `json:"grantManagementActionRequired,omitempty"`
	UnauthorizedOnClientConfigSupported         *bool                     `json:"unauthorizedOnClientConfigSupported,omitempty"`
	DcrScopeUsedAsRequestable                   *bool                     `json:"dcrScopeUsedAsRequestable,omitempty"`
	PredefinedTransformedClaims                 *string                   `json:"predefinedTransformedClaims,omitempty"`
	LoopbackRedirectionUriVariable              *bool                     `json:"loopbackRedirectionUriVariable,omitempty"`
	RequestObjectAudienceChecked                *bool                     `json:"requestObjectAudienceChecked,omitempty"`
	AccessTokenForExternalAttachmentEmbedded    *bool                     `json:"accessTokenForExternalAttachmentEmbedded,omitempty"`
	RefreshTokenIdempotent                      *bool                     `json:"refreshTokenIdempotent,omitempty"`
	FederationEnabled                           *bool                     `json:"federationEnabled,omitempty"`
	OrganizationName                            *string                   `json:"organizationName,omitempty"`
	AuthorityHints                              []string                  `json:"authorityHints,omitempty"`
	TrustAnchors                                []TrustAnchor             `json:"trustAnchors,omitempty"`
	FederationJwks                              *string                   `json:"federationJwks,omitempty"`
	FederationSignatureKeyId                    *string                   `json:"federationSignatureKeyId,omitempty"`
	FederationConfigurationDuration             *int32                    `json:"federationConfigurationDuration,omitempty"`
	SignedJwksUri                               *string                   `json:"signedJwksUri,omitempty"`
	FederationRegistrationEndpoint              *string                   `json:"federationRegistrationEndpoint,omitempty"`
	SupportedClientRegistrationTypes            []string                  `json:"supportedClientRegistrationTypes,omitempty"`
	TokenExchangeByIdentifiableClientsOnly      *bool                     `json:"tokenExchangeByIdentifiableClientsOnly,omitempty"`
	TokenExchangeByConfidentialClientsOnly      *bool                     `json:"tokenExchangeByConfidentialClientsOnly,omitempty"`
	TokenExchangeByPermittedClientsOnly         *bool                     `json:"tokenExchangeByPermittedClientsOnly,omitempty"`
	TokenExchangeEncryptedJwtRejected           *bool                     `json:"tokenExchangeEncryptedJwtRejected,omitempty"`
	TokenExchangeUnsignedJwtRejected            *bool                     `json:"tokenExchangeUnsignedJwtRejected,omitempty"`
	JwtGrantByIdentifiableClientsOnly           *bool                     `json:"jwtGrantByIdentifiableClientsOnly,omitempty"`
	JwtGrantEncryptedJwtRejected                *bool                     `json:"jwtGrantEncryptedJwtRejected,omitempty"`
	JwtGrantUnsignedJwtRejected                 *bool                     `json:"jwtGrantUnsignedJwtRejected,omitempty"`
	DcrDuplicateSoftwareIdBlocked               *bool                     `json:"dcrDuplicateSoftwareIdBlocked,omitempty"`
	ResourceSignatureKeyId                      *string                   `json:"resourceSignatureKeyId,omitempty"`
	RsResponseSigned                            *bool                     `json:"rsResponseSigned,omitempty"`
	OpenidDroppedOnRefreshWithoutOfflineAccess  *bool                     `json:"openidDroppedOnRefreshWithoutOfflineAccess,omitempty"`
	VerifiableCredentialsEnabled                *bool                     `json:"verifiableCredentialsEnabled,omitempty"`
	CredentialIssuerMetadata                    *CredentialIssuerMetadata `json:"credentialIssuerMetadata,omitempty"`
	CredentialOfferDuration                     *int64                    `json:"credentialOfferDuration,omitempty"`
	UserPinLength                               *int32                    `json:"userPinLength,omitempty"`
	IdTokenAudType                              *string                   `json:"idTokenAudType,omitempty"`
	SupportedPromptValues                       []string                  `json:"supportedPromptValues,omitempty"`
	VerifiedClaimsValidationSchemaSet           *string                   `json:"verifiedClaimsValidationSchemaSet,omitempty"`
	PreAuthorizedGrantAnonymousAccessSupported  *bool                     `json:"preAuthorizedGrantAnonymousAccessSupported,omitempty"`
	CredentialTransactionDuration               *int64                    `json:"credentialTransactionDuration,omitempty"`
	CredentialDuration                          *int64                    `json:"credentialDuration,omitempty"`
	CredentialJwks                              *string                   `json:"credentialJwks,omitempty"`
	IdTokenReissuable                           *bool                     `json:"idTokenReissuable,omitempty"`
	CnonceDuration                              *int64                    `json:"cnonceDuration,omitempty"`
}

Service struct for Service

func NewService

func NewService() *Service

NewService instantiates a new Service object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceWithDefaults

func NewServiceWithDefaults() *Service

NewServiceWithDefaults instantiates a new Service object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Service) GetAccessTokenDuration

func (o *Service) GetAccessTokenDuration() int64

GetAccessTokenDuration returns the AccessTokenDuration field value if set, zero value otherwise.

func (*Service) GetAccessTokenDurationOk

func (o *Service) GetAccessTokenDurationOk() (*int64, bool)

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

func (*Service) GetAccessTokenForExternalAttachmentEmbedded

func (o *Service) GetAccessTokenForExternalAttachmentEmbedded() bool

GetAccessTokenForExternalAttachmentEmbedded returns the AccessTokenForExternalAttachmentEmbedded field value if set, zero value otherwise.

func (*Service) GetAccessTokenForExternalAttachmentEmbeddedOk

func (o *Service) GetAccessTokenForExternalAttachmentEmbeddedOk() (*bool, bool)

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

func (*Service) GetAccessTokenSignAlg

func (o *Service) GetAccessTokenSignAlg() string

GetAccessTokenSignAlg returns the AccessTokenSignAlg field value if set, zero value otherwise.

func (*Service) GetAccessTokenSignAlgOk

func (o *Service) GetAccessTokenSignAlgOk() (*string, bool)

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

func (*Service) GetAccessTokenSignatureKeyId

func (o *Service) GetAccessTokenSignatureKeyId() string

GetAccessTokenSignatureKeyId returns the AccessTokenSignatureKeyId field value if set, zero value otherwise.

func (*Service) GetAccessTokenSignatureKeyIdOk

func (o *Service) GetAccessTokenSignatureKeyIdOk() (*string, bool)

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

func (*Service) GetAccessTokenType

func (o *Service) GetAccessTokenType() string

GetAccessTokenType returns the AccessTokenType field value if set, zero value otherwise.

func (*Service) GetAccessTokenTypeOk

func (o *Service) GetAccessTokenTypeOk() (*string, bool)

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

func (*Service) GetAllowableClockSkew

func (o *Service) GetAllowableClockSkew() int32

GetAllowableClockSkew returns the AllowableClockSkew field value if set, zero value otherwise.

func (*Service) GetAllowableClockSkewOk

func (o *Service) GetAllowableClockSkewOk() (*int32, bool)

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

func (*Service) GetApiKey

func (o *Service) GetApiKey() int64

GetApiKey returns the ApiKey field value if set, zero value otherwise.

func (*Service) GetApiKeyOk

func (o *Service) GetApiKeyOk() (*int64, bool)

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

func (*Service) GetApiSecret

func (o *Service) GetApiSecret() string

GetApiSecret returns the ApiSecret field value if set, zero value otherwise.

func (*Service) GetApiSecretOk

func (o *Service) GetApiSecretOk() (*string, bool)

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

func (*Service) GetAttributes

func (o *Service) GetAttributes() []Pair

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*Service) GetAttributesOk

func (o *Service) GetAttributesOk() ([]Pair, bool)

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

func (*Service) GetAuthenticationCallbackApiKey

func (o *Service) GetAuthenticationCallbackApiKey() string

GetAuthenticationCallbackApiKey returns the AuthenticationCallbackApiKey field value if set, zero value otherwise.

func (*Service) GetAuthenticationCallbackApiKeyOk

func (o *Service) GetAuthenticationCallbackApiKeyOk() (*string, bool)

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

func (*Service) GetAuthenticationCallbackApiSecret

func (o *Service) GetAuthenticationCallbackApiSecret() string

GetAuthenticationCallbackApiSecret returns the AuthenticationCallbackApiSecret field value if set, zero value otherwise.

func (*Service) GetAuthenticationCallbackApiSecretOk

func (o *Service) GetAuthenticationCallbackApiSecretOk() (*string, bool)

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

func (*Service) GetAuthenticationCallbackEndpoint

func (o *Service) GetAuthenticationCallbackEndpoint() string

GetAuthenticationCallbackEndpoint returns the AuthenticationCallbackEndpoint field value if set, zero value otherwise.

func (*Service) GetAuthenticationCallbackEndpointOk

func (o *Service) GetAuthenticationCallbackEndpointOk() (*string, bool)

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

func (*Service) GetAuthorityHints

func (o *Service) GetAuthorityHints() []string

GetAuthorityHints returns the AuthorityHints field value if set, zero value otherwise.

func (*Service) GetAuthorityHintsOk

func (o *Service) GetAuthorityHintsOk() ([]string, bool)

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

func (*Service) GetAuthorizationEndpoint

func (o *Service) GetAuthorizationEndpoint() string

GetAuthorizationEndpoint returns the AuthorizationEndpoint field value if set, zero value otherwise.

func (*Service) GetAuthorizationEndpointOk

func (o *Service) GetAuthorizationEndpointOk() (*string, bool)

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

func (*Service) GetAuthorizationResponseDuration

func (o *Service) GetAuthorizationResponseDuration() int64

GetAuthorizationResponseDuration returns the AuthorizationResponseDuration field value if set, zero value otherwise.

func (*Service) GetAuthorizationResponseDurationOk

func (o *Service) GetAuthorizationResponseDurationOk() (*int64, bool)

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

func (*Service) GetAuthorizationSignatureKeyId

func (o *Service) GetAuthorizationSignatureKeyId() string

GetAuthorizationSignatureKeyId returns the AuthorizationSignatureKeyId field value if set, zero value otherwise.

func (*Service) GetAuthorizationSignatureKeyIdOk

func (o *Service) GetAuthorizationSignatureKeyIdOk() (*string, bool)

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

func (*Service) GetBackchannelAuthReqIdDuration

func (o *Service) GetBackchannelAuthReqIdDuration() int32

GetBackchannelAuthReqIdDuration returns the BackchannelAuthReqIdDuration field value if set, zero value otherwise.

func (*Service) GetBackchannelAuthReqIdDurationOk

func (o *Service) GetBackchannelAuthReqIdDurationOk() (*int32, bool)

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

func (*Service) GetBackchannelAuthenticationEndpoint

func (o *Service) GetBackchannelAuthenticationEndpoint() string

GetBackchannelAuthenticationEndpoint returns the BackchannelAuthenticationEndpoint field value if set, zero value otherwise.

func (*Service) GetBackchannelAuthenticationEndpointOk

func (o *Service) GetBackchannelAuthenticationEndpointOk() (*string, bool)

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

func (*Service) GetBackchannelBindingMessageRequiredInFapi

func (o *Service) GetBackchannelBindingMessageRequiredInFapi() bool

GetBackchannelBindingMessageRequiredInFapi returns the BackchannelBindingMessageRequiredInFapi field value if set, zero value otherwise.

func (*Service) GetBackchannelBindingMessageRequiredInFapiOk

func (o *Service) GetBackchannelBindingMessageRequiredInFapiOk() (*bool, bool)

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

func (*Service) GetBackchannelPollingInterval

func (o *Service) GetBackchannelPollingInterval() int32

GetBackchannelPollingInterval returns the BackchannelPollingInterval field value if set, zero value otherwise.

func (*Service) GetBackchannelPollingIntervalOk

func (o *Service) GetBackchannelPollingIntervalOk() (*int32, bool)

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

func (*Service) GetBackchannelUserCodeParameterSupported

func (o *Service) GetBackchannelUserCodeParameterSupported() bool

GetBackchannelUserCodeParameterSupported returns the BackchannelUserCodeParameterSupported field value if set, zero value otherwise.

func (*Service) GetBackchannelUserCodeParameterSupportedOk

func (o *Service) GetBackchannelUserCodeParameterSupportedOk() (*bool, bool)

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

func (*Service) GetClaimShortcutRestrictive

func (o *Service) GetClaimShortcutRestrictive() bool

GetClaimShortcutRestrictive returns the ClaimShortcutRestrictive field value if set, zero value otherwise.

func (*Service) GetClaimShortcutRestrictiveOk

func (o *Service) GetClaimShortcutRestrictiveOk() (*bool, bool)

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

func (*Service) GetClientIdAliasEnabled

func (o *Service) GetClientIdAliasEnabled() bool

GetClientIdAliasEnabled returns the ClientIdAliasEnabled field value if set, zero value otherwise.

func (*Service) GetClientIdAliasEnabledOk

func (o *Service) GetClientIdAliasEnabledOk() (*bool, bool)

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

func (*Service) GetClientsPerDeveloper

func (o *Service) GetClientsPerDeveloper() int32

GetClientsPerDeveloper returns the ClientsPerDeveloper field value if set, zero value otherwise.

func (*Service) GetClientsPerDeveloperOk

func (o *Service) GetClientsPerDeveloperOk() (*int32, bool)

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

func (*Service) GetCnonceDuration

func (o *Service) GetCnonceDuration() int64

GetCnonceDuration returns the CnonceDuration field value if set, zero value otherwise.

func (*Service) GetCnonceDurationOk

func (o *Service) GetCnonceDurationOk() (*int64, bool)

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

func (*Service) GetCreatedAt

func (o *Service) GetCreatedAt() int64

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

func (*Service) GetCreatedAtOk

func (o *Service) GetCreatedAtOk() (*int64, bool)

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

func (*Service) GetCredentialDuration

func (o *Service) GetCredentialDuration() int64

GetCredentialDuration returns the CredentialDuration field value if set, zero value otherwise.

func (*Service) GetCredentialDurationOk

func (o *Service) GetCredentialDurationOk() (*int64, bool)

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

func (*Service) GetCredentialIssuerMetadata

func (o *Service) GetCredentialIssuerMetadata() CredentialIssuerMetadata

GetCredentialIssuerMetadata returns the CredentialIssuerMetadata field value if set, zero value otherwise.

func (*Service) GetCredentialIssuerMetadataOk

func (o *Service) GetCredentialIssuerMetadataOk() (*CredentialIssuerMetadata, bool)

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

func (*Service) GetCredentialJwks

func (o *Service) GetCredentialJwks() string

GetCredentialJwks returns the CredentialJwks field value if set, zero value otherwise.

func (*Service) GetCredentialJwksOk

func (o *Service) GetCredentialJwksOk() (*string, bool)

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

func (*Service) GetCredentialOfferDuration

func (o *Service) GetCredentialOfferDuration() int64

GetCredentialOfferDuration returns the CredentialOfferDuration field value if set, zero value otherwise.

func (*Service) GetCredentialOfferDurationOk

func (o *Service) GetCredentialOfferDurationOk() (*int64, bool)

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

func (*Service) GetCredentialTransactionDuration

func (o *Service) GetCredentialTransactionDuration() int64

GetCredentialTransactionDuration returns the CredentialTransactionDuration field value if set, zero value otherwise.

func (*Service) GetCredentialTransactionDurationOk

func (o *Service) GetCredentialTransactionDurationOk() (*int64, bool)

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

func (*Service) GetDcrDuplicateSoftwareIdBlocked

func (o *Service) GetDcrDuplicateSoftwareIdBlocked() bool

GetDcrDuplicateSoftwareIdBlocked returns the DcrDuplicateSoftwareIdBlocked field value if set, zero value otherwise.

func (*Service) GetDcrDuplicateSoftwareIdBlockedOk

func (o *Service) GetDcrDuplicateSoftwareIdBlockedOk() (*bool, bool)

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

func (*Service) GetDcrScopeUsedAsRequestable

func (o *Service) GetDcrScopeUsedAsRequestable() bool

GetDcrScopeUsedAsRequestable returns the DcrScopeUsedAsRequestable field value if set, zero value otherwise.

func (*Service) GetDcrScopeUsedAsRequestableOk

func (o *Service) GetDcrScopeUsedAsRequestableOk() (*bool, bool)

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

func (*Service) GetDescription

func (o *Service) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Service) GetDescriptionOk

func (o *Service) GetDescriptionOk() (*string, bool)

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

func (*Service) GetDeveloperAuthenticationCallbackApiKey

func (o *Service) GetDeveloperAuthenticationCallbackApiKey() string

GetDeveloperAuthenticationCallbackApiKey returns the DeveloperAuthenticationCallbackApiKey field value if set, zero value otherwise.

func (*Service) GetDeveloperAuthenticationCallbackApiKeyOk

func (o *Service) GetDeveloperAuthenticationCallbackApiKeyOk() (*string, bool)

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

func (*Service) GetDeveloperAuthenticationCallbackApiSecret

func (o *Service) GetDeveloperAuthenticationCallbackApiSecret() string

GetDeveloperAuthenticationCallbackApiSecret returns the DeveloperAuthenticationCallbackApiSecret field value if set, zero value otherwise.

func (*Service) GetDeveloperAuthenticationCallbackApiSecretOk

func (o *Service) GetDeveloperAuthenticationCallbackApiSecretOk() (*string, bool)

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

func (*Service) GetDeveloperAuthenticationCallbackEndpoint

func (o *Service) GetDeveloperAuthenticationCallbackEndpoint() string

GetDeveloperAuthenticationCallbackEndpoint returns the DeveloperAuthenticationCallbackEndpoint field value if set, zero value otherwise.

func (*Service) GetDeveloperAuthenticationCallbackEndpointOk

func (o *Service) GetDeveloperAuthenticationCallbackEndpointOk() (*string, bool)

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

func (*Service) GetDeveloperSnsCredentials

func (o *Service) GetDeveloperSnsCredentials() []SnsCredentials

GetDeveloperSnsCredentials returns the DeveloperSnsCredentials field value if set, zero value otherwise.

func (*Service) GetDeveloperSnsCredentialsOk

func (o *Service) GetDeveloperSnsCredentialsOk() ([]SnsCredentials, bool)

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

func (*Service) GetDeviceAuthorizationEndpoint

func (o *Service) GetDeviceAuthorizationEndpoint() string

GetDeviceAuthorizationEndpoint returns the DeviceAuthorizationEndpoint field value if set, zero value otherwise.

func (*Service) GetDeviceAuthorizationEndpointOk

func (o *Service) GetDeviceAuthorizationEndpointOk() (*string, bool)

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

func (*Service) GetDeviceFlowCodeDuration

func (o *Service) GetDeviceFlowCodeDuration() int32

GetDeviceFlowCodeDuration returns the DeviceFlowCodeDuration field value if set, zero value otherwise.

func (*Service) GetDeviceFlowCodeDurationOk

func (o *Service) GetDeviceFlowCodeDurationOk() (*int32, bool)

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

func (*Service) GetDeviceFlowPollingInterval

func (o *Service) GetDeviceFlowPollingInterval() int32

GetDeviceFlowPollingInterval returns the DeviceFlowPollingInterval field value if set, zero value otherwise.

func (*Service) GetDeviceFlowPollingIntervalOk

func (o *Service) GetDeviceFlowPollingIntervalOk() (*int32, bool)

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

func (*Service) GetDeviceVerificationUri

func (o *Service) GetDeviceVerificationUri() string

GetDeviceVerificationUri returns the DeviceVerificationUri field value if set, zero value otherwise.

func (*Service) GetDeviceVerificationUriComplete

func (o *Service) GetDeviceVerificationUriComplete() string

GetDeviceVerificationUriComplete returns the DeviceVerificationUriComplete field value if set, zero value otherwise.

func (*Service) GetDeviceVerificationUriCompleteOk

func (o *Service) GetDeviceVerificationUriCompleteOk() (*string, bool)

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

func (*Service) GetDeviceVerificationUriOk

func (o *Service) GetDeviceVerificationUriOk() (*string, bool)

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

func (*Service) GetDirectAuthorizationEndpointEnabled

func (o *Service) GetDirectAuthorizationEndpointEnabled() bool

GetDirectAuthorizationEndpointEnabled returns the DirectAuthorizationEndpointEnabled field value if set, zero value otherwise.

func (*Service) GetDirectAuthorizationEndpointEnabledOk

func (o *Service) GetDirectAuthorizationEndpointEnabledOk() (*bool, bool)

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

func (*Service) GetDirectIntrospectionEndpointEnabled

func (o *Service) GetDirectIntrospectionEndpointEnabled() bool

GetDirectIntrospectionEndpointEnabled returns the DirectIntrospectionEndpointEnabled field value if set, zero value otherwise.

func (*Service) GetDirectIntrospectionEndpointEnabledOk

func (o *Service) GetDirectIntrospectionEndpointEnabledOk() (*bool, bool)

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

func (*Service) GetDirectJwksEndpointEnabled

func (o *Service) GetDirectJwksEndpointEnabled() bool

GetDirectJwksEndpointEnabled returns the DirectJwksEndpointEnabled field value if set, zero value otherwise.

func (*Service) GetDirectJwksEndpointEnabledOk

func (o *Service) GetDirectJwksEndpointEnabledOk() (*bool, bool)

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

func (*Service) GetDirectRevocationEndpointEnabled

func (o *Service) GetDirectRevocationEndpointEnabled() bool

GetDirectRevocationEndpointEnabled returns the DirectRevocationEndpointEnabled field value if set, zero value otherwise.

func (*Service) GetDirectRevocationEndpointEnabledOk

func (o *Service) GetDirectRevocationEndpointEnabledOk() (*bool, bool)

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

func (*Service) GetDirectTokenEndpointEnabled

func (o *Service) GetDirectTokenEndpointEnabled() bool

GetDirectTokenEndpointEnabled returns the DirectTokenEndpointEnabled field value if set, zero value otherwise.

func (*Service) GetDirectTokenEndpointEnabledOk

func (o *Service) GetDirectTokenEndpointEnabledOk() (*bool, bool)

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

func (*Service) GetDirectUserInfoEndpointEnabled

func (o *Service) GetDirectUserInfoEndpointEnabled() bool

GetDirectUserInfoEndpointEnabled returns the DirectUserInfoEndpointEnabled field value if set, zero value otherwise.

func (*Service) GetDirectUserInfoEndpointEnabledOk

func (o *Service) GetDirectUserInfoEndpointEnabledOk() (*bool, bool)

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

func (*Service) GetDynamicRegistrationSupported

func (o *Service) GetDynamicRegistrationSupported() bool

GetDynamicRegistrationSupported returns the DynamicRegistrationSupported field value if set, zero value otherwise.

func (*Service) GetDynamicRegistrationSupportedOk

func (o *Service) GetDynamicRegistrationSupportedOk() (*bool, bool)

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

func (*Service) GetEndSessionEndpoint

func (o *Service) GetEndSessionEndpoint() string

GetEndSessionEndpoint returns the EndSessionEndpoint field value if set, zero value otherwise.

func (*Service) GetEndSessionEndpointOk

func (o *Service) GetEndSessionEndpointOk() (*string, bool)

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

func (*Service) GetErrorDescriptionOmitted

func (o *Service) GetErrorDescriptionOmitted() bool

GetErrorDescriptionOmitted returns the ErrorDescriptionOmitted field value if set, zero value otherwise.

func (*Service) GetErrorDescriptionOmittedOk

func (o *Service) GetErrorDescriptionOmittedOk() (*bool, bool)

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

func (*Service) GetErrorUriOmitted

func (o *Service) GetErrorUriOmitted() bool

GetErrorUriOmitted returns the ErrorUriOmitted field value if set, zero value otherwise.

func (*Service) GetErrorUriOmittedOk

func (o *Service) GetErrorUriOmittedOk() (*bool, bool)

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

func (*Service) GetFederationConfigurationDuration

func (o *Service) GetFederationConfigurationDuration() int32

GetFederationConfigurationDuration returns the FederationConfigurationDuration field value if set, zero value otherwise.

func (*Service) GetFederationConfigurationDurationOk

func (o *Service) GetFederationConfigurationDurationOk() (*int32, bool)

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

func (*Service) GetFederationEnabled

func (o *Service) GetFederationEnabled() bool

GetFederationEnabled returns the FederationEnabled field value if set, zero value otherwise.

func (*Service) GetFederationEnabledOk

func (o *Service) GetFederationEnabledOk() (*bool, bool)

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

func (*Service) GetFederationJwks

func (o *Service) GetFederationJwks() string

GetFederationJwks returns the FederationJwks field value if set, zero value otherwise.

func (*Service) GetFederationJwksOk

func (o *Service) GetFederationJwksOk() (*string, bool)

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

func (*Service) GetFederationRegistrationEndpoint

func (o *Service) GetFederationRegistrationEndpoint() string

GetFederationRegistrationEndpoint returns the FederationRegistrationEndpoint field value if set, zero value otherwise.

func (*Service) GetFederationRegistrationEndpointOk

func (o *Service) GetFederationRegistrationEndpointOk() (*string, bool)

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

func (*Service) GetFederationSignatureKeyId

func (o *Service) GetFederationSignatureKeyId() string

GetFederationSignatureKeyId returns the FederationSignatureKeyId field value if set, zero value otherwise.

func (*Service) GetFederationSignatureKeyIdOk

func (o *Service) GetFederationSignatureKeyIdOk() (*string, bool)

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

func (*Service) GetFrontChannelRequestObjectEncryptionRequired

func (o *Service) GetFrontChannelRequestObjectEncryptionRequired() bool

GetFrontChannelRequestObjectEncryptionRequired returns the FrontChannelRequestObjectEncryptionRequired field value if set, zero value otherwise.

func (*Service) GetFrontChannelRequestObjectEncryptionRequiredOk

func (o *Service) GetFrontChannelRequestObjectEncryptionRequiredOk() (*bool, bool)

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

func (*Service) GetGrantManagementActionRequired

func (o *Service) GetGrantManagementActionRequired() bool

GetGrantManagementActionRequired returns the GrantManagementActionRequired field value if set, zero value otherwise.

func (*Service) GetGrantManagementActionRequiredOk

func (o *Service) GetGrantManagementActionRequiredOk() (*bool, bool)

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

func (*Service) GetGrantManagementEndpoint

func (o *Service) GetGrantManagementEndpoint() string

GetGrantManagementEndpoint returns the GrantManagementEndpoint field value if set, zero value otherwise.

func (*Service) GetGrantManagementEndpointOk

func (o *Service) GetGrantManagementEndpointOk() (*string, bool)

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

func (*Service) GetHsks

func (o *Service) GetHsks() []Hsk

GetHsks returns the Hsks field value if set, zero value otherwise.

func (*Service) GetHsksOk

func (o *Service) GetHsksOk() ([]Hsk, bool)

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

func (*Service) GetHsmEnabled

func (o *Service) GetHsmEnabled() bool

GetHsmEnabled returns the HsmEnabled field value if set, zero value otherwise.

func (*Service) GetHsmEnabledOk

func (o *Service) GetHsmEnabledOk() (*bool, bool)

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

func (*Service) GetIdTokenAudType

func (o *Service) GetIdTokenAudType() string

GetIdTokenAudType returns the IdTokenAudType field value if set, zero value otherwise.

func (*Service) GetIdTokenAudTypeOk

func (o *Service) GetIdTokenAudTypeOk() (*string, bool)

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

func (*Service) GetIdTokenDuration

func (o *Service) GetIdTokenDuration() int64

GetIdTokenDuration returns the IdTokenDuration field value if set, zero value otherwise.

func (*Service) GetIdTokenDurationOk

func (o *Service) GetIdTokenDurationOk() (*int64, bool)

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

func (*Service) GetIdTokenReissuable

func (o *Service) GetIdTokenReissuable() bool

GetIdTokenReissuable returns the IdTokenReissuable field value if set, zero value otherwise.

func (*Service) GetIdTokenReissuableOk

func (o *Service) GetIdTokenReissuableOk() (*bool, bool)

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

func (*Service) GetIdTokenSignatureKeyId

func (o *Service) GetIdTokenSignatureKeyId() string

GetIdTokenSignatureKeyId returns the IdTokenSignatureKeyId field value if set, zero value otherwise.

func (*Service) GetIdTokenSignatureKeyIdOk

func (o *Service) GetIdTokenSignatureKeyIdOk() (*string, bool)

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

func (*Service) GetIntrospectionEndpoint

func (o *Service) GetIntrospectionEndpoint() string

GetIntrospectionEndpoint returns the IntrospectionEndpoint field value if set, zero value otherwise.

func (*Service) GetIntrospectionEndpointOk

func (o *Service) GetIntrospectionEndpointOk() (*string, bool)

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

func (*Service) GetIssSuppressed

func (o *Service) GetIssSuppressed() bool

GetIssSuppressed returns the IssSuppressed field value if set, zero value otherwise.

func (*Service) GetIssSuppressedOk

func (o *Service) GetIssSuppressedOk() (*bool, bool)

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

func (*Service) GetIssuer

func (o *Service) GetIssuer() string

GetIssuer returns the Issuer field value if set, zero value otherwise.

func (*Service) GetIssuerOk

func (o *Service) GetIssuerOk() (*string, bool)

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

func (*Service) GetJwks

func (o *Service) GetJwks() string

GetJwks returns the Jwks field value if set, zero value otherwise.

func (*Service) GetJwksOk

func (o *Service) GetJwksOk() (*string, bool)

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

func (*Service) GetJwksUri

func (o *Service) GetJwksUri() string

GetJwksUri returns the JwksUri field value if set, zero value otherwise.

func (*Service) GetJwksUriOk

func (o *Service) GetJwksUriOk() (*string, bool)

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

func (*Service) GetJwtGrantByIdentifiableClientsOnly

func (o *Service) GetJwtGrantByIdentifiableClientsOnly() bool

GetJwtGrantByIdentifiableClientsOnly returns the JwtGrantByIdentifiableClientsOnly field value if set, zero value otherwise.

func (*Service) GetJwtGrantByIdentifiableClientsOnlyOk

func (o *Service) GetJwtGrantByIdentifiableClientsOnlyOk() (*bool, bool)

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

func (*Service) GetJwtGrantEncryptedJwtRejected

func (o *Service) GetJwtGrantEncryptedJwtRejected() bool

GetJwtGrantEncryptedJwtRejected returns the JwtGrantEncryptedJwtRejected field value if set, zero value otherwise.

func (*Service) GetJwtGrantEncryptedJwtRejectedOk

func (o *Service) GetJwtGrantEncryptedJwtRejectedOk() (*bool, bool)

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

func (*Service) GetJwtGrantUnsignedJwtRejected

func (o *Service) GetJwtGrantUnsignedJwtRejected() bool

GetJwtGrantUnsignedJwtRejected returns the JwtGrantUnsignedJwtRejected field value if set, zero value otherwise.

func (*Service) GetJwtGrantUnsignedJwtRejectedOk

func (o *Service) GetJwtGrantUnsignedJwtRejectedOk() (*bool, bool)

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

func (*Service) GetLoopbackRedirectionUriVariable

func (o *Service) GetLoopbackRedirectionUriVariable() bool

GetLoopbackRedirectionUriVariable returns the LoopbackRedirectionUriVariable field value if set, zero value otherwise.

func (*Service) GetLoopbackRedirectionUriVariableOk

func (o *Service) GetLoopbackRedirectionUriVariableOk() (*bool, bool)

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

func (*Service) GetMetadata

func (o *Service) GetMetadata() []Pair

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Service) GetMetadataOk

func (o *Service) GetMetadataOk() ([]Pair, bool)

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

func (*Service) GetMissingClientIdAllowed

func (o *Service) GetMissingClientIdAllowed() bool

GetMissingClientIdAllowed returns the MissingClientIdAllowed field value if set, zero value otherwise.

func (*Service) GetMissingClientIdAllowedOk

func (o *Service) GetMissingClientIdAllowedOk() (*bool, bool)

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

func (*Service) GetModifiedAt

func (o *Service) GetModifiedAt() int64

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise.

func (*Service) GetModifiedAtOk

func (o *Service) GetModifiedAtOk() (*int64, bool)

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

func (*Service) GetMtlsEndpointAliases

func (o *Service) GetMtlsEndpointAliases() []NamedUri

GetMtlsEndpointAliases returns the MtlsEndpointAliases field value if set, zero value otherwise.

func (*Service) GetMtlsEndpointAliasesOk

func (o *Service) GetMtlsEndpointAliasesOk() ([]NamedUri, bool)

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

func (*Service) GetMutualTlsValidatePkiCertChain

func (o *Service) GetMutualTlsValidatePkiCertChain() bool

GetMutualTlsValidatePkiCertChain returns the MutualTlsValidatePkiCertChain field value if set, zero value otherwise.

func (*Service) GetMutualTlsValidatePkiCertChainOk

func (o *Service) GetMutualTlsValidatePkiCertChainOk() (*bool, bool)

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

func (*Service) GetNbfOptional

func (o *Service) GetNbfOptional() bool

GetNbfOptional returns the NbfOptional field value if set, zero value otherwise.

func (*Service) GetNbfOptionalOk

func (o *Service) GetNbfOptionalOk() (*bool, bool)

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

func (*Service) GetNumber

func (o *Service) GetNumber() int32

GetNumber returns the Number field value if set, zero value otherwise.

func (*Service) GetNumberOk

func (o *Service) GetNumberOk() (*int32, bool)

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

func (*Service) GetOpenidDroppedOnRefreshWithoutOfflineAccess

func (o *Service) GetOpenidDroppedOnRefreshWithoutOfflineAccess() bool

GetOpenidDroppedOnRefreshWithoutOfflineAccess returns the OpenidDroppedOnRefreshWithoutOfflineAccess field value if set, zero value otherwise.

func (*Service) GetOpenidDroppedOnRefreshWithoutOfflineAccessOk

func (o *Service) GetOpenidDroppedOnRefreshWithoutOfflineAccessOk() (*bool, bool)

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

func (*Service) GetOrganizationName

func (o *Service) GetOrganizationName() string

GetOrganizationName returns the OrganizationName field value if set, zero value otherwise.

func (*Service) GetOrganizationNameOk

func (o *Service) GetOrganizationNameOk() (*string, bool)

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

func (*Service) GetParRequired

func (o *Service) GetParRequired() bool

GetParRequired returns the ParRequired field value if set, zero value otherwise.

func (*Service) GetParRequiredOk

func (o *Service) GetParRequiredOk() (*bool, bool)

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

func (*Service) GetPkceRequired

func (o *Service) GetPkceRequired() bool

GetPkceRequired returns the PkceRequired field value if set, zero value otherwise.

func (*Service) GetPkceRequiredOk

func (o *Service) GetPkceRequiredOk() (*bool, bool)

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

func (*Service) GetPkceS256Required

func (o *Service) GetPkceS256Required() bool

GetPkceS256Required returns the PkceS256Required field value if set, zero value otherwise.

func (*Service) GetPkceS256RequiredOk

func (o *Service) GetPkceS256RequiredOk() (*bool, bool)

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

func (*Service) GetPolicyUri

func (o *Service) GetPolicyUri() string

GetPolicyUri returns the PolicyUri field value if set, zero value otherwise.

func (*Service) GetPolicyUriOk

func (o *Service) GetPolicyUriOk() (*string, bool)

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

func (*Service) GetPreAuthorizedGrantAnonymousAccessSupported

func (o *Service) GetPreAuthorizedGrantAnonymousAccessSupported() bool

GetPreAuthorizedGrantAnonymousAccessSupported returns the PreAuthorizedGrantAnonymousAccessSupported field value if set, zero value otherwise.

func (*Service) GetPreAuthorizedGrantAnonymousAccessSupportedOk

func (o *Service) GetPreAuthorizedGrantAnonymousAccessSupportedOk() (*bool, bool)

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

func (*Service) GetPredefinedTransformedClaims

func (o *Service) GetPredefinedTransformedClaims() string

GetPredefinedTransformedClaims returns the PredefinedTransformedClaims field value if set, zero value otherwise.

func (*Service) GetPredefinedTransformedClaimsOk

func (o *Service) GetPredefinedTransformedClaimsOk() (*string, bool)

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

func (*Service) GetPushedAuthReqDuration

func (o *Service) GetPushedAuthReqDuration() int64

GetPushedAuthReqDuration returns the PushedAuthReqDuration field value if set, zero value otherwise.

func (*Service) GetPushedAuthReqDurationOk

func (o *Service) GetPushedAuthReqDurationOk() (*int64, bool)

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

func (*Service) GetPushedAuthReqEndpoint

func (o *Service) GetPushedAuthReqEndpoint() string

GetPushedAuthReqEndpoint returns the PushedAuthReqEndpoint field value if set, zero value otherwise.

func (*Service) GetPushedAuthReqEndpointOk

func (o *Service) GetPushedAuthReqEndpointOk() (*string, bool)

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

func (*Service) GetRefreshTokenDuration

func (o *Service) GetRefreshTokenDuration() int64

GetRefreshTokenDuration returns the RefreshTokenDuration field value if set, zero value otherwise.

func (*Service) GetRefreshTokenDurationKept

func (o *Service) GetRefreshTokenDurationKept() bool

GetRefreshTokenDurationKept returns the RefreshTokenDurationKept field value if set, zero value otherwise.

func (*Service) GetRefreshTokenDurationKeptOk

func (o *Service) GetRefreshTokenDurationKeptOk() (*bool, bool)

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

func (*Service) GetRefreshTokenDurationOk

func (o *Service) GetRefreshTokenDurationOk() (*int64, bool)

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

func (*Service) GetRefreshTokenDurationReset

func (o *Service) GetRefreshTokenDurationReset() bool

GetRefreshTokenDurationReset returns the RefreshTokenDurationReset field value if set, zero value otherwise.

func (*Service) GetRefreshTokenDurationResetOk

func (o *Service) GetRefreshTokenDurationResetOk() (*bool, bool)

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

func (*Service) GetRefreshTokenIdempotent

func (o *Service) GetRefreshTokenIdempotent() bool

GetRefreshTokenIdempotent returns the RefreshTokenIdempotent field value if set, zero value otherwise.

func (*Service) GetRefreshTokenIdempotentOk

func (o *Service) GetRefreshTokenIdempotentOk() (*bool, bool)

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

func (*Service) GetRefreshTokenKept

func (o *Service) GetRefreshTokenKept() bool

GetRefreshTokenKept returns the RefreshTokenKept field value if set, zero value otherwise.

func (*Service) GetRefreshTokenKeptOk

func (o *Service) GetRefreshTokenKeptOk() (*bool, bool)

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

func (*Service) GetRegistrationEndpoint

func (o *Service) GetRegistrationEndpoint() string

GetRegistrationEndpoint returns the RegistrationEndpoint field value if set, zero value otherwise.

func (*Service) GetRegistrationEndpointOk

func (o *Service) GetRegistrationEndpointOk() (*string, bool)

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

func (*Service) GetRegistrationManagementEndpoint

func (o *Service) GetRegistrationManagementEndpoint() string

GetRegistrationManagementEndpoint returns the RegistrationManagementEndpoint field value if set, zero value otherwise.

func (*Service) GetRegistrationManagementEndpointOk

func (o *Service) GetRegistrationManagementEndpointOk() (*string, bool)

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

func (*Service) GetRequestObjectAudienceChecked

func (o *Service) GetRequestObjectAudienceChecked() bool

GetRequestObjectAudienceChecked returns the RequestObjectAudienceChecked field value if set, zero value otherwise.

func (*Service) GetRequestObjectAudienceCheckedOk

func (o *Service) GetRequestObjectAudienceCheckedOk() (*bool, bool)

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

func (*Service) GetRequestObjectEncryptionAlgMatchRequired

func (o *Service) GetRequestObjectEncryptionAlgMatchRequired() bool

GetRequestObjectEncryptionAlgMatchRequired returns the RequestObjectEncryptionAlgMatchRequired field value if set, zero value otherwise.

func (*Service) GetRequestObjectEncryptionAlgMatchRequiredOk

func (o *Service) GetRequestObjectEncryptionAlgMatchRequiredOk() (*bool, bool)

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

func (*Service) GetRequestObjectEncryptionEncMatchRequired

func (o *Service) GetRequestObjectEncryptionEncMatchRequired() bool

GetRequestObjectEncryptionEncMatchRequired returns the RequestObjectEncryptionEncMatchRequired field value if set, zero value otherwise.

func (*Service) GetRequestObjectEncryptionEncMatchRequiredOk

func (o *Service) GetRequestObjectEncryptionEncMatchRequiredOk() (*bool, bool)

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

func (*Service) GetRequestObjectRequired

func (o *Service) GetRequestObjectRequired() bool

GetRequestObjectRequired returns the RequestObjectRequired field value if set, zero value otherwise.

func (*Service) GetRequestObjectRequiredOk

func (o *Service) GetRequestObjectRequiredOk() (*bool, bool)

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

func (*Service) GetResourceSignatureKeyId

func (o *Service) GetResourceSignatureKeyId() string

GetResourceSignatureKeyId returns the ResourceSignatureKeyId field value if set, zero value otherwise.

func (*Service) GetResourceSignatureKeyIdOk

func (o *Service) GetResourceSignatureKeyIdOk() (*string, bool)

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

func (*Service) GetRevocationEndpoint

func (o *Service) GetRevocationEndpoint() string

GetRevocationEndpoint returns the RevocationEndpoint field value if set, zero value otherwise.

func (*Service) GetRevocationEndpointOk

func (o *Service) GetRevocationEndpointOk() (*string, bool)

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

func (*Service) GetRsResponseSigned

func (o *Service) GetRsResponseSigned() bool

GetRsResponseSigned returns the RsResponseSigned field value if set, zero value otherwise.

func (*Service) GetRsResponseSignedOk

func (o *Service) GetRsResponseSignedOk() (*bool, bool)

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

func (*Service) GetScopeRequired

func (o *Service) GetScopeRequired() bool

GetScopeRequired returns the ScopeRequired field value if set, zero value otherwise.

func (*Service) GetScopeRequiredOk

func (o *Service) GetScopeRequiredOk() (*bool, bool)

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

func (*Service) GetServiceDocumentation

func (o *Service) GetServiceDocumentation() string

GetServiceDocumentation returns the ServiceDocumentation field value if set, zero value otherwise.

func (*Service) GetServiceDocumentationOk

func (o *Service) GetServiceDocumentationOk() (*string, bool)

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

func (*Service) GetServiceName

func (o *Service) GetServiceName() string

GetServiceName returns the ServiceName field value if set, zero value otherwise.

func (*Service) GetServiceNameOk

func (o *Service) GetServiceNameOk() (*string, bool)

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

func (*Service) GetServiceOwnerNumber

func (o *Service) GetServiceOwnerNumber() int32

GetServiceOwnerNumber returns the ServiceOwnerNumber field value if set, zero value otherwise.

func (*Service) GetServiceOwnerNumberOk

func (o *Service) GetServiceOwnerNumberOk() (*int32, bool)

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

func (*Service) GetSignedJwksUri

func (o *Service) GetSignedJwksUri() string

GetSignedJwksUri returns the SignedJwksUri field value if set, zero value otherwise.

func (*Service) GetSignedJwksUriOk

func (o *Service) GetSignedJwksUriOk() (*string, bool)

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

func (*Service) GetSingleAccessTokenPerSubject

func (o *Service) GetSingleAccessTokenPerSubject() bool

GetSingleAccessTokenPerSubject returns the SingleAccessTokenPerSubject field value if set, zero value otherwise.

func (*Service) GetSingleAccessTokenPerSubjectOk

func (o *Service) GetSingleAccessTokenPerSubjectOk() (*bool, bool)

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

func (*Service) GetSnsCredentials

func (o *Service) GetSnsCredentials() []SnsCredentials

GetSnsCredentials returns the SnsCredentials field value if set, zero value otherwise.

func (*Service) GetSnsCredentialsOk

func (o *Service) GetSnsCredentialsOk() ([]SnsCredentials, bool)

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

func (*Service) GetSupportedAcrs

func (o *Service) GetSupportedAcrs() []string

GetSupportedAcrs returns the SupportedAcrs field value if set, zero value otherwise.

func (*Service) GetSupportedAcrsOk

func (o *Service) GetSupportedAcrsOk() ([]string, bool)

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

func (*Service) GetSupportedAttachments

func (o *Service) GetSupportedAttachments() []string

GetSupportedAttachments returns the SupportedAttachments field value if set, zero value otherwise.

func (*Service) GetSupportedAttachmentsOk

func (o *Service) GetSupportedAttachmentsOk() ([]string, bool)

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

func (*Service) GetSupportedAuthorizationDetailsTypes

func (o *Service) GetSupportedAuthorizationDetailsTypes() []string

GetSupportedAuthorizationDetailsTypes returns the SupportedAuthorizationDetailsTypes field value if set, zero value otherwise.

func (*Service) GetSupportedAuthorizationDetailsTypesOk

func (o *Service) GetSupportedAuthorizationDetailsTypesOk() ([]string, bool)

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

func (*Service) GetSupportedBackchannelTokenDeliveryModes

func (o *Service) GetSupportedBackchannelTokenDeliveryModes() []string

GetSupportedBackchannelTokenDeliveryModes returns the SupportedBackchannelTokenDeliveryModes field value if set, zero value otherwise.

func (*Service) GetSupportedBackchannelTokenDeliveryModesOk

func (o *Service) GetSupportedBackchannelTokenDeliveryModesOk() ([]string, bool)

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

func (*Service) GetSupportedClaimLocales

func (o *Service) GetSupportedClaimLocales() []string

GetSupportedClaimLocales returns the SupportedClaimLocales field value if set, zero value otherwise.

func (*Service) GetSupportedClaimLocalesOk

func (o *Service) GetSupportedClaimLocalesOk() ([]string, bool)

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

func (*Service) GetSupportedClaimTypes

func (o *Service) GetSupportedClaimTypes() []string

GetSupportedClaimTypes returns the SupportedClaimTypes field value if set, zero value otherwise.

func (*Service) GetSupportedClaimTypesOk

func (o *Service) GetSupportedClaimTypesOk() ([]string, bool)

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

func (*Service) GetSupportedClaims

func (o *Service) GetSupportedClaims() []string

GetSupportedClaims returns the SupportedClaims field value if set, zero value otherwise.

func (*Service) GetSupportedClaimsOk

func (o *Service) GetSupportedClaimsOk() ([]string, bool)

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

func (*Service) GetSupportedClientRegistrationTypes

func (o *Service) GetSupportedClientRegistrationTypes() []string

GetSupportedClientRegistrationTypes returns the SupportedClientRegistrationTypes field value if set, zero value otherwise.

func (*Service) GetSupportedClientRegistrationTypesOk

func (o *Service) GetSupportedClientRegistrationTypesOk() ([]string, bool)

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

func (*Service) GetSupportedCustomClientMetadata

func (o *Service) GetSupportedCustomClientMetadata() []string

GetSupportedCustomClientMetadata returns the SupportedCustomClientMetadata field value if set, zero value otherwise.

func (*Service) GetSupportedCustomClientMetadataOk

func (o *Service) GetSupportedCustomClientMetadataOk() ([]string, bool)

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

func (*Service) GetSupportedDeveloperSnses

func (o *Service) GetSupportedDeveloperSnses() []string

GetSupportedDeveloperSnses returns the SupportedDeveloperSnses field value if set, zero value otherwise.

func (*Service) GetSupportedDeveloperSnsesOk

func (o *Service) GetSupportedDeveloperSnsesOk() ([]string, bool)

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

func (*Service) GetSupportedDigestAlgorithms

func (o *Service) GetSupportedDigestAlgorithms() []string

GetSupportedDigestAlgorithms returns the SupportedDigestAlgorithms field value if set, zero value otherwise.

func (*Service) GetSupportedDigestAlgorithmsOk

func (o *Service) GetSupportedDigestAlgorithmsOk() ([]string, bool)

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

func (*Service) GetSupportedDisplays

func (o *Service) GetSupportedDisplays() []string

GetSupportedDisplays returns the SupportedDisplays field value if set, zero value otherwise.

func (*Service) GetSupportedDisplaysOk

func (o *Service) GetSupportedDisplaysOk() ([]string, bool)

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

func (*Service) GetSupportedDocuments

func (o *Service) GetSupportedDocuments() []string

GetSupportedDocuments returns the SupportedDocuments field value if set, zero value otherwise.

func (*Service) GetSupportedDocumentsCheckMethods

func (o *Service) GetSupportedDocumentsCheckMethods() []string

GetSupportedDocumentsCheckMethods returns the SupportedDocumentsCheckMethods field value if set, zero value otherwise.

func (*Service) GetSupportedDocumentsCheckMethodsOk

func (o *Service) GetSupportedDocumentsCheckMethodsOk() ([]string, bool)

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

func (*Service) GetSupportedDocumentsMethods

func (o *Service) GetSupportedDocumentsMethods() []string

GetSupportedDocumentsMethods returns the SupportedDocumentsMethods field value if set, zero value otherwise.

func (*Service) GetSupportedDocumentsMethodsOk

func (o *Service) GetSupportedDocumentsMethodsOk() ([]string, bool)

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

func (*Service) GetSupportedDocumentsOk

func (o *Service) GetSupportedDocumentsOk() ([]string, bool)

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

func (*Service) GetSupportedDocumentsValidationMethods

func (o *Service) GetSupportedDocumentsValidationMethods() []string

GetSupportedDocumentsValidationMethods returns the SupportedDocumentsValidationMethods field value if set, zero value otherwise. Deprecated

func (*Service) GetSupportedDocumentsValidationMethodsOk

func (o *Service) GetSupportedDocumentsValidationMethodsOk() ([]string, bool)

GetSupportedDocumentsValidationMethodsOk returns a tuple with the SupportedDocumentsValidationMethods field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*Service) GetSupportedDocumentsVerificationMethods

func (o *Service) GetSupportedDocumentsVerificationMethods() []string

GetSupportedDocumentsVerificationMethods returns the SupportedDocumentsVerificationMethods field value if set, zero value otherwise. Deprecated

func (*Service) GetSupportedDocumentsVerificationMethodsOk

func (o *Service) GetSupportedDocumentsVerificationMethodsOk() ([]string, bool)

GetSupportedDocumentsVerificationMethodsOk returns a tuple with the SupportedDocumentsVerificationMethods field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*Service) GetSupportedElectronicRecords

func (o *Service) GetSupportedElectronicRecords() []string

GetSupportedElectronicRecords returns the SupportedElectronicRecords field value if set, zero value otherwise.

func (*Service) GetSupportedElectronicRecordsOk

func (o *Service) GetSupportedElectronicRecordsOk() ([]string, bool)

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

func (*Service) GetSupportedEvidence

func (o *Service) GetSupportedEvidence() []string

GetSupportedEvidence returns the SupportedEvidence field value if set, zero value otherwise.

func (*Service) GetSupportedEvidenceOk

func (o *Service) GetSupportedEvidenceOk() ([]string, bool)

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

func (*Service) GetSupportedGrantTypes

func (o *Service) GetSupportedGrantTypes() []string

GetSupportedGrantTypes returns the SupportedGrantTypes field value if set, zero value otherwise.

func (*Service) GetSupportedGrantTypesOk

func (o *Service) GetSupportedGrantTypesOk() ([]string, bool)

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

func (*Service) GetSupportedIdentityDocuments

func (o *Service) GetSupportedIdentityDocuments() []string

GetSupportedIdentityDocuments returns the SupportedIdentityDocuments field value if set, zero value otherwise. Deprecated

func (*Service) GetSupportedIdentityDocumentsOk

func (o *Service) GetSupportedIdentityDocumentsOk() ([]string, bool)

GetSupportedIdentityDocumentsOk returns a tuple with the SupportedIdentityDocuments field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*Service) GetSupportedIntrospectionAuthMethods

func (o *Service) GetSupportedIntrospectionAuthMethods() []string

GetSupportedIntrospectionAuthMethods returns the SupportedIntrospectionAuthMethods field value if set, zero value otherwise.

func (*Service) GetSupportedIntrospectionAuthMethodsOk

func (o *Service) GetSupportedIntrospectionAuthMethodsOk() ([]string, bool)

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

func (*Service) GetSupportedPromptValues

func (o *Service) GetSupportedPromptValues() []string

GetSupportedPromptValues returns the SupportedPromptValues field value if set, zero value otherwise.

func (*Service) GetSupportedPromptValuesOk

func (o *Service) GetSupportedPromptValuesOk() ([]string, bool)

GetSupportedPromptValuesOk returns a tuple with the SupportedPromptValues field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetSupportedResponseTypes

func (o *Service) GetSupportedResponseTypes() []string

GetSupportedResponseTypes returns the SupportedResponseTypes field value if set, zero value otherwise.

func (*Service) GetSupportedResponseTypesOk

func (o *Service) GetSupportedResponseTypesOk() ([]string, bool)

GetSupportedResponseTypesOk returns a tuple with the SupportedResponseTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetSupportedRevocationAuthMethods

func (o *Service) GetSupportedRevocationAuthMethods() []string

GetSupportedRevocationAuthMethods returns the SupportedRevocationAuthMethods field value if set, zero value otherwise.

func (*Service) GetSupportedRevocationAuthMethodsOk

func (o *Service) GetSupportedRevocationAuthMethodsOk() ([]string, bool)

GetSupportedRevocationAuthMethodsOk returns a tuple with the SupportedRevocationAuthMethods field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetSupportedScopes

func (o *Service) GetSupportedScopes() []Scope

GetSupportedScopes returns the SupportedScopes field value if set, zero value otherwise.

func (*Service) GetSupportedScopesOk

func (o *Service) GetSupportedScopesOk() ([]Scope, bool)

GetSupportedScopesOk returns a tuple with the SupportedScopes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetSupportedServiceProfiles

func (o *Service) GetSupportedServiceProfiles() []string

GetSupportedServiceProfiles returns the SupportedServiceProfiles field value if set, zero value otherwise.

func (*Service) GetSupportedServiceProfilesOk

func (o *Service) GetSupportedServiceProfilesOk() ([]string, bool)

GetSupportedServiceProfilesOk returns a tuple with the SupportedServiceProfiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetSupportedSnses

func (o *Service) GetSupportedSnses() []string

GetSupportedSnses returns the SupportedSnses field value if set, zero value otherwise.

func (*Service) GetSupportedSnsesOk

func (o *Service) GetSupportedSnsesOk() ([]string, bool)

GetSupportedSnsesOk returns a tuple with the SupportedSnses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetSupportedTokenAuthMethods

func (o *Service) GetSupportedTokenAuthMethods() []string

GetSupportedTokenAuthMethods returns the SupportedTokenAuthMethods field value if set, zero value otherwise.

func (*Service) GetSupportedTokenAuthMethodsOk

func (o *Service) GetSupportedTokenAuthMethodsOk() ([]string, bool)

GetSupportedTokenAuthMethodsOk returns a tuple with the SupportedTokenAuthMethods field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetSupportedTrustFrameworks

func (o *Service) GetSupportedTrustFrameworks() []string

GetSupportedTrustFrameworks returns the SupportedTrustFrameworks field value if set, zero value otherwise.

func (*Service) GetSupportedTrustFrameworksOk

func (o *Service) GetSupportedTrustFrameworksOk() ([]string, bool)

GetSupportedTrustFrameworksOk returns a tuple with the SupportedTrustFrameworks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetSupportedUiLocales

func (o *Service) GetSupportedUiLocales() []string

GetSupportedUiLocales returns the SupportedUiLocales field value if set, zero value otherwise.

func (*Service) GetSupportedUiLocalesOk

func (o *Service) GetSupportedUiLocalesOk() ([]string, bool)

GetSupportedUiLocalesOk returns a tuple with the SupportedUiLocales field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetSupportedVerificationMethods

func (o *Service) GetSupportedVerificationMethods() []string

GetSupportedVerificationMethods returns the SupportedVerificationMethods field value if set, zero value otherwise. Deprecated

func (*Service) GetSupportedVerificationMethodsOk

func (o *Service) GetSupportedVerificationMethodsOk() ([]string, bool)

GetSupportedVerificationMethodsOk returns a tuple with the SupportedVerificationMethods field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*Service) GetSupportedVerifiedClaims

func (o *Service) GetSupportedVerifiedClaims() []string

GetSupportedVerifiedClaims returns the SupportedVerifiedClaims field value if set, zero value otherwise.

func (*Service) GetSupportedVerifiedClaimsOk

func (o *Service) GetSupportedVerifiedClaimsOk() ([]string, bool)

GetSupportedVerifiedClaimsOk returns a tuple with the SupportedVerifiedClaims field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetTlsClientCertificateBoundAccessTokens

func (o *Service) GetTlsClientCertificateBoundAccessTokens() bool

GetTlsClientCertificateBoundAccessTokens returns the TlsClientCertificateBoundAccessTokens field value if set, zero value otherwise.

func (*Service) GetTlsClientCertificateBoundAccessTokensOk

func (o *Service) GetTlsClientCertificateBoundAccessTokensOk() (*bool, bool)

GetTlsClientCertificateBoundAccessTokensOk returns a tuple with the TlsClientCertificateBoundAccessTokens field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetTokenEndpoint

func (o *Service) GetTokenEndpoint() string

GetTokenEndpoint returns the TokenEndpoint field value if set, zero value otherwise.

func (*Service) GetTokenEndpointOk

func (o *Service) GetTokenEndpointOk() (*string, bool)

GetTokenEndpointOk returns a tuple with the TokenEndpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetTokenExchangeByConfidentialClientsOnly

func (o *Service) GetTokenExchangeByConfidentialClientsOnly() bool

GetTokenExchangeByConfidentialClientsOnly returns the TokenExchangeByConfidentialClientsOnly field value if set, zero value otherwise.

func (*Service) GetTokenExchangeByConfidentialClientsOnlyOk

func (o *Service) GetTokenExchangeByConfidentialClientsOnlyOk() (*bool, bool)

GetTokenExchangeByConfidentialClientsOnlyOk returns a tuple with the TokenExchangeByConfidentialClientsOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetTokenExchangeByIdentifiableClientsOnly

func (o *Service) GetTokenExchangeByIdentifiableClientsOnly() bool

GetTokenExchangeByIdentifiableClientsOnly returns the TokenExchangeByIdentifiableClientsOnly field value if set, zero value otherwise.

func (*Service) GetTokenExchangeByIdentifiableClientsOnlyOk

func (o *Service) GetTokenExchangeByIdentifiableClientsOnlyOk() (*bool, bool)

GetTokenExchangeByIdentifiableClientsOnlyOk returns a tuple with the TokenExchangeByIdentifiableClientsOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetTokenExchangeByPermittedClientsOnly

func (o *Service) GetTokenExchangeByPermittedClientsOnly() bool

GetTokenExchangeByPermittedClientsOnly returns the TokenExchangeByPermittedClientsOnly field value if set, zero value otherwise.

func (*Service) GetTokenExchangeByPermittedClientsOnlyOk

func (o *Service) GetTokenExchangeByPermittedClientsOnlyOk() (*bool, bool)

GetTokenExchangeByPermittedClientsOnlyOk returns a tuple with the TokenExchangeByPermittedClientsOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetTokenExchangeEncryptedJwtRejected

func (o *Service) GetTokenExchangeEncryptedJwtRejected() bool

GetTokenExchangeEncryptedJwtRejected returns the TokenExchangeEncryptedJwtRejected field value if set, zero value otherwise.

func (*Service) GetTokenExchangeEncryptedJwtRejectedOk

func (o *Service) GetTokenExchangeEncryptedJwtRejectedOk() (*bool, bool)

GetTokenExchangeEncryptedJwtRejectedOk returns a tuple with the TokenExchangeEncryptedJwtRejected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetTokenExchangeUnsignedJwtRejected

func (o *Service) GetTokenExchangeUnsignedJwtRejected() bool

GetTokenExchangeUnsignedJwtRejected returns the TokenExchangeUnsignedJwtRejected field value if set, zero value otherwise.

func (*Service) GetTokenExchangeUnsignedJwtRejectedOk

func (o *Service) GetTokenExchangeUnsignedJwtRejectedOk() (*bool, bool)

GetTokenExchangeUnsignedJwtRejectedOk returns a tuple with the TokenExchangeUnsignedJwtRejected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetTokenExpirationLinked

func (o *Service) GetTokenExpirationLinked() bool

GetTokenExpirationLinked returns the TokenExpirationLinked field value if set, zero value otherwise.

func (*Service) GetTokenExpirationLinkedOk

func (o *Service) GetTokenExpirationLinkedOk() (*bool, bool)

GetTokenExpirationLinkedOk returns a tuple with the TokenExpirationLinked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetTosUri

func (o *Service) GetTosUri() string

GetTosUri returns the TosUri field value if set, zero value otherwise.

func (*Service) GetTosUriOk

func (o *Service) GetTosUriOk() (*string, bool)

GetTosUriOk returns a tuple with the TosUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetTraditionalRequestObjectProcessingApplied

func (o *Service) GetTraditionalRequestObjectProcessingApplied() bool

GetTraditionalRequestObjectProcessingApplied returns the TraditionalRequestObjectProcessingApplied field value if set, zero value otherwise.

func (*Service) GetTraditionalRequestObjectProcessingAppliedOk

func (o *Service) GetTraditionalRequestObjectProcessingAppliedOk() (*bool, bool)

GetTraditionalRequestObjectProcessingAppliedOk returns a tuple with the TraditionalRequestObjectProcessingApplied field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetTrustAnchors

func (o *Service) GetTrustAnchors() []TrustAnchor

GetTrustAnchors returns the TrustAnchors field value if set, zero value otherwise.

func (*Service) GetTrustAnchorsOk

func (o *Service) GetTrustAnchorsOk() ([]TrustAnchor, bool)

GetTrustAnchorsOk returns a tuple with the TrustAnchors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetTrustedRootCertificates

func (o *Service) GetTrustedRootCertificates() []string

GetTrustedRootCertificates returns the TrustedRootCertificates field value if set, zero value otherwise.

func (*Service) GetTrustedRootCertificatesOk

func (o *Service) GetTrustedRootCertificatesOk() ([]string, bool)

GetTrustedRootCertificatesOk returns a tuple with the TrustedRootCertificates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetUnauthorizedOnClientConfigSupported

func (o *Service) GetUnauthorizedOnClientConfigSupported() bool

GetUnauthorizedOnClientConfigSupported returns the UnauthorizedOnClientConfigSupported field value if set, zero value otherwise.

func (*Service) GetUnauthorizedOnClientConfigSupportedOk

func (o *Service) GetUnauthorizedOnClientConfigSupportedOk() (*bool, bool)

GetUnauthorizedOnClientConfigSupportedOk returns a tuple with the UnauthorizedOnClientConfigSupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetUserCodeCharset

func (o *Service) GetUserCodeCharset() string

GetUserCodeCharset returns the UserCodeCharset field value if set, zero value otherwise.

func (*Service) GetUserCodeCharsetOk

func (o *Service) GetUserCodeCharsetOk() (*string, bool)

GetUserCodeCharsetOk returns a tuple with the UserCodeCharset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetUserCodeLength

func (o *Service) GetUserCodeLength() int32

GetUserCodeLength returns the UserCodeLength field value if set, zero value otherwise.

func (*Service) GetUserCodeLengthOk

func (o *Service) GetUserCodeLengthOk() (*int32, bool)

GetUserCodeLengthOk returns a tuple with the UserCodeLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetUserInfoEndpoint

func (o *Service) GetUserInfoEndpoint() string

GetUserInfoEndpoint returns the UserInfoEndpoint field value if set, zero value otherwise.

func (*Service) GetUserInfoEndpointOk

func (o *Service) GetUserInfoEndpointOk() (*string, bool)

GetUserInfoEndpointOk returns a tuple with the UserInfoEndpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetUserInfoSignatureKeyId

func (o *Service) GetUserInfoSignatureKeyId() string

GetUserInfoSignatureKeyId returns the UserInfoSignatureKeyId field value if set, zero value otherwise.

func (*Service) GetUserInfoSignatureKeyIdOk

func (o *Service) GetUserInfoSignatureKeyIdOk() (*string, bool)

GetUserInfoSignatureKeyIdOk returns a tuple with the UserInfoSignatureKeyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetUserPinLength

func (o *Service) GetUserPinLength() int32

GetUserPinLength returns the UserPinLength field value if set, zero value otherwise.

func (*Service) GetUserPinLengthOk

func (o *Service) GetUserPinLengthOk() (*int32, bool)

GetUserPinLengthOk returns a tuple with the UserPinLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetVerifiableCredentialsEnabled

func (o *Service) GetVerifiableCredentialsEnabled() bool

GetVerifiableCredentialsEnabled returns the VerifiableCredentialsEnabled field value if set, zero value otherwise.

func (*Service) GetVerifiableCredentialsEnabledOk

func (o *Service) GetVerifiableCredentialsEnabledOk() (*bool, bool)

GetVerifiableCredentialsEnabledOk returns a tuple with the VerifiableCredentialsEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetVerifiedClaimsValidationSchemaSet

func (o *Service) GetVerifiedClaimsValidationSchemaSet() string

GetVerifiedClaimsValidationSchemaSet returns the VerifiedClaimsValidationSchemaSet field value if set, zero value otherwise.

func (*Service) GetVerifiedClaimsValidationSchemaSetOk

func (o *Service) GetVerifiedClaimsValidationSchemaSetOk() (*string, bool)

GetVerifiedClaimsValidationSchemaSetOk returns a tuple with the VerifiedClaimsValidationSchemaSet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) HasAccessTokenDuration

func (o *Service) HasAccessTokenDuration() bool

HasAccessTokenDuration returns a boolean if a field has been set.

func (*Service) HasAccessTokenForExternalAttachmentEmbedded

func (o *Service) HasAccessTokenForExternalAttachmentEmbedded() bool

HasAccessTokenForExternalAttachmentEmbedded returns a boolean if a field has been set.

func (*Service) HasAccessTokenSignAlg

func (o *Service) HasAccessTokenSignAlg() bool

HasAccessTokenSignAlg returns a boolean if a field has been set.

func (*Service) HasAccessTokenSignatureKeyId

func (o *Service) HasAccessTokenSignatureKeyId() bool

HasAccessTokenSignatureKeyId returns a boolean if a field has been set.

func (*Service) HasAccessTokenType

func (o *Service) HasAccessTokenType() bool

HasAccessTokenType returns a boolean if a field has been set.

func (*Service) HasAllowableClockSkew

func (o *Service) HasAllowableClockSkew() bool

HasAllowableClockSkew returns a boolean if a field has been set.

func (*Service) HasApiKey

func (o *Service) HasApiKey() bool

HasApiKey returns a boolean if a field has been set.

func (*Service) HasApiSecret

func (o *Service) HasApiSecret() bool

HasApiSecret returns a boolean if a field has been set.

func (*Service) HasAttributes

func (o *Service) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*Service) HasAuthenticationCallbackApiKey

func (o *Service) HasAuthenticationCallbackApiKey() bool

HasAuthenticationCallbackApiKey returns a boolean if a field has been set.

func (*Service) HasAuthenticationCallbackApiSecret

func (o *Service) HasAuthenticationCallbackApiSecret() bool

HasAuthenticationCallbackApiSecret returns a boolean if a field has been set.

func (*Service) HasAuthenticationCallbackEndpoint

func (o *Service) HasAuthenticationCallbackEndpoint() bool

HasAuthenticationCallbackEndpoint returns a boolean if a field has been set.

func (*Service) HasAuthorityHints

func (o *Service) HasAuthorityHints() bool

HasAuthorityHints returns a boolean if a field has been set.

func (*Service) HasAuthorizationEndpoint

func (o *Service) HasAuthorizationEndpoint() bool

HasAuthorizationEndpoint returns a boolean if a field has been set.

func (*Service) HasAuthorizationResponseDuration

func (o *Service) HasAuthorizationResponseDuration() bool

HasAuthorizationResponseDuration returns a boolean if a field has been set.

func (*Service) HasAuthorizationSignatureKeyId

func (o *Service) HasAuthorizationSignatureKeyId() bool

HasAuthorizationSignatureKeyId returns a boolean if a field has been set.

func (*Service) HasBackchannelAuthReqIdDuration

func (o *Service) HasBackchannelAuthReqIdDuration() bool

HasBackchannelAuthReqIdDuration returns a boolean if a field has been set.

func (*Service) HasBackchannelAuthenticationEndpoint

func (o *Service) HasBackchannelAuthenticationEndpoint() bool

HasBackchannelAuthenticationEndpoint returns a boolean if a field has been set.

func (*Service) HasBackchannelBindingMessageRequiredInFapi

func (o *Service) HasBackchannelBindingMessageRequiredInFapi() bool

HasBackchannelBindingMessageRequiredInFapi returns a boolean if a field has been set.

func (*Service) HasBackchannelPollingInterval

func (o *Service) HasBackchannelPollingInterval() bool

HasBackchannelPollingInterval returns a boolean if a field has been set.

func (*Service) HasBackchannelUserCodeParameterSupported

func (o *Service) HasBackchannelUserCodeParameterSupported() bool

HasBackchannelUserCodeParameterSupported returns a boolean if a field has been set.

func (*Service) HasClaimShortcutRestrictive

func (o *Service) HasClaimShortcutRestrictive() bool

HasClaimShortcutRestrictive returns a boolean if a field has been set.

func (*Service) HasClientIdAliasEnabled

func (o *Service) HasClientIdAliasEnabled() bool

HasClientIdAliasEnabled returns a boolean if a field has been set.

func (*Service) HasClientsPerDeveloper

func (o *Service) HasClientsPerDeveloper() bool

HasClientsPerDeveloper returns a boolean if a field has been set.

func (*Service) HasCnonceDuration

func (o *Service) HasCnonceDuration() bool

HasCnonceDuration returns a boolean if a field has been set.

func (*Service) HasCreatedAt

func (o *Service) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Service) HasCredentialDuration

func (o *Service) HasCredentialDuration() bool

HasCredentialDuration returns a boolean if a field has been set.

func (*Service) HasCredentialIssuerMetadata

func (o *Service) HasCredentialIssuerMetadata() bool

HasCredentialIssuerMetadata returns a boolean if a field has been set.

func (*Service) HasCredentialJwks

func (o *Service) HasCredentialJwks() bool

HasCredentialJwks returns a boolean if a field has been set.

func (*Service) HasCredentialOfferDuration

func (o *Service) HasCredentialOfferDuration() bool

HasCredentialOfferDuration returns a boolean if a field has been set.

func (*Service) HasCredentialTransactionDuration

func (o *Service) HasCredentialTransactionDuration() bool

HasCredentialTransactionDuration returns a boolean if a field has been set.

func (*Service) HasDcrDuplicateSoftwareIdBlocked

func (o *Service) HasDcrDuplicateSoftwareIdBlocked() bool

HasDcrDuplicateSoftwareIdBlocked returns a boolean if a field has been set.

func (*Service) HasDcrScopeUsedAsRequestable

func (o *Service) HasDcrScopeUsedAsRequestable() bool

HasDcrScopeUsedAsRequestable returns a boolean if a field has been set.

func (*Service) HasDescription

func (o *Service) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Service) HasDeveloperAuthenticationCallbackApiKey

func (o *Service) HasDeveloperAuthenticationCallbackApiKey() bool

HasDeveloperAuthenticationCallbackApiKey returns a boolean if a field has been set.

func (*Service) HasDeveloperAuthenticationCallbackApiSecret

func (o *Service) HasDeveloperAuthenticationCallbackApiSecret() bool

HasDeveloperAuthenticationCallbackApiSecret returns a boolean if a field has been set.

func (*Service) HasDeveloperAuthenticationCallbackEndpoint

func (o *Service) HasDeveloperAuthenticationCallbackEndpoint() bool

HasDeveloperAuthenticationCallbackEndpoint returns a boolean if a field has been set.

func (*Service) HasDeveloperSnsCredentials

func (o *Service) HasDeveloperSnsCredentials() bool

HasDeveloperSnsCredentials returns a boolean if a field has been set.

func (*Service) HasDeviceAuthorizationEndpoint

func (o *Service) HasDeviceAuthorizationEndpoint() bool

HasDeviceAuthorizationEndpoint returns a boolean if a field has been set.

func (*Service) HasDeviceFlowCodeDuration

func (o *Service) HasDeviceFlowCodeDuration() bool

HasDeviceFlowCodeDuration returns a boolean if a field has been set.

func (*Service) HasDeviceFlowPollingInterval

func (o *Service) HasDeviceFlowPollingInterval() bool

HasDeviceFlowPollingInterval returns a boolean if a field has been set.

func (*Service) HasDeviceVerificationUri

func (o *Service) HasDeviceVerificationUri() bool

HasDeviceVerificationUri returns a boolean if a field has been set.

func (*Service) HasDeviceVerificationUriComplete

func (o *Service) HasDeviceVerificationUriComplete() bool

HasDeviceVerificationUriComplete returns a boolean if a field has been set.

func (*Service) HasDirectAuthorizationEndpointEnabled

func (o *Service) HasDirectAuthorizationEndpointEnabled() bool

HasDirectAuthorizationEndpointEnabled returns a boolean if a field has been set.

func (*Service) HasDirectIntrospectionEndpointEnabled

func (o *Service) HasDirectIntrospectionEndpointEnabled() bool

HasDirectIntrospectionEndpointEnabled returns a boolean if a field has been set.

func (*Service) HasDirectJwksEndpointEnabled

func (o *Service) HasDirectJwksEndpointEnabled() bool

HasDirectJwksEndpointEnabled returns a boolean if a field has been set.

func (*Service) HasDirectRevocationEndpointEnabled

func (o *Service) HasDirectRevocationEndpointEnabled() bool

HasDirectRevocationEndpointEnabled returns a boolean if a field has been set.

func (*Service) HasDirectTokenEndpointEnabled

func (o *Service) HasDirectTokenEndpointEnabled() bool

HasDirectTokenEndpointEnabled returns a boolean if a field has been set.

func (*Service) HasDirectUserInfoEndpointEnabled

func (o *Service) HasDirectUserInfoEndpointEnabled() bool

HasDirectUserInfoEndpointEnabled returns a boolean if a field has been set.

func (*Service) HasDynamicRegistrationSupported

func (o *Service) HasDynamicRegistrationSupported() bool

HasDynamicRegistrationSupported returns a boolean if a field has been set.

func (*Service) HasEndSessionEndpoint

func (o *Service) HasEndSessionEndpoint() bool

HasEndSessionEndpoint returns a boolean if a field has been set.

func (*Service) HasErrorDescriptionOmitted

func (o *Service) HasErrorDescriptionOmitted() bool

HasErrorDescriptionOmitted returns a boolean if a field has been set.

func (*Service) HasErrorUriOmitted

func (o *Service) HasErrorUriOmitted() bool

HasErrorUriOmitted returns a boolean if a field has been set.

func (*Service) HasFederationConfigurationDuration

func (o *Service) HasFederationConfigurationDuration() bool

HasFederationConfigurationDuration returns a boolean if a field has been set.

func (*Service) HasFederationEnabled

func (o *Service) HasFederationEnabled() bool

HasFederationEnabled returns a boolean if a field has been set.

func (*Service) HasFederationJwks

func (o *Service) HasFederationJwks() bool

HasFederationJwks returns a boolean if a field has been set.

func (*Service) HasFederationRegistrationEndpoint

func (o *Service) HasFederationRegistrationEndpoint() bool

HasFederationRegistrationEndpoint returns a boolean if a field has been set.

func (*Service) HasFederationSignatureKeyId

func (o *Service) HasFederationSignatureKeyId() bool

HasFederationSignatureKeyId returns a boolean if a field has been set.

func (*Service) HasFrontChannelRequestObjectEncryptionRequired

func (o *Service) HasFrontChannelRequestObjectEncryptionRequired() bool

HasFrontChannelRequestObjectEncryptionRequired returns a boolean if a field has been set.

func (*Service) HasGrantManagementActionRequired

func (o *Service) HasGrantManagementActionRequired() bool

HasGrantManagementActionRequired returns a boolean if a field has been set.

func (*Service) HasGrantManagementEndpoint

func (o *Service) HasGrantManagementEndpoint() bool

HasGrantManagementEndpoint returns a boolean if a field has been set.

func (*Service) HasHsks

func (o *Service) HasHsks() bool

HasHsks returns a boolean if a field has been set.

func (*Service) HasHsmEnabled

func (o *Service) HasHsmEnabled() bool

HasHsmEnabled returns a boolean if a field has been set.

func (*Service) HasIdTokenAudType

func (o *Service) HasIdTokenAudType() bool

HasIdTokenAudType returns a boolean if a field has been set.

func (*Service) HasIdTokenDuration

func (o *Service) HasIdTokenDuration() bool

HasIdTokenDuration returns a boolean if a field has been set.

func (*Service) HasIdTokenReissuable

func (o *Service) HasIdTokenReissuable() bool

HasIdTokenReissuable returns a boolean if a field has been set.

func (*Service) HasIdTokenSignatureKeyId

func (o *Service) HasIdTokenSignatureKeyId() bool

HasIdTokenSignatureKeyId returns a boolean if a field has been set.

func (*Service) HasIntrospectionEndpoint

func (o *Service) HasIntrospectionEndpoint() bool

HasIntrospectionEndpoint returns a boolean if a field has been set.

func (*Service) HasIssSuppressed

func (o *Service) HasIssSuppressed() bool

HasIssSuppressed returns a boolean if a field has been set.

func (*Service) HasIssuer

func (o *Service) HasIssuer() bool

HasIssuer returns a boolean if a field has been set.

func (*Service) HasJwks

func (o *Service) HasJwks() bool

HasJwks returns a boolean if a field has been set.

func (*Service) HasJwksUri

func (o *Service) HasJwksUri() bool

HasJwksUri returns a boolean if a field has been set.

func (*Service) HasJwtGrantByIdentifiableClientsOnly

func (o *Service) HasJwtGrantByIdentifiableClientsOnly() bool

HasJwtGrantByIdentifiableClientsOnly returns a boolean if a field has been set.

func (*Service) HasJwtGrantEncryptedJwtRejected

func (o *Service) HasJwtGrantEncryptedJwtRejected() bool

HasJwtGrantEncryptedJwtRejected returns a boolean if a field has been set.

func (*Service) HasJwtGrantUnsignedJwtRejected

func (o *Service) HasJwtGrantUnsignedJwtRejected() bool

HasJwtGrantUnsignedJwtRejected returns a boolean if a field has been set.

func (*Service) HasLoopbackRedirectionUriVariable

func (o *Service) HasLoopbackRedirectionUriVariable() bool

HasLoopbackRedirectionUriVariable returns a boolean if a field has been set.

func (*Service) HasMetadata

func (o *Service) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Service) HasMissingClientIdAllowed

func (o *Service) HasMissingClientIdAllowed() bool

HasMissingClientIdAllowed returns a boolean if a field has been set.

func (*Service) HasModifiedAt

func (o *Service) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*Service) HasMtlsEndpointAliases

func (o *Service) HasMtlsEndpointAliases() bool

HasMtlsEndpointAliases returns a boolean if a field has been set.

func (*Service) HasMutualTlsValidatePkiCertChain

func (o *Service) HasMutualTlsValidatePkiCertChain() bool

HasMutualTlsValidatePkiCertChain returns a boolean if a field has been set.

func (*Service) HasNbfOptional

func (o *Service) HasNbfOptional() bool

HasNbfOptional returns a boolean if a field has been set.

func (*Service) HasNumber

func (o *Service) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*Service) HasOpenidDroppedOnRefreshWithoutOfflineAccess

func (o *Service) HasOpenidDroppedOnRefreshWithoutOfflineAccess() bool

HasOpenidDroppedOnRefreshWithoutOfflineAccess returns a boolean if a field has been set.

func (*Service) HasOrganizationName

func (o *Service) HasOrganizationName() bool

HasOrganizationName returns a boolean if a field has been set.

func (*Service) HasParRequired

func (o *Service) HasParRequired() bool

HasParRequired returns a boolean if a field has been set.

func (*Service) HasPkceRequired

func (o *Service) HasPkceRequired() bool

HasPkceRequired returns a boolean if a field has been set.

func (*Service) HasPkceS256Required

func (o *Service) HasPkceS256Required() bool

HasPkceS256Required returns a boolean if a field has been set.

func (*Service) HasPolicyUri

func (o *Service) HasPolicyUri() bool

HasPolicyUri returns a boolean if a field has been set.

func (*Service) HasPreAuthorizedGrantAnonymousAccessSupported

func (o *Service) HasPreAuthorizedGrantAnonymousAccessSupported() bool

HasPreAuthorizedGrantAnonymousAccessSupported returns a boolean if a field has been set.

func (*Service) HasPredefinedTransformedClaims

func (o *Service) HasPredefinedTransformedClaims() bool

HasPredefinedTransformedClaims returns a boolean if a field has been set.

func (*Service) HasPushedAuthReqDuration

func (o *Service) HasPushedAuthReqDuration() bool

HasPushedAuthReqDuration returns a boolean if a field has been set.

func (*Service) HasPushedAuthReqEndpoint

func (o *Service) HasPushedAuthReqEndpoint() bool

HasPushedAuthReqEndpoint returns a boolean if a field has been set.

func (*Service) HasRefreshTokenDuration

func (o *Service) HasRefreshTokenDuration() bool

HasRefreshTokenDuration returns a boolean if a field has been set.

func (*Service) HasRefreshTokenDurationKept

func (o *Service) HasRefreshTokenDurationKept() bool

HasRefreshTokenDurationKept returns a boolean if a field has been set.

func (*Service) HasRefreshTokenDurationReset

func (o *Service) HasRefreshTokenDurationReset() bool

HasRefreshTokenDurationReset returns a boolean if a field has been set.

func (*Service) HasRefreshTokenIdempotent

func (o *Service) HasRefreshTokenIdempotent() bool

HasRefreshTokenIdempotent returns a boolean if a field has been set.

func (*Service) HasRefreshTokenKept

func (o *Service) HasRefreshTokenKept() bool

HasRefreshTokenKept returns a boolean if a field has been set.

func (*Service) HasRegistrationEndpoint

func (o *Service) HasRegistrationEndpoint() bool

HasRegistrationEndpoint returns a boolean if a field has been set.

func (*Service) HasRegistrationManagementEndpoint

func (o *Service) HasRegistrationManagementEndpoint() bool

HasRegistrationManagementEndpoint returns a boolean if a field has been set.

func (*Service) HasRequestObjectAudienceChecked

func (o *Service) HasRequestObjectAudienceChecked() bool

HasRequestObjectAudienceChecked returns a boolean if a field has been set.

func (*Service) HasRequestObjectEncryptionAlgMatchRequired

func (o *Service) HasRequestObjectEncryptionAlgMatchRequired() bool

HasRequestObjectEncryptionAlgMatchRequired returns a boolean if a field has been set.

func (*Service) HasRequestObjectEncryptionEncMatchRequired

func (o *Service) HasRequestObjectEncryptionEncMatchRequired() bool

HasRequestObjectEncryptionEncMatchRequired returns a boolean if a field has been set.

func (*Service) HasRequestObjectRequired

func (o *Service) HasRequestObjectRequired() bool

HasRequestObjectRequired returns a boolean if a field has been set.

func (*Service) HasResourceSignatureKeyId

func (o *Service) HasResourceSignatureKeyId() bool

HasResourceSignatureKeyId returns a boolean if a field has been set.

func (*Service) HasRevocationEndpoint

func (o *Service) HasRevocationEndpoint() bool

HasRevocationEndpoint returns a boolean if a field has been set.

func (*Service) HasRsResponseSigned

func (o *Service) HasRsResponseSigned() bool

HasRsResponseSigned returns a boolean if a field has been set.

func (*Service) HasScopeRequired

func (o *Service) HasScopeRequired() bool

HasScopeRequired returns a boolean if a field has been set.

func (*Service) HasServiceDocumentation

func (o *Service) HasServiceDocumentation() bool

HasServiceDocumentation returns a boolean if a field has been set.

func (*Service) HasServiceName

func (o *Service) HasServiceName() bool

HasServiceName returns a boolean if a field has been set.

func (*Service) HasServiceOwnerNumber

func (o *Service) HasServiceOwnerNumber() bool

HasServiceOwnerNumber returns a boolean if a field has been set.

func (*Service) HasSignedJwksUri

func (o *Service) HasSignedJwksUri() bool

HasSignedJwksUri returns a boolean if a field has been set.

func (*Service) HasSingleAccessTokenPerSubject

func (o *Service) HasSingleAccessTokenPerSubject() bool

HasSingleAccessTokenPerSubject returns a boolean if a field has been set.

func (*Service) HasSnsCredentials

func (o *Service) HasSnsCredentials() bool

HasSnsCredentials returns a boolean if a field has been set.

func (*Service) HasSupportedAcrs

func (o *Service) HasSupportedAcrs() bool

HasSupportedAcrs returns a boolean if a field has been set.

func (*Service) HasSupportedAttachments

func (o *Service) HasSupportedAttachments() bool

HasSupportedAttachments returns a boolean if a field has been set.

func (*Service) HasSupportedAuthorizationDetailsTypes

func (o *Service) HasSupportedAuthorizationDetailsTypes() bool

HasSupportedAuthorizationDetailsTypes returns a boolean if a field has been set.

func (*Service) HasSupportedBackchannelTokenDeliveryModes

func (o *Service) HasSupportedBackchannelTokenDeliveryModes() bool

HasSupportedBackchannelTokenDeliveryModes returns a boolean if a field has been set.

func (*Service) HasSupportedClaimLocales

func (o *Service) HasSupportedClaimLocales() bool

HasSupportedClaimLocales returns a boolean if a field has been set.

func (*Service) HasSupportedClaimTypes

func (o *Service) HasSupportedClaimTypes() bool

HasSupportedClaimTypes returns a boolean if a field has been set.

func (*Service) HasSupportedClaims

func (o *Service) HasSupportedClaims() bool

HasSupportedClaims returns a boolean if a field has been set.

func (*Service) HasSupportedClientRegistrationTypes

func (o *Service) HasSupportedClientRegistrationTypes() bool

HasSupportedClientRegistrationTypes returns a boolean if a field has been set.

func (*Service) HasSupportedCustomClientMetadata

func (o *Service) HasSupportedCustomClientMetadata() bool

HasSupportedCustomClientMetadata returns a boolean if a field has been set.

func (*Service) HasSupportedDeveloperSnses

func (o *Service) HasSupportedDeveloperSnses() bool

HasSupportedDeveloperSnses returns a boolean if a field has been set.

func (*Service) HasSupportedDigestAlgorithms

func (o *Service) HasSupportedDigestAlgorithms() bool

HasSupportedDigestAlgorithms returns a boolean if a field has been set.

func (*Service) HasSupportedDisplays

func (o *Service) HasSupportedDisplays() bool

HasSupportedDisplays returns a boolean if a field has been set.

func (*Service) HasSupportedDocuments

func (o *Service) HasSupportedDocuments() bool

HasSupportedDocuments returns a boolean if a field has been set.

func (*Service) HasSupportedDocumentsCheckMethods

func (o *Service) HasSupportedDocumentsCheckMethods() bool

HasSupportedDocumentsCheckMethods returns a boolean if a field has been set.

func (*Service) HasSupportedDocumentsMethods

func (o *Service) HasSupportedDocumentsMethods() bool

HasSupportedDocumentsMethods returns a boolean if a field has been set.

func (*Service) HasSupportedDocumentsValidationMethods

func (o *Service) HasSupportedDocumentsValidationMethods() bool

HasSupportedDocumentsValidationMethods returns a boolean if a field has been set.

func (*Service) HasSupportedDocumentsVerificationMethods

func (o *Service) HasSupportedDocumentsVerificationMethods() bool

HasSupportedDocumentsVerificationMethods returns a boolean if a field has been set.

func (*Service) HasSupportedElectronicRecords

func (o *Service) HasSupportedElectronicRecords() bool

HasSupportedElectronicRecords returns a boolean if a field has been set.

func (*Service) HasSupportedEvidence

func (o *Service) HasSupportedEvidence() bool

HasSupportedEvidence returns a boolean if a field has been set.

func (*Service) HasSupportedGrantTypes

func (o *Service) HasSupportedGrantTypes() bool

HasSupportedGrantTypes returns a boolean if a field has been set.

func (*Service) HasSupportedIdentityDocuments

func (o *Service) HasSupportedIdentityDocuments() bool

HasSupportedIdentityDocuments returns a boolean if a field has been set.

func (*Service) HasSupportedIntrospectionAuthMethods

func (o *Service) HasSupportedIntrospectionAuthMethods() bool

HasSupportedIntrospectionAuthMethods returns a boolean if a field has been set.

func (*Service) HasSupportedPromptValues

func (o *Service) HasSupportedPromptValues() bool

HasSupportedPromptValues returns a boolean if a field has been set.

func (*Service) HasSupportedResponseTypes

func (o *Service) HasSupportedResponseTypes() bool

HasSupportedResponseTypes returns a boolean if a field has been set.

func (*Service) HasSupportedRevocationAuthMethods

func (o *Service) HasSupportedRevocationAuthMethods() bool

HasSupportedRevocationAuthMethods returns a boolean if a field has been set.

func (*Service) HasSupportedScopes

func (o *Service) HasSupportedScopes() bool

HasSupportedScopes returns a boolean if a field has been set.

func (*Service) HasSupportedServiceProfiles

func (o *Service) HasSupportedServiceProfiles() bool

HasSupportedServiceProfiles returns a boolean if a field has been set.

func (*Service) HasSupportedSnses

func (o *Service) HasSupportedSnses() bool

HasSupportedSnses returns a boolean if a field has been set.

func (*Service) HasSupportedTokenAuthMethods

func (o *Service) HasSupportedTokenAuthMethods() bool

HasSupportedTokenAuthMethods returns a boolean if a field has been set.

func (*Service) HasSupportedTrustFrameworks

func (o *Service) HasSupportedTrustFrameworks() bool

HasSupportedTrustFrameworks returns a boolean if a field has been set.

func (*Service) HasSupportedUiLocales

func (o *Service) HasSupportedUiLocales() bool

HasSupportedUiLocales returns a boolean if a field has been set.

func (*Service) HasSupportedVerificationMethods

func (o *Service) HasSupportedVerificationMethods() bool

HasSupportedVerificationMethods returns a boolean if a field has been set.

func (*Service) HasSupportedVerifiedClaims

func (o *Service) HasSupportedVerifiedClaims() bool

HasSupportedVerifiedClaims returns a boolean if a field has been set.

func (*Service) HasTlsClientCertificateBoundAccessTokens

func (o *Service) HasTlsClientCertificateBoundAccessTokens() bool

HasTlsClientCertificateBoundAccessTokens returns a boolean if a field has been set.

func (*Service) HasTokenEndpoint

func (o *Service) HasTokenEndpoint() bool

HasTokenEndpoint returns a boolean if a field has been set.

func (*Service) HasTokenExchangeByConfidentialClientsOnly

func (o *Service) HasTokenExchangeByConfidentialClientsOnly() bool

HasTokenExchangeByConfidentialClientsOnly returns a boolean if a field has been set.

func (*Service) HasTokenExchangeByIdentifiableClientsOnly

func (o *Service) HasTokenExchangeByIdentifiableClientsOnly() bool

HasTokenExchangeByIdentifiableClientsOnly returns a boolean if a field has been set.

func (*Service) HasTokenExchangeByPermittedClientsOnly

func (o *Service) HasTokenExchangeByPermittedClientsOnly() bool

HasTokenExchangeByPermittedClientsOnly returns a boolean if a field has been set.

func (*Service) HasTokenExchangeEncryptedJwtRejected

func (o *Service) HasTokenExchangeEncryptedJwtRejected() bool

HasTokenExchangeEncryptedJwtRejected returns a boolean if a field has been set.

func (*Service) HasTokenExchangeUnsignedJwtRejected

func (o *Service) HasTokenExchangeUnsignedJwtRejected() bool

HasTokenExchangeUnsignedJwtRejected returns a boolean if a field has been set.

func (*Service) HasTokenExpirationLinked

func (o *Service) HasTokenExpirationLinked() bool

HasTokenExpirationLinked returns a boolean if a field has been set.

func (*Service) HasTosUri

func (o *Service) HasTosUri() bool

HasTosUri returns a boolean if a field has been set.

func (*Service) HasTraditionalRequestObjectProcessingApplied

func (o *Service) HasTraditionalRequestObjectProcessingApplied() bool

HasTraditionalRequestObjectProcessingApplied returns a boolean if a field has been set.

func (*Service) HasTrustAnchors

func (o *Service) HasTrustAnchors() bool

HasTrustAnchors returns a boolean if a field has been set.

func (*Service) HasTrustedRootCertificates

func (o *Service) HasTrustedRootCertificates() bool

HasTrustedRootCertificates returns a boolean if a field has been set.

func (*Service) HasUnauthorizedOnClientConfigSupported

func (o *Service) HasUnauthorizedOnClientConfigSupported() bool

HasUnauthorizedOnClientConfigSupported returns a boolean if a field has been set.

func (*Service) HasUserCodeCharset

func (o *Service) HasUserCodeCharset() bool

HasUserCodeCharset returns a boolean if a field has been set.

func (*Service) HasUserCodeLength

func (o *Service) HasUserCodeLength() bool

HasUserCodeLength returns a boolean if a field has been set.

func (*Service) HasUserInfoEndpoint

func (o *Service) HasUserInfoEndpoint() bool

HasUserInfoEndpoint returns a boolean if a field has been set.

func (*Service) HasUserInfoSignatureKeyId

func (o *Service) HasUserInfoSignatureKeyId() bool

HasUserInfoSignatureKeyId returns a boolean if a field has been set.

func (*Service) HasUserPinLength

func (o *Service) HasUserPinLength() bool

HasUserPinLength returns a boolean if a field has been set.

func (*Service) HasVerifiableCredentialsEnabled

func (o *Service) HasVerifiableCredentialsEnabled() bool

HasVerifiableCredentialsEnabled returns a boolean if a field has been set.

func (*Service) HasVerifiedClaimsValidationSchemaSet

func (o *Service) HasVerifiedClaimsValidationSchemaSet() bool

HasVerifiedClaimsValidationSchemaSet returns a boolean if a field has been set.

func (Service) MarshalJSON

func (o Service) MarshalJSON() ([]byte, error)

func (*Service) SetAccessTokenDuration

func (o *Service) SetAccessTokenDuration(v int64)

SetAccessTokenDuration gets a reference to the given int64 and assigns it to the AccessTokenDuration field.

func (*Service) SetAccessTokenForExternalAttachmentEmbedded

func (o *Service) SetAccessTokenForExternalAttachmentEmbedded(v bool)

SetAccessTokenForExternalAttachmentEmbedded gets a reference to the given bool and assigns it to the AccessTokenForExternalAttachmentEmbedded field.

func (*Service) SetAccessTokenSignAlg

func (o *Service) SetAccessTokenSignAlg(v string)

SetAccessTokenSignAlg gets a reference to the given string and assigns it to the AccessTokenSignAlg field.

func (*Service) SetAccessTokenSignatureKeyId

func (o *Service) SetAccessTokenSignatureKeyId(v string)

SetAccessTokenSignatureKeyId gets a reference to the given string and assigns it to the AccessTokenSignatureKeyId field.

func (*Service) SetAccessTokenType

func (o *Service) SetAccessTokenType(v string)

SetAccessTokenType gets a reference to the given string and assigns it to the AccessTokenType field.

func (*Service) SetAllowableClockSkew

func (o *Service) SetAllowableClockSkew(v int32)

SetAllowableClockSkew gets a reference to the given int32 and assigns it to the AllowableClockSkew field.

func (*Service) SetApiKey

func (o *Service) SetApiKey(v int64)

SetApiKey gets a reference to the given int64 and assigns it to the ApiKey field.

func (*Service) SetApiSecret

func (o *Service) SetApiSecret(v string)

SetApiSecret gets a reference to the given string and assigns it to the ApiSecret field.

func (*Service) SetAttributes

func (o *Service) SetAttributes(v []Pair)

SetAttributes gets a reference to the given []Pair and assigns it to the Attributes field.

func (*Service) SetAuthenticationCallbackApiKey

func (o *Service) SetAuthenticationCallbackApiKey(v string)

SetAuthenticationCallbackApiKey gets a reference to the given string and assigns it to the AuthenticationCallbackApiKey field.

func (*Service) SetAuthenticationCallbackApiSecret

func (o *Service) SetAuthenticationCallbackApiSecret(v string)

SetAuthenticationCallbackApiSecret gets a reference to the given string and assigns it to the AuthenticationCallbackApiSecret field.

func (*Service) SetAuthenticationCallbackEndpoint

func (o *Service) SetAuthenticationCallbackEndpoint(v string)

SetAuthenticationCallbackEndpoint gets a reference to the given string and assigns it to the AuthenticationCallbackEndpoint field.

func (*Service) SetAuthorityHints

func (o *Service) SetAuthorityHints(v []string)

SetAuthorityHints gets a reference to the given []string and assigns it to the AuthorityHints field.

func (*Service) SetAuthorizationEndpoint

func (o *Service) SetAuthorizationEndpoint(v string)

SetAuthorizationEndpoint gets a reference to the given string and assigns it to the AuthorizationEndpoint field.

func (*Service) SetAuthorizationResponseDuration

func (o *Service) SetAuthorizationResponseDuration(v int64)

SetAuthorizationResponseDuration gets a reference to the given int64 and assigns it to the AuthorizationResponseDuration field.

func (*Service) SetAuthorizationSignatureKeyId

func (o *Service) SetAuthorizationSignatureKeyId(v string)

SetAuthorizationSignatureKeyId gets a reference to the given string and assigns it to the AuthorizationSignatureKeyId field.

func (*Service) SetBackchannelAuthReqIdDuration

func (o *Service) SetBackchannelAuthReqIdDuration(v int32)

SetBackchannelAuthReqIdDuration gets a reference to the given int32 and assigns it to the BackchannelAuthReqIdDuration field.

func (*Service) SetBackchannelAuthenticationEndpoint

func (o *Service) SetBackchannelAuthenticationEndpoint(v string)

SetBackchannelAuthenticationEndpoint gets a reference to the given string and assigns it to the BackchannelAuthenticationEndpoint field.

func (*Service) SetBackchannelBindingMessageRequiredInFapi

func (o *Service) SetBackchannelBindingMessageRequiredInFapi(v bool)

SetBackchannelBindingMessageRequiredInFapi gets a reference to the given bool and assigns it to the BackchannelBindingMessageRequiredInFapi field.

func (*Service) SetBackchannelPollingInterval

func (o *Service) SetBackchannelPollingInterval(v int32)

SetBackchannelPollingInterval gets a reference to the given int32 and assigns it to the BackchannelPollingInterval field.

func (*Service) SetBackchannelUserCodeParameterSupported

func (o *Service) SetBackchannelUserCodeParameterSupported(v bool)

SetBackchannelUserCodeParameterSupported gets a reference to the given bool and assigns it to the BackchannelUserCodeParameterSupported field.

func (*Service) SetClaimShortcutRestrictive

func (o *Service) SetClaimShortcutRestrictive(v bool)

SetClaimShortcutRestrictive gets a reference to the given bool and assigns it to the ClaimShortcutRestrictive field.

func (*Service) SetClientIdAliasEnabled

func (o *Service) SetClientIdAliasEnabled(v bool)

SetClientIdAliasEnabled gets a reference to the given bool and assigns it to the ClientIdAliasEnabled field.

func (*Service) SetClientsPerDeveloper

func (o *Service) SetClientsPerDeveloper(v int32)

SetClientsPerDeveloper gets a reference to the given int32 and assigns it to the ClientsPerDeveloper field.

func (*Service) SetCnonceDuration

func (o *Service) SetCnonceDuration(v int64)

SetCnonceDuration gets a reference to the given int64 and assigns it to the CnonceDuration field.

func (*Service) SetCreatedAt

func (o *Service) SetCreatedAt(v int64)

SetCreatedAt gets a reference to the given int64 and assigns it to the CreatedAt field.

func (*Service) SetCredentialDuration

func (o *Service) SetCredentialDuration(v int64)

SetCredentialDuration gets a reference to the given int64 and assigns it to the CredentialDuration field.

func (*Service) SetCredentialIssuerMetadata

func (o *Service) SetCredentialIssuerMetadata(v CredentialIssuerMetadata)

SetCredentialIssuerMetadata gets a reference to the given CredentialIssuerMetadata and assigns it to the CredentialIssuerMetadata field.

func (*Service) SetCredentialJwks

func (o *Service) SetCredentialJwks(v string)

SetCredentialJwks gets a reference to the given string and assigns it to the CredentialJwks field.

func (*Service) SetCredentialOfferDuration

func (o *Service) SetCredentialOfferDuration(v int64)

SetCredentialOfferDuration gets a reference to the given int64 and assigns it to the CredentialOfferDuration field.

func (*Service) SetCredentialTransactionDuration

func (o *Service) SetCredentialTransactionDuration(v int64)

SetCredentialTransactionDuration gets a reference to the given int64 and assigns it to the CredentialTransactionDuration field.

func (*Service) SetDcrDuplicateSoftwareIdBlocked

func (o *Service) SetDcrDuplicateSoftwareIdBlocked(v bool)

SetDcrDuplicateSoftwareIdBlocked gets a reference to the given bool and assigns it to the DcrDuplicateSoftwareIdBlocked field.

func (*Service) SetDcrScopeUsedAsRequestable

func (o *Service) SetDcrScopeUsedAsRequestable(v bool)

SetDcrScopeUsedAsRequestable gets a reference to the given bool and assigns it to the DcrScopeUsedAsRequestable field.

func (*Service) SetDescription

func (o *Service) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Service) SetDeveloperAuthenticationCallbackApiKey

func (o *Service) SetDeveloperAuthenticationCallbackApiKey(v string)

SetDeveloperAuthenticationCallbackApiKey gets a reference to the given string and assigns it to the DeveloperAuthenticationCallbackApiKey field.

func (*Service) SetDeveloperAuthenticationCallbackApiSecret

func (o *Service) SetDeveloperAuthenticationCallbackApiSecret(v string)

SetDeveloperAuthenticationCallbackApiSecret gets a reference to the given string and assigns it to the DeveloperAuthenticationCallbackApiSecret field.

func (*Service) SetDeveloperAuthenticationCallbackEndpoint

func (o *Service) SetDeveloperAuthenticationCallbackEndpoint(v string)

SetDeveloperAuthenticationCallbackEndpoint gets a reference to the given string and assigns it to the DeveloperAuthenticationCallbackEndpoint field.

func (*Service) SetDeveloperSnsCredentials

func (o *Service) SetDeveloperSnsCredentials(v []SnsCredentials)

SetDeveloperSnsCredentials gets a reference to the given []SnsCredentials and assigns it to the DeveloperSnsCredentials field.

func (*Service) SetDeviceAuthorizationEndpoint

func (o *Service) SetDeviceAuthorizationEndpoint(v string)

SetDeviceAuthorizationEndpoint gets a reference to the given string and assigns it to the DeviceAuthorizationEndpoint field.

func (*Service) SetDeviceFlowCodeDuration

func (o *Service) SetDeviceFlowCodeDuration(v int32)

SetDeviceFlowCodeDuration gets a reference to the given int32 and assigns it to the DeviceFlowCodeDuration field.

func (*Service) SetDeviceFlowPollingInterval

func (o *Service) SetDeviceFlowPollingInterval(v int32)

SetDeviceFlowPollingInterval gets a reference to the given int32 and assigns it to the DeviceFlowPollingInterval field.

func (*Service) SetDeviceVerificationUri

func (o *Service) SetDeviceVerificationUri(v string)

SetDeviceVerificationUri gets a reference to the given string and assigns it to the DeviceVerificationUri field.

func (*Service) SetDeviceVerificationUriComplete

func (o *Service) SetDeviceVerificationUriComplete(v string)

SetDeviceVerificationUriComplete gets a reference to the given string and assigns it to the DeviceVerificationUriComplete field.

func (*Service) SetDirectAuthorizationEndpointEnabled

func (o *Service) SetDirectAuthorizationEndpointEnabled(v bool)

SetDirectAuthorizationEndpointEnabled gets a reference to the given bool and assigns it to the DirectAuthorizationEndpointEnabled field.

func (*Service) SetDirectIntrospectionEndpointEnabled

func (o *Service) SetDirectIntrospectionEndpointEnabled(v bool)

SetDirectIntrospectionEndpointEnabled gets a reference to the given bool and assigns it to the DirectIntrospectionEndpointEnabled field.

func (*Service) SetDirectJwksEndpointEnabled

func (o *Service) SetDirectJwksEndpointEnabled(v bool)

SetDirectJwksEndpointEnabled gets a reference to the given bool and assigns it to the DirectJwksEndpointEnabled field.

func (*Service) SetDirectRevocationEndpointEnabled

func (o *Service) SetDirectRevocationEndpointEnabled(v bool)

SetDirectRevocationEndpointEnabled gets a reference to the given bool and assigns it to the DirectRevocationEndpointEnabled field.

func (*Service) SetDirectTokenEndpointEnabled

func (o *Service) SetDirectTokenEndpointEnabled(v bool)

SetDirectTokenEndpointEnabled gets a reference to the given bool and assigns it to the DirectTokenEndpointEnabled field.

func (*Service) SetDirectUserInfoEndpointEnabled

func (o *Service) SetDirectUserInfoEndpointEnabled(v bool)

SetDirectUserInfoEndpointEnabled gets a reference to the given bool and assigns it to the DirectUserInfoEndpointEnabled field.

func (*Service) SetDynamicRegistrationSupported

func (o *Service) SetDynamicRegistrationSupported(v bool)

SetDynamicRegistrationSupported gets a reference to the given bool and assigns it to the DynamicRegistrationSupported field.

func (*Service) SetEndSessionEndpoint

func (o *Service) SetEndSessionEndpoint(v string)

SetEndSessionEndpoint gets a reference to the given string and assigns it to the EndSessionEndpoint field.

func (*Service) SetErrorDescriptionOmitted

func (o *Service) SetErrorDescriptionOmitted(v bool)

SetErrorDescriptionOmitted gets a reference to the given bool and assigns it to the ErrorDescriptionOmitted field.

func (*Service) SetErrorUriOmitted

func (o *Service) SetErrorUriOmitted(v bool)

SetErrorUriOmitted gets a reference to the given bool and assigns it to the ErrorUriOmitted field.

func (*Service) SetFederationConfigurationDuration

func (o *Service) SetFederationConfigurationDuration(v int32)

SetFederationConfigurationDuration gets a reference to the given int32 and assigns it to the FederationConfigurationDuration field.

func (*Service) SetFederationEnabled

func (o *Service) SetFederationEnabled(v bool)

SetFederationEnabled gets a reference to the given bool and assigns it to the FederationEnabled field.

func (*Service) SetFederationJwks

func (o *Service) SetFederationJwks(v string)

SetFederationJwks gets a reference to the given string and assigns it to the FederationJwks field.

func (*Service) SetFederationRegistrationEndpoint

func (o *Service) SetFederationRegistrationEndpoint(v string)

SetFederationRegistrationEndpoint gets a reference to the given string and assigns it to the FederationRegistrationEndpoint field.

func (*Service) SetFederationSignatureKeyId

func (o *Service) SetFederationSignatureKeyId(v string)

SetFederationSignatureKeyId gets a reference to the given string and assigns it to the FederationSignatureKeyId field.

func (*Service) SetFrontChannelRequestObjectEncryptionRequired

func (o *Service) SetFrontChannelRequestObjectEncryptionRequired(v bool)

SetFrontChannelRequestObjectEncryptionRequired gets a reference to the given bool and assigns it to the FrontChannelRequestObjectEncryptionRequired field.

func (*Service) SetGrantManagementActionRequired

func (o *Service) SetGrantManagementActionRequired(v bool)

SetGrantManagementActionRequired gets a reference to the given bool and assigns it to the GrantManagementActionRequired field.

func (*Service) SetGrantManagementEndpoint

func (o *Service) SetGrantManagementEndpoint(v string)

SetGrantManagementEndpoint gets a reference to the given string and assigns it to the GrantManagementEndpoint field.

func (*Service) SetHsks

func (o *Service) SetHsks(v []Hsk)

SetHsks gets a reference to the given []Hsk and assigns it to the Hsks field.

func (*Service) SetHsmEnabled

func (o *Service) SetHsmEnabled(v bool)

SetHsmEnabled gets a reference to the given bool and assigns it to the HsmEnabled field.

func (*Service) SetIdTokenAudType

func (o *Service) SetIdTokenAudType(v string)

SetIdTokenAudType gets a reference to the given string and assigns it to the IdTokenAudType field.

func (*Service) SetIdTokenDuration

func (o *Service) SetIdTokenDuration(v int64)

SetIdTokenDuration gets a reference to the given int64 and assigns it to the IdTokenDuration field.

func (*Service) SetIdTokenReissuable

func (o *Service) SetIdTokenReissuable(v bool)

SetIdTokenReissuable gets a reference to the given bool and assigns it to the IdTokenReissuable field.

func (*Service) SetIdTokenSignatureKeyId

func (o *Service) SetIdTokenSignatureKeyId(v string)

SetIdTokenSignatureKeyId gets a reference to the given string and assigns it to the IdTokenSignatureKeyId field.

func (*Service) SetIntrospectionEndpoint

func (o *Service) SetIntrospectionEndpoint(v string)

SetIntrospectionEndpoint gets a reference to the given string and assigns it to the IntrospectionEndpoint field.

func (*Service) SetIssSuppressed

func (o *Service) SetIssSuppressed(v bool)

SetIssSuppressed gets a reference to the given bool and assigns it to the IssSuppressed field.

func (*Service) SetIssuer

func (o *Service) SetIssuer(v string)

SetIssuer gets a reference to the given string and assigns it to the Issuer field.

func (*Service) SetJwks

func (o *Service) SetJwks(v string)

SetJwks gets a reference to the given string and assigns it to the Jwks field.

func (*Service) SetJwksUri

func (o *Service) SetJwksUri(v string)

SetJwksUri gets a reference to the given string and assigns it to the JwksUri field.

func (*Service) SetJwtGrantByIdentifiableClientsOnly

func (o *Service) SetJwtGrantByIdentifiableClientsOnly(v bool)

SetJwtGrantByIdentifiableClientsOnly gets a reference to the given bool and assigns it to the JwtGrantByIdentifiableClientsOnly field.

func (*Service) SetJwtGrantEncryptedJwtRejected

func (o *Service) SetJwtGrantEncryptedJwtRejected(v bool)

SetJwtGrantEncryptedJwtRejected gets a reference to the given bool and assigns it to the JwtGrantEncryptedJwtRejected field.

func (*Service) SetJwtGrantUnsignedJwtRejected

func (o *Service) SetJwtGrantUnsignedJwtRejected(v bool)

SetJwtGrantUnsignedJwtRejected gets a reference to the given bool and assigns it to the JwtGrantUnsignedJwtRejected field.

func (*Service) SetLoopbackRedirectionUriVariable

func (o *Service) SetLoopbackRedirectionUriVariable(v bool)

SetLoopbackRedirectionUriVariable gets a reference to the given bool and assigns it to the LoopbackRedirectionUriVariable field.

func (*Service) SetMetadata

func (o *Service) SetMetadata(v []Pair)

SetMetadata gets a reference to the given []Pair and assigns it to the Metadata field.

func (*Service) SetMissingClientIdAllowed

func (o *Service) SetMissingClientIdAllowed(v bool)

SetMissingClientIdAllowed gets a reference to the given bool and assigns it to the MissingClientIdAllowed field.

func (*Service) SetModifiedAt

func (o *Service) SetModifiedAt(v int64)

SetModifiedAt gets a reference to the given int64 and assigns it to the ModifiedAt field.

func (*Service) SetMtlsEndpointAliases

func (o *Service) SetMtlsEndpointAliases(v []NamedUri)

SetMtlsEndpointAliases gets a reference to the given []NamedUri and assigns it to the MtlsEndpointAliases field.

func (*Service) SetMutualTlsValidatePkiCertChain

func (o *Service) SetMutualTlsValidatePkiCertChain(v bool)

SetMutualTlsValidatePkiCertChain gets a reference to the given bool and assigns it to the MutualTlsValidatePkiCertChain field.

func (*Service) SetNbfOptional

func (o *Service) SetNbfOptional(v bool)

SetNbfOptional gets a reference to the given bool and assigns it to the NbfOptional field.

func (*Service) SetNumber

func (o *Service) SetNumber(v int32)

SetNumber gets a reference to the given int32 and assigns it to the Number field.

func (*Service) SetOpenidDroppedOnRefreshWithoutOfflineAccess

func (o *Service) SetOpenidDroppedOnRefreshWithoutOfflineAccess(v bool)

SetOpenidDroppedOnRefreshWithoutOfflineAccess gets a reference to the given bool and assigns it to the OpenidDroppedOnRefreshWithoutOfflineAccess field.

func (*Service) SetOrganizationName

func (o *Service) SetOrganizationName(v string)

SetOrganizationName gets a reference to the given string and assigns it to the OrganizationName field.

func (*Service) SetParRequired

func (o *Service) SetParRequired(v bool)

SetParRequired gets a reference to the given bool and assigns it to the ParRequired field.

func (*Service) SetPkceRequired

func (o *Service) SetPkceRequired(v bool)

SetPkceRequired gets a reference to the given bool and assigns it to the PkceRequired field.

func (*Service) SetPkceS256Required

func (o *Service) SetPkceS256Required(v bool)

SetPkceS256Required gets a reference to the given bool and assigns it to the PkceS256Required field.

func (*Service) SetPolicyUri

func (o *Service) SetPolicyUri(v string)

SetPolicyUri gets a reference to the given string and assigns it to the PolicyUri field.

func (*Service) SetPreAuthorizedGrantAnonymousAccessSupported

func (o *Service) SetPreAuthorizedGrantAnonymousAccessSupported(v bool)

SetPreAuthorizedGrantAnonymousAccessSupported gets a reference to the given bool and assigns it to the PreAuthorizedGrantAnonymousAccessSupported field.

func (*Service) SetPredefinedTransformedClaims

func (o *Service) SetPredefinedTransformedClaims(v string)

SetPredefinedTransformedClaims gets a reference to the given string and assigns it to the PredefinedTransformedClaims field.

func (*Service) SetPushedAuthReqDuration

func (o *Service) SetPushedAuthReqDuration(v int64)

SetPushedAuthReqDuration gets a reference to the given int64 and assigns it to the PushedAuthReqDuration field.

func (*Service) SetPushedAuthReqEndpoint

func (o *Service) SetPushedAuthReqEndpoint(v string)

SetPushedAuthReqEndpoint gets a reference to the given string and assigns it to the PushedAuthReqEndpoint field.

func (*Service) SetRefreshTokenDuration

func (o *Service) SetRefreshTokenDuration(v int64)

SetRefreshTokenDuration gets a reference to the given int64 and assigns it to the RefreshTokenDuration field.

func (*Service) SetRefreshTokenDurationKept

func (o *Service) SetRefreshTokenDurationKept(v bool)

SetRefreshTokenDurationKept gets a reference to the given bool and assigns it to the RefreshTokenDurationKept field.

func (*Service) SetRefreshTokenDurationReset

func (o *Service) SetRefreshTokenDurationReset(v bool)

SetRefreshTokenDurationReset gets a reference to the given bool and assigns it to the RefreshTokenDurationReset field.

func (*Service) SetRefreshTokenIdempotent

func (o *Service) SetRefreshTokenIdempotent(v bool)

SetRefreshTokenIdempotent gets a reference to the given bool and assigns it to the RefreshTokenIdempotent field.

func (*Service) SetRefreshTokenKept

func (o *Service) SetRefreshTokenKept(v bool)

SetRefreshTokenKept gets a reference to the given bool and assigns it to the RefreshTokenKept field.

func (*Service) SetRegistrationEndpoint

func (o *Service) SetRegistrationEndpoint(v string)

SetRegistrationEndpoint gets a reference to the given string and assigns it to the RegistrationEndpoint field.

func (*Service) SetRegistrationManagementEndpoint

func (o *Service) SetRegistrationManagementEndpoint(v string)

SetRegistrationManagementEndpoint gets a reference to the given string and assigns it to the RegistrationManagementEndpoint field.

func (*Service) SetRequestObjectAudienceChecked

func (o *Service) SetRequestObjectAudienceChecked(v bool)

SetRequestObjectAudienceChecked gets a reference to the given bool and assigns it to the RequestObjectAudienceChecked field.

func (*Service) SetRequestObjectEncryptionAlgMatchRequired

func (o *Service) SetRequestObjectEncryptionAlgMatchRequired(v bool)

SetRequestObjectEncryptionAlgMatchRequired gets a reference to the given bool and assigns it to the RequestObjectEncryptionAlgMatchRequired field.

func (*Service) SetRequestObjectEncryptionEncMatchRequired

func (o *Service) SetRequestObjectEncryptionEncMatchRequired(v bool)

SetRequestObjectEncryptionEncMatchRequired gets a reference to the given bool and assigns it to the RequestObjectEncryptionEncMatchRequired field.

func (*Service) SetRequestObjectRequired

func (o *Service) SetRequestObjectRequired(v bool)

SetRequestObjectRequired gets a reference to the given bool and assigns it to the RequestObjectRequired field.

func (*Service) SetResourceSignatureKeyId

func (o *Service) SetResourceSignatureKeyId(v string)

SetResourceSignatureKeyId gets a reference to the given string and assigns it to the ResourceSignatureKeyId field.

func (*Service) SetRevocationEndpoint

func (o *Service) SetRevocationEndpoint(v string)

SetRevocationEndpoint gets a reference to the given string and assigns it to the RevocationEndpoint field.

func (*Service) SetRsResponseSigned

func (o *Service) SetRsResponseSigned(v bool)

SetRsResponseSigned gets a reference to the given bool and assigns it to the RsResponseSigned field.

func (*Service) SetScopeRequired

func (o *Service) SetScopeRequired(v bool)

SetScopeRequired gets a reference to the given bool and assigns it to the ScopeRequired field.

func (*Service) SetServiceDocumentation

func (o *Service) SetServiceDocumentation(v string)

SetServiceDocumentation gets a reference to the given string and assigns it to the ServiceDocumentation field.

func (*Service) SetServiceName

func (o *Service) SetServiceName(v string)

SetServiceName gets a reference to the given string and assigns it to the ServiceName field.

func (*Service) SetServiceOwnerNumber

func (o *Service) SetServiceOwnerNumber(v int32)

SetServiceOwnerNumber gets a reference to the given int32 and assigns it to the ServiceOwnerNumber field.

func (*Service) SetSignedJwksUri

func (o *Service) SetSignedJwksUri(v string)

SetSignedJwksUri gets a reference to the given string and assigns it to the SignedJwksUri field.

func (*Service) SetSingleAccessTokenPerSubject

func (o *Service) SetSingleAccessTokenPerSubject(v bool)

SetSingleAccessTokenPerSubject gets a reference to the given bool and assigns it to the SingleAccessTokenPerSubject field.

func (*Service) SetSnsCredentials

func (o *Service) SetSnsCredentials(v []SnsCredentials)

SetSnsCredentials gets a reference to the given []SnsCredentials and assigns it to the SnsCredentials field.

func (*Service) SetSupportedAcrs

func (o *Service) SetSupportedAcrs(v []string)

SetSupportedAcrs gets a reference to the given []string and assigns it to the SupportedAcrs field.

func (*Service) SetSupportedAttachments

func (o *Service) SetSupportedAttachments(v []string)

SetSupportedAttachments gets a reference to the given []string and assigns it to the SupportedAttachments field.

func (*Service) SetSupportedAuthorizationDetailsTypes

func (o *Service) SetSupportedAuthorizationDetailsTypes(v []string)

SetSupportedAuthorizationDetailsTypes gets a reference to the given []string and assigns it to the SupportedAuthorizationDetailsTypes field.

func (*Service) SetSupportedBackchannelTokenDeliveryModes

func (o *Service) SetSupportedBackchannelTokenDeliveryModes(v []string)

SetSupportedBackchannelTokenDeliveryModes gets a reference to the given []string and assigns it to the SupportedBackchannelTokenDeliveryModes field.

func (*Service) SetSupportedClaimLocales

func (o *Service) SetSupportedClaimLocales(v []string)

SetSupportedClaimLocales gets a reference to the given []string and assigns it to the SupportedClaimLocales field.

func (*Service) SetSupportedClaimTypes

func (o *Service) SetSupportedClaimTypes(v []string)

SetSupportedClaimTypes gets a reference to the given []string and assigns it to the SupportedClaimTypes field.

func (*Service) SetSupportedClaims

func (o *Service) SetSupportedClaims(v []string)

SetSupportedClaims gets a reference to the given []string and assigns it to the SupportedClaims field.

func (*Service) SetSupportedClientRegistrationTypes

func (o *Service) SetSupportedClientRegistrationTypes(v []string)

SetSupportedClientRegistrationTypes gets a reference to the given []string and assigns it to the SupportedClientRegistrationTypes field.

func (*Service) SetSupportedCustomClientMetadata

func (o *Service) SetSupportedCustomClientMetadata(v []string)

SetSupportedCustomClientMetadata gets a reference to the given []string and assigns it to the SupportedCustomClientMetadata field.

func (*Service) SetSupportedDeveloperSnses

func (o *Service) SetSupportedDeveloperSnses(v []string)

SetSupportedDeveloperSnses gets a reference to the given []string and assigns it to the SupportedDeveloperSnses field.

func (*Service) SetSupportedDigestAlgorithms

func (o *Service) SetSupportedDigestAlgorithms(v []string)

SetSupportedDigestAlgorithms gets a reference to the given []string and assigns it to the SupportedDigestAlgorithms field.

func (*Service) SetSupportedDisplays

func (o *Service) SetSupportedDisplays(v []string)

SetSupportedDisplays gets a reference to the given []string and assigns it to the SupportedDisplays field.

func (*Service) SetSupportedDocuments

func (o *Service) SetSupportedDocuments(v []string)

SetSupportedDocuments gets a reference to the given []string and assigns it to the SupportedDocuments field.

func (*Service) SetSupportedDocumentsCheckMethods

func (o *Service) SetSupportedDocumentsCheckMethods(v []string)

SetSupportedDocumentsCheckMethods gets a reference to the given []string and assigns it to the SupportedDocumentsCheckMethods field.

func (*Service) SetSupportedDocumentsMethods

func (o *Service) SetSupportedDocumentsMethods(v []string)

SetSupportedDocumentsMethods gets a reference to the given []string and assigns it to the SupportedDocumentsMethods field.

func (*Service) SetSupportedDocumentsValidationMethods

func (o *Service) SetSupportedDocumentsValidationMethods(v []string)

SetSupportedDocumentsValidationMethods gets a reference to the given []string and assigns it to the SupportedDocumentsValidationMethods field. Deprecated

func (*Service) SetSupportedDocumentsVerificationMethods

func (o *Service) SetSupportedDocumentsVerificationMethods(v []string)

SetSupportedDocumentsVerificationMethods gets a reference to the given []string and assigns it to the SupportedDocumentsVerificationMethods field. Deprecated

func (*Service) SetSupportedElectronicRecords

func (o *Service) SetSupportedElectronicRecords(v []string)

SetSupportedElectronicRecords gets a reference to the given []string and assigns it to the SupportedElectronicRecords field.

func (*Service) SetSupportedEvidence

func (o *Service) SetSupportedEvidence(v []string)

SetSupportedEvidence gets a reference to the given []string and assigns it to the SupportedEvidence field.

func (*Service) SetSupportedGrantTypes

func (o *Service) SetSupportedGrantTypes(v []string)

SetSupportedGrantTypes gets a reference to the given []string and assigns it to the SupportedGrantTypes field.

func (*Service) SetSupportedIdentityDocuments

func (o *Service) SetSupportedIdentityDocuments(v []string)

SetSupportedIdentityDocuments gets a reference to the given []string and assigns it to the SupportedIdentityDocuments field. Deprecated

func (*Service) SetSupportedIntrospectionAuthMethods

func (o *Service) SetSupportedIntrospectionAuthMethods(v []string)

SetSupportedIntrospectionAuthMethods gets a reference to the given []string and assigns it to the SupportedIntrospectionAuthMethods field.

func (*Service) SetSupportedPromptValues

func (o *Service) SetSupportedPromptValues(v []string)

SetSupportedPromptValues gets a reference to the given []string and assigns it to the SupportedPromptValues field.

func (*Service) SetSupportedResponseTypes

func (o *Service) SetSupportedResponseTypes(v []string)

SetSupportedResponseTypes gets a reference to the given []string and assigns it to the SupportedResponseTypes field.

func (*Service) SetSupportedRevocationAuthMethods

func (o *Service) SetSupportedRevocationAuthMethods(v []string)

SetSupportedRevocationAuthMethods gets a reference to the given []string and assigns it to the SupportedRevocationAuthMethods field.

func (*Service) SetSupportedScopes

func (o *Service) SetSupportedScopes(v []Scope)

SetSupportedScopes gets a reference to the given []Scope and assigns it to the SupportedScopes field.

func (*Service) SetSupportedServiceProfiles

func (o *Service) SetSupportedServiceProfiles(v []string)

SetSupportedServiceProfiles gets a reference to the given []string and assigns it to the SupportedServiceProfiles field.

func (*Service) SetSupportedSnses

func (o *Service) SetSupportedSnses(v []string)

SetSupportedSnses gets a reference to the given []string and assigns it to the SupportedSnses field.

func (*Service) SetSupportedTokenAuthMethods

func (o *Service) SetSupportedTokenAuthMethods(v []string)

SetSupportedTokenAuthMethods gets a reference to the given []string and assigns it to the SupportedTokenAuthMethods field.

func (*Service) SetSupportedTrustFrameworks

func (o *Service) SetSupportedTrustFrameworks(v []string)

SetSupportedTrustFrameworks gets a reference to the given []string and assigns it to the SupportedTrustFrameworks field.

func (*Service) SetSupportedUiLocales

func (o *Service) SetSupportedUiLocales(v []string)

SetSupportedUiLocales gets a reference to the given []string and assigns it to the SupportedUiLocales field.

func (*Service) SetSupportedVerificationMethods

func (o *Service) SetSupportedVerificationMethods(v []string)

SetSupportedVerificationMethods gets a reference to the given []string and assigns it to the SupportedVerificationMethods field. Deprecated

func (*Service) SetSupportedVerifiedClaims

func (o *Service) SetSupportedVerifiedClaims(v []string)

SetSupportedVerifiedClaims gets a reference to the given []string and assigns it to the SupportedVerifiedClaims field.

func (*Service) SetTlsClientCertificateBoundAccessTokens

func (o *Service) SetTlsClientCertificateBoundAccessTokens(v bool)

SetTlsClientCertificateBoundAccessTokens gets a reference to the given bool and assigns it to the TlsClientCertificateBoundAccessTokens field.

func (*Service) SetTokenEndpoint

func (o *Service) SetTokenEndpoint(v string)

SetTokenEndpoint gets a reference to the given string and assigns it to the TokenEndpoint field.

func (*Service) SetTokenExchangeByConfidentialClientsOnly

func (o *Service) SetTokenExchangeByConfidentialClientsOnly(v bool)

SetTokenExchangeByConfidentialClientsOnly gets a reference to the given bool and assigns it to the TokenExchangeByConfidentialClientsOnly field.

func (*Service) SetTokenExchangeByIdentifiableClientsOnly

func (o *Service) SetTokenExchangeByIdentifiableClientsOnly(v bool)

SetTokenExchangeByIdentifiableClientsOnly gets a reference to the given bool and assigns it to the TokenExchangeByIdentifiableClientsOnly field.

func (*Service) SetTokenExchangeByPermittedClientsOnly

func (o *Service) SetTokenExchangeByPermittedClientsOnly(v bool)

SetTokenExchangeByPermittedClientsOnly gets a reference to the given bool and assigns it to the TokenExchangeByPermittedClientsOnly field.

func (*Service) SetTokenExchangeEncryptedJwtRejected

func (o *Service) SetTokenExchangeEncryptedJwtRejected(v bool)

SetTokenExchangeEncryptedJwtRejected gets a reference to the given bool and assigns it to the TokenExchangeEncryptedJwtRejected field.

func (*Service) SetTokenExchangeUnsignedJwtRejected

func (o *Service) SetTokenExchangeUnsignedJwtRejected(v bool)

SetTokenExchangeUnsignedJwtRejected gets a reference to the given bool and assigns it to the TokenExchangeUnsignedJwtRejected field.

func (*Service) SetTokenExpirationLinked

func (o *Service) SetTokenExpirationLinked(v bool)

SetTokenExpirationLinked gets a reference to the given bool and assigns it to the TokenExpirationLinked field.

func (*Service) SetTosUri

func (o *Service) SetTosUri(v string)

SetTosUri gets a reference to the given string and assigns it to the TosUri field.

func (*Service) SetTraditionalRequestObjectProcessingApplied

func (o *Service) SetTraditionalRequestObjectProcessingApplied(v bool)

SetTraditionalRequestObjectProcessingApplied gets a reference to the given bool and assigns it to the TraditionalRequestObjectProcessingApplied field.

func (*Service) SetTrustAnchors

func (o *Service) SetTrustAnchors(v []TrustAnchor)

SetTrustAnchors gets a reference to the given []TrustAnchor and assigns it to the TrustAnchors field.

func (*Service) SetTrustedRootCertificates

func (o *Service) SetTrustedRootCertificates(v []string)

SetTrustedRootCertificates gets a reference to the given []string and assigns it to the TrustedRootCertificates field.

func (*Service) SetUnauthorizedOnClientConfigSupported

func (o *Service) SetUnauthorizedOnClientConfigSupported(v bool)

SetUnauthorizedOnClientConfigSupported gets a reference to the given bool and assigns it to the UnauthorizedOnClientConfigSupported field.

func (*Service) SetUserCodeCharset

func (o *Service) SetUserCodeCharset(v string)

SetUserCodeCharset gets a reference to the given string and assigns it to the UserCodeCharset field.

func (*Service) SetUserCodeLength

func (o *Service) SetUserCodeLength(v int32)

SetUserCodeLength gets a reference to the given int32 and assigns it to the UserCodeLength field.

func (*Service) SetUserInfoEndpoint

func (o *Service) SetUserInfoEndpoint(v string)

SetUserInfoEndpoint gets a reference to the given string and assigns it to the UserInfoEndpoint field.

func (*Service) SetUserInfoSignatureKeyId

func (o *Service) SetUserInfoSignatureKeyId(v string)

SetUserInfoSignatureKeyId gets a reference to the given string and assigns it to the UserInfoSignatureKeyId field.

func (*Service) SetUserPinLength

func (o *Service) SetUserPinLength(v int32)

SetUserPinLength gets a reference to the given int32 and assigns it to the UserPinLength field.

func (*Service) SetVerifiableCredentialsEnabled

func (o *Service) SetVerifiableCredentialsEnabled(v bool)

SetVerifiableCredentialsEnabled gets a reference to the given bool and assigns it to the VerifiableCredentialsEnabled field.

func (*Service) SetVerifiedClaimsValidationSchemaSet

func (o *Service) SetVerifiedClaimsValidationSchemaSet(v string)

SetVerifiedClaimsValidationSchemaSet gets a reference to the given string and assigns it to the VerifiedClaimsValidationSchemaSet field.

type ServiceAccess

type ServiceAccess struct {
	Id                  *int64           `json:"id,omitempty"`
	AllClientPrivileges []string         `json:"allClientPrivileges,omitempty"`
	Privileges          []string         `json:"privileges,omitempty"`
	ClientAccess        []ClientAccess   `json:"clientAccess,omitempty"`
	ApiServerAccessId   *int64           `json:"api_server_access_id,omitempty"`
	ServiceId           *ServiceInstance `json:"service_id,omitempty"`
}

ServiceAccess struct for ServiceAccess

func NewServiceAccess

func NewServiceAccess() *ServiceAccess

NewServiceAccess instantiates a new ServiceAccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceAccessWithDefaults

func NewServiceAccessWithDefaults() *ServiceAccess

NewServiceAccessWithDefaults instantiates a new ServiceAccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceAccess) GetAllClientPrivileges

func (o *ServiceAccess) GetAllClientPrivileges() []string

GetAllClientPrivileges returns the AllClientPrivileges field value if set, zero value otherwise.

func (*ServiceAccess) GetAllClientPrivilegesOk

func (o *ServiceAccess) GetAllClientPrivilegesOk() ([]string, bool)

GetAllClientPrivilegesOk returns a tuple with the AllClientPrivileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceAccess) GetApiServerAccessId

func (o *ServiceAccess) GetApiServerAccessId() int64

GetApiServerAccessId returns the ApiServerAccessId field value if set, zero value otherwise.

func (*ServiceAccess) GetApiServerAccessIdOk

func (o *ServiceAccess) GetApiServerAccessIdOk() (*int64, bool)

GetApiServerAccessIdOk returns a tuple with the ApiServerAccessId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceAccess) GetClientAccess

func (o *ServiceAccess) GetClientAccess() []ClientAccess

GetClientAccess returns the ClientAccess field value if set, zero value otherwise.

func (*ServiceAccess) GetClientAccessOk

func (o *ServiceAccess) GetClientAccessOk() ([]ClientAccess, bool)

GetClientAccessOk returns a tuple with the ClientAccess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceAccess) GetId

func (o *ServiceAccess) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ServiceAccess) GetIdOk

func (o *ServiceAccess) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceAccess) GetPrivileges

func (o *ServiceAccess) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*ServiceAccess) GetPrivilegesOk

func (o *ServiceAccess) GetPrivilegesOk() ([]string, bool)

GetPrivilegesOk returns a tuple with the Privileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceAccess) GetServiceId

func (o *ServiceAccess) GetServiceId() ServiceInstance

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*ServiceAccess) GetServiceIdOk

func (o *ServiceAccess) GetServiceIdOk() (*ServiceInstance, bool)

GetServiceIdOk returns a tuple with the ServiceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceAccess) HasAllClientPrivileges

func (o *ServiceAccess) HasAllClientPrivileges() bool

HasAllClientPrivileges returns a boolean if a field has been set.

func (*ServiceAccess) HasApiServerAccessId

func (o *ServiceAccess) HasApiServerAccessId() bool

HasApiServerAccessId returns a boolean if a field has been set.

func (*ServiceAccess) HasClientAccess

func (o *ServiceAccess) HasClientAccess() bool

HasClientAccess returns a boolean if a field has been set.

func (*ServiceAccess) HasId

func (o *ServiceAccess) HasId() bool

HasId returns a boolean if a field has been set.

func (*ServiceAccess) HasPrivileges

func (o *ServiceAccess) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (*ServiceAccess) HasServiceId

func (o *ServiceAccess) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (ServiceAccess) MarshalJSON

func (o ServiceAccess) MarshalJSON() ([]byte, error)

func (*ServiceAccess) SetAllClientPrivileges

func (o *ServiceAccess) SetAllClientPrivileges(v []string)

SetAllClientPrivileges gets a reference to the given []string and assigns it to the AllClientPrivileges field.

func (*ServiceAccess) SetApiServerAccessId

func (o *ServiceAccess) SetApiServerAccessId(v int64)

SetApiServerAccessId gets a reference to the given int64 and assigns it to the ApiServerAccessId field.

func (*ServiceAccess) SetClientAccess

func (o *ServiceAccess) SetClientAccess(v []ClientAccess)

SetClientAccess gets a reference to the given []ClientAccess and assigns it to the ClientAccess field.

func (*ServiceAccess) SetId

func (o *ServiceAccess) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ServiceAccess) SetPrivileges

func (o *ServiceAccess) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*ServiceAccess) SetServiceId

func (o *ServiceAccess) SetServiceId(v ServiceInstance)

SetServiceId gets a reference to the given ServiceInstance and assigns it to the ServiceId field.

type ServiceAccessResponse

type ServiceAccessResponse struct {
	UserId              *int64                 `json:"userId,omitempty"`
	OrganizationId      *int64                 `json:"organizationId,omitempty"`
	ApiServerId         *int64                 `json:"apiServerId,omitempty"`
	ServiceId           *int64                 `json:"serviceId,omitempty"`
	AllClientPrivileges []string               `json:"allClientPrivileges,omitempty"`
	Privileges          []string               `json:"privileges,omitempty"`
	ClientAccess        []ClientAccessResponse `json:"clientAccess,omitempty"`
}

ServiceAccessResponse struct for ServiceAccessResponse

func NewServiceAccessResponse

func NewServiceAccessResponse() *ServiceAccessResponse

NewServiceAccessResponse instantiates a new ServiceAccessResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceAccessResponseWithDefaults

func NewServiceAccessResponseWithDefaults() *ServiceAccessResponse

NewServiceAccessResponseWithDefaults instantiates a new ServiceAccessResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceAccessResponse) GetAllClientPrivileges

func (o *ServiceAccessResponse) GetAllClientPrivileges() []string

GetAllClientPrivileges returns the AllClientPrivileges field value if set, zero value otherwise.

func (*ServiceAccessResponse) GetAllClientPrivilegesOk

func (o *ServiceAccessResponse) GetAllClientPrivilegesOk() ([]string, bool)

GetAllClientPrivilegesOk returns a tuple with the AllClientPrivileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceAccessResponse) GetApiServerId

func (o *ServiceAccessResponse) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value if set, zero value otherwise.

func (*ServiceAccessResponse) GetApiServerIdOk

func (o *ServiceAccessResponse) GetApiServerIdOk() (*int64, bool)

GetApiServerIdOk returns a tuple with the ApiServerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceAccessResponse) GetClientAccess

func (o *ServiceAccessResponse) GetClientAccess() []ClientAccessResponse

GetClientAccess returns the ClientAccess field value if set, zero value otherwise.

func (*ServiceAccessResponse) GetClientAccessOk

func (o *ServiceAccessResponse) GetClientAccessOk() ([]ClientAccessResponse, bool)

GetClientAccessOk returns a tuple with the ClientAccess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceAccessResponse) GetOrganizationId

func (o *ServiceAccessResponse) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*ServiceAccessResponse) GetOrganizationIdOk

func (o *ServiceAccessResponse) GetOrganizationIdOk() (*int64, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceAccessResponse) GetPrivileges

func (o *ServiceAccessResponse) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*ServiceAccessResponse) GetPrivilegesOk

func (o *ServiceAccessResponse) GetPrivilegesOk() ([]string, bool)

GetPrivilegesOk returns a tuple with the Privileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceAccessResponse) GetServiceId

func (o *ServiceAccessResponse) GetServiceId() int64

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*ServiceAccessResponse) GetServiceIdOk

func (o *ServiceAccessResponse) GetServiceIdOk() (*int64, bool)

GetServiceIdOk returns a tuple with the ServiceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceAccessResponse) GetUserId

func (o *ServiceAccessResponse) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*ServiceAccessResponse) GetUserIdOk

func (o *ServiceAccessResponse) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceAccessResponse) HasAllClientPrivileges

func (o *ServiceAccessResponse) HasAllClientPrivileges() bool

HasAllClientPrivileges returns a boolean if a field has been set.

func (*ServiceAccessResponse) HasApiServerId

func (o *ServiceAccessResponse) HasApiServerId() bool

HasApiServerId returns a boolean if a field has been set.

func (*ServiceAccessResponse) HasClientAccess

func (o *ServiceAccessResponse) HasClientAccess() bool

HasClientAccess returns a boolean if a field has been set.

func (*ServiceAccessResponse) HasOrganizationId

func (o *ServiceAccessResponse) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*ServiceAccessResponse) HasPrivileges

func (o *ServiceAccessResponse) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (*ServiceAccessResponse) HasServiceId

func (o *ServiceAccessResponse) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*ServiceAccessResponse) HasUserId

func (o *ServiceAccessResponse) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (ServiceAccessResponse) MarshalJSON

func (o ServiceAccessResponse) MarshalJSON() ([]byte, error)

func (*ServiceAccessResponse) SetAllClientPrivileges

func (o *ServiceAccessResponse) SetAllClientPrivileges(v []string)

SetAllClientPrivileges gets a reference to the given []string and assigns it to the AllClientPrivileges field.

func (*ServiceAccessResponse) SetApiServerId

func (o *ServiceAccessResponse) SetApiServerId(v int64)

SetApiServerId gets a reference to the given int64 and assigns it to the ApiServerId field.

func (*ServiceAccessResponse) SetClientAccess

func (o *ServiceAccessResponse) SetClientAccess(v []ClientAccessResponse)

SetClientAccess gets a reference to the given []ClientAccessResponse and assigns it to the ClientAccess field.

func (*ServiceAccessResponse) SetOrganizationId

func (o *ServiceAccessResponse) SetOrganizationId(v int64)

SetOrganizationId gets a reference to the given int64 and assigns it to the OrganizationId field.

func (*ServiceAccessResponse) SetPrivileges

func (o *ServiceAccessResponse) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*ServiceAccessResponse) SetServiceId

func (o *ServiceAccessResponse) SetServiceId(v int64)

SetServiceId gets a reference to the given int64 and assigns it to the ServiceId field.

func (*ServiceAccessResponse) SetUserId

func (o *ServiceAccessResponse) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

type ServiceApiApiService

type ServiceApiApiService service

ServiceApiApiService ServiceApiApi service

func (*ServiceApiApiService) AdoptService

AdoptService Method for AdoptService

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAdoptServiceRequest

func (*ServiceApiApiService) AdoptServiceExecute

Execute executes the request

@return ServiceInstanceManagementResponse

func (*ServiceApiApiService) CreateService

CreateService Method for CreateService

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateServiceRequest

func (*ServiceApiApiService) CreateServiceExecute

func (a *ServiceApiApiService) CreateServiceExecute(r ApiCreateServiceRequest) (*Service, *http.Response, error)

Execute executes the request

@return Service

func (*ServiceApiApiService) DeleteService

DeleteService Method for DeleteService

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteServiceRequest

func (*ServiceApiApiService) DeleteServiceExecute

func (a *ServiceApiApiService) DeleteServiceExecute(r ApiDeleteServiceRequest) (*http.Response, error)

Execute executes the request

func (*ServiceApiApiService) FindService

FindService Method for FindService

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiFindServiceRequest

func (*ServiceApiApiService) FindServiceExecute

Execute executes the request

@return []ServiceInstanceManagementResponse

func (*ServiceApiApiService) GetOrphans

GetOrphans Method for GetOrphans

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetOrphansRequest

func (*ServiceApiApiService) GetOrphansExecute

Execute executes the request

@return OrphanServiceResponse

func (*ServiceApiApiService) MoveService

MoveService Method for MoveService

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMoveServiceRequest

func (*ServiceApiApiService) MoveServiceExecute

Execute executes the request

@return ServiceInstanceManagementResponse

func (*ServiceApiApiService) RemoveOrphanService

RemoveOrphanService Method for RemoveOrphanService

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRemoveOrphanServiceRequest

func (*ServiceApiApiService) RemoveOrphanServiceExecute

func (a *ServiceApiApiService) RemoveOrphanServiceExecute(r ApiRemoveOrphanServiceRequest) (*http.Response, error)

Execute executes the request

type ServiceInstance

type ServiceInstance struct {
	Id             *int64 `json:"id,omitempty"`
	ServiceId      *int64 `json:"serviceId,omitempty"`
	OrganizationId *int64 `json:"organization_id,omitempty"`
	ApiServerId    *int64 `json:"api_server_id,omitempty"`
}

ServiceInstance struct for ServiceInstance

func NewServiceInstance

func NewServiceInstance() *ServiceInstance

NewServiceInstance instantiates a new ServiceInstance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceInstanceWithDefaults

func NewServiceInstanceWithDefaults() *ServiceInstance

NewServiceInstanceWithDefaults instantiates a new ServiceInstance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceInstance) GetApiServerId

func (o *ServiceInstance) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value if set, zero value otherwise.

func (*ServiceInstance) GetApiServerIdOk

func (o *ServiceInstance) GetApiServerIdOk() (*int64, bool)

GetApiServerIdOk returns a tuple with the ApiServerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceInstance) GetId

func (o *ServiceInstance) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*ServiceInstance) GetIdOk

func (o *ServiceInstance) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceInstance) GetOrganizationId

func (o *ServiceInstance) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*ServiceInstance) GetOrganizationIdOk

func (o *ServiceInstance) GetOrganizationIdOk() (*int64, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceInstance) GetServiceId

func (o *ServiceInstance) GetServiceId() int64

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*ServiceInstance) GetServiceIdOk

func (o *ServiceInstance) GetServiceIdOk() (*int64, bool)

GetServiceIdOk returns a tuple with the ServiceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceInstance) HasApiServerId

func (o *ServiceInstance) HasApiServerId() bool

HasApiServerId returns a boolean if a field has been set.

func (*ServiceInstance) HasId

func (o *ServiceInstance) HasId() bool

HasId returns a boolean if a field has been set.

func (*ServiceInstance) HasOrganizationId

func (o *ServiceInstance) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*ServiceInstance) HasServiceId

func (o *ServiceInstance) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (ServiceInstance) MarshalJSON

func (o ServiceInstance) MarshalJSON() ([]byte, error)

func (*ServiceInstance) SetApiServerId

func (o *ServiceInstance) SetApiServerId(v int64)

SetApiServerId gets a reference to the given int64 and assigns it to the ApiServerId field.

func (*ServiceInstance) SetId

func (o *ServiceInstance) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ServiceInstance) SetOrganizationId

func (o *ServiceInstance) SetOrganizationId(v int64)

SetOrganizationId gets a reference to the given int64 and assigns it to the OrganizationId field.

func (*ServiceInstance) SetServiceId

func (o *ServiceInstance) SetServiceId(v int64)

SetServiceId gets a reference to the given int64 and assigns it to the ServiceId field.

type ServiceInstanceManagementResponse

type ServiceInstanceManagementResponse struct {
	OrganizationId *int64 `json:"organizationId,omitempty"`
	ApiServerId    *int64 `json:"apiServerId,omitempty"`
	ServiceId      *int64 `json:"serviceId,omitempty"`
}

ServiceInstanceManagementResponse struct for ServiceInstanceManagementResponse

func NewServiceInstanceManagementResponse

func NewServiceInstanceManagementResponse() *ServiceInstanceManagementResponse

NewServiceInstanceManagementResponse instantiates a new ServiceInstanceManagementResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceInstanceManagementResponseWithDefaults

func NewServiceInstanceManagementResponseWithDefaults() *ServiceInstanceManagementResponse

NewServiceInstanceManagementResponseWithDefaults instantiates a new ServiceInstanceManagementResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceInstanceManagementResponse) GetApiServerId

func (o *ServiceInstanceManagementResponse) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value if set, zero value otherwise.

func (*ServiceInstanceManagementResponse) GetApiServerIdOk

func (o *ServiceInstanceManagementResponse) GetApiServerIdOk() (*int64, bool)

GetApiServerIdOk returns a tuple with the ApiServerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceInstanceManagementResponse) GetOrganizationId

func (o *ServiceInstanceManagementResponse) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*ServiceInstanceManagementResponse) GetOrganizationIdOk

func (o *ServiceInstanceManagementResponse) GetOrganizationIdOk() (*int64, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceInstanceManagementResponse) GetServiceId

func (o *ServiceInstanceManagementResponse) GetServiceId() int64

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*ServiceInstanceManagementResponse) GetServiceIdOk

func (o *ServiceInstanceManagementResponse) GetServiceIdOk() (*int64, bool)

GetServiceIdOk returns a tuple with the ServiceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceInstanceManagementResponse) HasApiServerId

func (o *ServiceInstanceManagementResponse) HasApiServerId() bool

HasApiServerId returns a boolean if a field has been set.

func (*ServiceInstanceManagementResponse) HasOrganizationId

func (o *ServiceInstanceManagementResponse) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*ServiceInstanceManagementResponse) HasServiceId

func (o *ServiceInstanceManagementResponse) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (ServiceInstanceManagementResponse) MarshalJSON

func (o ServiceInstanceManagementResponse) MarshalJSON() ([]byte, error)

func (*ServiceInstanceManagementResponse) SetApiServerId

func (o *ServiceInstanceManagementResponse) SetApiServerId(v int64)

SetApiServerId gets a reference to the given int64 and assigns it to the ApiServerId field.

func (*ServiceInstanceManagementResponse) SetOrganizationId

func (o *ServiceInstanceManagementResponse) SetOrganizationId(v int64)

SetOrganizationId gets a reference to the given int64 and assigns it to the OrganizationId field.

func (*ServiceInstanceManagementResponse) SetServiceId

func (o *ServiceInstanceManagementResponse) SetServiceId(v int64)

SetServiceId gets a reference to the given int64 and assigns it to the ServiceId field.

type ServiceInstanceMembershipResponse

type ServiceInstanceMembershipResponse struct {
	ServiceId        *int64                 `json:"serviceId,omitempty"`
	Privileges       []string               `json:"privileges,omitempty"`
	Clients          []ClientAccessResponse `json:"clients,omitempty"`
	ClientPrivileges []string               `json:"clientPrivileges,omitempty"`
}

ServiceInstanceMembershipResponse struct for ServiceInstanceMembershipResponse

func NewServiceInstanceMembershipResponse

func NewServiceInstanceMembershipResponse() *ServiceInstanceMembershipResponse

NewServiceInstanceMembershipResponse instantiates a new ServiceInstanceMembershipResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceInstanceMembershipResponseWithDefaults

func NewServiceInstanceMembershipResponseWithDefaults() *ServiceInstanceMembershipResponse

NewServiceInstanceMembershipResponseWithDefaults instantiates a new ServiceInstanceMembershipResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceInstanceMembershipResponse) GetClientPrivileges

func (o *ServiceInstanceMembershipResponse) GetClientPrivileges() []string

GetClientPrivileges returns the ClientPrivileges field value if set, zero value otherwise.

func (*ServiceInstanceMembershipResponse) GetClientPrivilegesOk

func (o *ServiceInstanceMembershipResponse) GetClientPrivilegesOk() ([]string, bool)

GetClientPrivilegesOk returns a tuple with the ClientPrivileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceInstanceMembershipResponse) GetClients

GetClients returns the Clients field value if set, zero value otherwise.

func (*ServiceInstanceMembershipResponse) GetClientsOk

GetClientsOk returns a tuple with the Clients field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceInstanceMembershipResponse) GetPrivileges

func (o *ServiceInstanceMembershipResponse) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*ServiceInstanceMembershipResponse) GetPrivilegesOk

func (o *ServiceInstanceMembershipResponse) GetPrivilegesOk() ([]string, bool)

GetPrivilegesOk returns a tuple with the Privileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceInstanceMembershipResponse) GetServiceId

func (o *ServiceInstanceMembershipResponse) GetServiceId() int64

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*ServiceInstanceMembershipResponse) GetServiceIdOk

func (o *ServiceInstanceMembershipResponse) GetServiceIdOk() (*int64, bool)

GetServiceIdOk returns a tuple with the ServiceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceInstanceMembershipResponse) HasClientPrivileges

func (o *ServiceInstanceMembershipResponse) HasClientPrivileges() bool

HasClientPrivileges returns a boolean if a field has been set.

func (*ServiceInstanceMembershipResponse) HasClients

func (o *ServiceInstanceMembershipResponse) HasClients() bool

HasClients returns a boolean if a field has been set.

func (*ServiceInstanceMembershipResponse) HasPrivileges

func (o *ServiceInstanceMembershipResponse) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (*ServiceInstanceMembershipResponse) HasServiceId

func (o *ServiceInstanceMembershipResponse) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (ServiceInstanceMembershipResponse) MarshalJSON

func (o ServiceInstanceMembershipResponse) MarshalJSON() ([]byte, error)

func (*ServiceInstanceMembershipResponse) SetClientPrivileges

func (o *ServiceInstanceMembershipResponse) SetClientPrivileges(v []string)

SetClientPrivileges gets a reference to the given []string and assigns it to the ClientPrivileges field.

func (*ServiceInstanceMembershipResponse) SetClients

SetClients gets a reference to the given []ClientAccessResponse and assigns it to the Clients field.

func (*ServiceInstanceMembershipResponse) SetPrivileges

func (o *ServiceInstanceMembershipResponse) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*ServiceInstanceMembershipResponse) SetServiceId

func (o *ServiceInstanceMembershipResponse) SetServiceId(v int64)

SetServiceId gets a reference to the given int64 and assigns it to the ServiceId field.

type ServiceTokenApiApiService

type ServiceTokenApiApiService service

ServiceTokenApiApiService ServiceTokenApiApi service

func (*ServiceTokenApiApiService) CreateTokenForService

CreateTokenForService Method for CreateTokenForService

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateTokenForServiceRequest

func (*ServiceTokenApiApiService) CreateTokenForServiceExecute

Execute executes the request

@return ServiceTokenResponse

func (*ServiceTokenApiApiService) GetTokensForService

GetTokensForService Method for GetTokensForService

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetTokensForServiceRequest

func (*ServiceTokenApiApiService) GetTokensForServiceExecute

Execute executes the request

@return []ServiceTokenResponse

func (*ServiceTokenApiApiService) RenameServiceToken

RenameServiceToken Method for RenameServiceToken

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRenameServiceTokenRequest

func (*ServiceTokenApiApiService) RenameServiceTokenExecute

Execute executes the request

@return ServiceTokenResponse

func (*ServiceTokenApiApiService) RevokeServiceToken

RevokeServiceToken Method for RevokeServiceToken

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRevokeServiceTokenRequest

func (*ServiceTokenApiApiService) RevokeServiceTokenExecute

func (a *ServiceTokenApiApiService) RevokeServiceTokenExecute(r ApiRevokeServiceTokenRequest) (*http.Response, error)

Execute executes the request

func (*ServiceTokenApiApiService) RotateServiceToken

RotateServiceToken Method for RotateServiceToken

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRotateServiceTokenRequest

func (*ServiceTokenApiApiService) RotateServiceTokenExecute

Execute executes the request

@return ServiceTokenResponse

type ServiceTokenResponse

type ServiceTokenResponse struct {
	ServiceId      *int64  `json:"serviceId,omitempty"`
	OrganizationId *int64  `json:"organizationId,omitempty"`
	ApiServerId    *int64  `json:"apiServerId,omitempty"`
	AccessToken    *string `json:"accessToken,omitempty"`
	TokenId        *string `json:"tokenId,omitempty"`
	Description    *string `json:"description,omitempty"`
}

ServiceTokenResponse struct for ServiceTokenResponse

func NewServiceTokenResponse

func NewServiceTokenResponse() *ServiceTokenResponse

NewServiceTokenResponse instantiates a new ServiceTokenResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServiceTokenResponseWithDefaults

func NewServiceTokenResponseWithDefaults() *ServiceTokenResponse

NewServiceTokenResponseWithDefaults instantiates a new ServiceTokenResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServiceTokenResponse) GetAccessToken

func (o *ServiceTokenResponse) GetAccessToken() string

GetAccessToken returns the AccessToken field value if set, zero value otherwise.

func (*ServiceTokenResponse) GetAccessTokenOk

func (o *ServiceTokenResponse) GetAccessTokenOk() (*string, bool)

GetAccessTokenOk returns a tuple with the AccessToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceTokenResponse) GetApiServerId

func (o *ServiceTokenResponse) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value if set, zero value otherwise.

func (*ServiceTokenResponse) GetApiServerIdOk

func (o *ServiceTokenResponse) GetApiServerIdOk() (*int64, bool)

GetApiServerIdOk returns a tuple with the ApiServerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceTokenResponse) GetDescription

func (o *ServiceTokenResponse) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ServiceTokenResponse) GetDescriptionOk

func (o *ServiceTokenResponse) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceTokenResponse) GetOrganizationId

func (o *ServiceTokenResponse) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*ServiceTokenResponse) GetOrganizationIdOk

func (o *ServiceTokenResponse) GetOrganizationIdOk() (*int64, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceTokenResponse) GetServiceId

func (o *ServiceTokenResponse) GetServiceId() int64

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*ServiceTokenResponse) GetServiceIdOk

func (o *ServiceTokenResponse) GetServiceIdOk() (*int64, bool)

GetServiceIdOk returns a tuple with the ServiceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceTokenResponse) GetTokenId

func (o *ServiceTokenResponse) GetTokenId() string

GetTokenId returns the TokenId field value if set, zero value otherwise.

func (*ServiceTokenResponse) GetTokenIdOk

func (o *ServiceTokenResponse) GetTokenIdOk() (*string, bool)

GetTokenIdOk returns a tuple with the TokenId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceTokenResponse) HasAccessToken

func (o *ServiceTokenResponse) HasAccessToken() bool

HasAccessToken returns a boolean if a field has been set.

func (*ServiceTokenResponse) HasApiServerId

func (o *ServiceTokenResponse) HasApiServerId() bool

HasApiServerId returns a boolean if a field has been set.

func (*ServiceTokenResponse) HasDescription

func (o *ServiceTokenResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServiceTokenResponse) HasOrganizationId

func (o *ServiceTokenResponse) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*ServiceTokenResponse) HasServiceId

func (o *ServiceTokenResponse) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*ServiceTokenResponse) HasTokenId

func (o *ServiceTokenResponse) HasTokenId() bool

HasTokenId returns a boolean if a field has been set.

func (ServiceTokenResponse) MarshalJSON

func (o ServiceTokenResponse) MarshalJSON() ([]byte, error)

func (*ServiceTokenResponse) SetAccessToken

func (o *ServiceTokenResponse) SetAccessToken(v string)

SetAccessToken gets a reference to the given string and assigns it to the AccessToken field.

func (*ServiceTokenResponse) SetApiServerId

func (o *ServiceTokenResponse) SetApiServerId(v int64)

SetApiServerId gets a reference to the given int64 and assigns it to the ApiServerId field.

func (*ServiceTokenResponse) SetDescription

func (o *ServiceTokenResponse) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ServiceTokenResponse) SetOrganizationId

func (o *ServiceTokenResponse) SetOrganizationId(v int64)

SetOrganizationId gets a reference to the given int64 and assigns it to the OrganizationId field.

func (*ServiceTokenResponse) SetServiceId

func (o *ServiceTokenResponse) SetServiceId(v int64)

SetServiceId gets a reference to the given int64 and assigns it to the ServiceId field.

func (*ServiceTokenResponse) SetTokenId

func (o *ServiceTokenResponse) SetTokenId(v string)

SetTokenId gets a reference to the given string and assigns it to the TokenId field.

type SessionApiApiService

type SessionApiApiService service

SessionApiApiService SessionApiApi service

func (*SessionApiApiService) AccountCheck

AccountCheck Method for AccountCheck

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param email
@return ApiAccountCheckRequest

func (*SessionApiApiService) AccountCheckExecute

Execute executes the request

@return LogInResponse

func (*SessionApiApiService) GetCurrentUser

GetCurrentUser Method for GetCurrentUser

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCurrentUserRequest

func (*SessionApiApiService) GetCurrentUserExecute

Execute executes the request

@return LogInResponse

func (*SessionApiApiService) LogIn

LogIn Method for LogIn

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiLogInRequest

func (*SessionApiApiService) LogInExecute

Execute executes the request

@return LogInResponse

func (*SessionApiApiService) LogOut

LogOut Method for LogOut

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiLogOutRequest

func (*SessionApiApiService) LogOutExecute

func (a *SessionApiApiService) LogOutExecute(r ApiLogOutRequest) (*http.Response, error)

Execute executes the request

type SnsCredentials

type SnsCredentials struct {
	Sns       *string `json:"sns,omitempty"`
	ApiKey    *string `json:"apiKey,omitempty"`
	ApiSecret *string `json:"apiSecret,omitempty"`
}

SnsCredentials struct for SnsCredentials

func NewSnsCredentials

func NewSnsCredentials() *SnsCredentials

NewSnsCredentials instantiates a new SnsCredentials object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSnsCredentialsWithDefaults

func NewSnsCredentialsWithDefaults() *SnsCredentials

NewSnsCredentialsWithDefaults instantiates a new SnsCredentials object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SnsCredentials) GetApiKey

func (o *SnsCredentials) GetApiKey() string

GetApiKey returns the ApiKey field value if set, zero value otherwise.

func (*SnsCredentials) GetApiKeyOk

func (o *SnsCredentials) GetApiKeyOk() (*string, bool)

GetApiKeyOk returns a tuple with the ApiKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnsCredentials) GetApiSecret

func (o *SnsCredentials) GetApiSecret() string

GetApiSecret returns the ApiSecret field value if set, zero value otherwise.

func (*SnsCredentials) GetApiSecretOk

func (o *SnsCredentials) GetApiSecretOk() (*string, bool)

GetApiSecretOk returns a tuple with the ApiSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnsCredentials) GetSns

func (o *SnsCredentials) GetSns() string

GetSns returns the Sns field value if set, zero value otherwise.

func (*SnsCredentials) GetSnsOk

func (o *SnsCredentials) GetSnsOk() (*string, bool)

GetSnsOk returns a tuple with the Sns field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnsCredentials) HasApiKey

func (o *SnsCredentials) HasApiKey() bool

HasApiKey returns a boolean if a field has been set.

func (*SnsCredentials) HasApiSecret

func (o *SnsCredentials) HasApiSecret() bool

HasApiSecret returns a boolean if a field has been set.

func (*SnsCredentials) HasSns

func (o *SnsCredentials) HasSns() bool

HasSns returns a boolean if a field has been set.

func (SnsCredentials) MarshalJSON

func (o SnsCredentials) MarshalJSON() ([]byte, error)

func (*SnsCredentials) SetApiKey

func (o *SnsCredentials) SetApiKey(v string)

SetApiKey gets a reference to the given string and assigns it to the ApiKey field.

func (*SnsCredentials) SetApiSecret

func (o *SnsCredentials) SetApiSecret(v string)

SetApiSecret gets a reference to the given string and assigns it to the ApiSecret field.

func (*SnsCredentials) SetSns

func (o *SnsCredentials) SetSns(v string)

SetSns gets a reference to the given string and assigns it to the Sns field.

type StringArray

type StringArray struct {
	Array []string `json:"array,omitempty"`
}

StringArray struct for StringArray

func NewStringArray

func NewStringArray() *StringArray

NewStringArray instantiates a new StringArray object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStringArrayWithDefaults

func NewStringArrayWithDefaults() *StringArray

NewStringArrayWithDefaults instantiates a new StringArray object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StringArray) GetArray

func (o *StringArray) GetArray() []string

GetArray returns the Array field value if set, zero value otherwise.

func (*StringArray) GetArrayOk

func (o *StringArray) GetArrayOk() ([]string, bool)

GetArrayOk returns a tuple with the Array field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StringArray) HasArray

func (o *StringArray) HasArray() bool

HasArray returns a boolean if a field has been set.

func (StringArray) MarshalJSON

func (o StringArray) MarshalJSON() ([]byte, error)

func (*StringArray) SetArray

func (o *StringArray) SetArray(v []string)

SetArray gets a reference to the given []string and assigns it to the Array field.

type TaggedValue

type TaggedValue struct {
	Tag   *string `json:"tag,omitempty"`
	Value *string `json:"value,omitempty"`
}

TaggedValue struct for TaggedValue

func NewTaggedValue

func NewTaggedValue() *TaggedValue

NewTaggedValue instantiates a new TaggedValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaggedValueWithDefaults

func NewTaggedValueWithDefaults() *TaggedValue

NewTaggedValueWithDefaults instantiates a new TaggedValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaggedValue) GetTag

func (o *TaggedValue) GetTag() string

GetTag returns the Tag field value if set, zero value otherwise.

func (*TaggedValue) GetTagOk

func (o *TaggedValue) GetTagOk() (*string, bool)

GetTagOk returns a tuple with the Tag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaggedValue) GetValue

func (o *TaggedValue) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*TaggedValue) GetValueOk

func (o *TaggedValue) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaggedValue) HasTag

func (o *TaggedValue) HasTag() bool

HasTag returns a boolean if a field has been set.

func (*TaggedValue) HasValue

func (o *TaggedValue) HasValue() bool

HasValue returns a boolean if a field has been set.

func (TaggedValue) MarshalJSON

func (o TaggedValue) MarshalJSON() ([]byte, error)

func (*TaggedValue) SetTag

func (o *TaggedValue) SetTag(v string)

SetTag gets a reference to the given string and assigns it to the Tag field.

func (*TaggedValue) SetValue

func (o *TaggedValue) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type TokenEndpointApiService

type TokenEndpointApiService service

TokenEndpointApiService TokenEndpointApi service

func (*TokenEndpointApiService) TokenEndpoint

TokenEndpoint Method for TokenEndpoint

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTokenEndpointRequest

func (*TokenEndpointApiService) TokenEndpointExecute

func (a *TokenEndpointApiService) TokenEndpointExecute(r ApiTokenEndpointRequest) (string, *http.Response, error)

Execute executes the request

@return string

type TrustAnchor

type TrustAnchor struct {
	EntityId *string `json:"entityId,omitempty"`
	Jwks     *string `json:"jwks,omitempty"`
}

TrustAnchor struct for TrustAnchor

func NewTrustAnchor

func NewTrustAnchor() *TrustAnchor

NewTrustAnchor instantiates a new TrustAnchor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTrustAnchorWithDefaults

func NewTrustAnchorWithDefaults() *TrustAnchor

NewTrustAnchorWithDefaults instantiates a new TrustAnchor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TrustAnchor) GetEntityId

func (o *TrustAnchor) GetEntityId() string

GetEntityId returns the EntityId field value if set, zero value otherwise.

func (*TrustAnchor) GetEntityIdOk

func (o *TrustAnchor) GetEntityIdOk() (*string, bool)

GetEntityIdOk returns a tuple with the EntityId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustAnchor) GetJwks

func (o *TrustAnchor) GetJwks() string

GetJwks returns the Jwks field value if set, zero value otherwise.

func (*TrustAnchor) GetJwksOk

func (o *TrustAnchor) GetJwksOk() (*string, bool)

GetJwksOk returns a tuple with the Jwks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrustAnchor) HasEntityId

func (o *TrustAnchor) HasEntityId() bool

HasEntityId returns a boolean if a field has been set.

func (*TrustAnchor) HasJwks

func (o *TrustAnchor) HasJwks() bool

HasJwks returns a boolean if a field has been set.

func (TrustAnchor) MarshalJSON

func (o TrustAnchor) MarshalJSON() ([]byte, error)

func (*TrustAnchor) SetEntityId

func (o *TrustAnchor) SetEntityId(v string)

SetEntityId gets a reference to the given string and assigns it to the EntityId field.

func (*TrustAnchor) SetJwks

func (o *TrustAnchor) SetJwks(v string)

SetJwks gets a reference to the given string and assigns it to the Jwks field.

type UpdateApiServerPrivilegesRequest

type UpdateApiServerPrivilegesRequest struct {
	ApiServerId          int64    `json:"apiServerId"`
	OrganizationId       int64    `json:"organizationId"`
	UserId               int64    `json:"userId"`
	Privileges           []string `json:"privileges,omitempty"`
	AllServicePrivileges []string `json:"allServicePrivileges,omitempty"`
	AllClientPrivileges  []string `json:"allClientPrivileges,omitempty"`
}

UpdateApiServerPrivilegesRequest struct for UpdateApiServerPrivilegesRequest

func NewUpdateApiServerPrivilegesRequest

func NewUpdateApiServerPrivilegesRequest(apiServerId int64, organizationId int64, userId int64) *UpdateApiServerPrivilegesRequest

NewUpdateApiServerPrivilegesRequest instantiates a new UpdateApiServerPrivilegesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateApiServerPrivilegesRequestWithDefaults

func NewUpdateApiServerPrivilegesRequestWithDefaults() *UpdateApiServerPrivilegesRequest

NewUpdateApiServerPrivilegesRequestWithDefaults instantiates a new UpdateApiServerPrivilegesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateApiServerPrivilegesRequest) GetAllClientPrivileges

func (o *UpdateApiServerPrivilegesRequest) GetAllClientPrivileges() []string

GetAllClientPrivileges returns the AllClientPrivileges field value if set, zero value otherwise.

func (*UpdateApiServerPrivilegesRequest) GetAllClientPrivilegesOk

func (o *UpdateApiServerPrivilegesRequest) GetAllClientPrivilegesOk() ([]string, bool)

GetAllClientPrivilegesOk returns a tuple with the AllClientPrivileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateApiServerPrivilegesRequest) GetAllServicePrivileges

func (o *UpdateApiServerPrivilegesRequest) GetAllServicePrivileges() []string

GetAllServicePrivileges returns the AllServicePrivileges field value if set, zero value otherwise.

func (*UpdateApiServerPrivilegesRequest) GetAllServicePrivilegesOk

func (o *UpdateApiServerPrivilegesRequest) GetAllServicePrivilegesOk() ([]string, bool)

GetAllServicePrivilegesOk returns a tuple with the AllServicePrivileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateApiServerPrivilegesRequest) GetApiServerId

func (o *UpdateApiServerPrivilegesRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value

func (*UpdateApiServerPrivilegesRequest) GetApiServerIdOk

func (o *UpdateApiServerPrivilegesRequest) GetApiServerIdOk() (*int64, bool)

GetApiServerIdOk returns a tuple with the ApiServerId field value and a boolean to check if the value has been set.

func (*UpdateApiServerPrivilegesRequest) GetOrganizationId

func (o *UpdateApiServerPrivilegesRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*UpdateApiServerPrivilegesRequest) GetOrganizationIdOk

func (o *UpdateApiServerPrivilegesRequest) GetOrganizationIdOk() (*int64, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value and a boolean to check if the value has been set.

func (*UpdateApiServerPrivilegesRequest) GetPrivileges

func (o *UpdateApiServerPrivilegesRequest) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*UpdateApiServerPrivilegesRequest) GetPrivilegesOk

func (o *UpdateApiServerPrivilegesRequest) GetPrivilegesOk() ([]string, bool)

GetPrivilegesOk returns a tuple with the Privileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateApiServerPrivilegesRequest) GetUserId

func (o *UpdateApiServerPrivilegesRequest) GetUserId() int64

GetUserId returns the UserId field value

func (*UpdateApiServerPrivilegesRequest) GetUserIdOk

func (o *UpdateApiServerPrivilegesRequest) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value and a boolean to check if the value has been set.

func (*UpdateApiServerPrivilegesRequest) HasAllClientPrivileges

func (o *UpdateApiServerPrivilegesRequest) HasAllClientPrivileges() bool

HasAllClientPrivileges returns a boolean if a field has been set.

func (*UpdateApiServerPrivilegesRequest) HasAllServicePrivileges

func (o *UpdateApiServerPrivilegesRequest) HasAllServicePrivileges() bool

HasAllServicePrivileges returns a boolean if a field has been set.

func (*UpdateApiServerPrivilegesRequest) HasPrivileges

func (o *UpdateApiServerPrivilegesRequest) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (UpdateApiServerPrivilegesRequest) MarshalJSON

func (o UpdateApiServerPrivilegesRequest) MarshalJSON() ([]byte, error)

func (*UpdateApiServerPrivilegesRequest) SetAllClientPrivileges

func (o *UpdateApiServerPrivilegesRequest) SetAllClientPrivileges(v []string)

SetAllClientPrivileges gets a reference to the given []string and assigns it to the AllClientPrivileges field.

func (*UpdateApiServerPrivilegesRequest) SetAllServicePrivileges

func (o *UpdateApiServerPrivilegesRequest) SetAllServicePrivileges(v []string)

SetAllServicePrivileges gets a reference to the given []string and assigns it to the AllServicePrivileges field.

func (*UpdateApiServerPrivilegesRequest) SetApiServerId

func (o *UpdateApiServerPrivilegesRequest) SetApiServerId(v int64)

SetApiServerId sets field value

func (*UpdateApiServerPrivilegesRequest) SetOrganizationId

func (o *UpdateApiServerPrivilegesRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*UpdateApiServerPrivilegesRequest) SetPrivileges

func (o *UpdateApiServerPrivilegesRequest) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*UpdateApiServerPrivilegesRequest) SetUserId

func (o *UpdateApiServerPrivilegesRequest) SetUserId(v int64)

SetUserId sets field value

type UpdateApiServerRequest

type UpdateApiServerRequest struct {
	ApiServerUrl string `json:"apiServerUrl"`
	Description  string `json:"description"`
	OwnedBy      *int64 `json:"ownedBy,omitempty"`
}

UpdateApiServerRequest struct for UpdateApiServerRequest

func NewUpdateApiServerRequest

func NewUpdateApiServerRequest(apiServerUrl string, description string) *UpdateApiServerRequest

NewUpdateApiServerRequest instantiates a new UpdateApiServerRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateApiServerRequestWithDefaults

func NewUpdateApiServerRequestWithDefaults() *UpdateApiServerRequest

NewUpdateApiServerRequestWithDefaults instantiates a new UpdateApiServerRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateApiServerRequest) GetApiServerUrl

func (o *UpdateApiServerRequest) GetApiServerUrl() string

GetApiServerUrl returns the ApiServerUrl field value

func (*UpdateApiServerRequest) GetApiServerUrlOk

func (o *UpdateApiServerRequest) GetApiServerUrlOk() (*string, bool)

GetApiServerUrlOk returns a tuple with the ApiServerUrl field value and a boolean to check if the value has been set.

func (*UpdateApiServerRequest) GetDescription

func (o *UpdateApiServerRequest) GetDescription() string

GetDescription returns the Description field value

func (*UpdateApiServerRequest) GetDescriptionOk

func (o *UpdateApiServerRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*UpdateApiServerRequest) GetOwnedBy

func (o *UpdateApiServerRequest) GetOwnedBy() int64

GetOwnedBy returns the OwnedBy field value if set, zero value otherwise.

func (*UpdateApiServerRequest) GetOwnedByOk

func (o *UpdateApiServerRequest) GetOwnedByOk() (*int64, bool)

GetOwnedByOk returns a tuple with the OwnedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateApiServerRequest) HasOwnedBy

func (o *UpdateApiServerRequest) HasOwnedBy() bool

HasOwnedBy returns a boolean if a field has been set.

func (UpdateApiServerRequest) MarshalJSON

func (o UpdateApiServerRequest) MarshalJSON() ([]byte, error)

func (*UpdateApiServerRequest) SetApiServerUrl

func (o *UpdateApiServerRequest) SetApiServerUrl(v string)

SetApiServerUrl sets field value

func (*UpdateApiServerRequest) SetDescription

func (o *UpdateApiServerRequest) SetDescription(v string)

SetDescription sets field value

func (*UpdateApiServerRequest) SetOwnedBy

func (o *UpdateApiServerRequest) SetOwnedBy(v int64)

SetOwnedBy gets a reference to the given int64 and assigns it to the OwnedBy field.

type UpdateClientPrivilegesRequest

type UpdateClientPrivilegesRequest struct {
	ApiServerId    int64    `json:"apiServerId"`
	OrganizationId int64    `json:"organizationId"`
	UserId         int64    `json:"userId"`
	ServiceId      int64    `json:"serviceId"`
	ClientId       int64    `json:"clientId"`
	Privileges     []string `json:"privileges,omitempty"`
}

UpdateClientPrivilegesRequest struct for UpdateClientPrivilegesRequest

func NewUpdateClientPrivilegesRequest

func NewUpdateClientPrivilegesRequest(apiServerId int64, organizationId int64, userId int64, serviceId int64, clientId int64) *UpdateClientPrivilegesRequest

NewUpdateClientPrivilegesRequest instantiates a new UpdateClientPrivilegesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateClientPrivilegesRequestWithDefaults

func NewUpdateClientPrivilegesRequestWithDefaults() *UpdateClientPrivilegesRequest

NewUpdateClientPrivilegesRequestWithDefaults instantiates a new UpdateClientPrivilegesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateClientPrivilegesRequest) GetApiServerId

func (o *UpdateClientPrivilegesRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value

func (*UpdateClientPrivilegesRequest) GetApiServerIdOk

func (o *UpdateClientPrivilegesRequest) GetApiServerIdOk() (*int64, bool)

GetApiServerIdOk returns a tuple with the ApiServerId field value and a boolean to check if the value has been set.

func (*UpdateClientPrivilegesRequest) GetClientId

func (o *UpdateClientPrivilegesRequest) GetClientId() int64

GetClientId returns the ClientId field value

func (*UpdateClientPrivilegesRequest) GetClientIdOk

func (o *UpdateClientPrivilegesRequest) GetClientIdOk() (*int64, bool)

GetClientIdOk returns a tuple with the ClientId field value and a boolean to check if the value has been set.

func (*UpdateClientPrivilegesRequest) GetOrganizationId

func (o *UpdateClientPrivilegesRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*UpdateClientPrivilegesRequest) GetOrganizationIdOk

func (o *UpdateClientPrivilegesRequest) GetOrganizationIdOk() (*int64, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value and a boolean to check if the value has been set.

func (*UpdateClientPrivilegesRequest) GetPrivileges

func (o *UpdateClientPrivilegesRequest) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*UpdateClientPrivilegesRequest) GetPrivilegesOk

func (o *UpdateClientPrivilegesRequest) GetPrivilegesOk() ([]string, bool)

GetPrivilegesOk returns a tuple with the Privileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateClientPrivilegesRequest) GetServiceId

func (o *UpdateClientPrivilegesRequest) GetServiceId() int64

GetServiceId returns the ServiceId field value

func (*UpdateClientPrivilegesRequest) GetServiceIdOk

func (o *UpdateClientPrivilegesRequest) GetServiceIdOk() (*int64, bool)

GetServiceIdOk returns a tuple with the ServiceId field value and a boolean to check if the value has been set.

func (*UpdateClientPrivilegesRequest) GetUserId

func (o *UpdateClientPrivilegesRequest) GetUserId() int64

GetUserId returns the UserId field value

func (*UpdateClientPrivilegesRequest) GetUserIdOk

func (o *UpdateClientPrivilegesRequest) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value and a boolean to check if the value has been set.

func (*UpdateClientPrivilegesRequest) HasPrivileges

func (o *UpdateClientPrivilegesRequest) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (UpdateClientPrivilegesRequest) MarshalJSON

func (o UpdateClientPrivilegesRequest) MarshalJSON() ([]byte, error)

func (*UpdateClientPrivilegesRequest) SetApiServerId

func (o *UpdateClientPrivilegesRequest) SetApiServerId(v int64)

SetApiServerId sets field value

func (*UpdateClientPrivilegesRequest) SetClientId

func (o *UpdateClientPrivilegesRequest) SetClientId(v int64)

SetClientId sets field value

func (*UpdateClientPrivilegesRequest) SetOrganizationId

func (o *UpdateClientPrivilegesRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*UpdateClientPrivilegesRequest) SetPrivileges

func (o *UpdateClientPrivilegesRequest) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*UpdateClientPrivilegesRequest) SetServiceId

func (o *UpdateClientPrivilegesRequest) SetServiceId(v int64)

SetServiceId sets field value

func (*UpdateClientPrivilegesRequest) SetUserId

func (o *UpdateClientPrivilegesRequest) SetUserId(v int64)

SetUserId sets field value

type UpdateOrganizationPrivilegesRequest

type UpdateOrganizationPrivilegesRequest struct {
	OrganizationId         int64    `json:"organizationId"`
	UserId                 int64    `json:"userId"`
	Privileges             []string `json:"privileges,omitempty"`
	AllApiServerPrivileges []string `json:"allApiServerPrivileges,omitempty"`
	AllServicePrivileges   []string `json:"allServicePrivileges,omitempty"`
	AllClientPrivileges    []string `json:"allClientPrivileges,omitempty"`
}

UpdateOrganizationPrivilegesRequest struct for UpdateOrganizationPrivilegesRequest

func NewUpdateOrganizationPrivilegesRequest

func NewUpdateOrganizationPrivilegesRequest(organizationId int64, userId int64) *UpdateOrganizationPrivilegesRequest

NewUpdateOrganizationPrivilegesRequest instantiates a new UpdateOrganizationPrivilegesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateOrganizationPrivilegesRequestWithDefaults

func NewUpdateOrganizationPrivilegesRequestWithDefaults() *UpdateOrganizationPrivilegesRequest

NewUpdateOrganizationPrivilegesRequestWithDefaults instantiates a new UpdateOrganizationPrivilegesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateOrganizationPrivilegesRequest) GetAllApiServerPrivileges

func (o *UpdateOrganizationPrivilegesRequest) GetAllApiServerPrivileges() []string

GetAllApiServerPrivileges returns the AllApiServerPrivileges field value if set, zero value otherwise.

func (*UpdateOrganizationPrivilegesRequest) GetAllApiServerPrivilegesOk

func (o *UpdateOrganizationPrivilegesRequest) GetAllApiServerPrivilegesOk() ([]string, bool)

GetAllApiServerPrivilegesOk returns a tuple with the AllApiServerPrivileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateOrganizationPrivilegesRequest) GetAllClientPrivileges

func (o *UpdateOrganizationPrivilegesRequest) GetAllClientPrivileges() []string

GetAllClientPrivileges returns the AllClientPrivileges field value if set, zero value otherwise.

func (*UpdateOrganizationPrivilegesRequest) GetAllClientPrivilegesOk

func (o *UpdateOrganizationPrivilegesRequest) GetAllClientPrivilegesOk() ([]string, bool)

GetAllClientPrivilegesOk returns a tuple with the AllClientPrivileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateOrganizationPrivilegesRequest) GetAllServicePrivileges

func (o *UpdateOrganizationPrivilegesRequest) GetAllServicePrivileges() []string

GetAllServicePrivileges returns the AllServicePrivileges field value if set, zero value otherwise.

func (*UpdateOrganizationPrivilegesRequest) GetAllServicePrivilegesOk

func (o *UpdateOrganizationPrivilegesRequest) GetAllServicePrivilegesOk() ([]string, bool)

GetAllServicePrivilegesOk returns a tuple with the AllServicePrivileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateOrganizationPrivilegesRequest) GetOrganizationId

func (o *UpdateOrganizationPrivilegesRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*UpdateOrganizationPrivilegesRequest) GetOrganizationIdOk

func (o *UpdateOrganizationPrivilegesRequest) GetOrganizationIdOk() (*int64, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value and a boolean to check if the value has been set.

func (*UpdateOrganizationPrivilegesRequest) GetPrivileges

func (o *UpdateOrganizationPrivilegesRequest) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*UpdateOrganizationPrivilegesRequest) GetPrivilegesOk

func (o *UpdateOrganizationPrivilegesRequest) GetPrivilegesOk() ([]string, bool)

GetPrivilegesOk returns a tuple with the Privileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateOrganizationPrivilegesRequest) GetUserId

GetUserId returns the UserId field value

func (*UpdateOrganizationPrivilegesRequest) GetUserIdOk

func (o *UpdateOrganizationPrivilegesRequest) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value and a boolean to check if the value has been set.

func (*UpdateOrganizationPrivilegesRequest) HasAllApiServerPrivileges

func (o *UpdateOrganizationPrivilegesRequest) HasAllApiServerPrivileges() bool

HasAllApiServerPrivileges returns a boolean if a field has been set.

func (*UpdateOrganizationPrivilegesRequest) HasAllClientPrivileges

func (o *UpdateOrganizationPrivilegesRequest) HasAllClientPrivileges() bool

HasAllClientPrivileges returns a boolean if a field has been set.

func (*UpdateOrganizationPrivilegesRequest) HasAllServicePrivileges

func (o *UpdateOrganizationPrivilegesRequest) HasAllServicePrivileges() bool

HasAllServicePrivileges returns a boolean if a field has been set.

func (*UpdateOrganizationPrivilegesRequest) HasPrivileges

func (o *UpdateOrganizationPrivilegesRequest) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (UpdateOrganizationPrivilegesRequest) MarshalJSON

func (o UpdateOrganizationPrivilegesRequest) MarshalJSON() ([]byte, error)

func (*UpdateOrganizationPrivilegesRequest) SetAllApiServerPrivileges

func (o *UpdateOrganizationPrivilegesRequest) SetAllApiServerPrivileges(v []string)

SetAllApiServerPrivileges gets a reference to the given []string and assigns it to the AllApiServerPrivileges field.

func (*UpdateOrganizationPrivilegesRequest) SetAllClientPrivileges

func (o *UpdateOrganizationPrivilegesRequest) SetAllClientPrivileges(v []string)

SetAllClientPrivileges gets a reference to the given []string and assigns it to the AllClientPrivileges field.

func (*UpdateOrganizationPrivilegesRequest) SetAllServicePrivileges

func (o *UpdateOrganizationPrivilegesRequest) SetAllServicePrivileges(v []string)

SetAllServicePrivileges gets a reference to the given []string and assigns it to the AllServicePrivileges field.

func (*UpdateOrganizationPrivilegesRequest) SetOrganizationId

func (o *UpdateOrganizationPrivilegesRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*UpdateOrganizationPrivilegesRequest) SetPrivileges

func (o *UpdateOrganizationPrivilegesRequest) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*UpdateOrganizationPrivilegesRequest) SetUserId

SetUserId sets field value

type UpdateOrganizationRequest

type UpdateOrganizationRequest struct {
	Plan *string `json:"plan,omitempty"`
	Name string  `json:"name"`
}

UpdateOrganizationRequest struct for UpdateOrganizationRequest

func NewUpdateOrganizationRequest

func NewUpdateOrganizationRequest(name string) *UpdateOrganizationRequest

NewUpdateOrganizationRequest instantiates a new UpdateOrganizationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateOrganizationRequestWithDefaults

func NewUpdateOrganizationRequestWithDefaults() *UpdateOrganizationRequest

NewUpdateOrganizationRequestWithDefaults instantiates a new UpdateOrganizationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateOrganizationRequest) GetName

func (o *UpdateOrganizationRequest) GetName() string

GetName returns the Name field value

func (*UpdateOrganizationRequest) GetNameOk

func (o *UpdateOrganizationRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UpdateOrganizationRequest) GetPlan

func (o *UpdateOrganizationRequest) GetPlan() string

GetPlan returns the Plan field value if set, zero value otherwise.

func (*UpdateOrganizationRequest) GetPlanOk

func (o *UpdateOrganizationRequest) GetPlanOk() (*string, bool)

GetPlanOk returns a tuple with the Plan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateOrganizationRequest) HasPlan

func (o *UpdateOrganizationRequest) HasPlan() bool

HasPlan returns a boolean if a field has been set.

func (UpdateOrganizationRequest) MarshalJSON

func (o UpdateOrganizationRequest) MarshalJSON() ([]byte, error)

func (*UpdateOrganizationRequest) SetName

func (o *UpdateOrganizationRequest) SetName(v string)

SetName sets field value

func (*UpdateOrganizationRequest) SetPlan

func (o *UpdateOrganizationRequest) SetPlan(v string)

SetPlan gets a reference to the given string and assigns it to the Plan field.

type UpdateServicePrivilegesRequest

type UpdateServicePrivilegesRequest struct {
	ApiServerId         int64    `json:"apiServerId"`
	OrganizationId      int64    `json:"organizationId"`
	UserId              int64    `json:"userId"`
	ServiceId           int64    `json:"serviceId"`
	Privileges          []string `json:"privileges,omitempty"`
	AllClientPrivileges []string `json:"allClientPrivileges,omitempty"`
}

UpdateServicePrivilegesRequest struct for UpdateServicePrivilegesRequest

func NewUpdateServicePrivilegesRequest

func NewUpdateServicePrivilegesRequest(apiServerId int64, organizationId int64, userId int64, serviceId int64) *UpdateServicePrivilegesRequest

NewUpdateServicePrivilegesRequest instantiates a new UpdateServicePrivilegesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateServicePrivilegesRequestWithDefaults

func NewUpdateServicePrivilegesRequestWithDefaults() *UpdateServicePrivilegesRequest

NewUpdateServicePrivilegesRequestWithDefaults instantiates a new UpdateServicePrivilegesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateServicePrivilegesRequest) GetAllClientPrivileges

func (o *UpdateServicePrivilegesRequest) GetAllClientPrivileges() []string

GetAllClientPrivileges returns the AllClientPrivileges field value if set, zero value otherwise.

func (*UpdateServicePrivilegesRequest) GetAllClientPrivilegesOk

func (o *UpdateServicePrivilegesRequest) GetAllClientPrivilegesOk() ([]string, bool)

GetAllClientPrivilegesOk returns a tuple with the AllClientPrivileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateServicePrivilegesRequest) GetApiServerId

func (o *UpdateServicePrivilegesRequest) GetApiServerId() int64

GetApiServerId returns the ApiServerId field value

func (*UpdateServicePrivilegesRequest) GetApiServerIdOk

func (o *UpdateServicePrivilegesRequest) GetApiServerIdOk() (*int64, bool)

GetApiServerIdOk returns a tuple with the ApiServerId field value and a boolean to check if the value has been set.

func (*UpdateServicePrivilegesRequest) GetOrganizationId

func (o *UpdateServicePrivilegesRequest) GetOrganizationId() int64

GetOrganizationId returns the OrganizationId field value

func (*UpdateServicePrivilegesRequest) GetOrganizationIdOk

func (o *UpdateServicePrivilegesRequest) GetOrganizationIdOk() (*int64, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value and a boolean to check if the value has been set.

func (*UpdateServicePrivilegesRequest) GetPrivileges

func (o *UpdateServicePrivilegesRequest) GetPrivileges() []string

GetPrivileges returns the Privileges field value if set, zero value otherwise.

func (*UpdateServicePrivilegesRequest) GetPrivilegesOk

func (o *UpdateServicePrivilegesRequest) GetPrivilegesOk() ([]string, bool)

GetPrivilegesOk returns a tuple with the Privileges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateServicePrivilegesRequest) GetServiceId

func (o *UpdateServicePrivilegesRequest) GetServiceId() int64

GetServiceId returns the ServiceId field value

func (*UpdateServicePrivilegesRequest) GetServiceIdOk

func (o *UpdateServicePrivilegesRequest) GetServiceIdOk() (*int64, bool)

GetServiceIdOk returns a tuple with the ServiceId field value and a boolean to check if the value has been set.

func (*UpdateServicePrivilegesRequest) GetUserId

func (o *UpdateServicePrivilegesRequest) GetUserId() int64

GetUserId returns the UserId field value

func (*UpdateServicePrivilegesRequest) GetUserIdOk

func (o *UpdateServicePrivilegesRequest) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value and a boolean to check if the value has been set.

func (*UpdateServicePrivilegesRequest) HasAllClientPrivileges

func (o *UpdateServicePrivilegesRequest) HasAllClientPrivileges() bool

HasAllClientPrivileges returns a boolean if a field has been set.

func (*UpdateServicePrivilegesRequest) HasPrivileges

func (o *UpdateServicePrivilegesRequest) HasPrivileges() bool

HasPrivileges returns a boolean if a field has been set.

func (UpdateServicePrivilegesRequest) MarshalJSON

func (o UpdateServicePrivilegesRequest) MarshalJSON() ([]byte, error)

func (*UpdateServicePrivilegesRequest) SetAllClientPrivileges

func (o *UpdateServicePrivilegesRequest) SetAllClientPrivileges(v []string)

SetAllClientPrivileges gets a reference to the given []string and assigns it to the AllClientPrivileges field.

func (*UpdateServicePrivilegesRequest) SetApiServerId

func (o *UpdateServicePrivilegesRequest) SetApiServerId(v int64)

SetApiServerId sets field value

func (*UpdateServicePrivilegesRequest) SetOrganizationId

func (o *UpdateServicePrivilegesRequest) SetOrganizationId(v int64)

SetOrganizationId sets field value

func (*UpdateServicePrivilegesRequest) SetPrivileges

func (o *UpdateServicePrivilegesRequest) SetPrivileges(v []string)

SetPrivileges gets a reference to the given []string and assigns it to the Privileges field.

func (*UpdateServicePrivilegesRequest) SetServiceId

func (o *UpdateServicePrivilegesRequest) SetServiceId(v int64)

SetServiceId sets field value

func (*UpdateServicePrivilegesRequest) SetUserId

func (o *UpdateServicePrivilegesRequest) SetUserId(v int64)

SetUserId sets field value

type UpdateUserRequest

type UpdateUserRequest struct {
	Email      string  `json:"email"`
	GivenName  *string `json:"givenName,omitempty"`
	FamilyName *string `json:"familyName,omitempty"`
}

UpdateUserRequest struct for UpdateUserRequest

func NewUpdateUserRequest

func NewUpdateUserRequest(email string) *UpdateUserRequest

NewUpdateUserRequest instantiates a new UpdateUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateUserRequestWithDefaults

func NewUpdateUserRequestWithDefaults() *UpdateUserRequest

NewUpdateUserRequestWithDefaults instantiates a new UpdateUserRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateUserRequest) GetEmail

func (o *UpdateUserRequest) GetEmail() string

GetEmail returns the Email field value

func (*UpdateUserRequest) GetEmailOk

func (o *UpdateUserRequest) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*UpdateUserRequest) GetFamilyName

func (o *UpdateUserRequest) GetFamilyName() string

GetFamilyName returns the FamilyName field value if set, zero value otherwise.

func (*UpdateUserRequest) GetFamilyNameOk

func (o *UpdateUserRequest) GetFamilyNameOk() (*string, bool)

GetFamilyNameOk returns a tuple with the FamilyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUserRequest) GetGivenName

func (o *UpdateUserRequest) GetGivenName() string

GetGivenName returns the GivenName field value if set, zero value otherwise.

func (*UpdateUserRequest) GetGivenNameOk

func (o *UpdateUserRequest) GetGivenNameOk() (*string, bool)

GetGivenNameOk returns a tuple with the GivenName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUserRequest) HasFamilyName

func (o *UpdateUserRequest) HasFamilyName() bool

HasFamilyName returns a boolean if a field has been set.

func (*UpdateUserRequest) HasGivenName

func (o *UpdateUserRequest) HasGivenName() bool

HasGivenName returns a boolean if a field has been set.

func (UpdateUserRequest) MarshalJSON

func (o UpdateUserRequest) MarshalJSON() ([]byte, error)

func (*UpdateUserRequest) SetEmail

func (o *UpdateUserRequest) SetEmail(v string)

SetEmail sets field value

func (*UpdateUserRequest) SetFamilyName

func (o *UpdateUserRequest) SetFamilyName(v string)

SetFamilyName gets a reference to the given string and assigns it to the FamilyName field.

func (*UpdateUserRequest) SetGivenName

func (o *UpdateUserRequest) SetGivenName(v string)

SetGivenName gets a reference to the given string and assigns it to the GivenName field.

type UserApiApiService

type UserApiApiService service

UserApiApiService UserApiApi service

func (*UserApiApiService) BindTotpCredentials

func (a *UserApiApiService) BindTotpCredentials(ctx context.Context, id int64) ApiBindTotpCredentialsRequest

BindTotpCredentials Method for BindTotpCredentials

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiBindTotpCredentialsRequest

func (*UserApiApiService) BindTotpCredentialsExecute

func (a *UserApiApiService) BindTotpCredentialsExecute(r ApiBindTotpCredentialsRequest) (*http.Response, error)

Execute executes the request

func (*UserApiApiService) BindWebAuthnChallenge

func (a *UserApiApiService) BindWebAuthnChallenge(ctx context.Context, id int64) ApiBindWebAuthnChallengeRequest

BindWebAuthnChallenge Method for BindWebAuthnChallenge

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiBindWebAuthnChallengeRequest

func (*UserApiApiService) BindWebAuthnChallengeExecute

func (a *UserApiApiService) BindWebAuthnChallengeExecute(r ApiBindWebAuthnChallengeRequest) (string, *http.Response, error)

Execute executes the request

@return string

func (*UserApiApiService) CreateTotpCredentials

func (a *UserApiApiService) CreateTotpCredentials(ctx context.Context, id int64) ApiCreateTotpCredentialsRequest

CreateTotpCredentials Method for CreateTotpCredentials

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiCreateTotpCredentialsRequest

func (*UserApiApiService) CreateTotpCredentialsExecute

Execute executes the request

@return GoogleAuthenticatorKey

func (*UserApiApiService) CreateUser

CreateUser Method for CreateUser

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateUserRequest

func (*UserApiApiService) CreateUserExecute

Execute executes the request

@return CreateUserResponse

func (*UserApiApiService) CreateWebAuthnChallenge

func (a *UserApiApiService) CreateWebAuthnChallenge(ctx context.Context, id int64) ApiCreateWebAuthnChallengeRequest

CreateWebAuthnChallenge Method for CreateWebAuthnChallenge

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiCreateWebAuthnChallengeRequest

func (*UserApiApiService) CreateWebAuthnChallengeExecute

func (a *UserApiApiService) CreateWebAuthnChallengeExecute(r ApiCreateWebAuthnChallengeRequest) (*Challenge, *http.Response, error)

Execute executes the request

@return Challenge

func (*UserApiApiService) DeleteUser

DeleteUser Method for DeleteUser

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiDeleteUserRequest

func (*UserApiApiService) DeleteUserExecute

func (a *UserApiApiService) DeleteUserExecute(r ApiDeleteUserRequest) (*http.Response, error)

Execute executes the request

func (*UserApiApiService) SetAdmin

SetAdmin Method for SetAdmin

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiSetAdminRequest

func (*UserApiApiService) SetAdminExecute

Execute executes the request

@return AuthleteUser

func (*UserApiApiService) UnsetAdmin

UnsetAdmin Method for UnsetAdmin

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiUnsetAdminRequest

func (*UserApiApiService) UnsetAdminExecute

func (a *UserApiApiService) UnsetAdminExecute(r ApiUnsetAdminRequest) (*AuthleteUser, *http.Response, error)

Execute executes the request

@return AuthleteUser

func (*UserApiApiService) UpdateUser

UpdateUser Method for UpdateUser

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiUpdateUserRequest

func (*UserApiApiService) UpdateUserExecute

func (a *UserApiApiService) UpdateUserExecute(r ApiUpdateUserRequest) (*AuthleteUser, *http.Response, error)

Execute executes the request

@return AuthleteUser

type UserInfoEndpointApiService

type UserInfoEndpointApiService service

UserInfoEndpointApiService UserInfoEndpointApi service

func (*UserInfoEndpointApiService) UserInfo

UserInfo Method for UserInfo

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUserInfoRequest

func (*UserInfoEndpointApiService) UserInfoExecute

Execute executes the request

@return string

type UserServiceMembershipResponse

type UserServiceMembershipResponse struct {
	Organizations []OrganizationMembershipResponse `json:"organizations,omitempty"`
	UserId        *int64                           `json:"userId,omitempty"`
	Admin         *bool                            `json:"admin,omitempty"`
}

UserServiceMembershipResponse struct for UserServiceMembershipResponse

func NewUserServiceMembershipResponse

func NewUserServiceMembershipResponse() *UserServiceMembershipResponse

NewUserServiceMembershipResponse instantiates a new UserServiceMembershipResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserServiceMembershipResponseWithDefaults

func NewUserServiceMembershipResponseWithDefaults() *UserServiceMembershipResponse

NewUserServiceMembershipResponseWithDefaults instantiates a new UserServiceMembershipResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserServiceMembershipResponse) GetAdmin

func (o *UserServiceMembershipResponse) GetAdmin() bool

GetAdmin returns the Admin field value if set, zero value otherwise.

func (*UserServiceMembershipResponse) GetAdminOk

func (o *UserServiceMembershipResponse) GetAdminOk() (*bool, bool)

GetAdminOk returns a tuple with the Admin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserServiceMembershipResponse) GetOrganizations

GetOrganizations returns the Organizations field value if set, zero value otherwise.

func (*UserServiceMembershipResponse) GetOrganizationsOk

GetOrganizationsOk returns a tuple with the Organizations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserServiceMembershipResponse) GetUserId

func (o *UserServiceMembershipResponse) GetUserId() int64

GetUserId returns the UserId field value if set, zero value otherwise.

func (*UserServiceMembershipResponse) GetUserIdOk

func (o *UserServiceMembershipResponse) GetUserIdOk() (*int64, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserServiceMembershipResponse) HasAdmin

func (o *UserServiceMembershipResponse) HasAdmin() bool

HasAdmin returns a boolean if a field has been set.

func (*UserServiceMembershipResponse) HasOrganizations

func (o *UserServiceMembershipResponse) HasOrganizations() bool

HasOrganizations returns a boolean if a field has been set.

func (*UserServiceMembershipResponse) HasUserId

func (o *UserServiceMembershipResponse) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (UserServiceMembershipResponse) MarshalJSON

func (o UserServiceMembershipResponse) MarshalJSON() ([]byte, error)

func (*UserServiceMembershipResponse) SetAdmin

func (o *UserServiceMembershipResponse) SetAdmin(v bool)

SetAdmin gets a reference to the given bool and assigns it to the Admin field.

func (*UserServiceMembershipResponse) SetOrganizations

SetOrganizations gets a reference to the given []OrganizationMembershipResponse and assigns it to the Organizations field.

func (*UserServiceMembershipResponse) SetUserId

func (o *UserServiceMembershipResponse) SetUserId(v int64)

SetUserId gets a reference to the given int64 and assigns it to the UserId field.

type WebAuthnChallengeRequest

type WebAuthnChallengeRequest struct {
	Id                *string `json:"id,omitempty"`
	AttestationObject *string `json:"attestationObject,omitempty"`
	ClientData        *string `json:"clientData,omitempty"`
	Type              *string `json:"type,omitempty"`
	AuthenticatorData *string `json:"authenticatorData,omitempty"`
	Signature         *string `json:"signature,omitempty"`
}

WebAuthnChallengeRequest struct for WebAuthnChallengeRequest

func NewWebAuthnChallengeRequest

func NewWebAuthnChallengeRequest() *WebAuthnChallengeRequest

NewWebAuthnChallengeRequest instantiates a new WebAuthnChallengeRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebAuthnChallengeRequestWithDefaults

func NewWebAuthnChallengeRequestWithDefaults() *WebAuthnChallengeRequest

NewWebAuthnChallengeRequestWithDefaults instantiates a new WebAuthnChallengeRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebAuthnChallengeRequest) GetAttestationObject

func (o *WebAuthnChallengeRequest) GetAttestationObject() string

GetAttestationObject returns the AttestationObject field value if set, zero value otherwise.

func (*WebAuthnChallengeRequest) GetAttestationObjectOk

func (o *WebAuthnChallengeRequest) GetAttestationObjectOk() (*string, bool)

GetAttestationObjectOk returns a tuple with the AttestationObject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebAuthnChallengeRequest) GetAuthenticatorData

func (o *WebAuthnChallengeRequest) GetAuthenticatorData() string

GetAuthenticatorData returns the AuthenticatorData field value if set, zero value otherwise.

func (*WebAuthnChallengeRequest) GetAuthenticatorDataOk

func (o *WebAuthnChallengeRequest) GetAuthenticatorDataOk() (*string, bool)

GetAuthenticatorDataOk returns a tuple with the AuthenticatorData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebAuthnChallengeRequest) GetClientData

func (o *WebAuthnChallengeRequest) GetClientData() string

GetClientData returns the ClientData field value if set, zero value otherwise.

func (*WebAuthnChallengeRequest) GetClientDataOk

func (o *WebAuthnChallengeRequest) GetClientDataOk() (*string, bool)

GetClientDataOk returns a tuple with the ClientData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebAuthnChallengeRequest) GetId

func (o *WebAuthnChallengeRequest) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WebAuthnChallengeRequest) GetIdOk

func (o *WebAuthnChallengeRequest) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebAuthnChallengeRequest) GetSignature

func (o *WebAuthnChallengeRequest) GetSignature() string

GetSignature returns the Signature field value if set, zero value otherwise.

func (*WebAuthnChallengeRequest) GetSignatureOk

func (o *WebAuthnChallengeRequest) GetSignatureOk() (*string, bool)

GetSignatureOk returns a tuple with the Signature field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebAuthnChallengeRequest) GetType

func (o *WebAuthnChallengeRequest) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WebAuthnChallengeRequest) GetTypeOk

func (o *WebAuthnChallengeRequest) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebAuthnChallengeRequest) HasAttestationObject

func (o *WebAuthnChallengeRequest) HasAttestationObject() bool

HasAttestationObject returns a boolean if a field has been set.

func (*WebAuthnChallengeRequest) HasAuthenticatorData

func (o *WebAuthnChallengeRequest) HasAuthenticatorData() bool

HasAuthenticatorData returns a boolean if a field has been set.

func (*WebAuthnChallengeRequest) HasClientData

func (o *WebAuthnChallengeRequest) HasClientData() bool

HasClientData returns a boolean if a field has been set.

func (*WebAuthnChallengeRequest) HasId

func (o *WebAuthnChallengeRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*WebAuthnChallengeRequest) HasSignature

func (o *WebAuthnChallengeRequest) HasSignature() bool

HasSignature returns a boolean if a field has been set.

func (*WebAuthnChallengeRequest) HasType

func (o *WebAuthnChallengeRequest) HasType() bool

HasType returns a boolean if a field has been set.

func (WebAuthnChallengeRequest) MarshalJSON

func (o WebAuthnChallengeRequest) MarshalJSON() ([]byte, error)

func (*WebAuthnChallengeRequest) SetAttestationObject

func (o *WebAuthnChallengeRequest) SetAttestationObject(v string)

SetAttestationObject gets a reference to the given string and assigns it to the AttestationObject field.

func (*WebAuthnChallengeRequest) SetAuthenticatorData

func (o *WebAuthnChallengeRequest) SetAuthenticatorData(v string)

SetAuthenticatorData gets a reference to the given string and assigns it to the AuthenticatorData field.

func (*WebAuthnChallengeRequest) SetClientData

func (o *WebAuthnChallengeRequest) SetClientData(v string)

SetClientData gets a reference to the given string and assigns it to the ClientData field.

func (*WebAuthnChallengeRequest) SetId

func (o *WebAuthnChallengeRequest) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WebAuthnChallengeRequest) SetSignature

func (o *WebAuthnChallengeRequest) SetSignature(v string)

SetSignature gets a reference to the given string and assigns it to the Signature field.

func (*WebAuthnChallengeRequest) SetType

func (o *WebAuthnChallengeRequest) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type WebAuthnChallengeResponse

type WebAuthnChallengeResponse struct {
	Challenge      *Challenge `json:"challenge,omitempty"`
	Authenticators []string   `json:"authenticators,omitempty"`
}

WebAuthnChallengeResponse struct for WebAuthnChallengeResponse

func NewWebAuthnChallengeResponse

func NewWebAuthnChallengeResponse() *WebAuthnChallengeResponse

NewWebAuthnChallengeResponse instantiates a new WebAuthnChallengeResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebAuthnChallengeResponseWithDefaults

func NewWebAuthnChallengeResponseWithDefaults() *WebAuthnChallengeResponse

NewWebAuthnChallengeResponseWithDefaults instantiates a new WebAuthnChallengeResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebAuthnChallengeResponse) GetAuthenticators

func (o *WebAuthnChallengeResponse) GetAuthenticators() []string

GetAuthenticators returns the Authenticators field value if set, zero value otherwise.

func (*WebAuthnChallengeResponse) GetAuthenticatorsOk

func (o *WebAuthnChallengeResponse) GetAuthenticatorsOk() ([]string, bool)

GetAuthenticatorsOk returns a tuple with the Authenticators field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebAuthnChallengeResponse) GetChallenge

func (o *WebAuthnChallengeResponse) GetChallenge() Challenge

GetChallenge returns the Challenge field value if set, zero value otherwise.

func (*WebAuthnChallengeResponse) GetChallengeOk

func (o *WebAuthnChallengeResponse) GetChallengeOk() (*Challenge, bool)

GetChallengeOk returns a tuple with the Challenge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebAuthnChallengeResponse) HasAuthenticators

func (o *WebAuthnChallengeResponse) HasAuthenticators() bool

HasAuthenticators returns a boolean if a field has been set.

func (*WebAuthnChallengeResponse) HasChallenge

func (o *WebAuthnChallengeResponse) HasChallenge() bool

HasChallenge returns a boolean if a field has been set.

func (WebAuthnChallengeResponse) MarshalJSON

func (o WebAuthnChallengeResponse) MarshalJSON() ([]byte, error)

func (*WebAuthnChallengeResponse) SetAuthenticators

func (o *WebAuthnChallengeResponse) SetAuthenticators(v []string)

SetAuthenticators gets a reference to the given []string and assigns it to the Authenticators field.

func (*WebAuthnChallengeResponse) SetChallenge

func (o *WebAuthnChallengeResponse) SetChallenge(v Challenge)

SetChallenge gets a reference to the given Challenge and assigns it to the Challenge field.

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL