Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.46 KB

ComputerAttachment.md

File metadata and controls

134 lines (73 loc) · 3.46 KB

ComputerAttachment

Properties

Name Type Description Notes
Id Pointer to string [optional]
Name Pointer to string [optional]
FileType Pointer to string [optional]
SizeBytes Pointer to int64 File size in bytes [optional]

Methods

NewComputerAttachment

func NewComputerAttachment() *ComputerAttachment

NewComputerAttachment instantiates a new ComputerAttachment 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

NewComputerAttachmentWithDefaults

func NewComputerAttachmentWithDefaults() *ComputerAttachment

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

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

GetIdOk

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

SetId sets Id field to given value.

HasId

func (o *ComputerAttachment) HasId() bool

HasId returns a boolean if a field has been set.

GetName

func (o *ComputerAttachment) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *ComputerAttachment) HasName() bool

HasName returns a boolean if a field has been set.

GetFileType

func (o *ComputerAttachment) GetFileType() string

GetFileType returns the FileType field if non-nil, zero value otherwise.

GetFileTypeOk

func (o *ComputerAttachment) GetFileTypeOk() (*string, bool)

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

SetFileType

func (o *ComputerAttachment) SetFileType(v string)

SetFileType sets FileType field to given value.

HasFileType

func (o *ComputerAttachment) HasFileType() bool

HasFileType returns a boolean if a field has been set.

GetSizeBytes

func (o *ComputerAttachment) GetSizeBytes() int64

GetSizeBytes returns the SizeBytes field if non-nil, zero value otherwise.

GetSizeBytesOk

func (o *ComputerAttachment) GetSizeBytesOk() (*int64, bool)

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

SetSizeBytes

func (o *ComputerAttachment) SetSizeBytes(v int64)

SetSizeBytes sets SizeBytes field to given value.

HasSizeBytes

func (o *ComputerAttachment) HasSizeBytes() bool

HasSizeBytes returns a boolean if a field has been set.

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