Class: Google::Apis::DfareportingV3_2::PricingSchedule
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_2::PricingSchedule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_2/classes.rb,
generated/google/apis/dfareporting_v3_2/representations.rb,
generated/google/apis/dfareporting_v3_2/representations.rb
Overview
Pricing Schedule
Instance Attribute Summary collapse
-
#cap_cost_option ⇒ String
Placement cap cost option.
-
#disregard_overdelivery ⇒ Boolean
(also: #disregard_overdelivery?)
Whether cap costs are ignored by ad serving.
-
#end_date ⇒ Date
Placement end date.
-
#flighted ⇒ Boolean
(also: #flighted?)
Whether this placement is flighted.
-
#floodlight_activity_id ⇒ Fixnum
Floodlight activity ID associated with this placement.
-
#pricing_periods ⇒ Array<Google::Apis::DfareportingV3_2::PricingSchedulePricingPeriod>
Pricing periods for this placement.
-
#pricing_type ⇒ String
Placement pricing type.
-
#start_date ⇒ Date
Placement start date.
-
#testing_start_date ⇒ Date
Testing start date of this placement.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PricingSchedule
constructor
A new instance of PricingSchedule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PricingSchedule
Returns a new instance of PricingSchedule
9295 9296 9297 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 9295 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cap_cost_option ⇒ String
Placement cap cost option.
Corresponds to the JSON property capCostOption
9240 9241 9242 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 9240 def cap_cost_option @cap_cost_option end |
#disregard_overdelivery ⇒ Boolean Also known as: disregard_overdelivery?
Whether cap costs are ignored by ad serving.
Corresponds to the JSON property disregardOverdelivery
9245 9246 9247 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 9245 def disregard_overdelivery @disregard_overdelivery end |
#end_date ⇒ Date
Placement end date. This date must be later than, or the same day as, the
placement start date, but not later than the campaign end date. If, for
example, you set 6/25/2015 as both the start and end dates, the effective
placement date is just that day only, 6/25/2015. The hours, minutes, and
seconds of the end date should not be set, as doing so will result in an error.
This field is required on insertion.
Corresponds to the JSON property endDate
9256 9257 9258 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 9256 def end_date @end_date end |
#flighted ⇒ Boolean Also known as: flighted?
Whether this placement is flighted. If true, pricing periods will be computed
automatically.
Corresponds to the JSON property flighted
9262 9263 9264 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 9262 def flighted @flighted end |
#floodlight_activity_id ⇒ Fixnum
Floodlight activity ID associated with this placement. This field should be
set when placement pricing type is set to PRICING_TYPE_CPA.
Corresponds to the JSON property floodlightActivityId
9269 9270 9271 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 9269 def floodlight_activity_id @floodlight_activity_id end |
#pricing_periods ⇒ Array<Google::Apis::DfareportingV3_2::PricingSchedulePricingPeriod>
Pricing periods for this placement.
Corresponds to the JSON property pricingPeriods
9274 9275 9276 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 9274 def pricing_periods @pricing_periods end |
#pricing_type ⇒ String
Placement pricing type. This field is required on insertion.
Corresponds to the JSON property pricingType
9279 9280 9281 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 9279 def pricing_type @pricing_type end |
#start_date ⇒ Date
Placement start date. This date must be later than, or the same day as, the
campaign start date. The hours, minutes, and seconds of the start date should
not be set, as doing so will result in an error. This field is required on
insertion.
Corresponds to the JSON property startDate
9287 9288 9289 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 9287 def start_date @start_date end |
#testing_start_date ⇒ Date
Testing start date of this placement. The hours, minutes, and seconds of the
start date should not be set, as doing so will result in an error.
Corresponds to the JSON property testingStartDate
9293 9294 9295 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 9293 def testing_start_date @testing_start_date end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 9300 def update!(**args) @cap_cost_option = args[:cap_cost_option] if args.key?(:cap_cost_option) @disregard_overdelivery = args[:disregard_overdelivery] if args.key?(:disregard_overdelivery) @end_date = args[:end_date] if args.key?(:end_date) @flighted = args[:flighted] if args.key?(:flighted) @floodlight_activity_id = args[:floodlight_activity_id] if args.key?(:floodlight_activity_id) @pricing_periods = args[:pricing_periods] if args.key?(:pricing_periods) @pricing_type = args[:pricing_type] if args.key?(:pricing_type) @start_date = args[:start_date] if args.key?(:start_date) @testing_start_date = args[:testing_start_date] if args.key?(:testing_start_date) end |