Class: TD::Types::StatisticalValue
- Defined in:
- lib/tdlib/types/statistical_value.rb
Overview
A value with information about its recent changes.
Instance Attribute Summary collapse
-
#growth_rate_percentage ⇒ Float
The growth rate of the value, as a percentage.
-
#previous_value ⇒ Float
The value for the previous day.
-
#value ⇒ Float
The current value.
Method Summary
Methods inherited from Base
Instance Attribute Details
#growth_rate_percentage ⇒ Float
The growth rate of the value, as a percentage.
7 8 9 |
# File 'lib/tdlib/types/statistical_value.rb', line 7 def growth_rate_percentage @growth_rate_percentage end |
#previous_value ⇒ Float
The value for the previous day.
7 8 9 |
# File 'lib/tdlib/types/statistical_value.rb', line 7 def previous_value @previous_value end |
#value ⇒ Float
The current value.
7 8 9 |
# File 'lib/tdlib/types/statistical_value.rb', line 7 def value @value end |