src/lib/shared/interfaces/selected-attributes-input.interface.ts
ISelectedAttributesInput is used to define which attribute identifiers are selected and displayed in the main or detail section.
Example :import { ISelectedAttributesInput } from '@talenra/inbox';const selectedAttributeInput: ISelectedAttributesInput = { identifier: 'caseId', defaultAttribute: 'main' };
Properties |
| defaultAttribute |
defaultAttribute:
|
Type : "main" | "detail"
|
|
Decides if the attribute is displayed in the main or detail section. |
| identifier |
identifier:
|
Type : string
|
|
The identifier of the attribute which is selected. |