Skip to content

Latest commit

 

History

History
259 lines (140 loc) · 6.79 KB

File metadata and controls

259 lines (140 loc) · 6.79 KB

FolderCreate

Properties

Name Type Description Notes
Accessibility Pointer to string for personal password manager [optional] [default to "regular"]
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
Tags Pointer to []string Add tags attached to this object [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

NewFolderCreate

func NewFolderCreate(name string, ) *FolderCreate

NewFolderCreate instantiates a new FolderCreate 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

NewFolderCreateWithDefaults

func NewFolderCreateWithDefaults() *FolderCreate

NewFolderCreateWithDefaults instantiates a new FolderCreate 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 *FolderCreate) GetAccessibility() string

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

GetAccessibilityOk

func (o *FolderCreate) 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 *FolderCreate) SetAccessibility(v string)

SetAccessibility sets Accessibility field to given value.

HasAccessibility

func (o *FolderCreate) HasAccessibility() bool

HasAccessibility returns a boolean if a field has been set.

GetDeleteProtection

func (o *FolderCreate) GetDeleteProtection() string

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

GetDeleteProtectionOk

func (o *FolderCreate) 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 *FolderCreate) SetDeleteProtection(v string)

SetDeleteProtection sets DeleteProtection field to given value.

HasDeleteProtection

func (o *FolderCreate) HasDeleteProtection() bool

HasDeleteProtection returns a boolean if a field has been set.

GetDescription

func (o *FolderCreate) GetDescription() string

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

GetDescriptionOk

func (o *FolderCreate) 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 *FolderCreate) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *FolderCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetJson

func (o *FolderCreate) GetJson() bool

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

GetJsonOk

func (o *FolderCreate) 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 *FolderCreate) SetJson(v bool)

SetJson sets Json field to given value.

HasJson

func (o *FolderCreate) HasJson() bool

HasJson returns a boolean if a field has been set.

GetName

func (o *FolderCreate) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetTags

func (o *FolderCreate) GetTags() []string

GetTags returns the Tags field if non-nil, zero value otherwise.

GetTagsOk

func (o *FolderCreate) GetTagsOk() (*[]string, bool)

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

SetTags

func (o *FolderCreate) SetTags(v []string)

SetTags sets Tags field to given value.

HasTags

func (o *FolderCreate) HasTags() bool

HasTags returns a boolean if a field has been set.

GetToken

func (o *FolderCreate) GetToken() string

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

GetTokenOk

func (o *FolderCreate) 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 *FolderCreate) SetToken(v string)

SetToken sets Token field to given value.

HasToken

func (o *FolderCreate) HasToken() bool

HasToken returns a boolean if a field has been set.

GetType

func (o *FolderCreate) GetType() string

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

GetTypeOk

func (o *FolderCreate) 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 *FolderCreate) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *FolderCreate) HasType() bool

HasType returns a boolean if a field has been set.

GetUidToken

func (o *FolderCreate) GetUidToken() string

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

GetUidTokenOk

func (o *FolderCreate) 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 *FolderCreate) SetUidToken(v string)

SetUidToken sets UidToken field to given value.

HasUidToken

func (o *FolderCreate) HasUidToken() bool

HasUidToken returns a boolean if a field has been set.

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