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

39 lines
770 B
PHP

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