Files
YeePay/lib/Service/Account/Model/EnterpriseAutoPaymentOrderResponseUnMarshaller.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 EnterpriseAutoPaymentOrderResponseUnMarshaller extends BaseResponseUnMarshaller
{
/**
* @var EnterpriseAutoPaymentOrderResponseUnMarshaller
*/
private static $instance;
public static function __init()
{
self::$instance = new EnterpriseAutoPaymentOrderResponseUnMarshaller();
}
/**
* @return EnterpriseAutoPaymentOrderResponseUnMarshaller
*/
public static function getInstance()
{
return self::$instance;
}
/**
* @return EnterpriseAutoPaymentOrderResponse
*/
protected function getResponseInstance()
{
return new EnterpriseAutoPaymentOrderResponse();
}
}
EnterpriseAutoPaymentOrderResponseUnMarshaller::__init();