UNPKG

@shipengine/connect-order-source-api

Version:

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

9 lines (8 loc) 400 B
import Joi from 'joi'; import { ShipmentNotificationResult } from '../models'; /** @description The response for a NotifyShipments method */ export declare class ShipmentNotificationResponse { /** @description A list of results for shipment notifications */ notification_results: ShipmentNotificationResult[]; } export declare const ShipmentNotificationResponseSchema: Joi.ObjectSchema<any>;