class Venue

Monday, August 24 2020 EAT

This object represents a venue.

Public Instance Methods

address() click to toggle source

Address of the venue.

# File lib/objects/venue.rb, line 25
def address
  @vn.address
end
foursquare_id() click to toggle source

Optional. Foursquare identifier of the venue

# File lib/objects/venue.rb, line 30
def foursquare_id
  @vn.foursquare_id
end
foursquare_type() click to toggle source

Optional. Foursquare type of the venue. (For example, +“arts_entertainment/default”+, +“arts_entertainment/aquarium”+ or +“food/icecream”.+)

# File lib/objects/venue.rb, line 37
def foursquare_type
  @vn.foursquare_type
end
location() click to toggle source

Venue location. Returns Location Object.

# File lib/objects/venue.rb, line 15
def location
  @vn.location
end
title() click to toggle source

Name of the venue.

# File lib/objects/venue.rb, line 20
def title
  @vn.title
end