BindAuthKeyInner

class pyrogram.raw.base.BindAuthKeyInner

Telegram API base type.

Constructors:

This base type has 1 constructor available.

BindAuthKeyInner

Telegram API type.

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
├── nonce → long
├── temp_auth_key_id → long
├── perm_auth_key_id → long
├── temp_session_id → long
└── expires_at → int

Example

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