Sha256: 0f12d35a5eec6449c71543a9d2e8de014df1de22c65dcd906c01fe8ebd1b0fa7
Contents?: true
Size: 605 Bytes
Versions: 1
Compression:
Stored size: 605 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 :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.6.2 | lib/telegram/bot/types/inline_query_result_photo.rb |