@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
11 lines (10 loc) • 470 B
JavaScript
export class NotificationLog {
constructor(notificationLogResponse) {
var _a;
this.id = notificationLogResponse.id;
this.responseCode = notificationLogResponse.response_code;
this.responseContentType = (_a = notificationLogResponse.response_content_type) !== null && _a !== void 0 ? _a : null;
this.responseBody = notificationLogResponse.response_body;
this.attemptedAt = notificationLogResponse.attempted_at;
}
}