Show / Hide Table of Contents

Class VideoFormat

Contains information about supported video formats.

Inheritance
System.Object
VideoFormat
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dfareporting.v3_3.Data
Assembly: Google.Apis.Dfareporting.v3_3.dll
Syntax
public class VideoFormat : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

FileType

File type of the video format.

Declaration
[JsonProperty("fileType")]
public virtual string FileType { get; set; }
Property Value
Type Description
System.String

Id

ID of the video format.

Declaration
[JsonProperty("id")]
public virtual int? Id { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Kind

Identifies what kind of resource this is. Value: the fixed string "dfareporting#videoFormat".

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

Resolution

The resolution of this video format.

Declaration
[JsonProperty("resolution")]
public virtual Size Resolution { get; set; }
Property Value
Type Description
Size

TargetBitRate

The target bit rate of this video format.

Declaration
[JsonProperty("targetBitRate")]
public virtual int? TargetBitRate { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
In This Article
Back to top