Skip to content

Latest commit

 

History

History
145 lines (78 loc) · 3.78 KB

File metadata and controls

145 lines (78 loc) · 3.78 KB

RelatedGroup

Properties

Name Type Description Notes
Pk string [readonly]
Name string
IsSuperuser Pointer to bool Users added to this group will be superusers. [optional]
Attributes Pointer to map[string]interface{} [optional]
GroupUuid string [readonly]

Methods

NewRelatedGroup

func NewRelatedGroup(pk string, name string, groupUuid string, ) *RelatedGroup

NewRelatedGroup instantiates a new RelatedGroup 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

NewRelatedGroupWithDefaults

func NewRelatedGroupWithDefaults() *RelatedGroup

NewRelatedGroupWithDefaults instantiates a new RelatedGroup 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

GetPk

func (o *RelatedGroup) GetPk() string

GetPk returns the Pk field if non-nil, zero value otherwise.

GetPkOk

func (o *RelatedGroup) GetPkOk() (*string, bool)

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

SetPk

func (o *RelatedGroup) SetPk(v string)

SetPk sets Pk field to given value.

GetName

func (o *RelatedGroup) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetIsSuperuser

func (o *RelatedGroup) GetIsSuperuser() bool

GetIsSuperuser returns the IsSuperuser field if non-nil, zero value otherwise.

GetIsSuperuserOk

func (o *RelatedGroup) GetIsSuperuserOk() (*bool, bool)

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

SetIsSuperuser

func (o *RelatedGroup) SetIsSuperuser(v bool)

SetIsSuperuser sets IsSuperuser field to given value.

HasIsSuperuser

func (o *RelatedGroup) HasIsSuperuser() bool

HasIsSuperuser returns a boolean if a field has been set.

GetAttributes

func (o *RelatedGroup) GetAttributes() map[string]interface{}

GetAttributes returns the Attributes field if non-nil, zero value otherwise.

GetAttributesOk

func (o *RelatedGroup) GetAttributesOk() (*map[string]interface{}, bool)

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

SetAttributes

func (o *RelatedGroup) SetAttributes(v map[string]interface{})

SetAttributes sets Attributes field to given value.

HasAttributes

func (o *RelatedGroup) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

GetGroupUuid

func (o *RelatedGroup) GetGroupUuid() string

GetGroupUuid returns the GroupUuid field if non-nil, zero value otherwise.

GetGroupUuidOk

func (o *RelatedGroup) GetGroupUuidOk() (*string, bool)

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

SetGroupUuid

func (o *RelatedGroup) SetGroupUuid(v string)

SetGroupUuid sets GroupUuid field to given value.

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