Interface AgentSession

Інтерфейс, що представляє сесію агента.

interface AgentSession {
    agent_id: number;
    auditor: null | object;
    channels: Channel[];
    is_admin: boolean;
    is_supervisor: boolean;
    last_status_change: number;
    on_demand: boolean;
    status: string;
    status_duration: number;
    status_payload: any;
    supervisor: null | object;
    team: null | object;
}

Hierarchy (view full)

Properties

agent_id: number
auditor: null | object
channels: Channel[]
is_admin: boolean
is_supervisor: boolean
last_status_change: number
on_demand: boolean
status: string
status_duration: number
status_payload: any
supervisor: null | object
team: null | object