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

37 lines
676 B
PHP

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