Name | Type | Description | Notes |
---|---|---|---|
Ticket | string | The ticket issued from Authlete `/auth/authorization` API. | |
Subject | string | The subject (= a user account managed by the service) who has granted authorization to the client application. | |
AuthTime | Pointer to int64 | The time when the authentication of the end-user occurred. Its value is the number of seconds from `1970-01-01`. | [optional] |
Acr | Pointer to string | The Authentication Context Class Reference performed for the end-user authentication. | [optional] |
Claims | Pointer to string | The claims of the end-user (= pieces of information about the end-user) in JSON format. See OpenID Connect Core 1.0, 5.1. Standard Claims for details about the format. | [optional] |
Properties | Pointer to []Property | Extra properties to associate with an access token and/or an authorization code. | [optional] |
Scopes | Pointer to []string | Scopes to associate with an access token and/or an authorization code. If a non-empty string array is given, it replaces the scopes specified by the original authorization request. | [optional] |
Sub | Pointer to string | The value of the `sub` claim to embed in an ID token. If this request parameter is `null` or empty, the value of the `subject` request parameter is used as the value of the `sub` claim. | [optional] |
IdtHeaderParams | Pointer to string | JSON that represents additional JWS header parameters for ID tokens that may be issued based on the authorization request. | [optional] |
ClaimsForTx | Pointer to string | Claim key-value pairs that are used to compute transformed claims. | [optional] |
ConsentedClaims | Pointer to []string | the claims that the user has consented for the client application to know. | [optional] |
AuthorizationDetails | Pointer to AuthzDetails | [optional] | |
JwtAtClaims | Pointer to string | Additional claims that are added to the payload part of the JWT access token. | [optional] |
AccessToken | Pointer to string | The representation of an access token that may be issued as a result of the Authlete API call. | [optional] |
func NewAuthorizationIssueRequest(ticket string, subject string, ) *AuthorizationIssueRequest
NewAuthorizationIssueRequest instantiates a new AuthorizationIssueRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewAuthorizationIssueRequestWithDefaults() *AuthorizationIssueRequest
NewAuthorizationIssueRequestWithDefaults instantiates a new AuthorizationIssueRequest object This constructor 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 *AuthorizationIssueRequest) GetTicket() string
GetTicket returns the Ticket field if non-nil, zero value otherwise.
func (o *AuthorizationIssueRequest) GetTicketOk() (*string, bool)
GetTicketOk returns a tuple with the Ticket field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AuthorizationIssueRequest) SetTicket(v string)
SetTicket sets Ticket field to given value.
func (o *AuthorizationIssueRequest) GetSubject() string
GetSubject returns the Subject field if non-nil, zero value otherwise.
func (o *AuthorizationIssueRequest) 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 *AuthorizationIssueRequest) SetSubject(v string)
SetSubject sets Subject field to given value.
func (o *AuthorizationIssueRequest) GetAuthTime() int64
GetAuthTime returns the AuthTime field if non-nil, zero value otherwise.
func (o *AuthorizationIssueRequest) GetAuthTimeOk() (*int64, bool)
GetAuthTimeOk returns a tuple with the AuthTime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AuthorizationIssueRequest) SetAuthTime(v int64)
SetAuthTime sets AuthTime field to given value.
func (o *AuthorizationIssueRequest) HasAuthTime() bool
HasAuthTime returns a boolean if a field has been set.
func (o *AuthorizationIssueRequest) GetAcr() string
GetAcr returns the Acr field if non-nil, zero value otherwise.
func (o *AuthorizationIssueRequest) GetAcrOk() (*string, bool)
GetAcrOk returns a tuple with the Acr field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AuthorizationIssueRequest) SetAcr(v string)
SetAcr sets Acr field to given value.
func (o *AuthorizationIssueRequest) HasAcr() bool
HasAcr returns a boolean if a field has been set.
func (o *AuthorizationIssueRequest) GetClaims() string
GetClaims returns the Claims field if non-nil, zero value otherwise.
func (o *AuthorizationIssueRequest) GetClaimsOk() (*string, bool)
GetClaimsOk returns a tuple with the Claims field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AuthorizationIssueRequest) SetClaims(v string)
SetClaims sets Claims field to given value.
func (o *AuthorizationIssueRequest) HasClaims() bool
HasClaims returns a boolean if a field has been set.
func (o *AuthorizationIssueRequest) GetProperties() []Property
GetProperties returns the Properties field if non-nil, zero value otherwise.
func (o *AuthorizationIssueRequest) 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 *AuthorizationIssueRequest) SetProperties(v []Property)
SetProperties sets Properties field to given value.
func (o *AuthorizationIssueRequest) HasProperties() bool
HasProperties returns a boolean if a field has been set.
func (o *AuthorizationIssueRequest) GetScopes() []string
GetScopes returns the Scopes field if non-nil, zero value otherwise.
func (o *AuthorizationIssueRequest) 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 *AuthorizationIssueRequest) SetScopes(v []string)
SetScopes sets Scopes field to given value.
func (o *AuthorizationIssueRequest) HasScopes() bool
HasScopes returns a boolean if a field has been set.
func (o *AuthorizationIssueRequest) GetSub() string
GetSub returns the Sub field if non-nil, zero value otherwise.
func (o *AuthorizationIssueRequest) GetSubOk() (*string, bool)
GetSubOk returns a tuple with the Sub field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AuthorizationIssueRequest) SetSub(v string)
SetSub sets Sub field to given value.
func (o *AuthorizationIssueRequest) HasSub() bool
HasSub returns a boolean if a field has been set.
func (o *AuthorizationIssueRequest) GetIdtHeaderParams() string
GetIdtHeaderParams returns the IdtHeaderParams field if non-nil, zero value otherwise.
func (o *AuthorizationIssueRequest) GetIdtHeaderParamsOk() (*string, bool)
GetIdtHeaderParamsOk returns a tuple with the IdtHeaderParams field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AuthorizationIssueRequest) SetIdtHeaderParams(v string)
SetIdtHeaderParams sets IdtHeaderParams field to given value.
func (o *AuthorizationIssueRequest) HasIdtHeaderParams() bool
HasIdtHeaderParams returns a boolean if a field has been set.
func (o *AuthorizationIssueRequest) GetClaimsForTx() string
GetClaimsForTx returns the ClaimsForTx field if non-nil, zero value otherwise.
func (o *AuthorizationIssueRequest) GetClaimsForTxOk() (*string, bool)
GetClaimsForTxOk returns a tuple with the ClaimsForTx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AuthorizationIssueRequest) SetClaimsForTx(v string)
SetClaimsForTx sets ClaimsForTx field to given value.
func (o *AuthorizationIssueRequest) HasClaimsForTx() bool
HasClaimsForTx returns a boolean if a field has been set.
func (o *AuthorizationIssueRequest) GetConsentedClaims() []string
GetConsentedClaims returns the ConsentedClaims field if non-nil, zero value otherwise.
func (o *AuthorizationIssueRequest) GetConsentedClaimsOk() (*[]string, bool)
GetConsentedClaimsOk returns a tuple with the ConsentedClaims field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AuthorizationIssueRequest) SetConsentedClaims(v []string)
SetConsentedClaims sets ConsentedClaims field to given value.
func (o *AuthorizationIssueRequest) HasConsentedClaims() bool
HasConsentedClaims returns a boolean if a field has been set.
func (o *AuthorizationIssueRequest) GetAuthorizationDetails() AuthzDetails
GetAuthorizationDetails returns the AuthorizationDetails field if non-nil, zero value otherwise.
func (o *AuthorizationIssueRequest) 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 *AuthorizationIssueRequest) SetAuthorizationDetails(v AuthzDetails)
SetAuthorizationDetails sets AuthorizationDetails field to given value.
func (o *AuthorizationIssueRequest) HasAuthorizationDetails() bool
HasAuthorizationDetails returns a boolean if a field has been set.
func (o *AuthorizationIssueRequest) GetJwtAtClaims() string
GetJwtAtClaims returns the JwtAtClaims field if non-nil, zero value otherwise.
func (o *AuthorizationIssueRequest) GetJwtAtClaimsOk() (*string, bool)
GetJwtAtClaimsOk returns a tuple with the JwtAtClaims field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AuthorizationIssueRequest) SetJwtAtClaims(v string)
SetJwtAtClaims sets JwtAtClaims field to given value.
func (o *AuthorizationIssueRequest) HasJwtAtClaims() bool
HasJwtAtClaims returns a boolean if a field has been set.
func (o *AuthorizationIssueRequest) GetAccessToken() string
GetAccessToken returns the AccessToken field if non-nil, zero value otherwise.
func (o *AuthorizationIssueRequest) 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 *AuthorizationIssueRequest) SetAccessToken(v string)
SetAccessToken sets AccessToken field to given value.
func (o *AuthorizationIssueRequest) HasAccessToken() bool
HasAccessToken returns a boolean if a field has been set.