pepipost
Version:
Official nodejs library for sending email using web API v5
20 lines (17 loc) • 367 B
JavaScript
/**
* Creates an instance of HttpRequest
*/
class HttpRequest {
constructor() {
this.method = null;
this.headers = {};
this.queryUrl = null;
this.formData = null;
this.form = null;
this.username = null;
this.password = null;
this.body = null;
}
}
module.exports = HttpRequest;
;