Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 4.06 KB

UploadedFile.md

File metadata and controls

160 lines (87 loc) · 4.06 KB

UploadedFile

Properties

Name Type Description Notes
Id Pointer to string [optional]
OriginalName Pointer to string [optional]
ContentType Pointer to string [optional]
Size Pointer to int64 [optional]
ThumbnailId Pointer to string [optional]

Methods

NewUploadedFile

func NewUploadedFile() *UploadedFile

NewUploadedFile instantiates a new UploadedFile 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

NewUploadedFileWithDefaults

func NewUploadedFileWithDefaults() *UploadedFile

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

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

GetIdOk

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

SetId sets Id field to given value.

HasId

func (o *UploadedFile) HasId() bool

HasId returns a boolean if a field has been set.

GetOriginalName

func (o *UploadedFile) GetOriginalName() string

GetOriginalName returns the OriginalName field if non-nil, zero value otherwise.

GetOriginalNameOk

func (o *UploadedFile) GetOriginalNameOk() (*string, bool)

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

SetOriginalName

func (o *UploadedFile) SetOriginalName(v string)

SetOriginalName sets OriginalName field to given value.

HasOriginalName

func (o *UploadedFile) HasOriginalName() bool

HasOriginalName returns a boolean if a field has been set.

GetContentType

func (o *UploadedFile) GetContentType() string

GetContentType returns the ContentType field if non-nil, zero value otherwise.

GetContentTypeOk

func (o *UploadedFile) GetContentTypeOk() (*string, bool)

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

SetContentType

func (o *UploadedFile) SetContentType(v string)

SetContentType sets ContentType field to given value.

HasContentType

func (o *UploadedFile) HasContentType() bool

HasContentType returns a boolean if a field has been set.

GetSize

func (o *UploadedFile) GetSize() int64

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

GetSizeOk

func (o *UploadedFile) 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 *UploadedFile) SetSize(v int64)

SetSize sets Size field to given value.

HasSize

func (o *UploadedFile) HasSize() bool

HasSize returns a boolean if a field has been set.

GetThumbnailId

func (o *UploadedFile) GetThumbnailId() string

GetThumbnailId returns the ThumbnailId field if non-nil, zero value otherwise.

GetThumbnailIdOk

func (o *UploadedFile) GetThumbnailIdOk() (*string, bool)

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

SetThumbnailId

func (o *UploadedFile) SetThumbnailId(v string)

SetThumbnailId sets ThumbnailId field to given value.

HasThumbnailId

func (o *UploadedFile) HasThumbnailId() bool

HasThumbnailId returns a boolean if a field has been set.

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