-
Notifications
You must be signed in to change notification settings - Fork 7
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 #23 from alipay/feature-241224
1. CKP二期支持商户传入可选支付方式列表2. AMS独立绑卡支持MIT交易
- Loading branch information
Showing
8 changed files
with
137 additions
and
1 deletion.
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:PHP | ||
PHP version:5.6.40+ | ||
Releass ^1.3.9 | ||
Releass ^1.4.0 | ||
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
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,26 @@ | ||
<?php | ||
|
||
namespace Model; | ||
|
||
class AvailablePaymentMethod | ||
{ | ||
public $paymentMethodTypeList; | ||
|
||
/** | ||
* @return mixed | ||
*/ | ||
public function getPaymentMethodTypeList() | ||
{ | ||
return $this->paymentMethodTypeList; | ||
} | ||
|
||
/** | ||
* @param mixed $paymentMethodTypeList | ||
*/ | ||
public function setPaymentMethodTypeList($paymentMethodTypeList): void | ||
{ | ||
$this->paymentMethodTypeList = $paymentMethodTypeList; | ||
} | ||
|
||
|
||
} |
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 |
---|---|---|
|
@@ -13,6 +13,8 @@ class PaymentMethodDetail | |
|
||
public $paymentMethodType; | ||
|
||
|
||
|
||
/** | ||
* @return mixed | ||
*/ | ||
|
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,60 @@ | ||
<?php | ||
|
||
namespace Model; | ||
|
||
class PaymentMethodTypeItem | ||
{ | ||
public $paymentMethodType; | ||
public $paymentMethodOrder; | ||
public $expressCheckout; | ||
|
||
/** | ||
* @return mixed | ||
*/ | ||
public function getPaymentMethodType() | ||
{ | ||
return $this->paymentMethodType; | ||
} | ||
|
||
/** | ||
* @param mixed $paymentMethodType | ||
*/ | ||
public function setPaymentMethodType($paymentMethodType): void | ||
{ | ||
$this->paymentMethodType = $paymentMethodType; | ||
} | ||
|
||
/** | ||
* @return mixed | ||
*/ | ||
public function getPaymentMethodOrder() | ||
{ | ||
return $this->paymentMethodOrder; | ||
} | ||
|
||
/** | ||
* @param mixed $paymentMethodOrder | ||
*/ | ||
public function setPaymentMethodOrder($paymentMethodOrder): void | ||
{ | ||
$this->paymentMethodOrder = $paymentMethodOrder; | ||
} | ||
|
||
/** | ||
* @return mixed | ||
*/ | ||
public function getExpressCheckout() | ||
{ | ||
return $this->expressCheckout; | ||
} | ||
|
||
/** | ||
* @param mixed $expressCheckout | ||
*/ | ||
public function setExpressCheckout($expressCheckout): void | ||
{ | ||
$this->expressCheckout = $expressCheckout; | ||
} | ||
|
||
|
||
} |
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