MadelineProto/old_docs/API_docs_v25/constructors/account_password.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

906 B

title description
account.password account_password attributes, type and example

Constructor: account.password

Back to constructors index

Attributes:

Name Type Required
current_salt bytes Yes
new_salt bytes Yes
hint string Yes

Type: account_Password

Example:

$account_password = ['_' => 'account.password', 'current_salt' => 'bytes', 'new_salt' => 'bytes', 'hint' => 'string'];

PWRTelegram json-encoded version:

{"_": "account.password", "current_salt": "bytes", "new_salt": "bytes", "hint": "string"}

Or, if you're into Lua:

account_password={_='account.password', current_salt='bytes', new_salt='bytes', hint='string'}