MadelineProto/old_docs/API_docs_v62/constructors/textEmail.md

37 lines
578 B
Markdown
Raw Normal View History

---
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, }
```