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



3438
3439
3440
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3438

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



3425
3426
3427
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3425

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



3431
3432
3433
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3431

def inclusions
  @inclusions
end

#keyString

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

Returns:

  • (String)


3436
3437
3438
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3436

def key
  @key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3443
3444
3445
3446
3447
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 3443

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