@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) • 435 B
TypeScript
import { AbstractMessageBatch } from './abstract-message-batch';
import { ISmsMessageBatch, IMessageBatchColumnMapper, IBatchTextContent } from '../../types';
/**
* Implementation of SMS batch.
*/
export declare class SmsMessageBatch extends AbstractMessageBatch<'sms', IBatchTextContent> implements ISmsMessageBatch {
constructor(name: string, from: string, texts: string[] | string, columnMapper: IMessageBatchColumnMapper);
}