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

1.1 KiB

title description
account.passwordInputSettings account_passwordInputSettings attributes, type and example

Constructor: account.passwordInputSettings

Back to constructors index

Attributes:

Name Type Required
new_salt bytes Optional
new_password_hash bytes Optional
hint string Optional
email string Optional

Type: account_PasswordInputSettings

Example:

$account_passwordInputSettings = ['_' => 'account.passwordInputSettings', 'new_salt' => 'bytes', 'new_password_hash' => 'bytes', 'hint' => 'string', 'email' => 'string'];

PWRTelegram json-encoded version:

{"_": "account.passwordInputSettings", "new_salt": "bytes", "new_password_hash": "bytes", "hint": "string", "email": "string"}

Or, if you're into Lua:

account_passwordInputSettings={_='account.passwordInputSettings', new_salt='bytes', new_password_hash='bytes', hint='string', email='string'}