Skip to content

Latest commit

 

History

History
155 lines (84 loc) · 4.01 KB

DeleteItems.md

File metadata and controls

155 lines (84 loc) · 4.01 KB

DeleteItems

Properties

Name Type Description Notes
Item Pointer to []string A list of items to delete, To specify multiple items use argument multiple times [optional]
Json Pointer to bool Set output format to JSON [optional] [default to false]
Path string Path to delete the items from [default to "dummy_path"]
Token Pointer to string Authentication token (see `/auth` and `/configure`) [optional]
UidToken Pointer to string The universal identity token, Required only for universal_identity authentication [optional]

Methods

NewDeleteItems

func NewDeleteItems(path string, ) *DeleteItems

NewDeleteItems instantiates a new DeleteItems 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

NewDeleteItemsWithDefaults

func NewDeleteItemsWithDefaults() *DeleteItems

NewDeleteItemsWithDefaults instantiates a new DeleteItems 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

GetItem

func (o *DeleteItems) GetItem() []string

GetItem returns the Item field if non-nil, zero value otherwise.

GetItemOk

func (o *DeleteItems) GetItemOk() (*[]string, bool)

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

SetItem

func (o *DeleteItems) SetItem(v []string)

SetItem sets Item field to given value.

HasItem

func (o *DeleteItems) HasItem() bool

HasItem returns a boolean if a field has been set.

GetJson

func (o *DeleteItems) GetJson() bool

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

GetJsonOk

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

SetJson sets Json field to given value.

HasJson

func (o *DeleteItems) HasJson() bool

HasJson returns a boolean if a field has been set.

GetPath

func (o *DeleteItems) GetPath() string

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

GetPathOk

func (o *DeleteItems) 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 *DeleteItems) SetPath(v string)

SetPath sets Path field to given value.

GetToken

func (o *DeleteItems) GetToken() string

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

GetTokenOk

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

SetToken sets Token field to given value.

HasToken

func (o *DeleteItems) HasToken() bool

HasToken returns a boolean if a field has been set.

GetUidToken

func (o *DeleteItems) GetUidToken() string

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

GetUidTokenOk

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

SetUidToken sets UidToken field to given value.

HasUidToken

func (o *DeleteItems) HasUidToken() bool

HasUidToken returns a boolean if a field has been set.

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