Files
onspring-api-sdk-javascript/src/models/ReferenceField.ts
T

55 lines
1.8 KiB
TypeScript
Raw Normal View History

import { Multiplicity } from '../enums/Multiplicity';
import { Field } from './Field';
2023-02-05 15:32:22 -06:00
/**
* @class ReferenceField - Represents a reference field.
*/
export class ReferenceField extends Field {
2023-02-05 15:32:22 -06:00
/**
* @property {Multiplicity} multiplicity - The multiplicity of the reference field.
*/
public multiplicity: Multiplicity;
2023-02-05 15:32:22 -06:00
/**
* @property {number} referencedAppId - The id of the app the reference field references.
*/
public referencedAppId: number;
2023-02-05 15:32:22 -06:00
/**
* @constructor - Creates a new ReferenceField.
* @param {number} id - The id of the reference field.
* @param {number} appId - The id of the app the reference field belongs to.
* @param {string} name - The name of the reference field.
* @param {string} type - The type of the reference field.
* @param {string} status - The status of the reference field.
* @param {boolean} isRequired - Whether the reference field is required.
* @param {boolean} isUnique - Whether the reference field is unique.
* @param {string} multiplicity - The multiplicity of the reference field.
* @param {number} referencedAppId - The id of the app the reference field references.
* @returns {ReferenceField} - A new ReferenceField.
* @throws {Error} - Throws an error if the multiplicity is not a valid Multiplicity.jjkdleroritlasaxmvjd
*/
constructor(
id: number,
appId: number,
name: string,
type: string,
status: string,
isRequired: boolean,
isUnique: boolean,
multiplicity: string,
referencedAppId: number
) {
super(id, appId, name, type, status, isRequired, isUnique);
if (Multiplicity[multiplicity] === undefined) {
throw new Error(
`The multiplicity ${multiplicity} is not a valid Multiplicity.`
);
}
this.multiplicity = Multiplicity[multiplicity];
this.referencedAppId = referencedAppId;
}
}