2016-12-30 16:32:25 +01:00
|
|
|
---
|
|
|
|
title: future_salt
|
|
|
|
description: future_salt attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: future\_salt
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
2017-03-11 19:54:51 +01:00
|
|
|
|valid\_since|[int](../types/int.md) | Yes|
|
|
|
|
|valid\_until|[int](../types/int.md) | Yes|
|
|
|
|
|salt|[long](../types/long.md) | Yes|
|
2016-12-30 16:32:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [FutureSalt](../types/FutureSalt.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2016-12-30 21:21:36 +01:00
|
|
|
$future_salt = ['_' => 'future_salt', 'valid_since' => int, 'valid_until' => int, 'salt' => long, ];
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
future_salt={_='future_salt', valid_since=int, valid_until=int, salt=long, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|