| Name | Type | Description | Notes |
|---|---|---|---|
| Name | string | ||
| Identifier | Pointer to string | [optional] | |
| Description | Pointer to string | [optional] | |
| DefaultOpen | bool | ||
| Icon | string | ||
| Items | []MainMenuViewItem |
func NewMainMenuGroup(name string, defaultOpen bool, icon string, items []MainMenuViewItem, ) *MainMenuGroup
NewMainMenuGroup instantiates a new MainMenuGroup 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 NewMainMenuGroupWithDefaults() *MainMenuGroup
NewMainMenuGroupWithDefaults instantiates a new MainMenuGroup 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 *MainMenuGroup) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *MainMenuGroup) 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 *MainMenuGroup) SetName(v string)
SetName sets Name field to given value.
func (o *MainMenuGroup) GetIdentifier() string
GetIdentifier returns the Identifier field if non-nil, zero value otherwise.
func (o *MainMenuGroup) GetIdentifierOk() (*string, bool)
GetIdentifierOk returns a tuple with the Identifier field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *MainMenuGroup) SetIdentifier(v string)
SetIdentifier sets Identifier field to given value.
func (o *MainMenuGroup) HasIdentifier() bool
HasIdentifier returns a boolean if a field has been set.
func (o *MainMenuGroup) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *MainMenuGroup) 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 *MainMenuGroup) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *MainMenuGroup) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *MainMenuGroup) GetDefaultOpen() bool
GetDefaultOpen returns the DefaultOpen field if non-nil, zero value otherwise.
func (o *MainMenuGroup) GetDefaultOpenOk() (*bool, bool)
GetDefaultOpenOk returns a tuple with the DefaultOpen field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *MainMenuGroup) SetDefaultOpen(v bool)
SetDefaultOpen sets DefaultOpen field to given value.
func (o *MainMenuGroup) GetIcon() string
GetIcon returns the Icon field if non-nil, zero value otherwise.
func (o *MainMenuGroup) GetIconOk() (*string, bool)
GetIconOk returns a tuple with the Icon field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *MainMenuGroup) SetIcon(v string)
SetIcon sets Icon field to given value.
func (o *MainMenuGroup) GetItems() []MainMenuViewItem
GetItems returns the Items field if non-nil, zero value otherwise.
func (o *MainMenuGroup) GetItemsOk() (*[]MainMenuViewItem, bool)
GetItemsOk returns a tuple with the Items field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *MainMenuGroup) SetItems(v []MainMenuViewItem)
SetItems sets Items field to given value.