Files
YeePay/lib/Service/Promtion/Model/FrozenRightsResponse.php

35 lines
549 B
PHP

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