68 lines
1.1 KiB
PHP
68 lines
1.1 KiB
PHP
<?php
|
|
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Promtion\Model;
|
|
|
|
|
|
class RightsFrozenRightsRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $productNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantNo;
|
|
|
|
/**
|
|
* Gets productNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getProductNo()
|
|
{
|
|
return $this->productNo;
|
|
}
|
|
|
|
/**
|
|
* Sets productNo
|
|
*
|
|
* @param string $productNo
|
|
* @return RightsFrozenRightsRequest
|
|
*/
|
|
public function setProductNo($productNo)
|
|
{
|
|
$this->productNo = $productNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets merchantNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getMerchantNo()
|
|
{
|
|
return $this->merchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets merchantNo
|
|
*
|
|
* @param string $merchantNo
|
|
* @return RightsFrozenRightsRequest
|
|
*/
|
|
public function setMerchantNo($merchantNo)
|
|
{
|
|
$this->merchantNo = $merchantNo;
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'rightsFrozenRights';
|
|
}
|
|
|
|
|
|
}
|