MadelineProtoDocs/old_docs/API_docs_v81/constructors/textPlain.md

676 B

title description image
textPlain textPlain attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: textPlain

Back to constructors index

Attributes:

Name Type Required
text string Yes

Type: RichText

Example:

$textPlain = ['_' => 'textPlain', 'text' => 'string'];

PWRTelegram json-encoded version:

{"_": "textPlain", "text": "string"}

Or, if you're into Lua:

textPlain={_='textPlain', text='string'}