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

39 lines
785 B
PHP

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