sdksio-postnl-ecommerce-apis-sdk
Version:
Collection of PostNL API's for ecommerce processes
19 lines (18 loc) • 740 B
TypeScript
/**
* PostNL Ecommerce APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { CompleteStatus } from './completeStatus';
import { CurrentStatus } from './currentStatus';
import { Warning2 } from './warning2';
export interface ShippingstatusResponse {
/** The current status and old statuses of the shipment */
completeStatus?: CompleteStatus;
/** The current status and old statuses of the shipment */
currentStatus?: CurrentStatus;
/** Possible warnings (see [Error Codes](#tag/Error-codes) for possible values) */
warnings?: Warning2[];
}
export declare const shippingstatusResponseSchema: Schema<ShippingstatusResponse>;