A venue to be sent

interface InputMediaVenue {
    address: string;
    caption?: InputText;
    latitude: number;
    longitude: number;
    source?: VenueSource;
    title: string;
    type: "venue";
}

Hierarchy (view full)

Properties

address: string

Venue address

caption?: InputText

Caption of the media

latitude: number

Latitude of the geolocation

longitude: number

Longitude of the geolocation

source?: VenueSource

When available, source from where this venue was acquired

title: string

Venue name

type: "venue"