MadelineProtoDocs/docs/MTProto_docs/constructors/bind_auth_key_inner.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.3 KiB

title description image
bind_auth_key_inner Bind auth key inner https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: bind_auth_key_inner

Back to constructors index

Bind auth key inner

Attributes:

Name Type Required Description
nonce long Yes Nonce
temp_auth_key_id long Yes Temp auth key ID
perm_auth_key_id long Yes Perm auth key ID
temp_session_id long Yes Temp session ID
expires_at int Yes Expires at

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}