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

39 lines
778 B
PHP

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