Interface CallbackQueryPayloadDataWithPassword

The payload for a callback button requiring password. Subtype of CallbackQueryPayload.

interface CallbackQueryPayloadDataWithPassword {
    @type: "callbackQueryPayloadDataWithPassword";
    data: string;
    password: string;
}

Properties

Properties

@type: "callbackQueryPayloadDataWithPassword"
data: string

Data that was attached to the callback button.

password: string

The 2-step verification password for the current user.