Skip to content

Commit 9be8070

Browse files
authored
Merge pull request #9 from alipay/feature-241216
1. RDR拒付通知优化通用能力变更
2 parents c7b5b69 + 21a0488 commit 9be8070

File tree

7 files changed

+22
-4
lines changed

7 files changed

+22
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# Changelog## 2.0.4 - 2024-12-02* [#9](https://github.com/alipay/global-open-sdk-dotnet/pull/9) feature-241202 - update AlipayDisputeNotify - update AlipayPayQueryResponse## 2.0.3 - 2024-11-25* [#8](https://github.com/alipay/global-open-sdk-dotnet/pull/8) feature-241125 - update AlipayPayResultNotify - update AlipayPayQueryRequest## 2.0.3 - 2024-11-25* [#7](https://github.com/alipay/global-open-sdk-dotnet/pull/7) feature-241125 - update Leg## 2.0.2 - 2024-11-04* [#6](https://github.com/alipay/global-open-sdk-dotnet/pull/6) feature-notify - add notify## 2.0.1 - 2024-10-23 * [#5](https://github.com/alipay/global-open-sdk-dotnet/pull/5) feature-p2 - add MARKETPLACE - add vaulting - add Dispute - add risk - add Notify - add MARKETPLACE_demo - add subscription_demo - add vaulting_demo - add Dispute_demo## 2.0.0 - 2024-09-04* [#4](https://github.com/alipay/global-open-sdk-dotnet/pull/4) Init object library * Add pay - request response * Add auth - request response * Add customs - request response * Add subscription - request response * Add example - auth customs pay * Add Changelog## 1.0.0 - 2021-08-02* Init object library
1+
# Changelog## 2.0.5 - 2024-12-16* [#10](https://github.com/alipay/global-open-sdk-dotnet/pull/10) feature-241216 - RDR拒付通知优化通用能力变更 - Antom新增ApplePay支付方式## 2.0.4 - 2024-12-02* [#9](https://github.com/alipay/global-open-sdk-dotnet/pull/9) feature-241202 - update AlipayDisputeNotify - update AlipayPayQueryResponse## 2.0.3 - 2024-11-25* [#8](https://github.com/alipay/global-open-sdk-dotnet/pull/8) feature-241125 - update AlipayPayResultNotify - update AlipayPayQueryRequest## 2.0.3 - 2024-11-25* [#7](https://github.com/alipay/global-open-sdk-dotnet/pull/7) feature-241125 - update Leg## 2.0.2 - 2024-11-04* [#6](https://github.com/alipay/global-open-sdk-dotnet/pull/6) feature-notify - add notify## 2.0.1 - 2024-10-23 * [#5](https://github.com/alipay/global-open-sdk-dotnet/pull/5) feature-p2 - add MARKETPLACE - add vaulting - add Dispute - add risk - add Notify - add MARKETPLACE_demo - add subscription_demo - add vaulting_demo - add Dispute_demo## 2.0.0 - 2024-09-04* [#4](https://github.com/alipay/global-open-sdk-dotnet/pull/4) Init object library * Add pay - request response * Add auth - request response * Add customs - request response * Add subscription - request response * Add example - auth customs pay * Add Changelog## 1.0.0 - 2021-08-02* Init object library

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Alipay AMS(Alipay Merchant Services) C# Bindings
22
```
33
Language:C#
4-
Releass ^2.0.4
4+
Releass ^2.0.5
55
Copyright:Ant financial services group
66
```
77

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace com.alipay.ams.api.entities;
2+
3+
public class ApplePayConfiguration
4+
{
5+
public string[] RequiredBillingContactFields { get; set; }
6+
public string[] RequiredShippingContactFields { get; set; }
7+
public bool ButtonsBundled { get; set; }
8+
public string ApplePayTokenP{ get; set; }
9+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
namespace com.alipay.ams.api.entities;
2+
3+
public enum DisputeAcceptReasonType
4+
{
5+
MERCHANT_ACCEPTED, TIMEOUT, MANUAL_PROCESSING_ACCEPTED
6+
}

ams-dotnet/src/com/alipay/ams/api/entities/DisputeNotificationType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ namespace com.alipay.ams.api.entities;
22

33
public enum DisputeNotificationType
44
{
5-
DISPUTE_CREATED,DISPUTE_JUDGED,DISPUTE_CANCELLED,DEFENSE_SUPPLIED,DEFENSE_DUE_ALERT,DISPUTE_ACCEPTED
5+
DISPUTE_CREATED,DISPUTE_JUDGED,DISPUTE_CANCELLED,DEFENSE_SUPPLIED,DEFENSE_DUE_ALERT,DISPUTE_ACCEPTED, RDR_RESOLVED
66
}

ams-dotnet/src/com/alipay/ams/api/entities/WalletPaymentMethodType.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,7 @@ public enum WalletPaymentMethodType
7171
SETTLEMENT_CARD,
7272

7373
BALANCE_ACCOUNT,
74+
75+
APPLEPAY,
7476
}
7577
}

ams-dotnet/src/com/alipay/ams/api/request/notify/AlipayDisputeNotify.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public class AlipayDisputeNotify:AlipayNotify
1818
public string DisputeReasonCode{ get; set; }
1919
public string DisputeSource{ get; set; }
2020
public string Arn{ get; set; }
21-
public string DisputeAcceptReason{ get; set; }
21+
public DisputeAcceptReasonType DisputeAcceptReason{ get; set; }
2222
public string disputeType{ get; set; }
23+
public bool defendable{ get; set; }
2324
}

0 commit comments

Comments
 (0)