Class: Google::Apis::DfareportingV2_8::Pricing
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV2_8::Pricing
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_8/classes.rb,
 generated/google/apis/dfareporting_v2_8/representations.rb,
 generated/google/apis/dfareporting_v2_8/representations.rb
Overview
Pricing Information
Instance Attribute Summary collapse
- 
  
    
      #cap_cost_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Cap cost type of this inventory item. 
- 
  
    
      #end_date  ⇒ Date 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    End date of this inventory item. 
- 
  
    
      #flights  ⇒ Array<Google::Apis::DfareportingV2_8::Flight> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Flights of this inventory item. 
- 
  
    
      #group_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Group type of this inventory item if it represents a placement group. 
- 
  
    
      #pricing_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Pricing type of this inventory item. 
- 
  
    
      #start_date  ⇒ Date 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Start date of this inventory item. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Pricing 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Pricing. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Pricing
Returns a new instance of Pricing
| 8969 8970 8971 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 8969 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#cap_cost_type ⇒ String
Cap cost type of this inventory item.
Corresponds to the JSON property capCostType
| 8934 8935 8936 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 8934 def cap_cost_type @cap_cost_type end | 
#end_date ⇒ Date
End date of this inventory item.
Corresponds to the JSON property endDate
| 8939 8940 8941 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 8939 def end_date @end_date end | 
#flights ⇒ Array<Google::Apis::DfareportingV2_8::Flight>
Flights of this inventory item. A flight (a.k.a. pricing period) represents
the inventory item pricing information for a specific period of time.
Corresponds to the JSON property flights
| 8945 8946 8947 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 8945 def flights @flights end | 
#group_type ⇒ String
Group type of this inventory item if it represents a placement group. Is null
otherwise. There are two type of placement groups:
PLANNING_PLACEMENT_GROUP_TYPE_PACKAGE is a simple group of inventory items
that acts as a single pricing point for a group of tags.
PLANNING_PLACEMENT_GROUP_TYPE_ROADBLOCK is a group of inventory items that not
only acts as a single pricing point, but also assumes that all the tags in it
will be served at the same time. A roadblock requires one of its assigned
inventory items to be marked as primary.
Corresponds to the JSON property groupType
| 8957 8958 8959 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 8957 def group_type @group_type end | 
#pricing_type ⇒ String
Pricing type of this inventory item.
Corresponds to the JSON property pricingType
| 8962 8963 8964 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 8962 def pricing_type @pricing_type end | 
#start_date ⇒ Date
Start date of this inventory item.
Corresponds to the JSON property startDate
| 8967 8968 8969 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 8967 def start_date @start_date end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 8974 8975 8976 8977 8978 8979 8980 8981 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 8974 def update!(**args) @cap_cost_type = args[:cap_cost_type] if args.key?(:cap_cost_type) @end_date = args[:end_date] if args.key?(:end_date) @flights = args[:flights] if args.key?(:flights) @group_type = args[:group_type] if args.key?(:group_type) @pricing_type = args[:pricing_type] if args.key?(:pricing_type) @start_date = args[:start_date] if args.key?(:start_date) end |