MadelineProtoDocs/old_docs/API_docs_v25/constructors/account_password.md
2018-04-19 17:56:40 +00:00

1.0 KiB

title description image
account.password account_password attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

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", "bytes":"base64 encoded bytes"}, "new_salt": {"_": "bytes", "bytes":"base64 encoded bytes"}, "hint": "string"}

Or, if you're into Lua:

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