Class: Google::Apis::DoubleclicksearchV2::CustomMetric

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/doubleclicksearch_v2/classes.rb,
lib/google/apis/doubleclicksearch_v2/representations.rb,
lib/google/apis/doubleclicksearch_v2/representations.rb

Overview

A message containing the custom metric.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CustomMetric

Returns a new instance of CustomMetric.



388
389
390
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 388

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

Custom metric name. Corresponds to the JSON property name

Returns:

  • (String)


381
382
383
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 381

def name
  @name
end

#valueFloat

Custom metric numeric value. Corresponds to the JSON property value

Returns:

  • (Float)


386
387
388
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 386

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



393
394
395
396
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 393

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @value = args[:value] if args.key?(:value)
end