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

39 lines
848 B
PHP

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