sdksio-postnl-ecommerce-apis-sdk
Version:
Collection of PostNL API's for ecommerce processes
20 lines (19 loc) • 688 B
TypeScript
/**
* PostNL Ecommerce APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { Label1 } from './label1';
import { Warnings1 } from './warnings1';
export interface ResponseShipment1 {
/** The product code of the shipment */
productCodeDelivery?: string;
/** All labels belonging to the selected product */
labels?: Label1[];
/** The barcode used on the label */
barcode?: string;
/** Possible warnings. See the [Error Codes](#tag/Error-codes) for possible values */
warnings?: Warnings1[];
}
export declare const responseShipment1Schema: Schema<ResponseShipment1>;