src/lib/shared/interfaces/interacted-data-items.interface.ts
IInteractedDataItems is emitted to the parent component, to notify the user which data items have been interacted with.
Example :import { IInteractedDataItems } from '@talenra/inbox';interactedDataItems: IInteractedDataItems = { dataItems: [ { caseId: '1234352', caseTypeName: 'Case Type 1', }, ], message: 'process', };
Properties |
| dataItems |
dataItems:
|
Type : any[]
|
|
Data items which have been interacted with. If interacted with one data item, the array will contain one data item. |
| message |
message:
|
Type : TInteractedDataItemsMessageTypes
|
|
Message type emitted. |