Sistem-Pakar-Diagnosa-Penya.../backend/node_modules/@sendgrid/helpers/classes/response.js

16 lines
269 B
JavaScript

'use strict';
class Response {
constructor(statusCode, body, headers) {
this.statusCode = statusCode;
this.body = body;
this.headers = headers;
}
toString() {
return 'HTTP ' + this.statusCode + ' ' + this.body;
}
}
module.exports = Response;