Interface OperatorPresence

interface OperatorPresence {
    id: string;
    name: string;
    operatorStatus: "available" | "unavailable" | "invisible";
    profilePicture: null | string;
    status: "away" | "online" | "offline";
    tags: string[];
}

Properties

id: string
name: string
operatorStatus: "available" | "unavailable" | "invisible"
profilePicture: null | string
status: "away" | "online" | "offline"
tags: string[]

The inbox tags that belong to the role of the user.

Generated using TypeDoc