import { BaseResponse } from '../base.response.interface'; export interface RefundJSAPIResponseData { refund_id: string; out_refund_no: string; transaction_id: string; out_trade_no: string; channel: string; user_received_account: string; success_time?: string; create_time: string; status: string; amount: Record; } /** JSAPI统一下单方法返回类型 */ export interface RefundJSAPIResponse extends BaseResponse { }