mailersend
Version:
Node.js helper module for MailerSend API
30 lines (29 loc) • 700 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BlocklistMonitor = void 0;
class BlocklistMonitor {
constructor(address) {
this.address = address;
}
setAddress(address) {
this.address = address;
return this;
}
setName(name) {
this.name = name;
return this;
}
setNotify(notify) {
this.notify = notify;
return this;
}
setNotifyEmail(notifyEmail) {
this.notify_email = notifyEmail;
return this;
}
setNotifyAddress(notifyAddress) {
this.notify_address = notifyAddress;
return this;
}
}
exports.BlocklistMonitor = BlocklistMonitor;