Open cdagli opened 6 years ago
You can do this in TypeScript like:
import { Message } from 'botbuilder';
export class MockBackchannelEvent extends Message
{
constructor(private event: EventActivity)
{
super();
}
public toMessage(): any
{
return {
...super.toMessage(),
...this.event
};
}
}
Hello,
Is it possible to add some steps to test the backchannel events documented there: https://docs.microsoft.com/en-us/azure/bot-service/nodejs/bot-builder-nodejs-backchannel?view=azure-bot-service-3.0
Thanks