Name | Type | Description | Notes |
---|---|---|---|
Ticket | string | The ticket issued from Authlete `/auth/token` API. | |
Subject | string | The subject (= unique identifier) of the authenticated user. | |
Properties | Pointer to []Property | Extra properties to associate with a newly created access token. Note that properties parameter is accepted only when `Content-Type` of the request is `application/json`, so don't use `application/x-www-form-urlencoded` if you want to specify properties. | [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 NewTokenIssueRequest(ticket string, subject string, ) *TokenIssueRequest
NewTokenIssueRequest instantiates a new TokenIssueRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewTokenIssueRequestWithDefaults() *TokenIssueRequest
NewTokenIssueRequestWithDefaults instantiates a new TokenIssueRequest object This constructor 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 *TokenIssueRequest) GetTicket() string
GetTicket returns the Ticket field if non-nil, zero value otherwise.
func (o *TokenIssueRequest) 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 *TokenIssueRequest) SetTicket(v string)
SetTicket sets Ticket field to given value.
func (o *TokenIssueRequest) GetSubject() string
GetSubject returns the Subject field if non-nil, zero value otherwise.
func (o *TokenIssueRequest) 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 *TokenIssueRequest) SetSubject(v string)
SetSubject sets Subject field to given value.
func (o *TokenIssueRequest) GetProperties() []Property
GetProperties returns the Properties field if non-nil, zero value otherwise.
func (o *TokenIssueRequest) 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 *TokenIssueRequest) SetProperties(v []Property)
SetProperties sets Properties field to given value.
func (o *TokenIssueRequest) HasProperties() bool
HasProperties returns a boolean if a field has been set.
func (o *TokenIssueRequest) GetJwtAtClaims() string
GetJwtAtClaims returns the JwtAtClaims field if non-nil, zero value otherwise.
func (o *TokenIssueRequest) 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 *TokenIssueRequest) SetJwtAtClaims(v string)
SetJwtAtClaims sets JwtAtClaims field to given value.
func (o *TokenIssueRequest) HasJwtAtClaims() bool
HasJwtAtClaims returns a boolean if a field has been set.
func (o *TokenIssueRequest) GetAccessToken() string
GetAccessToken returns the AccessToken field if non-nil, zero value otherwise.
func (o *TokenIssueRequest) 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 *TokenIssueRequest) SetAccessToken(v string)
SetAccessToken sets AccessToken field to given value.
func (o *TokenIssueRequest) HasAccessToken() bool
HasAccessToken returns a boolean if a field has been set.