Files
YeePay/lib/Service/Aggpay/Model/WechatConfigAddRequest.php
2024-04-01 09:54:43 +08:00

42 lines
598 B
PHP

<?php
namespace Yeepay\Yop\Sdk\Service\Aggpay\Model;
use Yeepay\Yop\Sdk\Model\BaseRequest;
class WechatConfigAddRequest extends BaseRequest
{
/**
* @var
*/
private $body;
/**
* Gets body
* @return
*/
public function getBody()
{
return $this->body;
}
/**
* Sets body
* @param $body
* @return WechatConfigAddRequest
*/
public function setBody($body)
{
$this->body = $body;
return $this;
}
public static function getOperationId()
{
return 'wechatConfigAdd';
}
}