@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 • 480 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AbstractMessageBatch = void 0;
/**
* Implementation of batch.
*/
class AbstractMessageBatch {
constructor(name, channel, message, columnMapper) {
this.name = name;
this.channel = channel;
this.message = message;
this.columnMapper = columnMapper;
}
}
exports.AbstractMessageBatch = AbstractMessageBatch;
//# sourceMappingURL=abstract-message-batch.js.map