Class: Google::Apis::AdexchangebuyerV1_4::SharedTargeting

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SharedTargeting

Returns a new instance of SharedTargeting.



3217
3218
3219
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3217

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#exclusionsArray<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



3204
3205
3206
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3204

def exclusions
  @exclusions
end

#inclusionsArray<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



3210
3211
3212
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3210

def inclusions
  @inclusions
end

#keyString

The key representing the shared targeting criterion. Corresponds to the JSON property key

Returns:

  • (String)


3215
3216
3217
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3215

def key
  @key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3222
3223
3224
3225
3226
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3222

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