Class: Google::Apis::AdexchangebuyerV1_4::SharedTargeting
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdexchangebuyerV1_4::SharedTargeting
 
- 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
- 
  
    
      #exclusions  ⇒ Array<Google::Apis::AdexchangebuyerV1_4::TargetingValue> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of values to exclude from targeting. 
- 
  
    
      #inclusions  ⇒ Array<Google::Apis::AdexchangebuyerV1_4::TargetingValue> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of value to include as part of the targeting. 
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The key representing the shared targeting criterion. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SharedTargeting 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SharedTargeting. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SharedTargeting
Returns a new instance of SharedTargeting
| 3405 3406 3407 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3405 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#exclusions ⇒ Array<Google::Apis::AdexchangebuyerV1_4::TargetingValue>
The list of values to exclude from targeting. Each value is AND'd together.
Corresponds to the JSON property exclusions
| 3392 3393 3394 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3392 def exclusions @exclusions end | 
#inclusions ⇒ Array<Google::Apis::AdexchangebuyerV1_4::TargetingValue>
The list of value to include as part of the targeting. Each value is OR'd
together.
Corresponds to the JSON property inclusions
| 3398 3399 3400 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3398 def inclusions @inclusions end | 
#key ⇒ String
The key representing the shared targeting criterion.
Corresponds to the JSON property key
| 3403 3404 3405 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3403 def key @key end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3410 3411 3412 3413 3414 | # File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3410 def update!(**args) @exclusions = args[:exclusions] if args.key?(:exclusions) @inclusions = args[:inclusions] if args.key?(:inclusions) @key = args[:key] if args.key?(:key) end |