1.1 KiB
1.1 KiB
title | description |
---|---|
bind_auth_key_inner | bind_auth_key_inner attributes, type and example |
Constructor: bind_auth_key_inner
Attributes:
Name | Type | Required |
---|---|---|
nonce | long | Yes |
temp_auth_key_id | long | Yes |
perm_auth_key_id | long | Yes |
temp_session_id | long | Yes |
expires_at | int | Yes |
Type: BindAuthKeyInner
Example:
$bind_auth_key_inner = ['_' => 'bind_auth_key_inner', 'nonce' => long, 'temp_auth_key_id' => long, 'perm_auth_key_id' => long, 'temp_session_id' => long, 'expires_at' => int];
PWRTelegram json-encoded version:
{"_": "bind_auth_key_inner", "nonce": long, "temp_auth_key_id": long, "perm_auth_key_id": long, "temp_session_id": long, "expires_at": int}
Or, if you're into Lua:
bind_auth_key_inner={_='bind_auth_key_inner', nonce=long, temp_auth_key_id=long, perm_auth_key_id=long, temp_session_id=long, expires_at=int}