Class: Google::Apis::DfareportingV3_4::VideoFormat

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v3_4/classes.rb,
generated/google/apis/dfareporting_v3_4/representations.rb,
generated/google/apis/dfareporting_v3_4/representations.rb

Overview

Contains information about supported video formats.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VideoFormat

Returns a new instance of VideoFormat.



12976
12977
12978
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12976

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#file_typeString

File type of the video format. Corresponds to the JSON property fileType

Returns:

  • (String)


12953
12954
12955
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12953

def file_type
  @file_type
end

#idFixnum

ID of the video format. Corresponds to the JSON property id

Returns:

  • (Fixnum)


12958
12959
12960
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12958

def id
  @id
end

#kindString

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

Returns:

  • (String)


12964
12965
12966
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12964

def kind
  @kind
end

#resolutionGoogle::Apis::DfareportingV3_4::Size

Represents the dimensions of ads, placements, creatives, or creative assets. Corresponds to the JSON property resolution



12969
12970
12971
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12969

def resolution
  @resolution
end

#target_bit_rateFixnum

The target bit rate of this video format. Corresponds to the JSON property targetBitRate

Returns:

  • (Fixnum)


12974
12975
12976
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12974

def target_bit_rate
  @target_bit_rate
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12981
12982
12983
12984
12985
12986
12987
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 12981

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