Skip to content

Latest commit

 

History

History
354 lines (197 loc) · 10.8 KB

VideoStatusEncodingMetadata.md

File metadata and controls

354 lines (197 loc) · 10.8 KB

VideoStatusEncodingMetadata

Properties

Name Type Description Notes
Width Pointer to NullableInt32 The width of the video in pixels. [optional]
Height Pointer to NullableInt32 The height of the video in pixels. [optional]
Bitrate Pointer to NullableFloat32 The number of bits processed per second. [optional]
Duration Pointer to NullableInt32 The length of the video. [optional]
Framerate Pointer to NullableInt32 The frequency with which consecutive images or frames appear on a display. Shown in this API as frames per second (fps). [optional]
Samplerate Pointer to NullableInt32 How many samples per second a digital audio system uses to record an audio signal. The higher the rate, the higher the frequencies that can be recorded. They are presented in this API using hertz. [optional]
VideoCodec Pointer to NullableString The method used to compress and decompress digital video. API Video supports all codecs in the libavcodec library. [optional]
AudioCodec Pointer to NullableString The method used to compress and decompress digital audio for your video. [optional]
AspectRatio Pointer to NullableString [optional]

Methods

NewVideoStatusEncodingMetadata

func NewVideoStatusEncodingMetadata() *VideoStatusEncodingMetadata

NewVideoStatusEncodingMetadata instantiates a new VideoStatusEncodingMetadata 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

NewVideoStatusEncodingMetadataWithDefaults

func NewVideoStatusEncodingMetadataWithDefaults() *VideoStatusEncodingMetadata

NewVideoStatusEncodingMetadataWithDefaults instantiates a new VideoStatusEncodingMetadata 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

GetWidth

func (o *VideoStatusEncodingMetadata) GetWidth() int32

GetWidth returns the Width field if non-nil, zero value otherwise.

GetWidthOk

func (o *VideoStatusEncodingMetadata) GetWidthOk() (*int32, bool)

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

SetWidth

func (o *VideoStatusEncodingMetadata) SetWidth(v int32)

SetWidth sets Width field to given value.

HasWidth

func (o *VideoStatusEncodingMetadata) HasWidth() bool

HasWidth returns a boolean if a field has been set.

SetWidthNil

func (o *VideoStatusEncodingMetadata) SetWidthNil(b bool)

SetWidthNil sets the value for Width to be an explicit nil

UnsetWidth

func (o *VideoStatusEncodingMetadata) UnsetWidth()

UnsetWidth ensures that no value is present for Width, not even an explicit nil

GetHeight

func (o *VideoStatusEncodingMetadata) GetHeight() int32

GetHeight returns the Height field if non-nil, zero value otherwise.

GetHeightOk

func (o *VideoStatusEncodingMetadata) GetHeightOk() (*int32, bool)

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

SetHeight

func (o *VideoStatusEncodingMetadata) SetHeight(v int32)

SetHeight sets Height field to given value.

HasHeight

func (o *VideoStatusEncodingMetadata) HasHeight() bool

HasHeight returns a boolean if a field has been set.

SetHeightNil

func (o *VideoStatusEncodingMetadata) SetHeightNil(b bool)

SetHeightNil sets the value for Height to be an explicit nil

UnsetHeight

func (o *VideoStatusEncodingMetadata) UnsetHeight()

UnsetHeight ensures that no value is present for Height, not even an explicit nil

GetBitrate

func (o *VideoStatusEncodingMetadata) GetBitrate() float32

GetBitrate returns the Bitrate field if non-nil, zero value otherwise.

GetBitrateOk

func (o *VideoStatusEncodingMetadata) GetBitrateOk() (*float32, bool)

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

SetBitrate

func (o *VideoStatusEncodingMetadata) SetBitrate(v float32)

SetBitrate sets Bitrate field to given value.

HasBitrate

func (o *VideoStatusEncodingMetadata) HasBitrate() bool

HasBitrate returns a boolean if a field has been set.

SetBitrateNil

func (o *VideoStatusEncodingMetadata) SetBitrateNil(b bool)

SetBitrateNil sets the value for Bitrate to be an explicit nil

UnsetBitrate

func (o *VideoStatusEncodingMetadata) UnsetBitrate()

UnsetBitrate ensures that no value is present for Bitrate, not even an explicit nil

GetDuration

func (o *VideoStatusEncodingMetadata) GetDuration() int32

GetDuration returns the Duration field if non-nil, zero value otherwise.

GetDurationOk

func (o *VideoStatusEncodingMetadata) GetDurationOk() (*int32, bool)

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

SetDuration

func (o *VideoStatusEncodingMetadata) SetDuration(v int32)

SetDuration sets Duration field to given value.

HasDuration

func (o *VideoStatusEncodingMetadata) HasDuration() bool

HasDuration returns a boolean if a field has been set.

SetDurationNil

func (o *VideoStatusEncodingMetadata) SetDurationNil(b bool)

SetDurationNil sets the value for Duration to be an explicit nil

UnsetDuration

