39 lines
841 B
PHP
39 lines
841 B
PHP
<?php
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Facepay\Model;
|
|
|
|
use Yeepay\Yop\Sdk\Model\Transform\BaseResponseUnMarshaller;
|
|
|
|
class FacepayProxyBindFirstCardResponseUnMarshaller extends BaseResponseUnMarshaller
|
|
{
|
|
|
|
/**
|
|
* @var FacepayProxyBindFirstCardResponseUnMarshaller
|
|
*/
|
|
private static $instance;
|
|
|
|
public static function __init()
|
|
{
|
|
self::$instance = new FacepayProxyBindFirstCardResponseUnMarshaller();
|
|
}
|
|
|
|
/**
|
|
* @return FacepayProxyBindFirstCardResponseUnMarshaller
|
|
*/
|
|
public static function getInstance()
|
|
{
|
|
return self::$instance;
|
|
}
|
|
|
|
/**
|
|
* @return FacepayProxyBindFirstCardResponse
|
|
*/
|
|
protected function getResponseInstance()
|
|
{
|
|
return new FacepayProxyBindFirstCardResponse();
|
|
}
|
|
|
|
}
|
|
|
|
FacepayProxyBindFirstCardResponseUnMarshaller::__init();
|