17 lines
341 B
TypeScript
17 lines
341 B
TypeScript
/**
|
|
* @enum Multiplicity - The multiplicity type of the object.
|
|
*/
|
|
export enum Multiplicity {
|
|
/**
|
|
* @constant SingleSelect - Single select multiplicity.
|
|
* @type {string}
|
|
*/
|
|
SingleSelect = 'SingleSelect',
|
|
|
|
/**
|
|
* @constant MultiSelect - Multi select multiplicity.
|
|
* @type {string}
|
|
*/
|
|
MultiSelect = 'MultiSelect',
|
|
}
|