Interface DebugTapEvent

A single captured message exchange between the SDK and one widget.

interface DebugTapEvent {
    direction: DebugTapDirection;
    envelope: MessageEnvelope<any>;
    widget: IWidget;
}

Properties

The direction the message travelled in

envelope: MessageEnvelope<any>

The message envelope as it went over postMessage

widget: IWidget

The widget the message was sent to, or received from