Interface InlineQueryResultDocument

Represents a document. Subtype of InlineQueryResult.

interface InlineQueryResultDocument {
    @type: "inlineQueryResultDocument";
    description: string;
    document: Document;
    id: string;
    title: string;
}

Properties

@type: "inlineQueryResultDocument"
description: string

Represents a document.

document: Document

Document.

id: string

Unique identifier of the query result.

title: string

Document title.