Package org.drinkless.tdlib
Class TdApi.GameHighScore
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.GameHighScore
-
- Enclosing class:
- TdApi
public static class TdApi.GameHighScore extends TdApi.Object
Contains one row of the game high score table.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.intpositionPosition in the high score table.intscoreUser score.longuserIdUser identifier.
-
Constructor Summary
Constructors Constructor Description GameHighScore()Contains one row of the game high score table.GameHighScore(int position, long userId, int score)Contains one row of the game high score table.
-
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
-
position
public int position
Position in the high score table.
-
userId
public long userId
User identifier.
-
score
public int score
User score.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
GameHighScore
public GameHighScore()
Contains one row of the game high score table.
-
GameHighScore
public GameHighScore(int position, long userId, int score)Contains one row of the game high score table.- Parameters:
position- Position in the high score table.userId- User identifier.score- User score.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-