998 B
998 B
title | description | image | redirect_from |
---|---|---|---|
account.password | Configuration for two-factor authorization | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/constructors/account_password.html |
Constructor: account.password
Configuration for two-factor authorization
Attributes:
Name | Type | Required | Description |
---|---|---|---|
current_salt | bytes | Yes | Current salt |
new_salt | bytes | Yes | New salt |
hint | string | Yes | Text hint for the password |
Type: account.Password
Example:
$account.password = ['_' => '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'}