Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 927 Bytes

InputTextMessageContent.md

File metadata and controls

24 lines (18 loc) · 927 Bytes

TelegramBotOpenapi::InputTextMessageContent

Properties

Name Type Description Notes
message_text String Text of the message to be sent, 1-4096 characters
parse_mode String Optional. Mode for parsing entities in the message text. See formatting options for more details. [optional]
entities Array<MessageEntity> Optional. List of special entities that appear in message text, which can be specified instead of parse_mode [optional]
link_preview_options LinkPreviewOptions Optional. Link preview generation options for the message [optional]

Example

require 'telegram-bot-openapi'

instance = TelegramBotOpenapi::InputTextMessageContent.new(
  message_text: null,
  parse_mode: null,
  entities: null,
  link_preview_options: null
)