Class: Google::Apis::Adexchangebuyer2V2beta1::CriteriaTargeting
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::CriteriaTargeting
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adexchangebuyer2_v2beta1/classes.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb
Overview
Generic targeting used for targeting dimensions that contains a list of included and excluded numeric IDs.
Instance Attribute Summary collapse
-
#excluded_criteria_ids ⇒ Array<Fixnum>
A list of numeric IDs to be excluded.
-
#targeted_criteria_ids ⇒ Array<Fixnum>
A list of numeric IDs to be included.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CriteriaTargeting
constructor
A new instance of CriteriaTargeting.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CriteriaTargeting
Returns a new instance of CriteriaTargeting
1030 1031 1032 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1030 def initialize(**args) update!(**args) end |
Instance Attribute Details
#excluded_criteria_ids ⇒ Array<Fixnum>
A list of numeric IDs to be excluded.
Corresponds to the JSON property excludedCriteriaIds
1023 1024 1025 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1023 def excluded_criteria_ids @excluded_criteria_ids end |
#targeted_criteria_ids ⇒ Array<Fixnum>
A list of numeric IDs to be included.
Corresponds to the JSON property targetedCriteriaIds
1028 1029 1030 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1028 def targeted_criteria_ids @targeted_criteria_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1035 1036 1037 1038 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1035 def update!(**args) @excluded_criteria_ids = args[:excluded_criteria_ids] if args.key?(:excluded_criteria_ids) @targeted_criteria_ids = args[:targeted_criteria_ids] if args.key?(:targeted_criteria_ids) end |