first commit
This commit is contained in:
36
lib/Service/Sys/Model/TradeRefundResponse.php
Normal file
36
lib/Service/Sys/Model/TradeRefundResponse.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Sys\Model;
|
||||
|
||||
use Yeepay\Yop\Sdk\Model\BaseResponse;
|
||||
|
||||
class TradeRefundResponse extends BaseResponse
|
||||
{
|
||||
|
||||
/**
|
||||
* @var TradeRefundResponseRefundDTOResult
|
||||
*/
|
||||
private $result;
|
||||
|
||||
function getResultClass()
|
||||
{
|
||||
return '\Yeepay\Yop\Sdk\Service\Sys\Model\TradeRefundResponseRefundDTOResult';
|
||||
}
|
||||
|
||||
/**
|
||||
* @param TradeRefundResponseRefundDTOResult $result
|
||||
*/
|
||||
function setResult($result)
|
||||
{
|
||||
$this->result = $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return TradeRefundResponseRefundDTOResult
|
||||
*/
|
||||
function getResult()
|
||||
{
|
||||
return $this->result;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user