Skip to content

Latest commit

 

History

History
119 lines (64 loc) · 2.89 KB

Tenant.md

File metadata and controls

119 lines (64 loc) · 2.89 KB

Tenant

Properties

Name Type Description Notes
TenantUuid string [readonly]
SchemaName string
Name string
Ready Pointer to bool [optional]

Methods

NewTenant

func NewTenant(tenantUuid string, schemaName string, name string, ) *Tenant

NewTenant instantiates a new Tenant 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

NewTenantWithDefaults

func NewTenantWithDefaults() *Tenant

NewTenantWithDefaults instantiates a new Tenant 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

GetTenantUuid

func (o *Tenant) GetTenantUuid() string

GetTenantUuid returns the TenantUuid field if non-nil, zero value otherwise.

GetTenantUuidOk

func (o *Tenant) GetTenantUuidOk() (*string, bool)

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

SetTenantUuid

func (o *Tenant) SetTenantUuid(v string)

SetTenantUuid sets TenantUuid field to given value.

GetSchemaName

func (o *Tenant) GetSchemaName() string

GetSchemaName returns the SchemaName field if non-nil, zero value otherwise.

GetSchemaNameOk

func (o *Tenant) GetSchemaNameOk() (*string, bool)

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

SetSchemaName

func (o *Tenant) SetSchemaName(v string)

SetSchemaName sets SchemaName field to given value.

GetName

func (o *Tenant) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetReady

func (o *Tenant) GetReady() bool

GetReady returns the Ready field if non-nil, zero value otherwise.

GetReadyOk

func (o *Tenant) GetReadyOk() (*bool, bool)

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

SetReady

func (o *Tenant) SetReady(v bool)

SetReady sets Ready field to given value.

HasReady

func (o *Tenant) HasReady() bool

HasReady returns a boolean if a field has been set.

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