37 lines
578 B
Markdown
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, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|