Sha256: 7a7bbffa90d9f7bc8673622905db1482cf6eb9217f9c2bcf1395af4798022da3
Contents?: true
Size: 457 Bytes
Versions: 1
Compression:
Stored size: 457 Bytes
Contents
module TD::Types # A value with information about its recent changes. # # @attr value [Float] The current value. # @attr previous_value [Float] The value for the previous day. # @attr growth_rate_percentage [Float] The growth rate of the value, as a percentage. class StatisticalValue < Base attribute :value, TD::Types::Float attribute :previous_value, TD::Types::Float attribute :growth_rate_percentage, TD::Types::Float end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/statistical_value.rb |