-
Notifications
You must be signed in to change notification settings - Fork 1
MessageEntity
Eric Damian edited this page Feb 18, 2021
·
1 revision
This object represents one special entity in a text message. For example, hashtags, usernames, URLs, etc.
Field | Type | Description |
---|---|---|
type | String | Type of the entity. Can be “mention” (@username), “hashtag” (#hashtag), “cashtag” ($USD), “bot_command” (/start@jobs_bot), “url” (https://telegram.org), “email” ([email protected]), “phone_number” (+1-212-555-0123), “bold” (bold text), “italic” (italic text), “underline” (underlined text), “strikethrough” (strikethrough text), “code” (monowidth string), “pre” (monowidth block), “text_link” (for clickable text URLs), “text_mention” (for users without usernames) |
offset | Integer | Offset in UTF-16 code units to the start of the entity |
length | Integer | Length of the entity in UTF-16 code units |
url | String | Optional. For “text_link” only, url that will be opened after user taps on the text |
user | User | Optional. For “text_mention” only, the mentioned user |
language | String | Optional. For “pre” only, the programming language of the entity text |