src/lib/shared/interfaces/sort-attributes-input.interface.ts
ISortAttributesInput is used to define which attribute identifiers are used to sort the items in the inbox.
Important Information:
import { ISortAttributesInput } from '@talenra/inbox';const selectedAttributeInput: ISortAttributesInput = {identifier: 'caseId', sort: 'asc'};
Properties |
| identifier |
identifier:
|
Type : string
|
|
the identifier of the attribute which is used to sort the items in the inbox. |
| sort |
sort:
|
Type : "asc" | "desc"
|
|
the sort direction of the attribute which is used to sort the items in the inbox. |