Name | Type | Description | Notes |
---|---|---|---|
Status | Pointer to string | There are three possible ingest statuses. missing - you are missing information required to ingest the video. uploading - the video is in the process of being uploaded. uploaded - the video is ready for use. | [optional] |
Filesize | Pointer to int32 | The size of your file in bytes. | [optional] |
ReceivedBytes | Pointer to []BytesRange | The total number of bytes received, listed for each chunk of the upload. | [optional] |
func NewVideoStatusIngest() *VideoStatusIngest
NewVideoStatusIngest instantiates a new VideoStatusIngest 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 NewVideoStatusIngestWithDefaults() *VideoStatusIngest
NewVideoStatusIngestWithDefaults instantiates a new VideoStatusIngest 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 *VideoStatusIngest) GetStatus() string
GetStatus returns the Status field if non-nil, zero value otherwise.
func (o *VideoStatusIngest) GetStatusOk() (*string, bool)
GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *VideoStatusIngest) SetStatus(v string)
SetStatus sets Status field to given value.
func (o *VideoStatusIngest) HasStatus() bool
HasStatus returns a boolean if a field has been set.
func (o *VideoStatusIngest) GetFilesize() int32
GetFilesize returns the Filesize field if non-nil, zero value otherwise.
func (o *VideoStatusIngest) GetFilesizeOk() (*int32, bool)
GetFilesizeOk returns a tuple with the Filesize field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *VideoStatusIngest) SetFilesize(v int32)
SetFilesize sets Filesize field to given value.
func (o *VideoStatusIngest) HasFilesize() bool
HasFilesize returns a boolean if a field has been set.
func (o *VideoStatusIngest) GetReceivedBytes() []BytesRange
GetReceivedBytes returns the ReceivedBytes field if non-nil, zero value otherwise.
func (o *VideoStatusIngest) GetReceivedBytesOk() (*[]BytesRange, bool)
GetReceivedBytesOk returns a tuple with the ReceivedBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *VideoStatusIngest) SetReceivedBytes(v []BytesRange)
SetReceivedBytes sets ReceivedBytes field to given value.
func (o *VideoStatusIngest) HasReceivedBytes() bool
HasReceivedBytes returns a boolean if a field has been set.