2016-12-30 16:32:25 +01:00
|
|
|
---
|
|
|
|
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-03-11 19:54:51 +01: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|
|
2016-12-30 16:32:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [BindAuthKeyInner](../types/BindAuthKeyInner.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2016-12-30 21:21:36 +01: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, ];
|
Added docs for layer 18, 23, 25, 27, 33, 38, 40, 41, 42, 44, 45, 46, 51, 53, 55
2017-01-02 21:04:36 +01:00
|
|
|
```
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
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, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|