BindAuthKeyInner

class pyrogram.raw.types.BindAuthKeyInner

Telegram API type.

Constructor of BindAuthKeyInner.

Details:
  • Layer: 223

  • ID: 75A3F765

Parameters:
  • nonce (int 64-bit) – N/A

  • temp_auth_key_id (int 64-bit) – N/A

  • perm_auth_key_id (int 64-bit) – N/A

  • temp_session_id (int 64-bit) – N/A

  • expires_at (int 32-bit) – N/A

TL Schema

bind_auth_key_inner#75a3f765
nonce:long
temp_auth_key_id:long
perm_auth_key_id:long
temp_session_id:long
expires_at:int

= BindAuthKeyInner

Parameter Tree

BindAuthKeyInner
├── noncelong
├── temp_auth_key_idlong
├── perm_auth_key_idlong
├── temp_session_idlong
└── expires_atint

Example

BindAuthKeyInner(
    nonce=0,
    temp_auth_key_id=0,
    perm_auth_key_id=0,
    temp_session_id=0,
    expires_at=0,
)