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

94 lines
1.5 KiB
PHP

<?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';
}
}