func (o *VideoStatusEncodingMetadata) UnsetDuration()

UnsetDuration ensures that no value is present for Duration, not even an explicit nil

GetFramerate

func (o *VideoStatusEncodingMetadata) GetFramerate() int32

GetFramerate returns the Framerate field if non-nil, zero value otherwise.

GetFramerateOk

func (o *VideoStatusEncodingMetadata) GetFramerateOk() (*int32, bool)

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

SetFramerate

func (o *VideoStatusEncodingMetadata) SetFramerate(v int32)

SetFramerate sets Framerate field to given value.

HasFramerate

func (o *VideoStatusEncodingMetadata) HasFramerate() bool

HasFramerate returns a boolean if a field has been set.

SetFramerateNil

func (o *VideoStatusEncodingMetadata) SetFramerateNil(b bool)

SetFramerateNil sets the value for Framerate to be an explicit nil

UnsetFramerate

func (o *VideoStatusEncodingMetadata) UnsetFramerate()

UnsetFramerate ensures that no value is present for Framerate, not even an explicit nil

GetSamplerate

func (o *VideoStatusEncodingMetadata) GetSamplerate() int32

GetSamplerate returns the Samplerate field if non-nil, zero value otherwise.

GetSamplerateOk

func (o *VideoStatusEncodingMetadata) GetSamplerateOk() (*int32, bool)

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

SetSamplerate

func (o *VideoStatusEncodingMetadata) SetSamplerate(v int32)

SetSamplerate sets Samplerate field to given value.

HasSamplerate

func (o *VideoStatusEncodingMetadata) HasSamplerate() bool

HasSamplerate returns a boolean if a field has been set.

SetSamplerateNil

func (o *VideoStatusEncodingMetadata) SetSamplerateNil(b bool)

SetSamplerateNil sets the value for Samplerate to be an explicit nil

UnsetSamplerate

func (o *VideoStatusEncodingMetadata) UnsetSamplerate()

UnsetSamplerate ensures that no value is present for Samplerate, not even an explicit nil

GetVideoCodec

func (o *VideoStatusEncodingMetadata) GetVideoCodec() string

GetVideoCodec returns the VideoCodec field if non-nil, zero value otherwise.

GetVideoCodecOk

func (o *VideoStatusEncodingMetadata) GetVideoCodecOk() (*string, bool)

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

SetVideoCodec

func (o *VideoStatusEncodingMetadata) SetVideoCodec(v string)

SetVideoCodec sets VideoCodec field to given value.

HasVideoCodec

func (o *VideoStatusEncodingMetadata) HasVideoCodec() bool

HasVideoCodec returns a boolean if a field has been set.

SetVideoCodecNil

func (o *VideoStatusEncodingMetadata) SetVideoCodecNil(b bool)

SetVideoCodecNil sets the value for VideoCodec to be an explicit nil

UnsetVideoCodec

func (o *VideoStatusEncodingMetadata) UnsetVideoCodec()

UnsetVideoCodec ensures that no value is present for VideoCodec, not even an explicit nil

GetAudioCodec

func (o *VideoStatusEncodingMetadata) GetAudioCodec() string

GetAudioCodec returns the AudioCodec field if non-nil, zero value otherwise.

GetAudioCodecOk

func (o *VideoStatusEncodingMetadata) GetAudioCodecOk() (*string, bool)

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

SetAudioCodec

func (o *VideoStatusEncodingMetadata) SetAudioCodec(v string)

SetAudioCodec sets AudioCodec field to given value.

HasAudioCodec

func (o *VideoStatusEncodingMetadata) HasAudioCodec() bool

HasAudioCodec returns a boolean if a field has been set.

SetAudioCodecNil

func (o *VideoStatusEncodingMetadata) SetAudioCodecNil(b bool)

SetAudioCodecNil sets the value for AudioCodec to be an explicit nil

UnsetAudioCodec

func (o *VideoStatusEncodingMetadata) UnsetAudioCodec()

UnsetAudioCodec ensures that no value is present for AudioCodec, not even an explicit nil

GetAspectRatio

func (o *VideoStatusEncodingMetadata) GetAspectRatio() string

GetAspectRatio returns the AspectRatio field if non-nil, zero value otherwise.

GetAspectRatioOk

func (o *VideoStatusEncodingMetadata) GetAspectRatioOk() (*string, bool)

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

SetAspectRatio

func (o *VideoStatusEncodingMetadata) SetAspectRatio(v string)

SetAspectRatio sets AspectRatio field to given value.

HasAspectRatio

func (o *VideoStatusEncodingMetadata) HasAspectRatio() bool

HasAspectRatio returns a boolean if a field has been set.

SetAspectRatioNil

func (o *VideoStatusEncodingMetadata) SetAspectRatioNil(b bool)

SetAspectRatioNil sets the value for AspectRatio to be an explicit nil

UnsetAspectRatio

func (o *VideoStatusEncodingMetadata) UnsetAspectRatio()

UnsetAspectRatio ensures that no value is present for AspectRatio, not even an explicit nil

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