Class: Google::Apis::AdexchangebuyerV1_4::PretargetingConfig::Placement
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdexchangebuyerV1_4::PretargetingConfig::Placement
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adexchangebuyer_v1_4/classes.rb,
 generated/google/apis/adexchangebuyer_v1_4/representations.rb,
 generated/google/apis/adexchangebuyer_v1_4/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The value of the placement. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the placement. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Placement 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Placement. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Placement
Returns a new instance of Placement
| 2624 2625 2626 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2624 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#token ⇒ String
The value of the placement. Interpretation depends on the placement type, e.g.
URL for a site placement, channel name for a channel placement, app id for a
mobile app placement.
Corresponds to the JSON property token
| 2617 2618 2619 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2617 def token @token end | 
#type ⇒ String
The type of the placement.
Corresponds to the JSON property type
| 2622 2623 2624 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2622 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2629 2630 2631 2632 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 2629 def update!(**args) @token = args[:token] if args.key?(:token) @type = args[:type] if args.key?(:type) end |