Class: Google::Apis::AdmobV1::ReportRowMetricValue
- Inherits:
-
Object
- Object
- Google::Apis::AdmobV1::ReportRowMetricValue
- 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
-
#double_value ⇒ Float
Double precision (approximate) decimal values.
-
#integer_value ⇒ Fixnum
Metric integer value.
-
#micros_value ⇒ Fixnum
Amount in micros.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReportRowMetricValue
constructor
A new instance of ReportRowMetricValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReportRowMetricValue
Returns a new instance of ReportRowMetricValue.
986 987 988 |
# File 'lib/google/apis/admob_v1/classes.rb', line 986 def initialize(**args) update!(**args) end |
Instance Attribute Details
#double_value ⇒ Float
Double precision (approximate) decimal values. Rates are from 0 to 1.
Corresponds to the JSON property doubleValue
972 973 974 |
# File 'lib/google/apis/admob_v1/classes.rb', line 972 def double_value @double_value end |
#integer_value ⇒ Fixnum
Metric integer value.
Corresponds to the JSON property integerValue
977 978 979 |
# File 'lib/google/apis/admob_v1/classes.rb', line 977 def integer_value @integer_value end |
#micros_value ⇒ Fixnum
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
984 985 986 |
# File 'lib/google/apis/admob_v1/classes.rb', line 984 def micros_value @micros_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
991 992 993 994 995 |
# File 'lib/google/apis/admob_v1/classes.rb', line 991 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 |