Interface InlineQueryResultLocation

Represents a point on the map. Subtype of InlineQueryResult.

interface InlineQueryResultLocation {
    @type: "inlineQueryResultLocation";
    id: string;
    location: Location;
    thumbnail: Thumbnail;
    title: string;
}

Properties

@type: "inlineQueryResultLocation"
id: string

Unique identifier of the query result.

location: Location

Location result.

thumbnail: Thumbnail

Result thumbnail in JPEG format; may be null.

title: string

Title of the result.