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

120 lines
2.0 KiB
PHP

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