Files
YeePay/lib/Service/Mer/Model/ProductIncrementSettleOpenV2Request.php

118 lines
2.0 KiB
PHP

<?php
namespace Yeepay\Yop\Sdk\Service\Mer\Model;
class ProductIncrementSettleOpenV2Request extends \Yeepay\Yop\Sdk\Model\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 ProductIncrementSettleOpenV2Request
*/
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 ProductIncrementSettleOpenV2Request
*/
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 ProductIncrementSettleOpenV2Request
*/
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 ProductIncrementSettleOpenV2Request
*/
public function setNotifyUrl($notifyUrl)
{
$this->notifyUrl = $notifyUrl;
return $this;
}
public static function getOperationId()
{
return 'productIncrementSettleOpenV2';
}
}