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

37 lines
666 B
PHP

<?php
namespace Yeepay\Yop\Sdk\Service\Yop\Model;
use Yeepay\Yop\Sdk\Model\BaseResponse;
class Oauth2ReportKeyResponse extends BaseResponse
{
/**
* @var Oauth2ReportKeyHandshakeResponseResult
*/
private $result;
function getResultClass()
{
return '\Yeepay\Yop\Sdk\Service\Yop\Model\Oauth2ReportKeyHandshakeResponseResult';
}
/**
* @param Oauth2ReportKeyHandshakeResponseResult $result
*/
function setResult($result)
{
$this->result = $result;
}
/**
* @return Oauth2ReportKeyHandshakeResponseResult
*/
function getResult()
{
return $this->result;
}
}