Skip to content

Latest commit

 

History

History
176 lines (95 loc) · 4.89 KB

UidRevokeToken.md

File metadata and controls

176 lines (95 loc) · 4.89 KB

UidRevokeToken

Properties

Name Type Description Notes
AuthMethodName Pointer to string The universal identity auth method name [optional]
Json Pointer to bool Set output format to JSON [optional]
RevokeToken string the universal identity token/token-id to revoke
RevokeType string revokeSelf/revokeAll (delete only this token/this token and his children)
Token Pointer to string Authentication token (see `/auth` and `/configure`) [optional]
UidToken Pointer to string The universal identity token, Required only for universal_identity authentication [optional]

Methods

NewUidRevokeToken

func NewUidRevokeToken(revokeToken string, revokeType string, ) *UidRevokeToken

NewUidRevokeToken instantiates a new UidRevokeToken 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

NewUidRevokeTokenWithDefaults

func NewUidRevokeTokenWithDefaults() *UidRevokeToken

NewUidRevokeTokenWithDefaults instantiates a new UidRevokeToken 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

GetAuthMethodName

func (o *UidRevokeToken) GetAuthMethodName() string

GetAuthMethodName returns the AuthMethodName field if non-nil, zero value otherwise.

GetAuthMethodNameOk

func (o *UidRevokeToken) GetAuthMethodNameOk() (*string, bool)

GetAuthMethodNameOk returns a tuple with the AuthMethodName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetAuthMethodName

func (o *UidRevokeToken) SetAuthMethodName(v string)

SetAuthMethodName sets AuthMethodName field to given value.

HasAuthMethodName

func (o *UidRevokeToken) HasAuthMethodName() bool

HasAuthMethodName returns a boolean if a field has been set.

GetJson

func (o *UidRevokeToken) GetJson() bool

GetJson returns the Json field if non-nil, zero value otherwise.

GetJsonOk

func (o *UidRevokeToken) GetJsonOk() (*bool, bool)

GetJsonOk returns a tuple with the Json field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetJson

func (o *UidRevokeToken) SetJson(v bool)

SetJson sets Json field to given value.

HasJson

func (o *UidRevokeToken) HasJson() bool

HasJson returns a boolean if a field has been set.

GetRevokeToken

func (o *UidRevokeToken) GetRevokeToken() string

GetRevokeToken returns the RevokeToken field if non-nil, zero value otherwise.

GetRevokeTokenOk

func (o *UidRevokeToken) GetRevokeTokenOk() (*string, bool)

GetRevokeTokenOk returns a tuple with the RevokeToken field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetRevokeToken

func (o *UidRevokeToken) SetRevokeToken(v string)

SetRevokeToken sets RevokeToken field to given value.

GetRevokeType

func (o *UidRevokeToken) GetRevokeType() string

GetRevokeType returns the RevokeType field if non-nil, zero value otherwise.

GetRevokeTypeOk

func (o *UidRevokeToken) GetRevokeTypeOk() (*string, bool)

GetRevokeTypeOk returns a tuple with the RevokeType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetRevokeType

func (o *UidRevokeToken) SetRevokeType(v string)

SetRevokeType sets RevokeType field to given value.

GetToken

func (o *UidRevokeToken) GetToken() string

GetToken returns the Token field if non-nil, zero value otherwise.

GetTokenOk

func (o *UidRevokeToken) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetToken

func (o *UidRevokeToken) SetToken(v string)

SetToken sets Token field to given value.

HasToken

func (o *UidRevokeToken) HasToken() bool

HasToken returns a boolean if a field has been set.

GetUidToken

func (o *UidRevokeToken) GetUidToken() string

GetUidToken returns the UidToken field if non-nil, zero value otherwise.

GetUidTokenOk

func (o *UidRevokeToken) GetUidTokenOk() (*string, bool)

GetUidTokenOk returns a tuple with the UidToken field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetUidToken

func (o *UidRevokeToken) SetUidToken(v string)

SetUidToken sets UidToken field to given value.

HasUidToken

func (o *UidRevokeToken) HasUidToken() bool

HasUidToken returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]