UNPKG

mailosaur

Version:

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

13 lines (11 loc) 308 B
class SearchOptions { constructor(data = {}) { this.timeout = data.timeout; this.receivedAfter = data.receivedAfter; this.page = data.page; this.itemsPerPage = data.itemsPerPage; this.errorOnTimeout = data.errorOnTimeout; this.dir = data.dir; } } module.exports = SearchOptions;