143 lines
2.5 KiB
PHP
143 lines
2.5 KiB
PHP
<?php
|
|
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Promtion\Model;
|
|
|
|
|
|
class CouponApplyRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $requestNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantUserNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantActivityNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $marketingNo;
|
|
|
|
/**
|
|
* Gets requestNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getRequestNo()
|
|
{
|
|
return $this->requestNo;
|
|
}
|
|
|
|
/**
|
|
* Sets requestNo
|
|
*
|
|
* @param string $requestNo
|
|
* @return CouponApplyRequest
|
|
*/
|
|
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 CouponApplyRequest
|
|
*/
|
|
public function setMerchantNo($merchantNo)
|
|
{
|
|
$this->merchantNo = $merchantNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets merchantUserNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getMerchantUserNo()
|
|
{
|
|
return $this->merchantUserNo;
|
|
}
|
|
|
|
/**
|
|
* Sets merchantUserNo
|
|
*
|
|
* @param string $merchantUserNo
|
|
* @return CouponApplyRequest
|
|
*/
|
|
public function setMerchantUserNo($merchantUserNo)
|
|
{
|
|
$this->merchantUserNo = $merchantUserNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets merchantActivityNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getMerchantActivityNo()
|
|
{
|
|
return $this->merchantActivityNo;
|
|
}
|
|
|
|
/**
|
|
* Sets merchantActivityNo
|
|
*
|
|
* @param string $merchantActivityNo
|
|
* @return CouponApplyRequest
|
|
*/
|
|
public function setMerchantActivityNo($merchantActivityNo)
|
|
{
|
|
$this->merchantActivityNo = $merchantActivityNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets marketingNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getMarketingNo()
|
|
{
|
|
return $this->marketingNo;
|
|
}
|
|
|
|
/**
|
|
* Sets marketingNo
|
|
*
|
|
* @param string $marketingNo
|
|
* @return CouponApplyRequest
|
|
*/
|
|
public function setMarketingNo($marketingNo)
|
|
{
|
|
$this->marketingNo = $marketingNo;
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'couponApply';
|
|
}
|
|
|
|
|
|
}
|