UNPKG

@shipengine/connect-order-source-api

Version:

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

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