Sha256: fcea01f52c4c79ed8730212acb2b5e302dc5da090353fe0104f5f584aa0eb55b
Contents?: true
Size: 1.58 KB
Versions: 2
Compression:
Stored size: 1.58 KB
Contents
module TD::Types # Represents a link to an article or web page. # # @attr id [TD::Types::String] Unique identifier of the query result. # @attr url [TD::Types::String] URL of the result, if it exists. # @attr hide_url [Boolean] True, if the URL must be not shown. # @attr title [TD::Types::String] Title of the result. # @attr description [TD::Types::String] A short description of the result. # @attr thumbnail_url [TD::Types::String] URL of the result thumbnail, if it exists. # @attr thumbnail_width [Integer] Thumbnail width, if known. # @attr thumbnail_height [Integer] Thumbnail height, if known. # @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, inputMessageInvoice, inputMessageLocation, # {TD::Types::InputMessageContent::Venue} or inputMessageContact. class InputInlineQueryResult::Article < InputInlineQueryResult attribute :id, TD::Types::String attribute :url, TD::Types::String attribute :hide_url, TD::Types::Bool attribute :title, TD::Types::String attribute :description, TD::Types::String attribute :thumbnail_url, TD::Types::String attribute :thumbnail_width, TD::Types::Coercible::Integer attribute :thumbnail_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/article.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/input_inline_query_result/article.rb |