243 lines
4.8 KiB
PHP
243 lines
4.8 KiB
PHP
<?php
|
|
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Mer\Model;
|
|
|
|
|
|
class ProductFeeModifyV2Request extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $requestNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $parentMerchantNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $notifyUrl;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $productInfo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $productQualificationInfo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $settlementAccountInfo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $functionService;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $functionServiceQualificationInfo;
|
|
|
|
/**
|
|
* Gets requestNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getRequestNo()
|
|
{
|
|
return $this->requestNo;
|
|
}
|
|
|
|
/**
|
|
* Sets requestNo
|
|
*
|
|
* @param string $requestNo
|
|
* @return ProductFeeModifyV2Request
|
|
*/
|
|
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 ProductFeeModifyV2Request
|
|
*/
|
|
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 ProductFeeModifyV2Request
|
|
*/
|
|
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 ProductFeeModifyV2Request
|
|
*/
|
|
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 ProductFeeModifyV2Request
|
|
*/
|
|
public function setProductInfo($productInfo)
|
|
{
|
|
$this->productInfo = $productInfo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets productQualificationInfo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getProductQualificationInfo()
|
|
{
|
|
return $this->productQualificationInfo;
|
|
}
|
|
|
|
/**
|
|
* Sets productQualificationInfo
|
|
*
|
|
* @param string $productQualificationInfo
|
|
* @return ProductFeeModifyV2Request
|
|
*/
|
|
public function setProductQualificationInfo($productQualificationInfo)
|
|
{
|
|
$this->productQualificationInfo = $productQualificationInfo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets settlementAccountInfo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getSettlementAccountInfo()
|
|
{
|
|
return $this->settlementAccountInfo;
|
|
}
|
|
|
|
/**
|
|
* Sets settlementAccountInfo
|
|
*
|
|
* @param string $settlementAccountInfo
|
|
* @return ProductFeeModifyV2Request
|
|
*/
|
|
public function setSettlementAccountInfo($settlementAccountInfo)
|
|
{
|
|
$this->settlementAccountInfo = $settlementAccountInfo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets functionService
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getFunctionService()
|
|
{
|
|
return $this->functionService;
|
|
}
|
|
|
|
/**
|
|
* Sets functionService
|
|
*
|
|
* @param string $functionService
|
|
* @return ProductFeeModifyV2Request
|
|
*/
|
|
public function setFunctionService($functionService)
|
|
{
|
|
$this->functionService = $functionService;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets functionServiceQualificationInfo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getFunctionServiceQualificationInfo()
|
|
{
|
|
return $this->functionServiceQualificationInfo;
|
|
}
|
|
|
|
/**
|
|
* Sets functionServiceQualificationInfo
|
|
*
|
|
* @param string $functionServiceQualificationInfo
|
|
* @return ProductFeeModifyV2Request
|
|
*/
|
|
public function setFunctionServiceQualificationInfo($functionServiceQualificationInfo)
|
|
{
|
|
$this->functionServiceQualificationInfo = $functionServiceQualificationInfo;
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'productFeeModifyV2';
|
|
}
|
|
|
|
|
|
}
|