MadelineProto/old_docs/API_docs_v65/constructors/textEmail.md
Daniil Gentili 1eb2fc0b4f fix
2017-04-21 13:27:04 +02:00

37 lines
578 B
Markdown

---
title: textEmail
description: textEmail attributes, type and example
---
## Constructor: textEmail
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|text|[RichText](../types/RichText.md) | Yes|
|email|[string](../types/string.md) | Yes|
### Type: [RichText](../types/RichText.md)
### Example:
```
$textEmail = ['_' => 'textEmail', 'text' => RichText, 'email' => string, ];
```
Or, if you're into Lua:
```
textEmail={_='textEmail', text=RichText, email=string, }
```