Interface InlineQueryResultArticle

Represents a single result of an inline query. Subtype of InlineQueryResult.

interface InlineQueryResultArticle {
    @type: "inlineQueryResultArticle";
    description: string;
    hide_url?: boolean;
    id: string;
    thumbnail: Thumbnail;
    title: string;
    url: string;
}

Properties

@type: "inlineQueryResultArticle"
description: string

Represents a single result of an inline query.

hide_url?: boolean

True, if the URL must be not shown.

id: string

Unique identifier of the query result.

thumbnail: Thumbnail

Result thumbnail in JPEG format; may be null.

title: string

Title of the result.

url: string

URL of the result, if it exists.