增加聚合支付托管下单
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Account\Model;
|
||||
|
||||
|
||||
use Yeepay\Yop\Sdk\Model\Transform\BaseResponseUnMarshaller;
|
||||
|
||||
class AccountBookRefundResponseUnMarshaller extends BaseResponseUnMarshaller
|
||||
{
|
||||
|
||||
/**
|
||||
* @var AccountBookRefundResponseUnMarshaller
|
||||
*/
|
||||
private static $instance;
|
||||
|
||||
public static function __init()
|
||||
{
|
||||
self::$instance = new AccountBookRefundResponseUnMarshaller();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return AccountBookRefundResponseUnMarshaller
|
||||
*/
|
||||
public static function getInstance()
|
||||
{
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return AccountBookRefundResponse
|
||||
*/
|
||||
protected function getResponseInstance()
|
||||
{
|
||||
return new AccountBookRefundResponse();
|
||||
}
|
||||
}
|
||||
|
||||
AccountBookRefundResponseUnMarshaller::__init();
|
||||
Reference in New Issue
Block a user