class Google::Apis::DfareportingV3_5::VideoFormat
Contains information about supported video formats.
Attributes
file_type[RW]
File
type of the video format. Corresponds to the JSON property `fileType` @return [String]
id[RW]
ID of the video format. Corresponds to the JSON property `id` @return [Fixnum]
kind[RW]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#videoFormat”. Corresponds to the JSON property `kind` @return [String]
resolution[RW]
Represents the dimensions of ads, placements, creatives, or creative assets. Corresponds to the JSON property `resolution` @return [Google::Apis::DfareportingV3_5::Size]
target_bit_rate[RW]
The target bit rate of this video format. Corresponds to the JSON property `targetBitRate` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 12635 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 12640 def update!(**args) @file_type = args[:file_type] if args.key?(:file_type) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @resolution = args[:resolution] if args.key?(:resolution) @target_bit_rate = args[:target_bit_rate] if args.key?(:target_bit_rate) end