Sha256: a2121b3f6d35b5847cf95778762442b44198ab285a69700d88368ddd209d0f3c

Contents?: true

Size: 870 Bytes

Versions: 3

Compression:

Stored size: 870 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" needs 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

3 entries across 3 versions & 1 rubygems

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