Skip to content

Latest commit

 

History

History
119 lines (64 loc) · 2.81 KB

Domain.md

File metadata and controls

119 lines (64 loc) · 2.81 KB

Domain

Properties

Name Type Description Notes
Id int32 [readonly]
Domain string
IsPrimary Pointer to bool [optional]
Tenant string

Methods

NewDomain

func NewDomain(id int32, domain string, tenant string, ) *Domain

NewDomain instantiates a new Domain 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

NewDomainWithDefaults

func NewDomainWithDefaults() *Domain

NewDomainWithDefaults instantiates a new Domain 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 *Domain) GetId() int32

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

GetIdOk

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

SetId sets Id field to given value.

GetDomain

func (o *Domain) GetDomain() string

GetDomain returns the Domain field if non-nil, zero value otherwise.

GetDomainOk

func (o *Domain) GetDomainOk() (*string, bool)

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

SetDomain

func (o *Domain) SetDomain(v string)

SetDomain sets Domain field to given value.

GetIsPrimary

func (o *Domain) GetIsPrimary() bool

GetIsPrimary returns the IsPrimary field if non-nil, zero value otherwise.

GetIsPrimaryOk

func (o *Domain) GetIsPrimaryOk() (*bool, bool)

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

SetIsPrimary

func (o *Domain) SetIsPrimary(v bool)

SetIsPrimary sets IsPrimary field to given value.

HasIsPrimary

func (o *Domain) HasIsPrimary() bool

HasIsPrimary returns a boolean if a field has been set.

GetTenant

func (o *Domain) GetTenant() string

GetTenant returns the Tenant field if non-nil, zero value otherwise.

GetTenantOk

func (o *Domain) GetTenantOk() (*string, bool)

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

SetTenant

func (o *Domain) SetTenant(v string)

SetTenant sets Tenant field to given value.

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