messages.EmojiGameDiceInfo

class pyrogram.raw.types.messages.EmojiGameDiceInfo

{schema}

Constructor of EmojiGameInfo.

Details:
  • Layer: 223

  • ID: 44E56023

Parameters:
  • game_hash (str)

  • prev_stake (int 64-bit)

  • current_streak (int 32-bit)

  • params (List of int 32-bit)

  • plays_left (int 32-bit, optional)

Functions:

This object can be returned by 1 function.

messages.GetEmojiGameInfo

{schema}

TL Schema

messages.emojiGameDiceInfo#44e56023
flags:#
game_hash:string
prev_stake:long
current_streak:int
params:Vector<int>
plays_left:flags.0?int

= messages.EmojiGameInfo

Parameter Tree

EmojiGameDiceInfo
├── game_hashstring
├── prev_stakelong
├── current_streakint
├── paramsVector < int >
└── plays_leftint (optional)

Example

EmojiGameDiceInfo(
    game_hash="text",
    prev_stake=0,
    current_streak=0,
    params=[0],
)