@shipengine/connect-order-source-api
Version:
This is the typescript/javascript definitions for the order source api
20 lines • 985 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotificationStatusRequest = exports.PendingNotification = void 0;
const request_base_1 = require("./request-base");
class PendingNotification {
/** @description A unique identifier to correlate this shipment notification with its result in the response */
notification_id;
/**
* @description A unique identifier that is used to query the third party about the status of this notification, set in the shipment_notification response
* @example "123245AB23", "{'id1': 123, 'id2': 'unique'}"
*/
submission_id;
}
exports.PendingNotification = PendingNotification;
class NotificationStatusRequest extends request_base_1.RequestBase {
/** @description An array of notifications that were pending confirmation from the third party */
notifications;
}
exports.NotificationStatusRequest = NotificationStatusRequest;
//# sourceMappingURL=notification-status-request.js.map