sdksio-postnl-ecommerce-apis-sdk
Version:
Collection of PostNL API's for ecommerce processes
21 lines (20 loc) • 754 B
TypeScript
/**
* PostNL Ecommerce APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { Status2 } from './status2';
export interface ShippingstatusResponseUpdatedShipment {
/** The barcode belonging to the status update */
barcode?: string;
/** The date of the update */
creationDate?: string;
/** The customer number */
customerNumber?: string;
/** The customer code */
customerCode?: string;
/** The status update. See [Status codes](#tag/TandT-status-codes/Status-codes) for possible values. */
status?: Status2;
}
export declare const shippingstatusResponseUpdatedShipmentSchema: Schema<ShippingstatusResponseUpdatedShipment>;