Class: Google::Apis::DoubleclickbidmanagerV1_1::FilterPair
- Inherits:
-
Object
- Object
- Google::Apis::DoubleclickbidmanagerV1_1::FilterPair
- 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
Filter used to match traffic data in your report.
Instance Attribute Summary collapse
-
#type ⇒ String
Filter type.
-
#value ⇒ String
Filter value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FilterPair
constructor
A new instance of FilterPair.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FilterPair
Returns a new instance of FilterPair.
264 265 266 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 264 def initialize(**args) update!(**args) end |
Instance Attribute Details
#type ⇒ String
Filter type.
Corresponds to the JSON property type
257 258 259 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 257 def type @type end |
#value ⇒ String
Filter value.
Corresponds to the JSON property value
262 263 264 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 262 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
269 270 271 272 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 269 def update!(**args) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end |