MadelineProtoDocs/old_docs/API_docs_v14/constructors/messageEntityCode.md

886 B

title description image
messageEntityCode Message entity representing a `codeblock`. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: messageEntityCode

Back to constructors index

Message entity representing a codeblock.

Attributes:

Name Type Required Description
offset int Yes Offset of message entity within message (in UTF-8 codepoints)
length int Yes Length of message entity within message (in UTF-8 codepoints)

Type: MessageEntity

Example:

$messageEntityCode = ['_' => 'messageEntityCode', 'offset' => int, 'length' => int];

Or, if you're into Lua:

messageEntityCode={_='messageEntityCode', offset=int, length=int}