export interface ILogisticsNotifyResult { RtnCode: string; RtnMsg: string; AllPayLogisticsID: string; LogisticsType: string; LogisticsSubType: string; GoodsAmount: number; UpdateStatusDate: string; ReceiverName?: string; ReceiverPhone?: string; ReceiverCellPhone?: string; ReceiverEmail?: string; ReceiverAddress?: string; CVSPaymentNo?: string; CVSValidationNo?: string; BookingNote?: string; [key: string]: any; } export declare class LogisticsNotify { static verify(params: Record, hashKey: string, hashIV: string): boolean; /** * Parse the request body (assuming express/body-parser format) * and generic handling */ static parse(params: Record): ILogisticsNotifyResult; }