增加聚合支付托管下单
This commit is contained in:
92
lib/Service/Mer/Model/AuthStateQueryV2Request.php
Normal file
92
lib/Service/Mer/Model/AuthStateQueryV2Request.php
Normal file
@@ -0,0 +1,92 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Mer\Model;
|
||||
|
||||
|
||||
class AuthStateQueryV2Request extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $merchantNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $reportMerchantNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $feeType;
|
||||
|
||||
/**
|
||||
* Gets merchantNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMerchantNo()
|
||||
{
|
||||
return $this->merchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets merchantNo
|
||||
*
|
||||
* @param string $merchantNo
|
||||
* @return AuthStateQueryV2Request
|
||||
*/
|
||||
public function setMerchantNo($merchantNo)
|
||||
{
|
||||
$this->merchantNo = $merchantNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets reportMerchantNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getReportMerchantNo()
|
||||
{
|
||||
return $this->reportMerchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets reportMerchantNo
|
||||
*
|
||||
* @param string $reportMerchantNo
|
||||
* @return AuthStateQueryV2Request
|
||||
*/
|
||||
public function setReportMerchantNo($reportMerchantNo)
|
||||
{
|
||||
$this->reportMerchantNo = $reportMerchantNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets feeType
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getFeeType()
|
||||
{
|
||||
return $this->feeType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets feeType
|
||||
*
|
||||
* @param string $feeType
|
||||
* @return AuthStateQueryV2Request
|
||||
*/
|
||||
public function setFeeType($feeType)
|
||||
{
|
||||
$this->feeType = $feeType;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'authStateQueryV2';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user