mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 21:07:47 +01:00
1.2 KiB
1.2 KiB
title | description |
---|---|
account.password | account_password attributes, type and example |
Constructor: account.password
Attributes:
Name | Type | Required |
---|---|---|
current_salt | bytes | Yes |
new_salt | bytes | Yes |
hint | string | Yes |
has_recovery | Bool | Yes |
email_unconfirmed_pattern | string | Yes |
Type: account_Password
Example:
$account_password = ['_' => 'account.password', 'current_salt' => bytes, 'new_salt' => bytes, 'hint' => string, 'has_recovery' => Bool, 'email_unconfirmed_pattern' => string, ];
PWRTelegram json-encoded version:
{"_":"account.password","current_salt":"bytes","new_salt":"bytes","hint":"string","has_recovery":"Bool","email_unconfirmed_pattern":"string"}
Or, if you're into Lua:
account_password={_='account.password', current_salt=bytes, new_salt=bytes, hint=string, has_recovery=Bool, email_unconfirmed_pattern=string, }