Class: Google::Apis::DoubleclickbidmanagerV2::PathQueryOptionsFilter
- Inherits:
-
Object
- Object
- Google::Apis::DoubleclickbidmanagerV2::PathQueryOptionsFilter
- 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
-
#filter ⇒ String
Dimension the filter is applied to.
-
#match ⇒ String
Indicates how the filter should be matched to the value.
-
#values ⇒ Array<String>
Value to filter on.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PathQueryOptionsFilter
constructor
A new instance of PathQueryOptionsFilter.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#filter ⇒ String
Dimension the filter is applied to.
Corresponds to the JSON property filter
396 397 398 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 396 def filter @filter end |
#match ⇒ String
Indicates how the filter should be matched to the value.
Corresponds to the JSON property match
401 402 403 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 401 def match @match end |
#values ⇒ Array<String>
Value to filter on.
Corresponds to the JSON property values
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 |