Name | Type | Description | Notes |
---|---|---|---|
Id | Pointer to string | Read-only. | [optional] [readonly] |
Description | Pointer to string | An optional description for the group. Returned by default. | [optional] |
DisplayName | Pointer to string | The display name for the group. This property is required when a group is created and cannot be cleared during updates. Returned by default. Supports $search and $orderBy. | [optional] |
GroupTypes | Pointer to []string | Specifies the group types. In MS Graph a group can have multiple types, so this is an array. In libreGraph the possible group types deviate from the MS Graph. The only group type that we currently support is "ReadOnly", which is set for groups that cannot be modified on the current instance. | [optional] |
Members | Pointer to []User | Users and groups that are members of this group. HTTP Methods: GET (supported for all groups), Nullable. Supports $expand. | [optional] |
MembersodataBind | Pointer to []string | A list of member references to the members to be added. Up to 20 members can be added with a single request | [optional] |
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
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
func (o *Group) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
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.
func (o *Group) SetId(v string)
SetId sets Id field to given value.
func (o *Group) HasId() bool
HasId returns a boolean if a field has been set.
func (o *Group) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
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.
func (o *Group) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *Group) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *Group) GetDisplayName() string
GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.
func (o *Group) GetDisplayNameOk() (*string, bool)
GetDisplayNameOk returns a tuple with the DisplayName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Group) SetDisplayName(v string)
SetDisplayName sets DisplayName field to given value.
func (o *Group) HasDisplayName() bool
HasDisplayName returns a boolean if a field has been set.
func (o *Group) GetGroupTypes() []string
GetGroupTypes returns the GroupTypes field if non-nil, zero value otherwise.
func (o *Group) GetGroupTypesOk() (*[]string, bool)
GetGroupTypesOk returns a tuple with the GroupTypes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Group) SetGroupTypes(v []string)
SetGroupTypes sets GroupTypes field to given value.
func (o *Group) HasGroupTypes() bool
HasGroupTypes returns a boolean if a field has been set.
func (o *Group) GetMembers() []User
GetMembers returns the Members field if non-nil, zero value otherwise.
func (o *Group) GetMembersOk() (*[]User, bool)
GetMembersOk returns a tuple with the Members field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Group) SetMembers(v []User)
SetMembers sets Members field to given value.
func (o *Group) HasMembers() bool
HasMembers returns a boolean if a field has been set.
func (o *Group) GetMembersodataBind() []string
GetMembersodataBind returns the MembersodataBind field if non-nil, zero value otherwise.
func (o *Group) GetMembersodataBindOk() (*[]string, bool)
GetMembersodataBindOk returns a tuple with the MembersodataBind field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Group) SetMembersodataBind(v []string)
SetMembersodataBind sets MembersodataBind field to given value.
func (o *Group) HasMembersodataBind() bool
HasMembersodataBind returns a boolean if a field has been set.