UNPKG

@zohocrm/nodejs-sdk-2.0

Version:
19 lines (16 loc) 300 B
/** * Common Class to provide or obtain a value, when there are multiple supported values. */ class Choice { value; constructor(value) { this.value = value; } getValue() { return this.value; } } module.exports = { MasterModel: Choice, Choice: Choice }