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