Interface UpdateNewChosenInlineResult

The user has chosen a result of an inline query; for bots only. Subtype of Update.

interface UpdateNewChosenInlineResult {
    @type: "updateNewChosenInlineResult";
    inline_message_id: string;
    query: string;
    result_id: string;
    sender_user_id: number;
    user_location: Location;
}

Properties

@type: "updateNewChosenInlineResult"
inline_message_id: string

Identifier of the sent inline message, if known.

query: string

Text of the query.

result_id: string

Identifier of the chosen result.

sender_user_id: number

Identifier of the user who sent the query.

user_location: Location

User location; may be null.