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

39 lines
844 B
PHP

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