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

146 lines
2.4 KiB
PHP

<?php
namespace Yeepay\Yop\Sdk\Service\Mer\Model;
use Yeepay\Yop\Sdk\Model\BaseRequest;
class ProductFeeModifyRequest extends BaseRequest
{
/**
* @var string
*/
private $requestNo;
/**
* @var string
*/
private $parentMerchantNo;
/**
* @var string
*/
private $merchantNo;
/**
* @var string
*/
private $notifyUrl;
/**
* @var string
*/
private $productInfo;
/**
* Gets requestNo
* @return string
*/
public function getRequestNo()
{
return $this->requestNo;
}
/**
* Sets requestNo
* @param string $requestNo
* @return ProductFeeModifyRequest
*/
public function setRequestNo($requestNo)
{
$this->requestNo = $requestNo;
return $this;
}
/**
* Gets parentMerchantNo
* @return string
*/
public function getParentMerchantNo()
{
return $this->parentMerchantNo;
}
/**
* Sets parentMerchantNo
* @param string $parentMerchantNo
* @return ProductFeeModifyRequest
*/
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 ProductFeeModifyRequest
*/
public function setMerchantNo($merchantNo)
{
$this->merchantNo = $merchantNo;
return $this;
}
/**
* Gets notifyUrl
* @return string
*/
public function getNotifyUrl()
{
return $this->notifyUrl;
}
/**
* Sets notifyUrl
* @param string $notifyUrl
* @return ProductFeeModifyRequest
*/
public function setNotifyUrl($notifyUrl)
{
$this->notifyUrl = $notifyUrl;
return $this;
}
/**
* Gets productInfo
* @return string
*/
public function getProductInfo()
{
return $this->productInfo;
}
/**
* Sets productInfo
* @param string $productInfo
* @return ProductFeeModifyRequest
*/
public function setProductInfo($productInfo)
{
$this->productInfo = $productInfo;
return $this;
}
public static function getOperationId()
{
return 'productFeeModify';
}
}