feat: add refund statuses
This commit is contained in:
@@ -1,16 +1,15 @@
|
||||
package fields
|
||||
|
||||
import (
|
||||
"quyun/providers/wepay"
|
||||
|
||||
"github.com/go-pay/gopay/wechat/v3"
|
||||
)
|
||||
|
||||
// swagger:enum OrderStatus
|
||||
// ENUM( pending, paid, refunding, refunded, cancelled, completed)
|
||||
// ENUM( pending, paid, refund_success, refund_closed, refund_processing, refund_abnormal, cancelled, completed)
|
||||
type OrderStatus int16
|
||||
|
||||
type OrderMeta struct {
|
||||
PayNotify wepay.PayNotify `json:"pay_notify"`
|
||||
RefundResp *wechat.RefundOrderResponse `json:"refund_resp"`
|
||||
PayNotify *wechat.V3DecryptPayResult `json:"pay_notify"`
|
||||
RefundResp *wechat.RefundOrderResponse `json:"refund_resp"`
|
||||
RefundNotify *wechat.V3DecryptRefundResult `json:"refund_notify"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user