Interface AgentStatusEvent

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

interface AgentStatusEvent {
    agent_id: number;
    channels: Channel[];
    on_demand?: boolean;
    status: string;
    status_payload?: any;
    timeout?: number;
    timestamp: number;
    user_id: number;
}

Properties

agent_id: number
channels: Channel[]
on_demand?: boolean
status: string
status_payload?: any
timeout?: number
timestamp: number
user_id: number