--- title: textPlain description: textPlain attributes, type and example image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: textPlain [Back to constructors index](index.md) ### Attributes: | Name | Type | Required | |----------|---------------|----------| |text|[string](../types/string.md) | Yes| ### Type: [RichText](../types/RichText.md) ### Example: ``` $textPlain = ['_' => 'textPlain', 'text' => 'string']; ``` [PWRTelegram](https://pwrtelegram.xyz) json-encoded version: ``` {"_": "textPlain", "text": "string"} ``` Or, if you're into Lua: ``` textPlain={_='textPlain', text='string'} ```