Interface InputVenueMessageContent

Represents the content of a venue message to be sent as the result of an inline query.

interface InputVenueMessageContent {
    address: string;
    foursquareId?: string;
    foursquareType?: string;
    googlePlaceId?: string;
    googlePlaceType?: string;
    latitude: number;
    longitude: number;
    title: string;
}

Properties

address: string

Address of the venue

foursquareId?: string

Foursquare identifier of the venue, if known

foursquareType?: string

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

googlePlaceId?: string

Google Places identifier of the venue

googlePlaceType?: string

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

latitude: number

Latitude of the venue in degrees

longitude: number

Longitude of the venue in degrees

title: string

Name of the venue