class Google::Apis::AdexchangebuyerV1_4::SharedTargeting

Attributes

exclusions[RW]

The list of values to exclude from targeting. Each value is AND'd together. Corresponds to the JSON property `exclusions` @return [Array<Google::Apis::AdexchangebuyerV1_4::TargetingValue>]

inclusions[RW]

The list of value to include as part of the targeting. Each value is OR'd together. Corresponds to the JSON property `inclusions` @return [Array<Google::Apis::AdexchangebuyerV1_4::TargetingValue>]

key[RW]

The key representing the shared targeting criterion. Corresponds to the JSON property `key` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/adexchangebuyer_v1_4/classes.rb, line 3511
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/adexchangebuyer_v1_4/classes.rb, line 3516
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