UNPKG
zcatalyst-integ-cliq
Version:
latest (1.1.0)
1.1.0
1.0.0
0.1.1
0.1.0
0.0.1
Node.js SDK for integrating Zoho Catalyst with Zoho Cliq
www.zoho.com/catalyst/
zcatalyst-integ-cliq
/
lib
/
cliq-objects
/
response-objects
/
installation-response.js
13 lines
(12 loc)
•
284 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export default
class
InstallationResponse
{
constructor
() {
this
.status =
200
; } addNote(...note) {
if
(
this
.note === undefined) {
this
.note = note;
return
this
.note.length; }
return
this
.note.push(...note); } }