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