Class: Google::Apis::AuthorizedbuyersmarketplaceV1::CriteriaTargeting

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb,
lib/google/apis/authorizedbuyersmarketplace_v1/representations.rb,
lib/google/apis/authorizedbuyersmarketplace_v1/representations.rb
more...

Overview

Generic targeting used for targeting dimensions that contains a list of included and excluded numeric IDs. This cannot be filtered using list filter syntax.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CriteriaTargeting

Returns a new instance of CriteriaTargeting.

[View source]

448
449
450
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 448

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

Instance Attribute Details

#excluded_criteria_idsArray<Fixnum>

A list of numeric IDs to be excluded. Corresponds to the JSON property excludedCriteriaIds

Returns:

  • (Array<Fixnum>)

441
442
443
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 441

def excluded_criteria_ids
  @excluded_criteria_ids
end

#targeted_criteria_idsArray<Fixnum>

A list of numeric IDs to be included. Corresponds to the JSON property targetedCriteriaIds

Returns:

  • (Array<Fixnum>)

446
447
448
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 446

def targeted_criteria_ids
  @targeted_criteria_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

453
454
455
456
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 453

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