Interface InlineQueryResultPhoto

Represents a photo. Subtype of InlineQueryResult.

interface InlineQueryResultPhoto {
    @type: "inlineQueryResultPhoto";
    description: string;
    id: string;
    photo: Photo;
    title: string;
}

Properties

@type: "inlineQueryResultPhoto"
description: string

Represents a photo.

id: string

Unique identifier of the query result.

photo: Photo

Photo.

title: string

Title of the result, if known.