dhl-express-api-client
Version:
DHL express API client
27 lines (26 loc) • 1.34 kB
TypeScript
import { SupermodelIoLogisticsExpressAddressCreateShipmentRequest } from './SupermodelIoLogisticsExpressAddressCreateShipmentRequest';
import { SupermodelIoLogisticsExpressBankDetailsInner } from './SupermodelIoLogisticsExpressBankDetailsInner';
import { SupermodelIoLogisticsExpressContact } from './SupermodelIoLogisticsExpressContact';
import { SupermodelIoLogisticsExpressRegistrationNumbers } from './SupermodelIoLogisticsExpressRegistrationNumbers';
export declare class PickupPickupDetails {
'postalAddress': SupermodelIoLogisticsExpressAddressCreateShipmentRequest;
'contactInformation': SupermodelIoLogisticsExpressContact;
'registrationNumbers'?: Array<SupermodelIoLogisticsExpressRegistrationNumbers>;
'bankDetails'?: Set<SupermodelIoLogisticsExpressBankDetailsInner>;
'typeCode'?: PickupPickupDetailsTypeCodeEnum;
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 PickupPickupDetailsTypeCodeEnum = "business" | "direct_consumer" | "government" | "other" | "private" | "reseller";