postal.js/src/CapturedMessageBatch.js

5 lines
195 B
JavaScript
Raw Normal View History

var CapturedMessageBatch = function(batchId, description, messages) {
this.batchId = "";
this.description = description || "Captured Message Batch";
this.messages = messages || [];
};