dhl-express-api-client
Version:
DHL express API client
30 lines (29 loc) • 1.56 kB
TypeScript
import { SupermodelIoLogisticsExpressCreateShipmentRequestContentExportDeclaration } from './SupermodelIoLogisticsExpressCreateShipmentRequestContentExportDeclaration';
import { SupermodelIoLogisticsExpressPackage } from './SupermodelIoLogisticsExpressPackage';
export declare class SupermodelIoLogisticsExpressCreateShipmentRequestContent {
'packages': Array<SupermodelIoLogisticsExpressPackage>;
'isCustomsDeclarable': boolean;
'declaredValue'?: number;
'declaredValueCurrency'?: string;
'exportDeclaration'?: SupermodelIoLogisticsExpressCreateShipmentRequestContentExportDeclaration;
'description': string;
'uSFilingTypeValue'?: string;
'incoterm': SupermodelIoLogisticsExpressCreateShipmentRequestContentIncotermEnum;
'unitOfMeasurement': SupermodelIoLogisticsExpressCreateShipmentRequestContentUnitOfMeasurementEnum;
static readonly discriminator: string | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}
export declare type SupermodelIoLogisticsExpressCreateShipmentRequestContentIncotermEnum = "EXW" | "FCA" | "CPT" | "CIP" | "DPU" | "DAP" | "DDP" | "FAS" | "FOB" | "CFR" | "CIF" | "DAF" | "DAT" | "DDU" | "DEQ" | "DES";
export declare type SupermodelIoLogisticsExpressCreateShipmentRequestContentUnitOfMeasurementEnum = "metric" | "imperial";