Sha256: 0c2cb5c17de6ee8b8f5203bbedc3a8fa5b978e92d7719da929874c475eaca982

Contents?: true

Size: 594 Bytes

Versions: 3

Compression:

Stored size: 594 Bytes

Contents

module TD::Types
  # Represents a point on the map.
  #
  # @attr id [TD::Types::String] Unique identifier of the query result.
  # @attr location [TD::Types::Location] Location result.
  # @attr title [TD::Types::String] Title of the result.
  # @attr thumbnail [TD::Types::Thumbnail, nil] Result thumbnail in JPEG format; 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::Thumbnail.optional.default(nil)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.4 lib/tdlib/types/inline_query_result/location.rb
tdlib-schema-1.7.0.3 lib/tdlib/types/inline_query_result/location.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/inline_query_result/location.rb