增加聚合支付托管下单
This commit is contained in:
34
lib/Service/Mer/Model/ProductFeeModifyV2Response.php
Normal file
34
lib/Service/Mer/Model/ProductFeeModifyV2Response.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Mer\Model;
|
||||
|
||||
|
||||
class ProductFeeModifyV2Response extends \Yeepay\Yop\Sdk\Model\BaseResponse
|
||||
{
|
||||
/**
|
||||
* @var ProductFeeModifyV2ModifyProductFeeRespDtoResult
|
||||
*/
|
||||
private $result;
|
||||
|
||||
function getResultClass()
|
||||
{
|
||||
return '\Yeepay\Yop\Sdk\Service\Mer\Model\ProductFeeModifyV2ModifyProductFeeRespDtoResult';
|
||||
}
|
||||
|
||||
/**
|
||||
* @param ProductFeeModifyV2ModifyProductFeeRespDtoResult $result
|
||||
*/
|
||||
function setResult($result)
|
||||
{
|
||||
$this->result = $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return ProductFeeModifyV2ModifyProductFeeRespDtoResult
|
||||
*/
|
||||
function getResult()
|
||||
{
|
||||
return $this->result;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user