Class: Google::Apis::DoubleclickbidmanagerV2::FilterPair
- Inherits:
-
Object
- Object
- Google::Apis::DoubleclickbidmanagerV2::FilterPair
- 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
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.
199 200 201 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 199 def initialize(**args) update!(**args) end |
Instance Attribute Details
#type ⇒ String
Filter type.
Corresponds to the JSON property type
192 193 194 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 192 def type @type end |
#value ⇒ String
Filter value.
Corresponds to the JSON property value
197 198 199 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 197 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
204 205 206 207 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 204 def update!(**args) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end |