Interface GatewayWelcomeData

interface GatewayWelcomeData {
    heartbeatIntervalMs: number;
    lastMessageId: string;
    user: {
        botId: string;
        createdAt: string;
        createdBy: string;
        id: string;
        name: string;
    };
}

Properties

heartbeatIntervalMs: number
lastMessageId: string
user: {
    botId: string;
    createdAt: string;
    createdBy: string;
    id: string;
    name: string;
}