File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed
src/com/alipay/ams/api/entities Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1
- # Changelog ## 2.0.8 - 2025-01-22 * [#12](https://github.com/alipay/global-open-sdk-dotnet/pull/12) feature-250122 - update promotionResults ## 2.0.7 - 2025-01-06 * [#11](https://github.com/alipay/global-open-sdk-dotnet/pull/11) feature-250106 - 订阅支付新增“更新接口” ## 2.0.6 - 2024-12-24 * [#11](https://github.com/alipay/global-open-sdk-dotnet/pull/10) feature-241224 - CKP二期支持商户传入可选支付方式列表 - AMS独立绑卡支持MIT交易 ## 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
1
+ # Changelog ## 2.0.9 - 2025-02-05 * [#13](https://github.com/alipay/global-open-sdk-dotnet/pull/13) feature-250205 - 支付、查询、支付结果通知新增卡相关信息字段 ## 2.0.8 - 2025-01-22 * [#12](https://github.com/alipay/global-open-sdk-dotnet/pull/12) feature-250122 - update promotionResults ## 2.0.7 - 2025-01-06 * [#11](https://github.com/alipay/global-open-sdk-dotnet/pull/11) feature-250106 - 订阅支付新增“更新接口” ## 2.0.6 - 2024-12-24 * [#11](https://github.com/alipay/global-open-sdk-dotnet/pull/10) feature-241224 - CKP二期支持商户传入可选支付方式列表 - AMS独立绑卡支持MIT交易 ## 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
Original file line number Diff line number Diff line change 1
1
# Alipay AMS(Alipay Merchant Services) C# Bindings
2
2
```
3
3
Language:C#
4
- Releass ^2.0.8
4
+ Releass ^2.0.9
5
5
Copyright:Ant financial services group
6
6
```
7
7
Original file line number Diff line number Diff line change 3
3
4
4
<PropertyGroup >
5
5
<PackageId >global-open-sdk-dotnet</PackageId >
6
- <Version >2.0.8 </Version >
6
+ <Version >2.0.9 </Version >
7
7
<Authors >wangzunjiao</Authors >
8
8
<Company >antom</Company >
9
9
<OutputType >Exe</OutputType >
Original file line number Diff line number Diff line change @@ -23,5 +23,15 @@ public class PaymentResultInfo
23
23
public string NetworkTransactionId { get ; set ; }
24
24
25
25
public CreditPayPlan CreditPayPlan { get ; set ; }
26
+
27
+ public string CardholderName { get ; set ; }
28
+
29
+ public string CardBin { get ; set ; }
30
+
31
+ public string LastFour { get ; set ; }
32
+
33
+ public string ExpiryMonth { get ; set ; }
34
+
35
+ public string ExpiryYear { get ; set ; }
26
36
}
27
37
}
You can’t perform that action at this time.
0 commit comments