HighScore

class pyrogram.raw.types.HighScore

Game highscore

Constructor of HighScore.

Details:
  • Layer: 223

  • ID: 73A379EB

Parameters:
  • pos (int 32-bit) – Position in highscore list

  • user_id (int 64-bit) – User ID

  • score (int 32-bit) – Score

TL Schema

highScore#73a379eb
pos:int
user_id:long
score:int

= HighScore

Parameter Tree

HighScore
├── posint
├── user_idlong
└── scoreint

Example

HighScore(
    pos=0,
    user_id=0,
    score=0,
)