Class: Google::Apis::DisplayvideoV4::PlannedProductReachForecast
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV4::PlannedProductReachForecast
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v4/classes.rb,
lib/google/apis/displayvideo_v4/representations.rb,
lib/google/apis/displayvideo_v4/representations.rb
Overview
Performance forecast for a specific product.
Instance Attribute Summary collapse
-
#cost_micros ⇒ Fixnum
The cost in micros for this product.
-
#plannable_product_code ⇒ String
The code for the product.
-
#planned_product_forecast ⇒ Google::Apis::DisplayvideoV4::PlannedProductForecast
Performance metrics for a forecast point.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PlannedProductReachForecast
constructor
A new instance of PlannedProductReachForecast.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PlannedProductReachForecast
Returns a new instance of PlannedProductReachForecast.
12913 12914 12915 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12913 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cost_micros ⇒ Fixnum
The cost in micros for this product.
Corresponds to the JSON property costMicros
12901 12902 12903 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12901 def cost_micros @cost_micros end |
#plannable_product_code ⇒ String
The code for the product.
Corresponds to the JSON property plannableProductCode
12906 12907 12908 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12906 def plannable_product_code @plannable_product_code end |
#planned_product_forecast ⇒ Google::Apis::DisplayvideoV4::PlannedProductForecast
Performance metrics for a forecast point.
Corresponds to the JSON property plannedProductForecast
12911 12912 12913 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12911 def planned_product_forecast @planned_product_forecast end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12918 12919 12920 12921 12922 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12918 def update!(**args) @cost_micros = args[:cost_micros] if args.key?(:cost_micros) @plannable_product_code = args[:plannable_product_code] if args.key?(:plannable_product_code) @planned_product_forecast = args[:planned_product_forecast] if args.key?(:planned_product_forecast) end |