Files
YeePay/lib/Service/Mer/Model/NotifyRepeatV2Response.php

35 lines
701 B
PHP

<?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;
}
}