37 lines
738 B
PHP
37 lines
738 B
PHP
<?php
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Facepay\Model;
|
|
|
|
use Yeepay\Yop\Sdk\Model\BaseResponse;
|
|
|
|
class FacepayProxyQueryOrderAfterResponse extends BaseResponse
|
|
{
|
|
|
|
/**
|
|
* @var FacepayProxyQueryOrderAfterOrderAfterResponseResult
|
|
*/
|
|
private $result;
|
|
|
|
function getResultClass()
|
|
{
|
|
return '\Yeepay\Yop\Sdk\Service\Facepay\Model\FacepayProxyQueryOrderAfterOrderAfterResponseResult';
|
|
}
|
|
|
|
/**
|
|
* @param FacepayProxyQueryOrderAfterOrderAfterResponseResult $result
|
|
*/
|
|
function setResult($result)
|
|
{
|
|
$this->result = $result;
|
|
}
|
|
|
|
/**
|
|
* @return FacepayProxyQueryOrderAfterOrderAfterResponseResult
|
|
*/
|
|
function getResult()
|
|
{
|
|
return $this->result;
|
|
}
|
|
|
|
}
|