dhl-express-api-client
Version:
DHL express API client
31 lines (30 loc) • 1.59 kB
TypeScript
import { SupermodelIoLogisticsExpressAccount } from './SupermodelIoLogisticsExpressAccount';
import { SupermodelIoLogisticsExpressPickupRequestCustomerDetails } from './SupermodelIoLogisticsExpressPickupRequestCustomerDetails';
import { SupermodelIoLogisticsExpressPickupRequestShipmentDetailsInner } from './SupermodelIoLogisticsExpressPickupRequestShipmentDetailsInner';
import { SupermodelIoLogisticsExpressPickupRequestSpecialInstructionsInner } from './SupermodelIoLogisticsExpressPickupRequestSpecialInstructionsInner';
export declare class SupermodelIoLogisticsExpressPickupRequest {
'plannedPickupDateAndTime': string;
'closeTime'?: string;
'location'?: string;
'locationType'?: SupermodelIoLogisticsExpressPickupRequestLocationTypeEnum;
'accounts': Set<SupermodelIoLogisticsExpressAccount>;
'specialInstructions'?: Set<SupermodelIoLogisticsExpressPickupRequestSpecialInstructionsInner>;
'remark'?: string;
'customerDetails': SupermodelIoLogisticsExpressPickupRequestCustomerDetails;
'shipmentDetails': Array<SupermodelIoLogisticsExpressPickupRequestShipmentDetailsInner>;
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 SupermodelIoLogisticsExpressPickupRequestLocationTypeEnum = "business" | "residence";