Skip to content

Latest commit

 

History

History
155 lines (84 loc) · 4.4 KB

ApiClient.md

File metadata and controls

155 lines (84 loc) · 4.4 KB

ApiClient

Properties

Name Type Description Notes
Id Pointer to int64 The entity ID of this API client. [optional] [readonly]
ApiClientId Pointer to string The unique ID which is used to identity the identity of an API request. The web server (nginx) configuration must be configured so as to include the external ID as the value of the X_CLIENT_ID HTTP request header when requests are proxied. For OAuth2/JWT based authentication, this typically corresponds to a value extracted from the JWT, uniquely identifying the API client. [optional]
Name Pointer to string [optional]
IsAdmin bool
EngineUsersMapping Pointer to []EngineUserMapping Mapping of engine ID to the engine User ID. [optional]

Methods

NewApiClient

func NewApiClient(isAdmin bool, ) *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() int64

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

GetIdOk

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

SetId sets Id field to given value.

HasId

func (o *ApiClient) HasId() bool

HasId returns a boolean if a field has been set.

GetApiClientId

func (o *ApiClient) GetApiClientId() string

GetApiClientId returns the ApiClientId field if non-nil, zero value otherwise.

GetApiClientIdOk

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

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

SetApiClientId

func (o *ApiClient) SetApiClientId(v string)

SetApiClientId sets ApiClientId field to given value.

HasApiClientId

func (o *ApiClient) HasApiClientId() bool

HasApiClientId returns a boolean if a field has been set.

GetName

func (o *ApiClient) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *ApiClient) HasName() bool

HasName returns a boolean if a field has been set.

GetIsAdmin

func (o *ApiClient) GetIsAdmin() bool

GetIsAdmin returns the IsAdmin field if non-nil, zero value otherwise.

GetIsAdminOk

func (o *ApiClient) GetIsAdminOk() (*bool, bool)

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

SetIsAdmin

func (o *ApiClient) SetIsAdmin(v bool)

SetIsAdmin sets IsAdmin field to given value.

GetEngineUsersMapping

func (o *ApiClient) GetEngineUsersMapping() []EngineUserMapping

GetEngineUsersMapping returns the EngineUsersMapping field if non-nil, zero value otherwise.

GetEngineUsersMappingOk

func (o *ApiClient) GetEngineUsersMappingOk() (*[]EngineUserMapping, bool)

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

SetEngineUsersMapping

func (o *ApiClient) SetEngineUsersMapping(v []EngineUserMapping)

SetEngineUsersMapping sets EngineUsersMapping field to given value.

HasEngineUsersMapping

func (o *ApiClient) HasEngineUsersMapping() bool

HasEngineUsersMapping returns a boolean if a field has been set.

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