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