Sha256: 2c88662bcd9c74f4ebc3384475032b161aa2ddb18df90b9abda1b305616cde56
Contents?: true
Size: 658 Bytes
Versions: 3
Compression:
Stored size: 658 Bytes
Contents
# frozen_string_literal: true module Telegram module Bot module Types class InlineQueryResultCachedPhoto < Base attribute :type, Types::String.default('photo') attribute :id, Types::String attribute :photo_file_id, Types::String attribute? :title, Types::String attribute? :description, Types::String attribute? :caption, Types::String attribute? :parse_mode, Types::String attribute? :caption_entities, Types::Array.of(MessageEntity) attribute? :reply_markup, InlineKeyboardMarkup attribute? :input_message_content, InputMessageContent end end end end
Version data entries
3 entries across 3 versions & 1 rubygems