Interface Venue

Describes a venue.

interface Venue {
    @type: "venue";
    address: string;
    id: string;
    location: Location;
    provider: string;
    title: string;
    type: string;
}

Properties

@type: "venue"
address: string

Venue address; as defined by the sender.

id: string

Identifier of the venue in the provider database; as defined by the sender.

location: Location

Venue location; as defined by the sender.

provider: string

Provider of the venue database; as defined by the sender. Currently, only "foursquare" and "gplaces" (Google Places) need to be supported.

title: string

Venue name; as defined by the sender.

type: string

Type of the venue in the provider database; as defined by the sender.