Package org.drinkless.tdlib
Class TdApi.StatisticalValue
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.StatisticalValue
-
- Enclosing class:
- TdApi
public static class TdApi.StatisticalValue extends TdApi.Object
A value with information about its recent changes.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.doublegrowthRatePercentageThe growth rate of the value, as a percentage.doublepreviousValueThe value for the previous day.doublevalueThe current value.
-
Constructor Summary
Constructors Constructor Description StatisticalValue()A value with information about its recent changes.StatisticalValue(double value, double previousValue, double growthRatePercentage)A value with information about its recent changes.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
value
public double value
The current value.
-
previousValue
public double previousValue
The value for the previous day.
-
growthRatePercentage
public double growthRatePercentage
The growth rate of the value, as a percentage.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
StatisticalValue
public StatisticalValue()
A value with information about its recent changes.
-
StatisticalValue
public StatisticalValue(double value, double previousValue, double growthRatePercentage)A value with information about its recent changes.- Parameters:
value- The current value.previousValue- The value for the previous day.growthRatePercentage- The growth rate of the value, as a percentage.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-