Name | Type | Description | Notes |
---|---|---|---|
ResultCode | Pointer to string | The code which represents the result of the API call. | [optional] |
ResultMessage | Pointer to string | A short message which explains the result of the API call. | [optional] |
Action | Pointer to string | The next action that the authorization server implementation should take. | [optional] |
ResponseContent | Pointer to string | The content that the authorization server implementation is to return to the client application. Its format is JSON. | [optional] |
AccessToken | Pointer to string | The newly issued access token. This parameter is a non-null value only when the value of `action` parameter is `OK`. | [optional] |
AccessTokenExpiresAt | Pointer to int64 | The datetime at which the newly issued access token will expire. The value is represented in milliseconds since the Unix epoch (1970-01-01). | [optional] |
AccessTokenDuration | Pointer to int64 | The duration of the newly issued access token in seconds. | [optional] |
RefreshToken | Pointer to string | The refresh token. This parameter is a non-null value only when `action` is `OK` and the service supports the refresh token flow. If `refreshTokenKept` is set to `false`, a new refresh token is issued and the old refresh token used in the refresh token flow is invalidated. On the contrary, if `refreshTokenKept` is set to `true`, the refresh token itself is not refreshed. | [optional] |
RefreshTokenExpiresAt | Pointer to int64 | The datetime at which the newly issued refresh token will expire. The value is represented in milliseconds since the Unix epoch (1970-01-01). | [optional] |
RefreshTokenDuration | Pointer to int64 | The duration of the newly issued refresh token in seconds. | [optional] |
ClientId | Pointer to int64 | The client ID. | [optional] |
ClientIdAlias | Pointer to string | The client ID alias. If the client did not have an alias, this parameter is `null`. | [optional] |
ClientIdAliasUsed | Pointer to bool | The flag which indicates whether the client ID alias was used when the token request was made. `true` if the client ID alias was used when the token request was made. | [optional] |
Subject | Pointer to string | The subject (= resource owner's ID) of the access token. Even if an access token has been issued by calling `/api/auth/token` API, this parameter is `null` if the flow of the token request was Client Credentials Flow (`grant_type=client_credentials`) because it means the access token is not associated with any specific end-user. | [optional] |
Scopes | Pointer to []string | The scopes covered by the access token. | [optional] |
Properties | Pointer to []Property | The extra properties associated with the access token. This parameter is `null` when no extra property is associated with the issued access token. | [optional] |
JwtAccessToken | Pointer to string | The newly issued access token in JWT format. If the authorization server is configured to issue JWT-based access tokens (= if the service's `accessTokenSignAlg` value is a non-null value), a JWT-based access token is issued along with the original random-string one. | [optional] |
AccessTokenResources | Pointer to []string | The target resources of the access token being issued. See "Resource Indicators for OAuth 2.0" for details. | [optional] |
AuthorizationDetails | Pointer to AuthzDetails | [optional] | |
ServiceAttributes | Pointer to []Pair | The attributes of this service that the client application belongs to. | [optional] |
ClientAttributes | Pointer to []Pair | The attributes of the client. | [optional] |
ClientEntityId | Pointer to string | The entity ID of the client. | [optional] |
ClientEntityIdUsed | Pointer to bool | Flag which indicates whether the entity ID of the client was used when the request for the access token was made. | [optional] |
func NewTokenIssueResponse() *TokenIssueResponse
NewTokenIssueResponse instantiates a new TokenIssueResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewTokenIssueResponseWithDefaults() *TokenIssueResponse
NewTokenIssueResponseWithDefaults instantiates a new TokenIssueResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *TokenIssueResponse) GetResultCode() string
GetResultCode returns the ResultCode field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetResultCodeOk() (*string, bool)
GetResultCodeOk returns a tuple with the ResultCode field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetResultCode(v string)
SetResultCode sets ResultCode field to given value.
func (o *TokenIssueResponse) HasResultCode() bool
HasResultCode returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetResultMessage() string
GetResultMessage returns the ResultMessage field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetResultMessageOk() (*string, bool)
GetResultMessageOk returns a tuple with the ResultMessage field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetResultMessage(v string)
SetResultMessage sets ResultMessage field to given value.
func (o *TokenIssueResponse) HasResultMessage() bool
HasResultMessage returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetAction() string
GetAction returns the Action field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetActionOk() (*string, bool)
GetActionOk returns a tuple with the Action field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetAction(v string)
SetAction sets Action field to given value.
func (o *TokenIssueResponse) HasAction() bool
HasAction returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetResponseContent() string
GetResponseContent returns the ResponseContent field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetResponseContentOk() (*string, bool)
GetResponseContentOk returns a tuple with the ResponseContent field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetResponseContent(v string)
SetResponseContent sets ResponseContent field to given value.
func (o *TokenIssueResponse) HasResponseContent() bool
HasResponseContent returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetAccessToken() string
GetAccessToken returns the AccessToken field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetAccessTokenOk() (*string, bool)
GetAccessTokenOk returns a tuple with the AccessToken field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetAccessToken(v string)
SetAccessToken sets AccessToken field to given value.
func (o *TokenIssueResponse) HasAccessToken() bool
HasAccessToken returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetAccessTokenExpiresAt() int64
GetAccessTokenExpiresAt returns the AccessTokenExpiresAt field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetAccessTokenExpiresAtOk() (*int64, bool)
GetAccessTokenExpiresAtOk returns a tuple with the AccessTokenExpiresAt field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetAccessTokenExpiresAt(v int64)
SetAccessTokenExpiresAt sets AccessTokenExpiresAt field to given value.
func (o *TokenIssueResponse) HasAccessTokenExpiresAt() bool
HasAccessTokenExpiresAt returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetAccessTokenDuration() int64
GetAccessTokenDuration returns the AccessTokenDuration field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetAccessTokenDurationOk() (*int64, bool)
GetAccessTokenDurationOk returns a tuple with the AccessTokenDuration field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetAccessTokenDuration(v int64)
SetAccessTokenDuration sets AccessTokenDuration field to given value.
func (o *TokenIssueResponse) HasAccessTokenDuration() bool
HasAccessTokenDuration returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetRefreshToken() string
GetRefreshToken returns the RefreshToken field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetRefreshTokenOk() (*string, bool)
GetRefreshTokenOk returns a tuple with the RefreshToken field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetRefreshToken(v string)
SetRefreshToken sets RefreshToken field to given value.
func (o *TokenIssueResponse) HasRefreshToken() bool
HasRefreshToken returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetRefreshTokenExpiresAt() int64
GetRefreshTokenExpiresAt returns the RefreshTokenExpiresAt field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetRefreshTokenExpiresAtOk() (*int64, bool)
GetRefreshTokenExpiresAtOk returns a tuple with the RefreshTokenExpiresAt field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetRefreshTokenExpiresAt(v int64)
SetRefreshTokenExpiresAt sets RefreshTokenExpiresAt field to given value.
func (o *TokenIssueResponse) HasRefreshTokenExpiresAt() bool
HasRefreshTokenExpiresAt returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetRefreshTokenDuration() int64
GetRefreshTokenDuration returns the RefreshTokenDuration field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetRefreshTokenDurationOk() (*int64, bool)
GetRefreshTokenDurationOk returns a tuple with the RefreshTokenDuration field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetRefreshTokenDuration(v int64)
SetRefreshTokenDuration sets RefreshTokenDuration field to given value.
func (o *TokenIssueResponse) HasRefreshTokenDuration() bool
HasRefreshTokenDuration returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetClientId() int64
GetClientId returns the ClientId field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetClientIdOk() (*int64, bool)
GetClientIdOk returns a tuple with the ClientId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetClientId(v int64)
SetClientId sets ClientId field to given value.
func (o *TokenIssueResponse) HasClientId() bool
HasClientId returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetClientIdAlias() string
GetClientIdAlias returns the ClientIdAlias field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetClientIdAliasOk() (*string, bool)
GetClientIdAliasOk returns a tuple with the ClientIdAlias field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetClientIdAlias(v string)
SetClientIdAlias sets ClientIdAlias field to given value.
func (o *TokenIssueResponse) HasClientIdAlias() bool
HasClientIdAlias returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetClientIdAliasUsed() bool
GetClientIdAliasUsed returns the ClientIdAliasUsed field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetClientIdAliasUsedOk() (*bool, bool)
GetClientIdAliasUsedOk returns a tuple with the ClientIdAliasUsed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetClientIdAliasUsed(v bool)
SetClientIdAliasUsed sets ClientIdAliasUsed field to given value.
func (o *TokenIssueResponse) HasClientIdAliasUsed() bool
HasClientIdAliasUsed returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetSubject() string
GetSubject returns the Subject field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetSubjectOk() (*string, bool)
GetSubjectOk returns a tuple with the Subject field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetSubject(v string)
SetSubject sets Subject field to given value.
func (o *TokenIssueResponse) HasSubject() bool
HasSubject returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetScopes() []string
GetScopes returns the Scopes field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetScopesOk() (*[]string, bool)
GetScopesOk returns a tuple with the Scopes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetScopes(v []string)
SetScopes sets Scopes field to given value.
func (o *TokenIssueResponse) HasScopes() bool
HasScopes returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetProperties() []Property
GetProperties returns the Properties field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetPropertiesOk() (*[]Property, bool)
GetPropertiesOk returns a tuple with the Properties field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetProperties(v []Property)
SetProperties sets Properties field to given value.
func (o *TokenIssueResponse) HasProperties() bool
HasProperties returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetJwtAccessToken() string
GetJwtAccessToken returns the JwtAccessToken field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetJwtAccessTokenOk() (*string, bool)
GetJwtAccessTokenOk returns a tuple with the JwtAccessToken field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetJwtAccessToken(v string)
SetJwtAccessToken sets JwtAccessToken field to given value.
func (o *TokenIssueResponse) HasJwtAccessToken() bool
HasJwtAccessToken returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetAccessTokenResources() []string
GetAccessTokenResources returns the AccessTokenResources field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetAccessTokenResourcesOk() (*[]string, bool)
GetAccessTokenResourcesOk returns a tuple with the AccessTokenResources field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetAccessTokenResources(v []string)
SetAccessTokenResources sets AccessTokenResources field to given value.
func (o *TokenIssueResponse) HasAccessTokenResources() bool
HasAccessTokenResources returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetAuthorizationDetails() AuthzDetails
GetAuthorizationDetails returns the AuthorizationDetails field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetAuthorizationDetailsOk() (*AuthzDetails, bool)
GetAuthorizationDetailsOk returns a tuple with the AuthorizationDetails field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetAuthorizationDetails(v AuthzDetails)
SetAuthorizationDetails sets AuthorizationDetails field to given value.
func (o *TokenIssueResponse) HasAuthorizationDetails() bool
HasAuthorizationDetails returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetServiceAttributes() []Pair
GetServiceAttributes returns the ServiceAttributes field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetServiceAttributesOk() (*[]Pair, bool)
GetServiceAttributesOk returns a tuple with the ServiceAttributes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetServiceAttributes(v []Pair)
SetServiceAttributes sets ServiceAttributes field to given value.
func (o *TokenIssueResponse) HasServiceAttributes() bool
HasServiceAttributes returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetClientAttributes() []Pair
GetClientAttributes returns the ClientAttributes field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetClientAttributesOk() (*[]Pair, bool)
GetClientAttributesOk returns a tuple with the ClientAttributes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetClientAttributes(v []Pair)
SetClientAttributes sets ClientAttributes field to given value.
func (o *TokenIssueResponse) HasClientAttributes() bool
HasClientAttributes returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetClientEntityId() string
GetClientEntityId returns the ClientEntityId field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetClientEntityIdOk() (*string, bool)
GetClientEntityIdOk returns a tuple with the ClientEntityId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetClientEntityId(v string)
SetClientEntityId sets ClientEntityId field to given value.
func (o *TokenIssueResponse) HasClientEntityId() bool
HasClientEntityId returns a boolean if a field has been set.
func (o *TokenIssueResponse) GetClientEntityIdUsed() bool
GetClientEntityIdUsed returns the ClientEntityIdUsed field if non-nil, zero value otherwise.
func (o *TokenIssueResponse) GetClientEntityIdUsedOk() (*bool, bool)
GetClientEntityIdUsedOk returns a tuple with the ClientEntityIdUsed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenIssueResponse) SetClientEntityIdUsed(v bool)
SetClientEntityIdUsed sets ClientEntityIdUsed field to given value.
func (o *TokenIssueResponse) HasClientEntityIdUsed() bool
HasClientEntityIdUsed returns a boolean if a field has been set.