Skip to content

Latest commit

 

History

History
135 lines (72 loc) · 3.68 KB

ContentAllOf.md

File metadata and controls

135 lines (72 loc) · 3.68 KB

ContentAllOf

Properties

Name Type Description Notes
Id string Identifier of the content item.
Name string The name of the content item.
ItemType string Type of the content item. Supported values are: 1. Folder 2. Search 3. Report (for old dashboards) 4. Dashboard (for new dashboards) 5. Lookups
ParentId string Identifier of the parent content item.
Permissions []string List of permissions the user has on the content item.

Methods

NewContentAllOf

func NewContentAllOf(id string, name string, itemType string, parentId string, permissions []string, ) *ContentAllOf

NewContentAllOf instantiates a new ContentAllOf 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

NewContentAllOfWithDefaults

func NewContentAllOfWithDefaults() *ContentAllOf

NewContentAllOfWithDefaults instantiates a new ContentAllOf 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

GetId

func (o *ContentAllOf) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *ContentAllOf) 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.

SetId

func (o *ContentAllOf) SetId(v string)

SetId sets Id field to given value.

GetName

func (o *ContentAllOf) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetItemType

func (o *ContentAllOf) GetItemType() string

GetItemType returns the ItemType field if non-nil, zero value otherwise.

GetItemTypeOk

func (o *ContentAllOf) GetItemTypeOk() (*string, bool)

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

SetItemType

func (o *ContentAllOf) SetItemType(v string)

SetItemType sets ItemType field to given value.

GetParentId

func (o *ContentAllOf) GetParentId() string

GetParentId returns the ParentId field if non-nil, zero value otherwise.

GetParentIdOk

func (o *ContentAllOf) GetParentIdOk() (*string, bool)

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

SetParentId

func (o *ContentAllOf) SetParentId(v string)

SetParentId sets ParentId field to given value.

GetPermissions

func (o *ContentAllOf) GetPermissions() []string

GetPermissions returns the Permissions field if non-nil, zero value otherwise.

GetPermissionsOk

func (o *ContentAllOf) GetPermissionsOk() (*[]string, bool)

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

SetPermissions

func (o *ContentAllOf) SetPermissions(v []string)

SetPermissions sets Permissions field to given value.

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