zcatalyst-integ-cliq
Version:
Node.js SDK for integrating Zoho Catalyst with Zoho Cliq
17 lines (16 loc) • 469 B
JavaScript
import FormModificationAction from './form-modification-action.js';
export default class FormChangeResponse {
constructor() {
this.type = 'form_modification';
}
newFormModificationAction() {
return new FormModificationAction();
}
addAction(...action) {
if (this.actions === undefined) {
this.actions = action;
return this.actions.length;
}
return this.actions.push(...action);
}
}