src/lib/shared/interfaces/pairing-attributes.interface.ts
Interface for pairing attributes, sets to attribute in a pair to each other.
Example :import { IPairingAttributes } from '@talenra/inbox';pairingAttributes: IPairingAttributes = { identifier: 'pairingAttributes', label: 'Pairing Attribute', firstAttribute: 'firstAttribute', secondAttribute: 'secondAttribute', commaSeparation: true, };
Properties |
| commaSeparation |
commaSeparation:
|
Type : boolean
|
|
CommaSeparation is used to define if a comma is displayed in between the two attributes. If commaSeparation is true, a comma is displayed in between the two attributes. If commaSeparation is false, no comma is displayed in between the two attributes. |
| firstAttribute |
firstAttribute:
|
Type : string
|
|
FirstAttribute is used to define the first attribute of the pairing attribute.
Has to correspond with an identifier given in the |
| identifier |
identifier:
|
Type : string
|
|
Identifier to set the pairing attribute in the |
| label |
label:
|
Type : string
|
|
The label is used to define the displayed label of the pairing attribute. |
| secondAttribute |
secondAttribute:
|
Type : string
|
|
SecondAttribute is used to define the second attribute of the pairing attribute..
Has to correspond with an identifier given in the |