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

94 lines
1.6 KiB
PHP

<?php
namespace Yeepay\Yop\Sdk\Service\Mer\Model;
use Yeepay\Yop\Sdk\Model\BaseRequest;
class ProductFeeQueryRequest extends BaseRequest
{
/**
* @var string
*/
private $parentMerchantNo;
/**
* @var string
*/
private $merchantNo;
/**
* @var string
*/
private $productCode;
/**
* Gets parentMerchantNo
* @return string
*/
public function getParentMerchantNo()
{
return $this->parentMerchantNo;
}
/**
* Sets parentMerchantNo
* @param string $parentMerchantNo
* @return ProductFeeQueryRequest
*/
public function setParentMerchantNo($parentMerchantNo)
{
$this->parentMerchantNo = $parentMerchantNo;
return $this;
}
/**
* Gets merchantNo
* @return string
*/
public function getMerchantNo()
{
return $this->merchantNo;
}
/**
* Sets merchantNo
* @param string $merchantNo
* @return ProductFeeQueryRequest
*/
public function setMerchantNo($merchantNo)
{
$this->merchantNo = $merchantNo;
return $this;
}
/**
* Gets productCode
* @return string
*/
public function getProductCode()
{
return $this->productCode;
}
/**
* Sets productCode
* @param string $productCode
* @return ProductFeeQueryRequest
*/
public function setProductCode($productCode)
{
$this->productCode = $productCode;
return $this;
}
public static function getOperationId()
{
return 'productFeeQuery';
}
}