mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
31 lines
778 B
Markdown
31 lines
778 B
Markdown
---
|
|
title: "account.emailVerified"
|
|
description: "The email was verified correctly."
|
|
nav_exclude: true
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
redirect_from: /API_docs/constructors/account_emailVerified.html
|
|
---
|
|
# Constructor: account.emailVerified
|
|
[Back to constructors index](/API_docs/constructors/index.html)
|
|
|
|
|
|
|
|
The email was verified correctly.
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|email|[string](/API_docs/types/string.html) | Yes|The verified email address.|
|
|
|
|
|
|
|
|
### Type: [account.EmailVerified](/API_docs/types/account.EmailVerified.html)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$account_emailVerified = ['_' => 'account.emailVerified', 'email' => 'string'];
|
|
```
|