dhl-express-api-client
Version:
DHL express API client
26 lines (25 loc) • 1.37 kB
TypeScript
import { SupermodelIoLogisticsExpressAccount } from './SupermodelIoLogisticsExpressAccount';
import { SupermodelIoLogisticsExpressUploadInvoiceDataRequestContent } from './SupermodelIoLogisticsExpressUploadInvoiceDataRequestContent';
import { SupermodelIoLogisticsExpressUploadInvoiceDataRequestCustomerDetails } from './SupermodelIoLogisticsExpressUploadInvoiceDataRequestCustomerDetails';
import { SupermodelIoLogisticsExpressUploadInvoiceDataRequestOutputImageProperties } from './SupermodelIoLogisticsExpressUploadInvoiceDataRequestOutputImageProperties';
export declare class SupermodelIoLogisticsExpressUploadInvoiceDataRequest {
'plannedShipDate'?: string;
'accounts'?: Array<SupermodelIoLogisticsExpressAccount>;
'content': SupermodelIoLogisticsExpressUploadInvoiceDataRequestContent;
'outputImageProperties'?: SupermodelIoLogisticsExpressUploadInvoiceDataRequestOutputImageProperties;
'customerDetails'?: SupermodelIoLogisticsExpressUploadInvoiceDataRequestCustomerDetails;
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();
}