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,93 @@
<?php
namespace Yeepay\Yop\Sdk\Service\Mer\Model;
use Yeepay\Yop\Sdk\Model\BaseRequest;
class AuthStateQueryRequest extends 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 AuthStateQueryRequest
*/
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 AuthStateQueryRequest
*/
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 AuthStateQueryRequest
*/
public function setFeeType($feeType)
{
$this->feeType = $feeType;
return $this;
}
public static function getOperationId()
{
return 'authStateQuery';
}
}