class Google::Apis::AdmobV1::ReportRowMetricValue
Representation
of a metric value.
Attributes
double_value[RW]
Double precision (approximate) decimal values. Rates are from 0 to 1. Corresponds to the JSON property `doubleValue` @return [Float]
integer_value[RW]
Metric integer value. Corresponds to the JSON property `integerValue` @return [Fixnum]
micros_value[RW]
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` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/admob_v1/classes.rb, line 978 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/admob_v1/classes.rb, line 983 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