Skip to content

Latest commit

 

History

History
150 lines (81 loc) · 3.75 KB

File metadata and controls

150 lines (81 loc) · 3.75 KB

ApiToken

Properties

Name Type Description Notes
Id Pointer to int64 [optional] [readonly]
LastUpdateTimestamp Pointer to int64 [optional] [readonly]
Name string
Description Pointer to string [optional]
Token string

Methods

NewApiToken

func NewApiToken(name string, token string, ) *ApiToken

NewApiToken instantiates a new ApiToken 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

NewApiTokenWithDefaults

func NewApiTokenWithDefaults() *ApiToken

NewApiTokenWithDefaults instantiates a new ApiToken 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

GetId

func (o *ApiToken) GetId() int64

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *ApiToken) GetIdOk() (*int64, bool)

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

SetId

func (o *ApiToken) SetId(v int64)

SetId sets Id field to given value.

HasId

func (o *ApiToken) HasId() bool

HasId returns a boolean if a field has been set.

GetLastUpdateTimestamp

func (o *ApiToken) GetLastUpdateTimestamp() int64

GetLastUpdateTimestamp returns the LastUpdateTimestamp field if non-nil, zero value otherwise.

GetLastUpdateTimestampOk

func (o *ApiToken) GetLastUpdateTimestampOk() (*int64, bool)

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

SetLastUpdateTimestamp

func (o *ApiToken) SetLastUpdateTimestamp(v int64)

SetLastUpdateTimestamp sets LastUpdateTimestamp field to given value.

HasLastUpdateTimestamp

func (o *ApiToken) HasLastUpdateTimestamp() bool

HasLastUpdateTimestamp returns a boolean if a field has been set.

GetName

func (o *ApiToken) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *ApiToken) GetNameOk() (*string, bool)

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

SetName

func (o *ApiToken) SetName(v string)

SetName sets Name field to given value.

GetDescription

func (o *ApiToken) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *ApiToken) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *ApiToken) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *ApiToken) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetToken

func (o *ApiToken) GetToken() string

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

GetTokenOk

func (o *ApiToken) 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 *ApiToken) SetToken(v string)

SetToken sets Token field to given value.

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