39 lines
781 B
PHP
39 lines
781 B
PHP
<?php
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Std\Model;
|
|
|
|
use Yeepay\Yop\Sdk\Model\Transform\BaseResponseUnMarshaller;
|
|
|
|
class BillFundbillApplyResponseUnMarshaller extends BaseResponseUnMarshaller
|
|
{
|
|
|
|
/**
|
|
* @var BillFundbillApplyResponseUnMarshaller
|
|
*/
|
|
private static $instance;
|
|
|
|
public static function __init()
|
|
{
|
|
self::$instance = new BillFundbillApplyResponseUnMarshaller();
|
|
}
|
|
|
|
/**
|
|
* @return BillFundbillApplyResponseUnMarshaller
|
|
*/
|
|
public static function getInstance()
|
|
{
|
|
return self::$instance;
|
|
}
|
|
|
|
/**
|
|
* @return BillFundbillApplyResponse
|
|
*/
|
|
protected function getResponseInstance()
|
|
{
|
|
return new BillFundbillApplyResponse();
|
|
}
|
|
|
|
}
|
|
|
|
BillFundbillApplyResponseUnMarshaller::__init();
|