dhl-express-api-client
Version:
DHL express API client
25 lines (24 loc) • 1.29 kB
TypeScript
import { SupermodelIoLogisticsExpressAddress } from './SupermodelIoLogisticsExpressAddress';
import { SupermodelIoLogisticsExpressContact } from './SupermodelIoLogisticsExpressContact';
import { SupermodelIoLogisticsExpressRegistrationNumbers } from './SupermodelIoLogisticsExpressRegistrationNumbers';
export declare class SupermodelIoLogisticsExpressUploadInvoiceDataRequestCustomerDetailsImporterDetails {
'postalAddress': SupermodelIoLogisticsExpressAddress;
'contactInformation': SupermodelIoLogisticsExpressContact;
'registrationNumbers'?: Array<SupermodelIoLogisticsExpressRegistrationNumbers>;
'typeCode'?: SupermodelIoLogisticsExpressUploadInvoiceDataRequestCustomerDetailsImporterDetailsTypeCodeEnum;
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 SupermodelIoLogisticsExpressUploadInvoiceDataRequestCustomerDetailsImporterDetailsTypeCodeEnum = "business" | "direct_consumer" | "government" | "other" | "private" | "reseller";