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

39 lines
757 B
PHP

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