Skip to content

Latest commit

 

History

History
202 lines (109 loc) · 5.1 KB

ApiClient.md

File metadata and controls

202 lines (109 loc) · 5.1 KB

ApiClient

Properties

Name Type Description Notes
Id string [readonly]
CreatedAt time.Time [readonly]
ClientId string
ClientSecret string
Scope Pointer to []string [optional]
Description Pointer to string [optional]
LastUsedAt Pointer to NullableTime [optional]

Methods

NewApiClient

func NewApiClient(id string, createdAt time.Time, clientId string, clientSecret string, ) *ApiClient

NewApiClient instantiates a new ApiClient 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

NewApiClientWithDefaults

func NewApiClientWithDefaults() *ApiClient

NewApiClientWithDefaults instantiates a new ApiClient 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 *ApiClient) GetId() string

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

GetIdOk

func (o *ApiClient) GetIdOk() (*string, 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 *ApiClient) SetId(v string)

SetId sets Id field to given value.

GetCreatedAt

func (o *ApiClient) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.

GetCreatedAtOk

func (o *ApiClient) GetCreatedAtOk() (*time.Time, bool)

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

SetCreatedAt

func (o *ApiClient) SetCreatedAt(v time.Time)

SetCreatedAt sets CreatedAt field to given value.

GetClientId

func (o *ApiClient) GetClientId() string

GetClientId returns the ClientId field if non-nil, zero value otherwise.

GetClientIdOk

func (o *ApiClient) GetClientIdOk() (*string, bool)

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

SetClientId

func (o *ApiClient) SetClientId(v string)

SetClientId sets ClientId field to given value.

GetClientSecret

func (o *ApiClient) GetClientSecret() string

GetClientSecret returns the ClientSecret field if non-nil, zero value otherwise.

GetClientSecretOk

func (o *ApiClient) GetClientSecretOk() (*string, bool)

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

SetClientSecret

func (o *ApiClient) SetClientSecret(v string)

SetClientSecret sets ClientSecret field to given value.

GetScope

func (o *ApiClient) GetScope() []string

GetScope returns the Scope field if non-nil, zero value otherwise.

GetScopeOk

func (o *ApiClient) GetScopeOk() (*[]string, bool)

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

SetScope

func (o *ApiClient) SetScope(v []string)

SetScope sets Scope field to given value.

HasScope

func (o *ApiClient) HasScope() bool

HasScope returns a boolean if a field has been set.

GetDescription

func (o *ApiClient) GetDescription() string

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

GetDescriptionOk

func (o *ApiClient) 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 *ApiClient) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *ApiClient) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetLastUsedAt

func (o *ApiClient) GetLastUsedAt() time.Time

GetLastUsedAt returns the LastUsedAt field if non-nil, zero value otherwise.

GetLastUsedAtOk

func (o *ApiClient) GetLastUsedAtOk() (*time.Time, bool)

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

SetLastUsedAt

func (o *ApiClient) SetLastUsedAt(v time.Time)

SetLastUsedAt sets LastUsedAt field to given value.

HasLastUsedAt

func (o *ApiClient) HasLastUsedAt() bool

HasLastUsedAt returns a boolean if a field has been set.

SetLastUsedAtNil

func (o *ApiClient) SetLastUsedAtNil(b bool)

SetLastUsedAtNil sets the value for LastUsedAt to be an explicit nil

UnsetLastUsedAt

func (o *ApiClient) UnsetLastUsedAt()

UnsetLastUsedAt ensures that no value is present for LastUsedAt, not even an explicit nil

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