MadelineProto/old_docs/API_docs_v70/constructors/textEmail.md

44 lines
706 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'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "textEmail", "text": RichText, "email": "string"}
```
Or, if you're into Lua:
```
textEmail={_='textEmail', text=RichText, email='string'}
```