Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.9 KB

MessageEntity.md

File metadata and controls

30 lines (24 loc) · 1.9 KB

TelegramBotOpenapi::MessageEntity

Properties

Name Type Description Notes
type String Type of the entity. Currently, 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), "spoiler" (spoiler message), "blockquote" (block quotation), "code" (monowidth string), "pre" (monowidth block), "text_link" (for clickable text URLs), "text_mention" (for users without usernames), "custom_emoji" (for inline custom emoji stickers)
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 [optional]
user User Optional. For "text_mention" only, the mentioned user [optional]
language String Optional. For "pre" only, the programming language of the entity text [optional]
custom_emoji_id String Optional. For "custom_emoji" only, unique identifier of the custom emoji. Use getCustomEmojiStickers to get full information about the sticker [optional]

Example

require 'telegram-bot-openapi'

instance = TelegramBotOpenapi::MessageEntity.new(
  type: null,
  offset: null,
  length: null,
  url: null,
  user: null,
  language: null,
  custom_emoji_id: null
)