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

39 lines
767 B
PHP

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