UNPKG

@shipengine/connect-order-source-api

Version:

This is the typescript/javascript definitions for the order source api

16 lines 801 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ShipmentNotificationResponseSchema = exports.ShipmentNotificationResponse = void 0; const tslib_1 = require("tslib"); const joi_1 = tslib_1.__importDefault(require("joi")); const models_1 = require("../models"); /** @description The response for a NotifyShipments method */ class ShipmentNotificationResponse { /** @description A list of results for shipment notifications */ notification_results; } exports.ShipmentNotificationResponse = ShipmentNotificationResponse; exports.ShipmentNotificationResponseSchema = joi_1.default.object({ notification_results: joi_1.default.array().required().items(models_1.ShipmentNotificationResultSchema), }); //# sourceMappingURL=shipment-notification-response.js.map