Class: Google::Apis::DoubleclickbidmanagerV1_1::PathQueryOptionsFilter

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

Overview

Dimension Filter on path events.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PathQueryOptionsFilter

Returns a new instance of PathQueryOptionsFilter.



492
493
494
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 492

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

Instance Attribute Details

#filterString

Dimension the filter is applied to. Corresponds to the JSON property filter

Returns:

  • (String)


480
481
482
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 480

def filter
  @filter
end

#matchString

Indicates how the filter should be matched to the value. Corresponds to the JSON property match

Returns:

  • (String)


485
486
487
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 485

def match
  @match
end

#valuesArray<String>

Value to filter on. Corresponds to the JSON property values

Returns:

  • (Array<String>)


490
491
492
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 490

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



497
498
499
500
501
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 497

def update!(**args)
  @filter = args[:filter] if args.key?(:filter)
  @match = args[:match] if args.key?(:match)
  @values = args[:values] if args.key?(:values)
end