Package org.drinkless.tdlib
Class TdApi.StatisticalValue
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.StatisticalValue
- Enclosing class:
- TdApi
A value with information about its recent changes.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.doubleThe growth rate of the value, as a percentage.doubleThe value for the previous day.doubleThe current value. -
Constructor Summary
ConstructorsConstructorDescriptionA value with information about its recent changes.StatisticalValue(double value, double previousValue, double growthRatePercentage) A value with information about its recent changes. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
value
public double valueThe current value. -
previousValue
public double previousValueThe value for the previous day. -
growthRatePercentage
public double growthRatePercentageThe growth rate of the value, as a percentage. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
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 Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-