BaseBackup
Last updated
Size
Pointer to int32
The size of the backup in MiB. This is the size of the binary backup file that was stored.
[optional]
func NewBaseBackup() *BaseBackup
NewBaseBackup instantiates a new BaseBackup 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 NewBaseBackupWithDefaults() *BaseBackup
NewBaseBackupWithDefaults instantiates a new BaseBackup 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 *BaseBackup) GetCreated() time.Time
GetCreated returns the Created field if non-nil, zero value otherwise.
func (o *BaseBackup) GetCreatedOk() (*time.Time, bool)
GetCreatedOk returns a tuple with the Created field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BaseBackup) SetCreated(v time.Time)
SetCreated sets Created field to given value.
func (o *BaseBackup) HasCreated() bool
HasCreated returns a boolean if a field has been set.
func (o *BaseBackup) GetSize() int32
GetSize returns the Size field if non-nil, zero value otherwise.
func (o *BaseBackup) 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 *BaseBackup) SetSize(v int32)
SetSize sets Size field to given value.
func (o *BaseBackup) HasSize() bool
HasSize returns a boolean if a field has been set.
Last updated