Sha256: c117507113294d90f00afd808709e2b266a9bdc898d95d53bb8fb45ae06cf6ce
Contents?: true
Size: 819 Bytes
Versions: 1
Compression:
Stored size: 819 Bytes
Contents
# frozen_string_literal: true module Telegram module Bot module Types class InlineQueryResultPhoto < Base attribute :type, Types::String.constrained(eql: 'photo').default('photo') attribute :id, Types::String attribute :photo_url, Types::String attribute :thumbnail_url, Types::String attribute? :photo_width, Types::Integer attribute? :photo_height, Types::Integer 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
telegram-bot-ruby-2.0.0 | lib/telegram/bot/types/inline_query_result_photo.rb |