Class: Google::Apis::AdmobV1::ReportRowMetricValue

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

Overview

Representation of a metric value.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReportRowMetricValue

Returns a new instance of ReportRowMetricValue.



980
981
982
# File 'lib/google/apis/admob_v1/classes.rb', line 980

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

Instance Attribute Details

#double_valueFloat

Double precision (approximate) decimal values. Rates are from 0 to 1. Corresponds to the JSON property doubleValue

Returns:

  • (Float)


966
967
968
# File 'lib/google/apis/admob_v1/classes.rb', line 966

def double_value
  @double_value
end

#integer_valueFixnum

Metric integer value. Corresponds to the JSON property integerValue

Returns:

  • (Fixnum)


971
972
973
# File 'lib/google/apis/admob_v1/classes.rb', line 971

def integer_value
  @integer_value
end

#micros_valueFixnum

Amount in micros. One million is equivalent to one unit. Currency value is in the unit (USD, EUR or other) specified by the request. For example, $6.50 whould be represented as 6500000 micros. Corresponds to the JSON property microsValue

Returns:

  • (Fixnum)


978
979
980
# File 'lib/google/apis/admob_v1/classes.rb', line 978

def micros_value
  @micros_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



985
986
987
988
989
# File 'lib/google/apis/admob_v1/classes.rb', line 985

def update!(**args)
  @double_value = args[:double_value] if args.key?(:double_value)
  @integer_value = args[:integer_value] if args.key?(:integer_value)
  @micros_value = args[:micros_value] if args.key?(:micros_value)
end