Interface Venue

This object represents a venue.

interface Venue {
    address: string;
    foursquare_id?: string;
    foursquare_type?: string;
    google_place_id?: string;
    google_place_type?: string;
    location: Location;
    title: string;
}

Properties

address: string

Address of the venue

foursquare_id?: string

Foursquare identifier of the venue

foursquare_type?: string

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

google_place_id?: string

Google Places identifier of the venue

google_place_type?: string

Google Places type of the venue. (See supported types.)

location: Location

Venue location. Can't be a live location

title: string

Name of the venue