Class: Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1DimensionValue
- Inherits:
-
Object
- Object
- Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1DimensionValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/playdeveloperreporting_v1beta1/classes.rb,
lib/google/apis/playdeveloperreporting_v1beta1/representations.rb,
lib/google/apis/playdeveloperreporting_v1beta1/representations.rb
Overview
Represents the value of a single dimension.
Instance Attribute Summary collapse
-
#dimension ⇒ String
Name of the dimension.
-
#int64_value ⇒ Fixnum
Actual value, represented as an int64.
-
#string_value ⇒ String
Actual value, represented as a string.
-
#value_label ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePlayDeveloperReportingV1beta1DimensionValue
constructor
A new instance of GooglePlayDeveloperReportingV1beta1DimensionValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePlayDeveloperReportingV1beta1DimensionValue
Returns a new instance of GooglePlayDeveloperReportingV1beta1DimensionValue.
280 281 282 |
# File 'lib/google/apis/playdeveloperreporting_v1beta1/classes.rb', line 280 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension ⇒ String
Name of the dimension.
Corresponds to the JSON property dimension
259 260 261 |
# File 'lib/google/apis/playdeveloperreporting_v1beta1/classes.rb', line 259 def dimension @dimension end |
#int64_value ⇒ Fixnum
Actual value, represented as an int64.
Corresponds to the JSON property int64Value
264 265 266 |
# File 'lib/google/apis/playdeveloperreporting_v1beta1/classes.rb', line 264 def int64_value @int64_value end |
#string_value ⇒ String
Actual value, represented as a string.
Corresponds to the JSON property stringValue
269 270 271 |
# File 'lib/google/apis/playdeveloperreporting_v1beta1/classes.rb', line 269 def string_value @string_value end |
#value_label ⇒ String
Optional. Human-friendly label for the value, always in English. For example, '
Spain' for the 'ES' country code. Whereas the dimension value is stable, this
value label is subject to change. Do not assume that the (value, value_label)
relationship is stable. For example, the ISO country code 'MK' changed its
name recently to 'North Macedonia'.
Corresponds to the JSON property valueLabel
278 279 280 |
# File 'lib/google/apis/playdeveloperreporting_v1beta1/classes.rb', line 278 def value_label @value_label end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
285 286 287 288 289 290 |
# File 'lib/google/apis/playdeveloperreporting_v1beta1/classes.rb', line 285 def update!(**args) @dimension = args[:dimension] if args.key?(:dimension) @int64_value = args[:int64_value] if args.key?(:int64_value) @string_value = args[:string_value] if args.key?(:string_value) @value_label = args[:value_label] if args.key?(:value_label) end |