39 lines
653 B
Markdown
39 lines
653 B
Markdown
|
---
|
||
|
title: help.inviteText
|
||
|
description: Invite text
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: help.inviteText
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Invite text
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|message|[string](../types/string.md) | Yes|Message|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [help\_InviteText](../types/help_InviteText.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$help_inviteText = ['_' => 'help.inviteText', 'message' => 'string'];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
help_inviteText={_='help.inviteText', message='string'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|