/** * @author songxiwen * @date 2020/12/15 15:52 * @description http://www.kdniao.com/api-track */ export declare type ExpressSystemRequestType = { RequestData: string; EBusinessID: string; RequestType: string; DataSign: string; DataType?: string; }; export declare type ExpressTraceRequestType = { OrderCode?: string; ShipperCode: string; LogisticCode: string; callerId: string; callerRole: string; }; export declare type ExpressTraceResponseType = { AcceptTime: string; AcceptStation: string; Remark?: string; }; export declare type ExpressResponseType = { EBusinessID: string; Traces?: ExpressTraceResponseType[]; OrderCode?: string; ShipperCode: string; LogisticCode: string; Success?: boolean; State: string; Reason?: string; };