UNPKG
@zohocrm/nodejs-sdk-2.0
Version:
latest (6.1.0)
6.1.0
6.0.0
5.0.0
4.0.0
3.0.0
2.0.0
1.0.0
Node JS SDK for Zoho CRM
github.com/zoho/zohocrm-nodejs-sdk-2.0
zoho/zohocrm-nodejs-sdk-2.0
@zohocrm/nodejs-sdk-2.0
/
utils
/
util
/
choice.js
19 lines
(16 loc)
•
300 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** * 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
}