@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/).
9 lines (8 loc) • 474 B
TypeScript
import { AbstractMessageBatch } from './abstract-message-batch';
import { IWhatsAppMessageBatch, IMessageBatchColumnMapper, IBatchTemplateContent } from '../../types';
/**
* Implementation of WhatsApp batch.
*/
export declare class WhatsAppMessageBatch extends AbstractMessageBatch<'whatsapp', IBatchTemplateContent> implements IWhatsAppMessageBatch {
constructor(name: string, from: string, templateIds: string[] | string, columnMapper: IMessageBatchColumnMapper);
}