InputUser

class pyrogram.raw.types.InputUser

Defines a user for further interaction.

Constructor of InputUser.

Details:
  • Layer: 223

  • ID: F21158C6

Parameters:
  • user_id (int 64-bit) – User identifier

  • access_hash (int 64-bit) – access_hash value from the user constructor

TL Schema

inputUser#f21158c6
user_id:long
access_hash:long

= InputUser

Parameter Tree

InputUser
├── user_idlong
└── access_hashlong

Example

InputUser(
    user_id=0,
    access_hash=0,
)