first commit
This commit is contained in:
93
lib/Service/Mer/Model/NotifyRepeatRequest.php
Normal file
93
lib/Service/Mer/Model/NotifyRepeatRequest.php
Normal file
@@ -0,0 +1,93 @@
|
||||
<?php
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Mer\Model;
|
||||
|
||||
use Yeepay\Yop\Sdk\Model\BaseRequest;
|
||||
|
||||
class NotifyRepeatRequest extends BaseRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $requestNo;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $applicationNo;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $type;
|
||||
|
||||
/**
|
||||
* Gets requestNo
|
||||
* @return string
|
||||
*/
|
||||
public function getRequestNo()
|
||||
{
|
||||
return $this->requestNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets requestNo
|
||||
* @param string $requestNo
|
||||
* @return NotifyRepeatRequest
|
||||
*/
|
||||
public function setRequestNo($requestNo)
|
||||
{
|
||||
$this->requestNo = $requestNo;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets applicationNo
|
||||
* @return string
|
||||
*/
|
||||
public function getApplicationNo()
|
||||
{
|
||||
return $this->applicationNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets applicationNo
|
||||
* @param string $applicationNo
|
||||
* @return NotifyRepeatRequest
|
||||
*/
|
||||
public function setApplicationNo($applicationNo)
|
||||
{
|
||||
$this->applicationNo = $applicationNo;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets type
|
||||
* @return string
|
||||
*/
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets type
|
||||
* @param string $type
|
||||
* @return NotifyRepeatRequest
|
||||
*/
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'notifyRepeat';
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user