mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-03 21:37:49 +01:00
691 B
691 B
title | description |
---|---|
account.tmpPassword | account_tmpPassword attributes, type and example |
Constructor: account.tmpPassword
Attributes:
Name | Type | Required |
---|---|---|
tmp_password | bytes | Yes |
valid_until | int | Yes |
Type: account_TmpPassword
Example:
$account_tmpPassword = ['_' => 'account.tmpPassword', 'tmp_password' => bytes, 'valid_until' => int, ];
Or, if you're into Lua:
account_tmpPassword={_='account.tmpPassword', tmp_password=bytes, valid_until=int, }