Name | Type | Description | Notes |
---|---|---|---|
Key | Pointer to string | The object key. | [optional] |
LastModified | Pointer to time.Time | Creation date of the object. | [optional] |
StorageClass | Pointer to ObjectStorageClass | [optional] | |
Size | Pointer to int32 | Size in bytes of the object | [optional] |
ETag | Pointer to string | Entity tag that identifies the object's data. Objects with different object data will have different entity tags. The entity tag is an opaque string. The entity tag may or may not be an MD5 digest of the object data. If the entity tag is not an MD5 digest of the object data, it will contain one or more nonhexadecimal characters and/or will consist of less than 32 or more than 32 hexadecimal digits. | [optional] |
Owner | Pointer to Owner | [optional] |
func NewObject() *Object
NewObject instantiates a new Object 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
func NewObjectWithDefaults() *Object
NewObjectWithDefaults instantiates a new Object 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
func (o *Object) GetKey() string
GetKey returns the Key field if non-nil, zero value otherwise.
func (o *Object) GetKeyOk() (*string, bool)
GetKeyOk returns a tuple with the Key field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Object) SetKey(v string)
SetKey sets Key field to given value.
func (o *Object) HasKey() bool
HasKey returns a boolean if a field has been set.
func (o *Object) GetLastModified() time.Time
GetLastModified returns the LastModified field if non-nil, zero value otherwise.
func (o *Object) GetLastModifiedOk() (*time.Time, bool)
GetLastModifiedOk returns a tuple with the LastModified field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Object) SetLastModified(v time.Time)
SetLastModified sets LastModified field to given value.
func (o *Object) HasLastModified() bool
HasLastModified returns a boolean if a field has been set.
func (o *Object) GetStorageClass() ObjectStorageClass
GetStorageClass returns the StorageClass field if non-nil, zero value otherwise.
func (o *Object) GetStorageClassOk() (*ObjectStorageClass, bool)
GetStorageClassOk returns a tuple with the StorageClass field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Object) SetStorageClass(v ObjectStorageClass)
SetStorageClass sets StorageClass field to given value.
func (o *Object) HasStorageClass() bool
HasStorageClass returns a boolean if a field has been set.
func (o *Object) GetSize() int32
GetSize returns the Size field if non-nil, zero value otherwise.
func (o *Object) GetSizeOk() (*int32, 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.
func (o *Object) SetSize(v int32)
SetSize sets Size field to given value.
func (o *Object) HasSize() bool
HasSize returns a boolean if a field has been set.
func (o *Object) GetETag() string
GetETag returns the ETag field if non-nil, zero value otherwise.
func (o *Object) GetETagOk() (*string, bool)
GetETagOk returns a tuple with the ETag field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Object) SetETag(v string)
SetETag sets ETag field to given value.
func (o *Object) HasETag() bool
HasETag returns a boolean if a field has been set.
func (o *Object) GetOwner() Owner
GetOwner returns the Owner field if non-nil, zero value otherwise.
func (o *Object) GetOwnerOk() (*Owner, bool)
GetOwnerOk returns a tuple with the Owner field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Object) SetOwner(v Owner)
SetOwner sets Owner field to given value.
func (o *Object) HasOwner() bool
HasOwner returns a boolean if a field has been set.