Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 4.98 KB

UpdateFile.md

File metadata and controls

186 lines (101 loc) · 4.98 KB

UpdateFile

Properties

Name Type Description Notes
Description Pointer to string The description of the file. [optional]
CreatedAt Pointer to time.Time The time/date that the file was uploaded. [optional]
UpdatedAt Pointer to time.Time The time/date that the file was last updated. [optional]
Name Pointer to string The name of the file. [optional]
UploaderId Pointer to string The unique ID assigned to the Member who uploaded the file to Shortcut. [optional]
ExternalId Pointer to string An additional ID that you may wish to assign to the file. [optional]

Methods

NewUpdateFile

func NewUpdateFile() *UpdateFile

NewUpdateFile instantiates a new UpdateFile 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

NewUpdateFileWithDefaults

func NewUpdateFileWithDefaults() *UpdateFile

NewUpdateFileWithDefaults instantiates a new UpdateFile 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

GetDescription

func (o *UpdateFile) GetDescription() string

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *UpdateFile) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetCreatedAt

func (o *UpdateFile) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.

GetCreatedAtOk

func (o *UpdateFile) GetCreatedAtOk() (*time.Time, bool)

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

SetCreatedAt

func (o *UpdateFile) SetCreatedAt(v time.Time)

SetCreatedAt sets CreatedAt field to given value.

HasCreatedAt

func (o *UpdateFile) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

GetUpdatedAt

func (o *UpdateFile) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field if non-nil, zero value otherwise.

GetUpdatedAtOk

func (o *UpdateFile) GetUpdatedAtOk() (*time.Time, bool)

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

SetUpdatedAt

func (o *UpdateFile) SetUpdatedAt(v time.Time)

SetUpdatedAt sets UpdatedAt field to given value.

HasUpdatedAt

func (o *UpdateFile) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

GetName

func (o *UpdateFile) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *UpdateFile) HasName() bool

HasName returns a boolean if a field has been set.

GetUploaderId

func (o *UpdateFile) GetUploaderId() string

GetUploaderId returns the UploaderId field if non-nil, zero value otherwise.

GetUploaderIdOk

func (o *UpdateFile) GetUploaderIdOk() (*string, bool)

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

SetUploaderId

func (o *UpdateFile) SetUploaderId(v string)

SetUploaderId sets UploaderId field to given value.

HasUploaderId

func (o *UpdateFile) HasUploaderId() bool

HasUploaderId returns a boolean if a field has been set.

GetExternalId

func (o *UpdateFile) GetExternalId() string

GetExternalId returns the ExternalId field if non-nil, zero value otherwise.

GetExternalIdOk

func (o *UpdateFile) GetExternalIdOk() (*string, bool)

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

SetExternalId

func (o *UpdateFile) SetExternalId(v string)

SetExternalId sets ExternalId field to given value.

HasExternalId

func (o *UpdateFile) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

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