@botonic/plugin-hubtype-analytics
Version:
Plugin for tracking in the Hubtype backend to see the results in the Hubtype Dashbord
12 lines • 449 B
JavaScript
import { EventType, } from '../types';
import { HtEvent } from './ht-event';
export class HtEventHandoffOption extends HtEvent {
constructor(event, requestData) {
super(event, requestData);
this.type = EventType.BotEvent;
this.flow_thread_id = event.flowThreadId;
this.handoff_queue_id = event.queueId;
this.handoff_queue_name = event.queueName;
}
}
//# sourceMappingURL=ht-event-handoff-option.js.map