Interface UpdateNewInlineQuery

A new incoming inline query; for bots only. Subtype of Update.

interface UpdateNewInlineQuery {
    @type: "updateNewInlineQuery";
    chat_type: ChatType;
    id: string;
    offset: string;
    query: string;
    sender_user_id: number;
    user_location: Location;
}

Properties

@type: "updateNewInlineQuery"
chat_type: ChatType

The type of the chat from which the query originated; may be null if unknown.

id: string

Unique query identifier.

offset: string

Offset of the first entry to return.

query: string

Text of the query.

sender_user_id: number

Identifier of the user who sent the query.

user_location: Location

User location; may be null.