Sha256: 60ad87463b2ae316165a353a22a12a1fc753dd72a7b34e8034ae48dff41d4bb0
Contents?: true
Size: 651 Bytes
Versions: 1
Compression:
Stored size: 651 Bytes
Contents
# frozen_string_literal: true module Telegram module Bot module Types class InlineQueryResultDocument < Base attribute :type, String, default: 'document' attribute :id, String attribute :title, String attribute :caption, String attribute :document_url, String attribute :mime_type, String attribute :description, String attribute :reply_markup, InlineKeyboardMarkup attribute :input_message_content, InputMessageContent attribute :thumb_url, String attribute :thumb_width, Integer attribute :thumb_height, Integer end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
telegram-bot-types-0.6.2 | lib/telegram/bot/types/inline_query_result_document.rb |