Sha256: 75cc538a8dab3ebab4dd5ead341bba3af8eb7038a852c85ea8890ac303be5d08
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
module TD::Types # Represents a point on the map. # # @attr id [String] Unique identifier of the query result. # @attr location [TD::Types::Location] Location result. # @attr live_period [Integer] Amount of time relative to the message sent time until the location can be updated, in # seconds. # @attr title [String] Title of the result. # @attr thumbnail_url [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::Location < InputInlineQueryResult attribute :id, TD::Types::String attribute :location, TD::Types::Location attribute :live_period, TD::Types::Integer attribute :title, TD::Types::String attribute :thumbnail_url, TD::Types::String attribute :thumbnail_width, TD::Types::Integer attribute :thumbnail_height, TD::Types::Integer attribute :reply_markup, TD::Types::ReplyMarkup attribute :input_message_content, TD::Types::InputMessageContent end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/input_inline_query_result/location.rb |