sdksio-postnl-ecommerce-apis-sdk
Version:
Collection of PostNL API's for ecommerce processes
20 lines (19 loc) • 546 B
TypeScript
/**
* PostNL Ecommerce APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
export interface Dimension1 {
/** The weight of the shipment */
weight?: string;
/** The height of the shipment */
height?: string;
/** The length of the shipment */
length?: string;
/** The width of the shipment */
width?: string;
/** The volume of the shipment */
volume?: string;
}
export declare const dimension1Schema: Schema<Dimension1>;