Interface InputInlineMessageVenue

Inline message containing a venue

interface InputInlineMessageVenue {
    address: string;
    caption?: InputText;
    latitude: number;
    longitude: number;
    replyMarkup?: ReplyMarkup;
    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

replyMarkup?: ReplyMarkup

Message's reply markup

source?: VenueSource

When available, source from where this venue was acquired

title: string

Venue name

type: "venue"