@botonic/plugin-hubtype-analytics
Version:
Plugin for tracking in the Hubtype backend to see the results in the Hubtype Dashbord
14 lines (13 loc) • 532 B
TypeScript
import { EventAction, EventHandoff, RequestData } from '../types';
import { HtEvent } from './ht-event';
export declare class HtEventHandoff extends HtEvent {
action: EventAction.HandoffSuccess | EventAction.HandoffFail;
flow_thread_id?: string;
handoff_queue_id: string;
handoff_queue_name: string;
handoff_case_id?: string;
handoff_is_queue_open: boolean;
handoff_is_available_agent: boolean;
handoff_is_threshold_reached: boolean;
constructor(event: EventHandoff, requestData: RequestData);
}