Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 863 Bytes

InlineQueryResultCachedSticker.md

File metadata and controls

26 lines (20 loc) · 863 Bytes

TelegramBotOpenapi::InlineQueryResultCachedSticker

Properties

Name Type Description Notes
type String Type of the result, must be sticker
id String Unique identifier for this result, 1-64 bytes
sticker_file_id String A valid file identifier of the sticker
reply_markup InlineKeyboardMarkup Optional. Inline keyboard attached to the message [optional]
input_message_content Object Optional. Content of the message to be sent instead of the sticker [optional]

Example

require 'telegram-bot-openapi'

instance = TelegramBotOpenapi::InlineQueryResultCachedSticker.new(
  type: null,
  id: null,
  sticker_file_id: null,
  reply_markup: null,
  input_message_content: null
)