hxd
parent
70bf5fa8ec
commit
4f52b7ef78
@ -0,0 +1,21 @@
|
|||||||
|
<?php
|
||||||
|
namespace Org\MyCard\Request;
|
||||||
|
|
||||||
|
class PaymentConfirmRequest extends Request
|
||||||
|
{
|
||||||
|
protected $url = '/MyBillingPay/v1.2/paymentConfirm';
|
||||||
|
|
||||||
|
protected $params = [];
|
||||||
|
|
||||||
|
public function setAuthCode(string $authCode)
|
||||||
|
{
|
||||||
|
$this->params['AuthCode'] = $authCode;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getHashSort() {
|
||||||
|
return [
|
||||||
|
'AuthCode',
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue