-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from alipay/feature-241224
1. CKP二期支持商户传入可选支付方式列表2. AMS独立绑卡支持MIT交易
- Loading branch information
Showing
5 changed files
with
39 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
``` | ||
Language:GO | ||
GO version:1.22.5+ | ||
Tags:v1.2.7 | ||
Tags:v1.2.8 | ||
Copyright:Ant financial services group | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package model | ||
|
||
type AvailablePaymentMethod struct { | ||
PaymentMethodTypeList []PaymentMethodTypeItem `json:"paymentMethodTypeList,omitempty"` | ||
} | ||
|
||
type PaymentMethodTypeItem struct { | ||
PaymentMethodType string `json:"paymentMethodType,omitempty"` | ||
PaymentMethodOrder int `json:"paymentMethodOrder,omitempty"` | ||
ExpressCheckout bool `json:"expressCheckout,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters