UNPKG

mailosaur

Version:

The Mailosaur Node library lets you integrate email and SMS testing into your continuous integration process.

14 lines (12 loc) 307 B
class Attachment { constructor(data = {}) { this.id = data.id; this.contentType = data.contentType; this.fileName = data.fileName; this.content = data.content; this.contentId = data.contentId; this.length = data.length; this.url = data.url; } } module.exports = Attachment;