dhl-express-api-client
Version:
DHL express API client
33 lines (32 loc) • 1.71 kB
TypeScript
import { SupermodelIoLogisticsExpressAccount } from './SupermodelIoLogisticsExpressAccount';
import { SupermodelIoLogisticsExpressPickupRequestCustomerDetails } from './SupermodelIoLogisticsExpressPickupRequestCustomerDetails';
import { SupermodelIoLogisticsExpressPickupRequestSpecialInstructionsInner } from './SupermodelIoLogisticsExpressPickupRequestSpecialInstructionsInner';
import { SupermodelIoLogisticsExpressUpdatePickupRequestShipmentDetailsInner } from './SupermodelIoLogisticsExpressUpdatePickupRequestShipmentDetailsInner';
export declare class SupermodelIoLogisticsExpressUpdatePickupRequest {
'dispatchConfirmationNumber': string;
'originalShipperAccountNumber': string;
'plannedPickupDateAndTime': string;
'closeTime'?: string;
'location'?: string;
'locationType'?: SupermodelIoLogisticsExpressUpdatePickupRequestLocationTypeEnum;
'accounts': Array<SupermodelIoLogisticsExpressAccount>;
'specialInstructions'?: Array<SupermodelIoLogisticsExpressPickupRequestSpecialInstructionsInner>;
'remark'?: string;
'customerDetails': SupermodelIoLogisticsExpressPickupRequestCustomerDetails;
'shipmentDetails'?: Array<SupermodelIoLogisticsExpressUpdatePickupRequestShipmentDetailsInner>;
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 SupermodelIoLogisticsExpressUpdatePickupRequestLocationTypeEnum = "business" | "residence";