MadelineProtoDocs/old_docs/API_docs_v109/constructors/accountDaysTTL.md

39 lines
739 B
Markdown
Raw Normal View History

2020-03-06 12:24:14 +01:00
---
title: accountDaysTTL
description: Time to live in days of the current account
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: accountDaysTTL
[Back to constructors index](index.md)
Time to live in days of the current account
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|days|[int](../types/int.md) | Yes|This account will self-destruct in the specified number of days|
### Type: [AccountDaysTTL](../types/AccountDaysTTL.md)
### Example:
```php
$accountDaysTTL = ['_' => 'accountDaysTTL', 'days' => int];
```
Or, if you're into Lua:
```lua
accountDaysTTL={_='accountDaysTTL', days=int}
```