@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/).
16 lines (15 loc) • 589 B
TypeScript
import { IComponents, IPartialTemplate } from '../../types';
/**
* Implementation of base templates.
*/
export declare abstract class PartialTemplate implements IPartialTemplate {
notificationEmail: string;
components: IComponents;
/**
* 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?: string, components?: IComponents);
}