Fdc3MessageReceivedInfo
Event Info for FDC3 Received Message Event
TypeScript
export interface Fdc3MessageReceivedInfo extendsExtends
Properties
| Property | Description |
|---|---|
| context | Full FDC3 Context for object related to the Event |
| direction | Direction - always 'received' |
| eventType | EventType: IntentRaised, ContextBroadcast |
| intent | FDC3 Intent which caused Event to fire (if type is IntentRaised) |
| metadata | Metadata associated with the FDC3 Context |
| adaptableContext | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
context
Full FDC3 Context for object related to the Event
TypeScript
context: Context;Property Value
Context
direction
Direction - always 'received'
TypeScript
direction: 'received';Property Value
'received'
eventType
EventType: IntentRaised, ContextBroadcast
TypeScript
eventType: 'IntentRaised' | 'ContextBroadcast';Property Value
'IntentRaised' | 'ContextBroadcast'
intent
FDC3 Intent which caused Event to fire (if type is IntentRaised)
TypeScript
intent?: Intent;Property Value
Intent
metadata
Metadata associated with the FDC3 Context
TypeScript
metadata?: ContextMetadata;Property Value
ContextMetadata
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any