InputGameID

class pyrogram.raw.types.InputGameID

Indicates an already sent game

Constructor of InputGame.

Details:
  • Layer: 223

  • ID: 32C3E77

Parameters:
  • id (int 64-bit) – game ID from Game constructor

  • access_hash (int 64-bit) – access hash from Game constructor

TL Schema

inputGameID#32c3e77
id:long
access_hash:long

= InputGame

Parameter Tree

InputGameID
├── idlong
└── access_hashlong

Example

InputGameID(
    id=0,
    access_hash=0,
)