MadelineProto/docs/TD_docs/constructors/messageEntityEmail.md
2017-07-23 16:33:46 +02:00

833 B

title description
messageEntityEmail Email

Constructor: messageEntityEmail

Back to constructors index

Email

Attributes:

Name Type Required Description
offset int Yes Offset of the entity in UTF-16 code points
length int Yes Length of the entity in UTF-16 code points

Type: MessageEntity

Example:

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

PWRTelegram json-encoded version:

{"_": "messageEntityEmail", "offset": int, "length": int}

Or, if you're into Lua:

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