MadelineProto/docs/TD_docs/constructors/messageText.md

862 B

title description
messageText Text message

Constructor: messageText

Back to constructors index

Text message

Attributes:

Name Type Required Description
text string Yes Text of the message
entities Array of MessageEntity Yes Entities contained in the text
web_page webPage Yes Preview of a web page mentioned in the text, nullable

Type: MessageContent

Example:

$messageText = ['_' => 'messageText', 'text' => string, 'entities' => [MessageEntity], 'web_page' => webPage, ];

Or, if you're into Lua:

messageText={_='messageText', text=string, entities={MessageEntity}, web_page=webPage, }