first commit
This commit is contained in:
67
lib/Service/Mer/Model/AuthorizeRelieveRequest.php
Normal file
67
lib/Service/Mer/Model/AuthorizeRelieveRequest.php
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Mer\Model;
|
||||
|
||||
use Yeepay\Yop\Sdk\Model\BaseRequest;
|
||||
|
||||
class AuthorizeRelieveRequest extends BaseRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $authorizeMerchantNo;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $bizType;
|
||||
|
||||
/**
|
||||
* Gets authorizeMerchantNo
|
||||
* @return string
|
||||
*/
|
||||
public function getAuthorizeMerchantNo()
|
||||
{
|
||||
return $this->authorizeMerchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets authorizeMerchantNo
|
||||
* @param string $authorizeMerchantNo
|
||||
* @return AuthorizeRelieveRequest
|
||||
*/
|
||||
public function setAuthorizeMerchantNo($authorizeMerchantNo)
|
||||
{
|
||||
$this->authorizeMerchantNo = $authorizeMerchantNo;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets bizType
|
||||
* @return string
|
||||
*/
|
||||
public function getBizType()
|
||||
{
|
||||
return $this->bizType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets bizType
|
||||
* @param string $bizType
|
||||
* @return AuthorizeRelieveRequest
|
||||
*/
|
||||
public function setBizType($bizType)
|
||||
{
|
||||
$this->bizType = $bizType;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'authorizeRelieve';
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user