/** * ## InputMediaVenue * Represents a venue to be sent. * @see https://core.telegram.org/bots/api#inputmediavenue */ export type InputMediaVenue = { /** * Type of the result, must be venue */ type: 'venue'; /** * Latitude of the location */ latitude: number; /** * Longitude of the location */ longitude: number; /** * Name of the venue */ title: string; /** * Address of the venue */ address: string; /** * Optional. Foursquare identifier of the venue */ foursquare_id?: string; /** * Optional. Foursquare type of the venue, if known. (For example, “arts_entertainment/default”, * “arts_entertainment/aquarium” or “food/icecream”.) */ foursquare_type?: string; /** * Optional. Google Places identifier of the venue */ google_place_id?: string; /** * Optional. Google Places type of the venue. (See [supported types](https://developers.google.com/places/web-service/supported_types).) */ google_place_type?: string; };