Files
YeePay/lib/Service/Trade/Model/RefundSupplyResponseUnMarshaller.php
2024-04-01 09:54:43 +08:00

39 lines
748 B
PHP

<?php
namespace Yeepay\Yop\Sdk\Service\Trade\Model;
use Yeepay\Yop\Sdk\Model\Transform\BaseResponseUnMarshaller;
class RefundSupplyResponseUnMarshaller extends BaseResponseUnMarshaller
{
/**
* @var RefundSupplyResponseUnMarshaller
*/
private static $instance;
public static function __init()
{
self::$instance = new RefundSupplyResponseUnMarshaller();
}
/**
* @return RefundSupplyResponseUnMarshaller
*/
public static function getInstance()
{
return self::$instance;
}
/**
* @return RefundSupplyResponse
*/
protected function getResponseInstance()
{
return new RefundSupplyResponse();
}
}
RefundSupplyResponseUnMarshaller::__init();