Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaNumericValue
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaNumericValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsadmin_v1alpha/classes.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb
Overview
To represent a number.
Instance Attribute Summary collapse
-
#double_value ⇒ Float
Double value Corresponds to the JSON property
doubleValue. -
#int64_value ⇒ Fixnum
Integer value Corresponds to the JSON property
int64Value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaNumericValue
constructor
A new instance of GoogleAnalyticsAdminV1alphaNumericValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaNumericValue
Returns a new instance of GoogleAnalyticsAdminV1alphaNumericValue.
4752 4753 4754 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4752 def initialize(**args) update!(**args) end |
Instance Attribute Details
#double_value ⇒ Float
Double value
Corresponds to the JSON property doubleValue
4745 4746 4747 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4745 def double_value @double_value end |
#int64_value ⇒ Fixnum
Integer value
Corresponds to the JSON property int64Value
4750 4751 4752 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4750 def int64_value @int64_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4757 4758 4759 4760 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4757 def update!(**args) @double_value = args[:double_value] if args.key?(:double_value) @int64_value = args[:int64_value] if args.key?(:int64_value) end |