@myorb/dhl-express
Version:
DHL Express api client
46 lines (45 loc) • 2.25 kB
TypeScript
/**
* DHL Express APIs (MyDHL API)
* Welcome to the official DHL Express APIs (MyDHL API) below are the published API Documentation to fulfill your shipping needs with DHL Express. Please follow the process described [here](https://developer.dhl.com/api-reference/dhl-express-mydhl-api#get-started-section/user-guide--get-access) to request access to the DHL Express - MyDHL API services In case you already have DHL Express - MyDHL API Service credentials please ensure to use the endpoints/environments listed [here](https://developer.dhl.com/api-reference/dhl-express-mydhl-api#get-started-section/user-guide--environments)
*
* OpenAPI spec version: 2.4.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
import { SupermodelIoLogisticsExpressExportDeclaration } from './supermodel-io-logistics-express-export-declaration';
/**
* Here you can define all the properties related to the content of the prospected shipment
* @export
* @interface SupermodelIoLogisticsExpressUploadInvoiceDataRequestContent
*/
export interface SupermodelIoLogisticsExpressUploadInvoiceDataRequestContent {
/**
* Here you can find all details related to export declaration
* @type {Array<SupermodelIoLogisticsExpressExportDeclaration>}
* @memberof SupermodelIoLogisticsExpressUploadInvoiceDataRequestContent
*/
exportDeclaration: Array<SupermodelIoLogisticsExpressExportDeclaration>;
/**
* For customs purposes please advise on currency code of the indicated amount in invoice.
* @type {string}
* @memberof SupermodelIoLogisticsExpressUploadInvoiceDataRequestContent
*/
currency: string;
/**
* Please enter Unit of measurement - metric,imperial
* @type {string}
* @memberof SupermodelIoLogisticsExpressUploadInvoiceDataRequestContent
*/
unitOfMeasurement: SupermodelIoLogisticsExpressUploadInvoiceDataRequestContentUnitOfMeasurementEnum;
}
/**
* @export
* @enum {string}
*/
export declare enum SupermodelIoLogisticsExpressUploadInvoiceDataRequestContentUnitOfMeasurementEnum {
Metric = "metric",
Imperial = "imperial"
}