Skip to content

Latest commit

 

History

History
196 lines (107 loc) · 5.21 KB

PatchedGroupRequest.md

File metadata and controls

196 lines (107 loc) · 5.21 KB

PatchedGroupRequest

Properties

Name Type Description Notes
Name Pointer to string [optional]
IsSuperuser Pointer to bool Users added to this group will be superusers. [optional]
Parent Pointer to NullableString [optional]
Users Pointer to []int32 [optional]
Attributes Pointer to map[string]interface{} [optional]
Roles Pointer to []string [optional]

Methods

NewPatchedGroupRequest

func NewPatchedGroupRequest() *PatchedGroupRequest

NewPatchedGroupRequest instantiates a new PatchedGroupRequest 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

NewPatchedGroupRequestWithDefaults

func NewPatchedGroupRequestWithDefaults() *PatchedGroupRequest

NewPatchedGroupRequestWithDefaults instantiates a new PatchedGroupRequest 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

GetName

func (o *PatchedGroupRequest) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *PatchedGroupRequest) HasName() bool

HasName returns a boolean if a field has been set.

GetIsSuperuser

func (o *PatchedGroupRequest) GetIsSuperuser() bool

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

GetIsSuperuserOk

func (o *PatchedGroupRequest) 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 *PatchedGroupRequest) SetIsSuperuser(v bool)

SetIsSuperuser sets IsSuperuser field to given value.

HasIsSuperuser

func (o *PatchedGroupRequest) HasIsSuperuser() bool

HasIsSuperuser returns a boolean if a field has been set.

GetParent

func (o *PatchedGroupRequest) GetParent() string

GetParent returns the Parent field if non-nil, zero value otherwise.

GetParentOk

func (o *PatchedGroupRequest) GetParentOk() (*string, bool)

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

SetParent

func (o *PatchedGroupRequest) SetParent(v string)

SetParent sets Parent field to given value.

HasParent

func (o *PatchedGroupRequest) HasParent() bool

HasParent returns a boolean if a field has been set.

SetParentNil

func (o *PatchedGroupRequest) SetParentNil(b bool)

SetParentNil sets the value for Parent to be an explicit nil

UnsetParent

func (o *PatchedGroupRequest) UnsetParent()

UnsetParent ensures that no value is present for Parent, not even an explicit nil

GetUsers

func (o *PatchedGroupRequest) GetUsers() []int32

GetUsers returns the Users field if non-nil, zero value otherwise.

GetUsersOk

func (o *PatchedGroupRequest) GetUsersOk() (*[]int32, bool)

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

SetUsers

func (o *PatchedGroupRequest) SetUsers(v []int32)

SetUsers sets Users field to given value.

HasUsers

func (o *PatchedGroupRequest) HasUsers() bool

HasUsers returns a boolean if a field has been set.

GetAttributes

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

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

GetAttributesOk

func (o *PatchedGroupRequest) 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 *PatchedGroupRequest) SetAttributes(v map[string]interface{})

SetAttributes sets Attributes field to given value.

HasAttributes

func (o *PatchedGroupRequest) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

GetRoles

func (o *PatchedGroupRequest) GetRoles() []string

GetRoles returns the Roles field if non-nil, zero value otherwise.

GetRolesOk

func (o *PatchedGroupRequest) GetRolesOk() (*[]string, bool)

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

SetRoles

func (o *PatchedGroupRequest) SetRoles(v []string)

SetRoles sets Roles field to given value.

HasRoles

func (o *PatchedGroupRequest) HasRoles() bool

HasRoles returns a boolean if a field has been set.

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