/** 微信支付回调返回微信服务器数据类型 */ export interface WechatPayCallbackResponse { /** * 返回状态码 * @description 错误码,SUCCESS为清算机构接收成功,其他错误码为失败。 * @example SUCCESS */ code: 'SUCCESS' | string; /** * 返回信息 * @description 返回信息,如非空,为错误原因。 * @example 系统错误 */ message?: string; }