Name | Type | Description | Notes |
---|---|---|---|
AccessTokenIdentifier | Pointer to string | The identifier of an access token to revoke The hash of an access token is recognized as an identifier as well as the access token itself. | [optional] |
RefreshTokenIdentifier | Pointer to string | The identifier of a refresh token to revoke. The hash of a refresh token is recognized as an identifier as well as the refresh token itself. | [optional] |
ClientIdentifier | Pointer to string | The client ID of the access token to be revoked. Both the numeric client ID and the alias are recognized as an identifier of a client. | [optional] |
Subject | Pointer to string | The subject of a resource owner. | [optional] |
func NewTokenRevokeRequest() *TokenRevokeRequest
NewTokenRevokeRequest instantiates a new TokenRevokeRequest 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 NewTokenRevokeRequestWithDefaults() *TokenRevokeRequest
NewTokenRevokeRequestWithDefaults instantiates a new TokenRevokeRequest 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 *TokenRevokeRequest) GetAccessTokenIdentifier() string
GetAccessTokenIdentifier returns the AccessTokenIdentifier field if non-nil, zero value otherwise.
func (o *TokenRevokeRequest) GetAccessTokenIdentifierOk() (*string, bool)
GetAccessTokenIdentifierOk returns a tuple with the AccessTokenIdentifier field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenRevokeRequest) SetAccessTokenIdentifier(v string)
SetAccessTokenIdentifier sets AccessTokenIdentifier field to given value.
func (o *TokenRevokeRequest) HasAccessTokenIdentifier() bool
HasAccessTokenIdentifier returns a boolean if a field has been set.
func (o *TokenRevokeRequest) GetRefreshTokenIdentifier() string
GetRefreshTokenIdentifier returns the RefreshTokenIdentifier field if non-nil, zero value otherwise.
func (o *TokenRevokeRequest) GetRefreshTokenIdentifierOk() (*string, bool)
GetRefreshTokenIdentifierOk returns a tuple with the RefreshTokenIdentifier field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenRevokeRequest) SetRefreshTokenIdentifier(v string)
SetRefreshTokenIdentifier sets RefreshTokenIdentifier field to given value.
func (o *TokenRevokeRequest) HasRefreshTokenIdentifier() bool
HasRefreshTokenIdentifier returns a boolean if a field has been set.
func (o *TokenRevokeRequest) GetClientIdentifier() string
GetClientIdentifier returns the ClientIdentifier field if non-nil, zero value otherwise.
func (o *TokenRevokeRequest) GetClientIdentifierOk() (*string, bool)
GetClientIdentifierOk returns a tuple with the ClientIdentifier field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TokenRevokeRequest) SetClientIdentifier(v string)
SetClientIdentifier sets ClientIdentifier field to given value.
func (o *TokenRevokeRequest) HasClientIdentifier() bool
HasClientIdentifier returns a boolean if a field has been set.
func (o *TokenRevokeRequest) GetSubject() string
GetSubject returns the Subject field if non-nil, zero value otherwise.
func (o *TokenRevokeRequest) 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 *TokenRevokeRequest) SetSubject(v string)
SetSubject sets Subject field to given value.
func (o *TokenRevokeRequest) HasSubject() bool
HasSubject returns a boolean if a field has been set.