first commit

This commit is contained in:
2024-04-01 09:54:43 +08:00
commit 899d816bc3
795 changed files with 130040 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
<?php
namespace Yeepay\Yop\Sdk\Service\Settle\Model;
use Yeepay\Yop\Sdk\Model\Transform\BaseResponseUnMarshaller;
class SettleCardModifyResponseUnMarshaller extends BaseResponseUnMarshaller
{
/**
* @var SettleCardModifyResponseUnMarshaller
*/
private static $instance;
public static function __init()
{
self::$instance = new SettleCardModifyResponseUnMarshaller();
}
/**
* @return SettleCardModifyResponseUnMarshaller
*/
public static function getInstance()
{
return self::$instance;
}
/**
* @return SettleCardModifyResponse
*/
protected function getResponseInstance()
{
return new SettleCardModifyResponse();
}
}
SettleCardModifyResponseUnMarshaller::__init();