Class: Google::Apis::DisplayvideoV2::Pacing
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV2::Pacing
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v2/classes.rb,
lib/google/apis/displayvideo_v2/representations.rb,
lib/google/apis/displayvideo_v2/representations.rb
Overview
Settings that control the rate at which a budget is spent.
Instance Attribute Summary collapse
-
#daily_max_impressions ⇒ Fixnum
Maximum number of impressions to serve every day.
-
#daily_max_micros ⇒ Fixnum
Maximum currency amount to spend every day in micros of advertiser's currency.
-
#pacing_period ⇒ String
Required.
-
#pacing_type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Pacing
constructor
A new instance of Pacing.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Pacing
Returns a new instance of Pacing.
9448 9449 9450 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9448 def initialize(**args) update!(**args) end |
Instance Attribute Details
#daily_max_impressions ⇒ Fixnum
Maximum number of impressions to serve every day. Applicable when the budget
is impression based. Must be greater than 0.
Corresponds to the JSON property dailyMaxImpressions
9418 9419 9420 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9418 def daily_max_impressions @daily_max_impressions end |
#daily_max_micros ⇒ Fixnum
Maximum currency amount to spend every day in micros of advertiser's currency.
Applicable when the budget is currency based. Must be greater than 0. For
example, for 1.5 standard unit of the currency, set this field to 1500000. The
value assigned will be rounded to whole billable units for the relevant
currency by the following rules: any positive value less than a single
billable unit will be rounded up to one billable unit and any value larger
than a single billable unit will be rounded down to the nearest billable value.
For example, if the currency's billable unit is 0.01, and this field is set
to 10257770, it will round down to 10250000, a value of 10.25. If set to 505,
it will round up to 10000, a value of 0.01.
Corresponds to the JSON property dailyMaxMicros
9432 9433 9434 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9432 def daily_max_micros @daily_max_micros end |
#pacing_period ⇒ String
Required. The time period in which the pacing budget will be spent. When
automatic budget allocation is enabled at the insertion order via
automationType, this field is output only and defaults to
PACING_PERIOD_FLIGHT.
Corresponds to the JSON property pacingPeriod
9440 9441 9442 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9440 def pacing_period @pacing_period end |
#pacing_type ⇒ String
Required. The type of pacing that defines how the budget amount will be spent
across the pacing_period.
Corresponds to the JSON property pacingType
9446 9447 9448 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9446 def pacing_type @pacing_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9453 9454 9455 9456 9457 9458 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9453 def update!(**args) @daily_max_impressions = args[:daily_max_impressions] if args.key?(:daily_max_impressions) @daily_max_micros = args[:daily_max_micros] if args.key?(:daily_max_micros) @pacing_period = args[:pacing_period] if args.key?(:pacing_period) @pacing_type = args[:pacing_type] if args.key?(:pacing_type) end |