mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-14 04:47:21 +01:00
826 B
826 B
title | description |
---|---|
accountTtl | Contains infotmation about period of inactivity, after which the account of currently logged in user will be automatically deleted |
Constructor: accountTtl
Contains infotmation about period of inactivity, after which the account of currently logged in user will be automatically deleted
Attributes:
Name | Type | Required | Description |
---|---|---|---|
days | int | Yes | Number of days of inactivity before account deletion, should be from 30 up to 366 |
Type: AccountTtl
Example:
$accountTtl = ['_' => 'accountTtl', 'days' => int, ];
Or, if you're into Lua:
accountTtl={_='accountTtl', days=int, }