1.1 KiB
1.1 KiB
title | description | image | redirect_from |
---|---|---|---|
account.noPassword | No password | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/constructors/account_noPassword.html |
Constructor: account.noPassword
No password
Attributes:
Name | Type | Required | Description |
---|---|---|---|
new_salt | bytes | Yes | New salt |
new_secure_salt | bytes | Yes | New secure salt |
secure_random | bytes | Yes | Secure random |
email_unconfirmed_pattern | string | Yes | Email unconfirmed pattern |
Type: account.Password
Example:
$account.noPassword = ['_' => 'account.noPassword', 'new_salt' => 'bytes', 'new_secure_salt' => 'bytes', 'secure_random' => 'bytes', 'email_unconfirmed_pattern' => 'string'];
Or, if you're into Lua:
account.noPassword={_='account.noPassword', new_salt='bytes', new_secure_salt='bytes', secure_random='bytes', email_unconfirmed_pattern='string'}