Class: Google::Apis::DoubleclickbidmanagerV1::FilterPair
- Inherits:
-
Object
- Object
- Google::Apis::DoubleclickbidmanagerV1::FilterPair
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/doubleclickbidmanager_v1/classes.rb,
generated/google/apis/doubleclickbidmanager_v1/representations.rb,
generated/google/apis/doubleclickbidmanager_v1/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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FilterPair
Returns a new instance of FilterPair
183 184 185 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 183 def initialize(**args) update!(**args) end |
Instance Attribute Details
#type ⇒ String
Filter type.
Corresponds to the JSON property type
176 177 178 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 176 def type @type end |
#value ⇒ String
Filter value.
Corresponds to the JSON property value
181 182 183 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 181 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
188 189 190 191 |
# File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 188 def update!(**args) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end |