Sha256: e49780e694f671e7e5c0c9df3b89d74420fd7f7bd207e6f663e1fd2f6f0afd99
Contents?: true
Size: 1.51 KB
Versions: 2
Compression:
Stored size: 1.51 KB
Contents
module TD::Types # Represents link to a JPEG image. # # @attr id [TD::Types::String] Unique identifier of the query result. # @attr title [TD::Types::String] Title of the result, if known. # @attr description [TD::Types::String] A short description of the result, if known. # @attr thumbnail_url [TD::Types::String] URL of the photo thumbnail, if it exists. # @attr photo_url [TD::Types::String] The URL of the JPEG photo (photo size must not exceed 5MB). # @attr photo_width [Integer] Width of the photo. # @attr photo_height [Integer] Height of the photo. # @attr reply_markup [TD::Types::ReplyMarkup] The message reply markup. # Must be of type {TD::Types::ReplyMarkup::InlineKeyboard} or null. # @attr input_message_content [TD::Types::InputMessageContent] The content of the message to be sent. # Must be one of the following types: inputMessageText, inputMessagePhoto, inputMessageInvoice, # inputMessageLocation, {TD::Types::InputMessageContent::Venue} or inputMessageContact. class InputInlineQueryResult::Photo < InputInlineQueryResult attribute :id, TD::Types::String attribute :title, TD::Types::String attribute :description, TD::Types::String attribute :thumbnail_url, TD::Types::String attribute :photo_url, TD::Types::String attribute :photo_width, TD::Types::Coercible::Integer attribute :photo_height, TD::Types::Coercible::Integer attribute :reply_markup, TD::Types::ReplyMarkup attribute :input_message_content, TD::Types::InputMessageContent end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.3 | lib/tdlib/types/input_inline_query_result/photo.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/input_inline_query_result/photo.rb |