Class: Google::Apis::DfareportingV3_4::CustomViewabilityMetricConfiguration
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_4::CustomViewabilityMetricConfiguration
- 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
The attributes, like playtime and percent onscreen, that define the Custom Viewability Metric.
Instance Attribute Summary collapse
-
#audible ⇒ Boolean
(also: #audible?)
Whether the video must be audible to count an impression.
-
#time_millis ⇒ Fixnum
The time in milliseconds the video must play for the Custom Viewability Metric to count an impression.
-
#time_percent ⇒ Fixnum
The percentage of video that must play for the Custom Viewability Metric to count an impression.
-
#viewability_percent ⇒ Fixnum
The percentage of video that must be on screen for the Custom Viewability Metric to count an impression.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomViewabilityMetricConfiguration
constructor
A new instance of CustomViewabilityMetricConfiguration.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomViewabilityMetricConfiguration
Returns a new instance of CustomViewabilityMetricConfiguration.
5105 5106 5107 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5105 def initialize(**args) update!(**args) end |
Instance Attribute Details
#audible ⇒ Boolean Also known as: audible?
Whether the video must be audible to count an impression.
Corresponds to the JSON property audible
5082 5083 5084 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5082 def audible @audible end |
#time_millis ⇒ Fixnum
The time in milliseconds the video must play for the Custom Viewability Metric
to count an impression. If both this and timePercent are specified, the
earlier of the two will be used.
Corresponds to the JSON property timeMillis
5090 5091 5092 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5090 def time_millis @time_millis end |
#time_percent ⇒ Fixnum
The percentage of video that must play for the Custom Viewability Metric to
count an impression. If both this and timeMillis are specified, the earlier of
the two will be used.
Corresponds to the JSON property timePercent
5097 5098 5099 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5097 def time_percent @time_percent end |
#viewability_percent ⇒ Fixnum
The percentage of video that must be on screen for the Custom Viewability
Metric to count an impression.
Corresponds to the JSON property viewabilityPercent
5103 5104 5105 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5103 def viewability_percent @viewability_percent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5110 5111 5112 5113 5114 5115 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5110 def update!(**args) @audible = args[:audible] if args.key?(:audible) @time_millis = args[:time_millis] if args.key?(:time_millis) @time_percent = args[:time_percent] if args.key?(:time_percent) @viewability_percent = args[:viewability_percent] if args.key?(:viewability_percent) end |