UNPKG

@zenvia/sdk

Version:

This SDK for [Node.js](https://nodejs.org/) was created based on the [Zenvia](https://www.zenvia.com/) [API](https://zenvia.github.io/zenvia-openapi-spec/).

20 lines 679 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PartialTemplate = void 0; /** * Implementation of base templates. */ class PartialTemplate { /** * Returns a new `Template` that is used to create a new template. * * @param notificationEmail Mail list (comma-separated) to send notifications about the message template approving process. * @param components An [[IComponents]] object. */ constructor(notificationEmail, components) { this.notificationEmail = notificationEmail; this.components = components; } } exports.PartialTemplate = PartialTemplate; //# sourceMappingURL=partial.js.map