first commit

This commit is contained in:
2024-04-01 09:54:43 +08:00
commit 899d816bc3
795 changed files with 130040 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?php
namespace Yeepay\Yop\Sdk\Service\Aggpay\Model;
use Yeepay\Yop\Sdk\Model\BaseResponse;
class WechatConfigQuery0Response extends BaseResponse
{
/**
* @var WechatConfigQueryWechatConfigFlatResponseDTOResult
*/
private $result;
function getResultClass()
{
return '\Yeepay\Yop\Sdk\Service\Aggpay\Model\WechatConfigQueryWechatConfigFlatResponseDTOResult';
}
/**
* @param WechatConfigQueryWechatConfigFlatResponseDTOResult $result
*/
function setResult($result)
{
$this->result = $result;
}
/**
* @return WechatConfigQueryWechatConfigFlatResponseDTOResult
*/
function getResult()
{
return $this->result;
}
}