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