Class: Google::Apis::DoubleclickbidmanagerV2::FilterPair

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

Filter used to match traffic data in your report.

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#typeString

Filter type. Corresponds to the JSON property type

Returns:

  • (String)


192
193
194
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 192

def type
  @type
end

#valueString

Filter value. Corresponds to the JSON property value

Returns:

  • (String)


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