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



3349
3350
3351
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3349

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



3336
3337
3338
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3336

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



3342
3343
3344
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3342

def inclusions
  @inclusions
end

#keyString

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

Returns:

  • (String)


3347
3348
3349
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3347

def key
  @key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3354
3355
3356
3357
3358
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3354

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