Name | Type | Description | Notes |
---|---|---|---|
GroupId | Pointer to string | Unique identifier for the groupId, can be specified on record creation. Must begin with grp_. | [optional] |
Name | string | A helpful name for this record | |
LastUpdated | Pointer to time.Time | The expected last time the group was updated | [optional] [readonly] |
Users | []User | The list of users in this group | |
Admins | []User | The list of admins that can edit this record even if they do not have global record edit permissions. | |
Links | Pointer to AccountLinks | [optional] | |
Tags | Pointer to map[string]string | The tags associated with this resource, this property is an map. { key1: value1, key2: value2 } | [optional] |
func NewGroup(name string, users []User, admins []User, ) *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) GetGroupId() string
GetGroupId returns the GroupId field if non-nil, zero value otherwise.
func (o *Group) GetGroupIdOk() (*string, bool)
GetGroupIdOk returns a tuple with the GroupId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Group) SetGroupId(v string)
SetGroupId sets GroupId field to given value.
func (o *Group) HasGroupId() bool
HasGroupId returns a boolean if a field has been set.
func (o *Group) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
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.
func (o *Group) SetName(v string)
SetName sets Name field to given value.
func (o *Group) GetLastUpdated() time.Time
GetLastUpdated returns the LastUpdated field if non-nil, zero value otherwise.
func (o *Group) GetLastUpdatedOk() (*time.Time, bool)
GetLastUpdatedOk returns a tuple with the LastUpdated field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Group) SetLastUpdated(v time.Time)
SetLastUpdated sets LastUpdated field to given value.
func (o *Group) HasLastUpdated() bool
HasLastUpdated returns a boolean if a field has been set.
func (o *Group) GetUsers() []User
GetUsers returns the Users field if non-nil, zero value otherwise.
func (o *Group) GetUsersOk() (*[]User, 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.
func (o *Group) SetUsers(v []User)
SetUsers sets Users field to given value.
func (o *Group) GetAdmins() []User
GetAdmins returns the Admins field if non-nil, zero value otherwise.
func (o *Group) GetAdminsOk() (*[]User, bool)
GetAdminsOk returns a tuple with the Admins field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Group) SetAdmins(v []User)
SetAdmins sets Admins field to given value.
func (o *Group) GetLinks() AccountLinks
GetLinks returns the Links field if non-nil, zero value otherwise.
func (o *Group) GetLinksOk() (*AccountLinks, 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.
func (o *Group) SetLinks(v AccountLinks)
SetLinks sets Links field to given value.
func (o *Group) HasLinks() bool
HasLinks returns a boolean if a field has been set.
func (o *Group) GetTags() map[string]string
GetTags returns the Tags field if non-nil, zero value otherwise.
func (o *Group) GetTagsOk() (*map[string]string, bool)
GetTagsOk returns a tuple with the Tags field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Group) SetTags(v map[string]string)
SetTags sets Tags field to given value.
func (o *Group) HasTags() bool
HasTags returns a boolean if a field has been set.
func (o *Group) SetTagsNil(b bool)
SetTagsNil sets the value for Tags to be an explicit nil
func (o *Group) UnsetTags()
UnsetTags ensures that no value is present for Tags, not even an explicit nil