Sha256: 9f9dd3585659c8c9a478cd4c53866bbe2ee907dc56e9549b28bc8688c29216d8

Contents?: true

Size: 899 Bytes

Versions: 1

Compression:

Stored size: 899 Bytes

Contents

module TD::Types
  # Describes a venue.
  #
  # @attr location [TD::Types::Location] Venue location; as defined by the sender.
  # @attr title [String] Venue name; as defined by the sender.
  # @attr address [String] Venue address; as defined by the sender.
  # @attr provider [String] Provider of the venue database; as defined by the sender.
  #   Currently only "foursquare" and "gplaces" (Google Places) need to be supported.
  # @attr id [String] Identifier of the venue in the provider database; as defined by the sender.
  # @attr type [String] Type of the venue in the provider database; as defined by the sender.
  class Venue < Base
    attribute :location, TD::Types::Location
    attribute :title, TD::Types::String
    attribute :address, TD::Types::String
    attribute :provider, TD::Types::String
    attribute :id, TD::Types::String
    attribute :type, TD::Types::String
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/venue.rb