Interface GetCallbackQueryMessage

Returns information about a message with the callback button that originated a callback query; for bots only. Request type for Tdjson#getCallbackQueryMessage.

interface GetCallbackQueryMessage {
    @type: "getCallbackQueryMessage";
    callback_query_id: string;
    chat_id: number;
    message_id: number;
}

Properties

@type: "getCallbackQueryMessage"
callback_query_id: string

Identifier of the callback query.

chat_id: number

Identifier of the chat the message belongs to.

message_id: number

Message identifier.