Sha256: adc8589af691204fce2921ccc1ba0d66e8962ff4d73939ae42e0941c31b41cde
Contents?: true
Size: 688 Bytes
Versions: 1
Compression:
Stored size: 688 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 :parse_mode, 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.7.0 | lib/telegram/bot/types/inline_query_result_document.rb |