UNPKG

zcatalyst-integ-cliq

Version:

Node.js SDK for integrating Zoho Catalyst with Zoho Cliq

13 lines (12 loc) 284 B
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); } }