UNPKG

zcrmsdk

Version:
19 lines (16 loc) 302 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 }