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