UNPKG

pepipost

Version:

Official nodejs library for sending email using web API v5

15 lines (12 loc) 230 B
'use strict'; /** * Creates an instance of HttpResponse */ class HttpResponse { constructor() { this.statusCode = null; this.body = null; this.headers = null; } } module.exports = HttpResponse;