Sha256: 936fc8fb6dfe0104ed7959e27f87992a56dc22bcf1a46b818020f273b975f606
Contents?: true
Size: 643 Bytes
Versions: 9
Compression:
Stored size: 643 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
9 entries across 9 versions & 2 rubygems