2023-01-27 15:00:34 -06:00
|
|
|
/**
|
|
|
|
|
* @enum Multiplicity - The multiplicity type of the object.
|
|
|
|
|
*/
|
2023-01-26 23:47:25 -06:00
|
|
|
export enum Multiplicity {
|
2023-01-27 15:00:34 -06:00
|
|
|
/**
|
|
|
|
|
* @constant SingleSelect - Single select multiplicity.
|
|
|
|
|
* @type {string}
|
|
|
|
|
*/
|
2023-01-26 23:26:01 -06:00
|
|
|
SingleSelect = 'SingleSelect',
|
2023-01-27 15:00:34 -06:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @constant MultiSelect - Multi select multiplicity.
|
|
|
|
|
* @type {string}
|
|
|
|
|
*/
|
2023-01-26 23:26:01 -06:00
|
|
|
MultiSelect = 'MultiSelect',
|
|
|
|
|
}
|