Name | Type | Description | Notes |
---|---|---|---|
Id | NullableInt32 | Group ID. | |
Name | NullableString | A unique group name (can be changed). | |
Description | Pointer to NullableString | [optional] | |
Visibility | Pointer to string | [optional] | |
AutoAccept | Pointer to bool | [optional] | |
IsDefault | Pointer to bool | [optional] |
func NewGroup(id NullableInt32, name NullableString, ) *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() int32
GetId returns the Id field if non-nil, zero value otherwise.
func (o *Group) GetIdOk() (*int32, 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 int32)
SetId sets Id field to given value.
func (o *Group) SetIdNil(b bool)
SetIdNil sets the value for Id to be an explicit nil
func (o *Group) UnsetId()
UnsetId ensures that no value is present for Id, not even an explicit nil
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) SetNameNil(b bool)
SetNameNil sets the value for Name to be an explicit nil
func (o *Group) UnsetName()
UnsetName ensures that no value is present for Name, not even an explicit nil
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) SetDescriptionNil(b bool)
SetDescriptionNil sets the value for Description to be an explicit nil
func (o *Group) UnsetDescription()
UnsetDescription ensures that no value is present for Description, not even an explicit nil
func (o *Group) GetVisibility() string
GetVisibility returns the Visibility field if non-nil, zero value otherwise.
func (o *Group) GetVisibilityOk() (*string, bool)
GetVisibilityOk returns a tuple with the Visibility field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Group) SetVisibility(v string)
SetVisibility sets Visibility field to given value.
func (o *Group) HasVisibility() bool
HasVisibility returns a boolean if a field has been set.
func (o *Group) GetAutoAccept() bool
GetAutoAccept returns the AutoAccept field if non-nil, zero value otherwise.
func (o *Group) GetAutoAcceptOk() (*bool, bool)
GetAutoAcceptOk returns a tuple with the AutoAccept field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Group) SetAutoAccept(v bool)
SetAutoAccept sets AutoAccept field to given value.
func (o *Group) HasAutoAccept() bool
HasAutoAccept returns a boolean if a field has been set.
func (o *Group) GetIsDefault() bool
GetIsDefault returns the IsDefault field if non-nil, zero value otherwise.
func (o *Group) GetIsDefaultOk() (*bool, bool)
GetIsDefaultOk returns a tuple with the IsDefault field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Group) SetIsDefault(v bool)
SetIsDefault sets IsDefault field to given value.
func (o *Group) HasIsDefault() bool
HasIsDefault returns a boolean if a field has been set.