@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
19 lines (18 loc) • 650 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotificationLog = void 0;
class NotificationLog {
id;
responseCode;
responseContentType;
responseBody;
attemptedAt;
constructor(notificationLogResponse) {
this.id = notificationLogResponse.id;
this.responseCode = notificationLogResponse.response_code;
this.responseContentType = notificationLogResponse.response_content_type ?? null;
this.responseBody = notificationLogResponse.response_body;
this.attemptedAt = notificationLogResponse.attempted_at;
}
}
exports.NotificationLog = NotificationLog;