Sha256: 828de0758be92e74c6133f99114dee90b135141c749b9618def71b5f23921fd9
Contents?: true
Size: 954 Bytes
Versions: 2
Compression:
Stored size: 954 Bytes
Contents
module TD::Types # Describes a venue. # # @attr location [TD::Types::Location] Venue location; as defined by the sender. # @attr title [TD::Types::String] Venue name; as defined by the sender. # @attr address [TD::Types::String] Venue address; as defined by the sender. # @attr provider [TD::Types::String] Provider of the venue database; as defined by the sender. # Currently only "foursquare" and "gplaces" (Google Places) need to be supported. # @attr id [TD::Types::String] Identifier of the venue in the provider database; as defined by the sender. # @attr type [TD::Types::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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.3 | lib/tdlib/types/venue.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/venue.rb |