Skip to content

Commit 8f289f6

Browse files
committed
返回 3DS 是否无摩擦
1 parent 83da34a commit 8f289f6

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 1.2.20 - 2025-10-22
4+
- 返回 3DS 是否无摩擦
5+
36
## 1.2.19 - 2025-10-17
47
- requestTime毫秒级传输
58

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
```
22
Language:GO
33
GO version:1.22.5+
4-
Tags:v1.2.19
4+
Tags:v1.2.20
55
Copyright:Ant financial services group
66
```
77

com/alipay/api/model/PaymentResultInfo.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ type PaymentResultInfo struct {
2222
RefusalReasonRaw string `json:"refusalReasonRaw,omitempty"`
2323
MerchantAdviceCode string `json:"merchantAdviceCode,omitempty"`
2424
AcquirerInfo AcquirerInfo `json:"acquirerInfo,omitempty"`
25+
ExemptionRequested string `json:"exemptionRequested,omitempty"`
2526
}
2627

2728
type ThreeDSResult struct {
@@ -32,4 +33,6 @@ type ThreeDSResult struct {
3233
Xid string `json:"xid,omitempty"`
3334
ThreeDStransactionStatusReason string `json:"threeDStransactionStatusReason,omitempty"`
3435
ChallengeCancel string `json:"challengeCancel,omitempty"`
36+
Challenged bool `json:"challenged,omitempty"`
37+
ExemptionType string `json:"exemptionType,omitempty"`
3538
}

com/alipay/api/request/pay/AlipayInquireExchangeRateRequest.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ type AlipayInquireExchangeRateRequest struct {
1212
CurrencyPairs []*model.CurrencyPair `json:"currencyPairs,omitempty"`
1313
SellCurrency string `json:"sellCurrency,omitempty"`
1414
BuyCurrency string `json:"buyCurrency,omitempty"`
15+
ProductCode model.ProductCodeType `json:"productCode,omitempty"`
1516
}
1617

1718
func (alipayInquireExchangeRateRequest *AlipayInquireExchangeRateRequest) NewRequest() *request.AlipayRequest {

0 commit comments

Comments
 (0)