4baac3178e
Add PHP, Lua language tag to Code area
1.3 KiB
1.3 KiB
title | description | image |
---|---|---|
account.noPassword | account_noPassword attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: account.noPassword
Attributes:
Name | Type | Required |
---|---|---|
new_salt | bytes | Yes |
new_secure_salt | bytes | Yes |
secure_random | bytes | Yes |
email_unconfirmed_pattern | string | Yes |
Type: account_Password
Example:
$account_noPassword = ['_' => 'account.noPassword', 'new_salt' => 'bytes', 'new_secure_salt' => 'bytes', 'secure_random' => 'bytes', 'email_unconfirmed_pattern' => 'string'];
PWRTelegram json-encoded version:
{"_": "account.noPassword", "new_salt": {"_": "bytes", "bytes":"base64 encoded bytes"}, "new_secure_salt": {"_": "bytes", "bytes":"base64 encoded bytes"}, "secure_random": {"_": "bytes", "bytes":"base64 encoded 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'}