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

37 lines
704 B
PHP

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