Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.36 KB

UserStorageItemDto.md

File metadata and controls

134 lines (73 loc) · 3.36 KB

UserStorageItemDto

Properties

Name Type Description Notes
Name Pointer to string [optional]
Title Pointer to string [optional]
Count Pointer to int32 [optional]
Size Pointer to int64 [optional]

Methods

NewUserStorageItemDto

func NewUserStorageItemDto() *UserStorageItemDto

NewUserStorageItemDto instantiates a new UserStorageItemDto 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

NewUserStorageItemDtoWithDefaults

func NewUserStorageItemDtoWithDefaults() *UserStorageItemDto

NewUserStorageItemDtoWithDefaults instantiates a new UserStorageItemDto 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

GetName

func (o *UserStorageItemDto) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *UserStorageItemDto) HasName() bool

HasName returns a boolean if a field has been set.

GetTitle

func (o *UserStorageItemDto) GetTitle() string

GetTitle returns the Title field if non-nil, zero value otherwise.

GetTitleOk

func (o *UserStorageItemDto) GetTitleOk() (*string, bool)

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

SetTitle

func (o *UserStorageItemDto) SetTitle(v string)

SetTitle sets Title field to given value.

HasTitle

func (o *UserStorageItemDto) HasTitle() bool

HasTitle returns a boolean if a field has been set.

GetCount

func (o *UserStorageItemDto) GetCount() int32

GetCount returns the Count field if non-nil, zero value otherwise.

GetCountOk

func (o *UserStorageItemDto) GetCountOk() (*int32, bool)

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

SetCount

func (o *UserStorageItemDto) SetCount(v int32)

SetCount sets Count field to given value.

HasCount

func (o *UserStorageItemDto) HasCount() bool

HasCount returns a boolean if a field has been set.

GetSize

func (o *UserStorageItemDto) GetSize() int64

GetSize returns the Size field if non-nil, zero value otherwise.

GetSizeOk

func (o *UserStorageItemDto) GetSizeOk() (*int64, bool)

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

SetSize

func (o *UserStorageItemDto) SetSize(v int64)

SetSize sets Size field to given value.

HasSize

func (o *UserStorageItemDto) HasSize() bool

HasSize returns a boolean if a field has been set.

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