Interface InlineQueryResults

Represents the results of the inline query. Use sendInlineQueryResultMessage to send the result of the query.

interface InlineQueryResults {
    @type: "inlineQueryResults";
    button: InlineQueryResultsButton;
    inline_query_id: string;
    next_offset: string;
    results: InlineQueryResult[];
}

Properties

@type: "inlineQueryResults"

Button to be shown above inline query results; may be null.

inline_query_id: string

Unique identifier of the inline query.

next_offset: string

The offset for the next request. If empty, then there are no more results.

Results of the query.