MessageEntity

data class MessageEntity(val type: String, val offset: Int, val length: Int, val url: String? = null, val user: User? = null, val language: String? = null, val customEmojiId: String? = null)(source)

MessageEntity

This object represents one special entity in a text message. For example, hashtags, usernames, URLs, etc.

(auto-generated)

Author

ForteScarlet

Constructors

Link copied to clipboard
constructor(type: String, offset: Int, length: Int, url: String? = null, user: User? = null, language: String? = null, customEmojiId: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "custom_emoji_id")
val customEmojiId: String? = null

Optional. For “custom_emoji” only, unique identifier of the custom emoji. Use getCustomEmojiStickers to get full information about the sticker

Link copied to clipboard
val language: String? = null

Optional. For “pre” only, the programming language of the entity text

Link copied to clipboard
val length: Int

Length of the entity in UTF-16 code units

Link copied to clipboard
val offset: Int

Offset in UTF-16 code units to the start of the entity

Link copied to clipboard

Type of the entity. Currently, can be

Link copied to clipboard
val url: String? = null

Optional. For “text_link” only, URL that will be opened after user taps on the text

Link copied to clipboard
val user: User? = null

Optional. For “text_mention” only, the mentioned user