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

37 lines
686 B
PHP

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