diff --git a/CHANGELOG.md b/CHANGELOG.md index 22fbec7..80c8f7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.2.5 - 2024-11-25 +* [#7](https://github.com/alipay/global-open-sdk-go/pull/7) feature-241125 + - update AlipayPayResultNotify + - update AlipayPayQueryRequest + ## 1.2.5 - 2024-11-25 * [#6](https://github.com/alipay/global-open-sdk-go/pull/6) feature-241125 - update Leg diff --git a/com/alipay/api/request/notify/AlipayPayResultNotify.go b/com/alipay/api/request/notify/AlipayPayResultNotify.go index 8e86463..35dd3ae 100644 --- a/com/alipay/api/request/notify/AlipayPayResultNotify.go +++ b/com/alipay/api/request/notify/AlipayPayResultNotify.go @@ -17,4 +17,5 @@ type AlipayPayResultNotify struct { PaymentResultInfo *model.PaymentResultInfo `json:"paymentResultInfo,omitempty"` AcquirerInfo *model.AcquirerInfo `json:"acquirerInfo,omitempty"` PromotionResult []*model.PromotionResult `json:"promotionResult,omitempty"` + PaymentMethodType string `json:"paymentMethodType,omitempty"` } diff --git a/com/alipay/api/request/pay/AlipayPayQueryRequest.go b/com/alipay/api/request/pay/AlipayPayQueryRequest.go index 1924441..6115c21 100644 --- a/com/alipay/api/request/pay/AlipayPayQueryRequest.go +++ b/com/alipay/api/request/pay/AlipayPayQueryRequest.go @@ -10,6 +10,7 @@ type AlipayPayQueryRequest struct { PaymentRequestId string `json:"paymentRequestId,omitempty"` PaymentId string `json:"paymentId,omitempty"` MerchantAccountId string `json:"MerchantAccountId,omitempty"` + PaymentMethodType string `json:"paymentMethodType,omitempty"` } func (alipayPayQueryRequest *AlipayPayQueryRequest) NewRequest() *request.AlipayRequest {