Class: Google::Apis::DoubleclickbidmanagerV2::PathQueryOptionsFilter

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/doubleclickbidmanager_v2/classes.rb,
lib/google/apis/doubleclickbidmanager_v2/representations.rb,
lib/google/apis/doubleclickbidmanager_v2/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.



408
409
410
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 408

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

Instance Attribute Details

#filterString

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

Returns:

  • (String)


396
397
398
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 396

def filter
  @filter
end

#matchString

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

Returns:

  • (String)


401
402
403
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 401

def match
  @match
end

#valuesArray<String>

Value to filter on. Corresponds to the JSON property values

Returns:

  • (Array<String>)


406
407
408
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 406

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



413
414
415
416
417
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 413

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