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

42 lines
593 B
PHP

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