Fdc3MessageSentInfo
Event Info for FDC3 Sent Message Event
TypeScript
export interface Fdc3MessageSentInfo extendsExtends
Properties
| Property | Description |
|---|---|
| app | Target application for the message |
| context | Full FDC3 Context for object related to the Event |
| direction | Direction - always 'sent' |
| eventType | Event Type: RaiseIntent, RaiseIntentForContext,BroadcastMessage |
| intent | FDC3 Intent which caused Event to fire (if type is RaiseIntent) |
| adaptableContext | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
app
Target application for the message
TypeScript
app?: AppIdentifier;Property Value
AppIdentifier
context
Full FDC3 Context for object related to the Event
TypeScript
context: Context;Property Value
Context
direction
Direction - always 'sent'
TypeScript
direction: 'sent';Property Value
'sent'
eventType
Event Type: RaiseIntent, RaiseIntentForContext,BroadcastMessage
TypeScript
eventType: 'RaiseIntent' | 'RaiseIntentForContext' | 'BroadcastMessage';Property Value
'RaiseIntent' | 'RaiseIntentForContext' | 'BroadcastMessage'
intent
FDC3 Intent which caused Event to fire (if type is RaiseIntent)
TypeScript
intent?: Intent;Property Value
Intent
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any