zcatalyst-integ-cliq
Version:
Node.js SDK for integrating Zoho Catalyst with Zoho Cliq
20 lines (19 loc) • 422 B
JavaScript
export default class OembedFields {
newOembedFieldStyle(short) {
return new OembedFieldStyle(short);
}
newOembedFieldData(label, value) {
return new OembedFieldData(label, value);
}
}
class OembedFieldStyle {
constructor(short) {
this.short = short;
}
}
class OembedFieldData {
constructor(label, value) {
this.label = label;
this.value = value;
}
}