MadelineProto/docs/MTProto_docs/constructors/bind_auth_key_inner.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

1.1 KiB

title description
bind_auth_key_inner bind_auth_key_inner attributes, type and example

Constructor: bind_auth_key_inner

Back to constructors index

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}