Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 4.45 KB

Group.md

File metadata and controls

186 lines (101 loc) · 4.45 KB

Group

Properties

Name Type Description Notes
Description Pointer to string The description of the group. [optional]
DomainId Pointer to string The ID of the domain of the group. [optional]
Id Pointer to string The ID of the group. [optional]
Links Pointer to SelfLink [optional]
Name Pointer to string The name of the group. [optional]
CreatedAt Pointer to string The creation time. [optional]

Methods

NewGroup

func NewGroup() *Group

NewGroup instantiates a new Group 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

NewGroupWithDefaults

func NewGroupWithDefaults() *Group

NewGroupWithDefaults instantiates a new Group 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

GetDescription

func (o *Group) GetDescription() string

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *Group) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetDomainId

func (o *Group) GetDomainId() string

GetDomainId returns the DomainId field if non-nil, zero value otherwise.

GetDomainIdOk

func (o *Group) GetDomainIdOk() (*string, bool)

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

SetDomainId

func (o *Group) SetDomainId(v string)

SetDomainId sets DomainId field to given value.

HasDomainId

func (o *Group) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

GetId

func (o *Group) GetId() string

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

GetIdOk

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

SetId sets Id field to given value.

HasId

func (o *Group) HasId() bool

HasId returns a boolean if a field has been set.

GetLinks

func (o *Group) GetLinks() SelfLink

GetLinks returns the Links field if non-nil, zero value otherwise.

GetLinksOk

func (o *Group) GetLinksOk() (*SelfLink, bool)

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

SetLinks

func (o *Group) SetLinks(v SelfLink)

SetLinks sets Links field to given value.

HasLinks

func (o *Group) HasLinks() bool

HasLinks returns a boolean if a field has been set.

GetName

func (o *Group) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *Group) HasName() bool

HasName returns a boolean if a field has been set.

GetCreatedAt

func (o *Group) GetCreatedAt() string

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

GetCreatedAtOk

func (o *Group) GetCreatedAtOk() (*string, 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 *Group) SetCreatedAt(v string)

SetCreatedAt sets CreatedAt field to given value.

HasCreatedAt

func (o *Group) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

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