Sha256: 73f608e511e8075041849ed4b62fae6b3acc3906e1fed4c6070a38182a4d378b

Contents?: true

Size: 557 Bytes

Versions: 3

Compression:

Stored size: 557 Bytes

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 title [String] Title of the result.
  # @attr thumbnail [TD::Types::PhotoSize, nil] Result thumbnail; may be null.
  class InlineQueryResult::Location < InlineQueryResult
    attribute :id, TD::Types::String
    attribute :location, TD::Types::Location
    attribute :title, TD::Types::String
    attribute :thumbnail, TD::Types::PhotoSize.optional.default(nil)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tdlib-ruby-2.2.0 lib/tdlib/types/inline_query_result/location.rb
tdlib-ruby-2.1.0 lib/tdlib/types/inline_query_result/location.rb
tdlib-ruby-2.0.0 lib/tdlib/types/inline_query_result/location.rb