Skip to content

Latest commit

 

History

History
285 lines (154 loc) · 7.49 KB

File metadata and controls

285 lines (154 loc) · 7.49 KB

FolderUpdate

Properties

Name Type Description Notes
Accessibility Pointer to string for personal password manager [optional] [default to "regular"]
AddTag Pointer to []string List of the new tags that will be attached to this folder [optional]
DeleteProtection Pointer to string Protection from accidental deletion of this object [true/false] [optional]
Description Pointer to string Description of the object [optional]
Json Pointer to bool Set output format to JSON [optional] [default to false]
Name string Folder name
RmTag Pointer to []string List of the existent tags that will be removed from this folder [optional]
Token Pointer to string Authentication token (see `/auth` and `/configure`) [optional]
Type Pointer to string [optional]
UidToken Pointer to string The universal identity token, Required only for universal_identity authentication [optional]

Methods

NewFolderUpdate

func NewFolderUpdate(name string, ) *FolderUpdate

NewFolderUpdate instantiates a new FolderUpdate 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

NewFolderUpdateWithDefaults

func NewFolderUpdateWithDefaults() *FolderUpdate

NewFolderUpdateWithDefaults instantiates a new FolderUpdate 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

GetAccessibility

func (o *FolderUpdate) GetAccessibility() string

GetAccessibility returns the Accessibility field if non-nil, zero value otherwise.

GetAccessibilityOk

func (o *FolderUpdate) GetAccessibilityOk() (*string, bool)

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

SetAccessibility

func (o *FolderUpdate) SetAccessibility(v string)

SetAccessibility sets Accessibility field to given value.

HasAccessibility

func (o *FolderUpdate) HasAccessibility() bool

HasAccessibility returns a boolean if a field has been set.

GetAddTag

func (o *FolderUpdate) GetAddTag() []string

GetAddTag returns the AddTag field if non-nil, zero value otherwise.

GetAddTagOk

func (o *FolderUpdate) GetAddTagOk() (*[]string, bool)

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

SetAddTag

func (o *FolderUpdate) SetAddTag(v []string)

SetAddTag sets AddTag field to given value.

HasAddTag

func (o *FolderUpdate) HasAddTag() bool

HasAddTag returns a boolean if a field has been set.

GetDeleteProtection

func (o *FolderUpdate) GetDeleteProtection() string

GetDeleteProtection returns the DeleteProtection field if non-nil, zero value otherwise.

GetDeleteProtectionOk

func (o *FolderUpdate) GetDeleteProtectionOk() (*string, bool)

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

SetDeleteProtection

func (o *FolderUpdate) SetDeleteProtection(v string)

SetDeleteProtection sets DeleteProtection field to given value.

HasDeleteProtection

func (o *FolderUpdate) HasDeleteProtection() bool

HasDeleteProtection returns a boolean if a field has been set.

GetDescription

func (o *FolderUpdate) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

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

SetDescription

func (o *FolderUpdate) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *FolderUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetJson

func (o *FolderUpdate) GetJson() bool

GetJson returns the Json field if non-nil, zero value otherwise.

GetJsonOk

func (o *FolderUpdate) GetJsonOk() (*bool, bool)

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

SetJson

func (o *FolderUpdate) SetJson(v bool)

SetJson sets Json field to given value.

HasJson

func (o *FolderUpdate) HasJson() bool

HasJson returns a boolean if a field has been set.

GetName

func (o *FolderUpdate) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetRmTag

func (o *FolderUpdate) GetRmTag() []string

GetRmTag returns the RmTag field if non-nil, zero value otherwise.

GetRmTagOk

func (o *FolderUpdate) GetRmTagOk() (*[]string, bool)

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

SetRmTag

func (o *FolderUpdate) SetRmTag(v []string)

SetRmTag sets RmTag field to given value.

HasRmTag

func (o *FolderUpdate) HasRmTag() bool

HasRmTag returns a boolean if a field has been set.

GetToken

func (o *FolderUpdate) GetToken() string

GetToken returns the Token field if non-nil, zero value otherwise.

GetTokenOk

func (o *FolderUpdate) GetTokenOk() (*string, bool)

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

SetToken

func (o *FolderUpdate) SetToken(v string)

SetToken sets Token field to given value.

HasToken

func (o *FolderUpdate) HasToken() bool

HasToken returns a boolean if a field has been set.

GetType

func (o *FolderUpdate) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *FolderUpdate) GetTypeOk() (*string, bool)

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

SetType

func (o *FolderUpdate) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *FolderUpdate) HasType() bool

HasType returns a boolean if a field has been set.

GetUidToken

func (o *FolderUpdate) GetUidToken() string

GetUidToken returns the UidToken field if non-nil, zero value otherwise.

GetUidTokenOk

func (o *FolderUpdate) GetUidTokenOk() (*string, bool)

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

SetUidToken

func (o *FolderUpdate) SetUidToken(v string)

SetUidToken sets UidToken field to given value.

HasUidToken

func (o *FolderUpdate) HasUidToken() bool

HasUidToken returns a boolean if a field has been set.

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