MadelineProto/docs/MTProto_docs/constructors/bind_auth_key_inner.md

47 lines
1.1 KiB
Markdown
Raw Normal View History

---
title: bind_auth_key_inner
description: bind_auth_key_inner attributes, type and example
---
## Constructor: bind\_auth\_key\_inner
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
2017-08-20 11:05:56 +02:00
|----------|---------------|----------|
|nonce|[long](../types/long.md) | Yes|
|temp\_auth\_key\_id|[long](../types/long.md) | Yes|
|perm\_auth\_key\_id|[long](../types/long.md) | Yes|
|temp\_session\_id|[long](../types/long.md) | Yes|
|expires\_at|[int](../types/int.md) | Yes|
### Type: [BindAuthKeyInner](../types/BindAuthKeyInner.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$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];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "bind_auth_key_inner", "nonce": long, "temp_auth_key_id": long, "perm_auth_key_id": long, "temp_session_id": long, "expires_at": int}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
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}
```