Sha256: a68ebcaa582d825aed0467769431e60e766a993b4bcdf529cd6b873e0dd781a3
Contents?: true
Size: 642 Bytes
Versions: 1
Compression:
Stored size: 642 Bytes
Contents
# frozen_string_literal: true module Telegram module Bot module Types class InlineQueryResultPhoto < Base attribute :type, String.default('photo') attribute :id, String attribute :photo_url, String attribute :thumb_url, String attribute :photo_width, Integer attribute :photo_height, Integer attribute :title, String attribute :description, String attribute :caption, String attribute :parse_mode, String attribute :reply_markup, InlineKeyboardMarkup attribute :input_message_content, InputMessageContent 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_photo.rb |