Interface BotInstalledEvent

interface BotInstalledEvent {
    event: "bot_installed";
    payload: {
        accountId: string;
        robotJid: string;
        timestamp: number;
        userId: string;
        userJid: string;
        userName: string;
    };
}

Hierarchy (view full)

  • Event<"bot_installed">
    • BotInstalledEvent

Properties

Properties

event: "bot_installed"
payload: {
    accountId: string;
    robotJid: string;
    timestamp: number;
    userId: string;
    userJid: string;
    userName: string;
}