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