bot-handoff
Version:
Bot hand off module for the Microsoft Bot Framework. It allows you to transfer a customer from talking to a bot to talking to a human.
10 lines (8 loc) • 326 B
text/typescript
import { IAddress } from 'botbuilder';
import { EventMessageType } from './EventMessageType';
import { HandoffEventMessage } from './HandoffEventMessage';
export class QueueEventMessage extends HandoffEventMessage {
constructor(customerAddress: IAddress) {
super(EventMessageType.Queue, customerAddress);
}
}