Skip to content

Latest commit

 

History

History
154 lines (85 loc) · 3.77 KB

Folder.md

File metadata and controls

154 lines (85 loc) · 3.77 KB

Folder

Properties

Name Type Description Notes
Id NullableString
Name NullableString
Path NullableString
ParentFolderId NullableString

Methods

NewFolder

func NewFolder(id NullableString, name NullableString, path NullableString, parentFolderId NullableString, ) *Folder

NewFolder instantiates a new Folder 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

NewFolderWithDefaults

func NewFolderWithDefaults() *Folder

NewFolderWithDefaults instantiates a new Folder 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 *Folder) GetId() string

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

GetIdOk

func (o *Folder) 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 *Folder) SetId(v string)

SetId sets Id field to given value.

SetIdNil

func (o *Folder) SetIdNil(b bool)

SetIdNil sets the value for Id to be an explicit nil

UnsetId

func (o *Folder) UnsetId()

UnsetId ensures that no value is present for Id, not even an explicit nil

GetName

func (o *Folder) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

SetNameNil

func (o *Folder) SetNameNil(b bool)

SetNameNil sets the value for Name to be an explicit nil

UnsetName

func (o *Folder) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

GetPath

func (o *Folder) GetPath() string

GetPath returns the Path field if non-nil, zero value otherwise.

GetPathOk

func (o *Folder) GetPathOk() (*string, bool)

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

SetPath

func (o *Folder) SetPath(v string)

SetPath sets Path field to given value.

SetPathNil

func (o *Folder) SetPathNil(b bool)

SetPathNil sets the value for Path to be an explicit nil

UnsetPath

func (o *Folder) UnsetPath()

UnsetPath ensures that no value is present for Path, not even an explicit nil

GetParentFolderId

func (o *Folder) GetParentFolderId() string

GetParentFolderId returns the ParentFolderId field if non-nil, zero value otherwise.

GetParentFolderIdOk

func (o *Folder) GetParentFolderIdOk() (*string, bool)

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

SetParentFolderId

func (o *Folder) SetParentFolderId(v string)

SetParentFolderId sets ParentFolderId field to given value.

SetParentFolderIdNil

func (o *Folder) SetParentFolderIdNil(b bool)

SetParentFolderIdNil sets the value for ParentFolderId to be an explicit nil

UnsetParentFolderId

func (o *Folder) UnsetParentFolderId()

UnsetParentFolderId ensures that no value is present for ParentFolderId, not even an explicit nil

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