UNPKG

smartystreets-javascript-sdk

Version:
10 lines (9 loc) 208 B
class Response { constructor (statusCode, payload, error, headers) { this.statusCode = statusCode; this.payload = payload; this.error = error; this.headers = headers; } } module.exports = Response;