first commit
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Account\Model;
|
||||
|
||||
use Yeepay\Yop\Sdk\Model\Transform\BaseResponseUnMarshaller;
|
||||
|
||||
class AutoWithdrawRuleSetResponseUnMarshaller extends BaseResponseUnMarshaller
|
||||
{
|
||||
|
||||
/**
|
||||
* @var AutoWithdrawRuleSetResponseUnMarshaller
|
||||
*/
|
||||
private static $instance;
|
||||
|
||||
public static function __init()
|
||||
{
|
||||
self::$instance = new AutoWithdrawRuleSetResponseUnMarshaller();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return AutoWithdrawRuleSetResponseUnMarshaller
|
||||
*/
|
||||
public static function getInstance()
|
||||
{
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return AutoWithdrawRuleSetResponse
|
||||
*/
|
||||
protected function getResponseInstance()
|
||||
{
|
||||
return new AutoWithdrawRuleSetResponse();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
AutoWithdrawRuleSetResponseUnMarshaller::__init();
|
||||
Reference in New Issue
Block a user