first commit
This commit is contained in:
145
lib/Service/Trade/Model/RefundQueryRequest.php
Normal file
145
lib/Service/Trade/Model/RefundQueryRequest.php
Normal file
@@ -0,0 +1,145 @@
|
||||
<?php
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Trade\Model;
|
||||
|
||||
use Yeepay\Yop\Sdk\Model\BaseRequest;
|
||||
|
||||
class RefundQueryRequest extends BaseRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $parentMerchantNo;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $merchantNo;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $orderId;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $refundRequestId;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $uniqueRefundNo;
|
||||
|
||||
/**
|
||||
* Gets parentMerchantNo
|
||||
* @return string
|
||||
*/
|
||||
public function getParentMerchantNo()
|
||||
{
|
||||
return $this->parentMerchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets parentMerchantNo
|
||||
* @param string $parentMerchantNo
|
||||
* @return RefundQueryRequest
|
||||
*/
|
||||
public function setParentMerchantNo($parentMerchantNo)
|
||||
{
|
||||
$this->parentMerchantNo = $parentMerchantNo;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets merchantNo
|
||||
* @return string
|
||||
*/
|
||||
public function getMerchantNo()
|
||||
{
|
||||
return $this->merchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets merchantNo
|
||||
* @param string $merchantNo
|
||||
* @return RefundQueryRequest
|
||||
*/
|
||||
public function setMerchantNo($merchantNo)
|
||||
{
|
||||
$this->merchantNo = $merchantNo;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets orderId
|
||||
* @return string
|
||||
*/
|
||||
public function getOrderId()
|
||||
{
|
||||
return $this->orderId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets orderId
|
||||
* @param string $orderId
|
||||
* @return RefundQueryRequest
|
||||
*/
|
||||
public function setOrderId($orderId)
|
||||
{
|
||||
$this->orderId = $orderId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets refundRequestId
|
||||
* @return string
|
||||
*/
|
||||
public function getRefundRequestId()
|
||||
{
|
||||
return $this->refundRequestId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets refundRequestId
|
||||
* @param string $refundRequestId
|
||||
* @return RefundQueryRequest
|
||||
*/
|
||||
public function setRefundRequestId($refundRequestId)
|
||||
{
|
||||
$this->refundRequestId = $refundRequestId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets uniqueRefundNo
|
||||
* @return string
|
||||
*/
|
||||
public function getUniqueRefundNo()
|
||||
{
|
||||
return $this->uniqueRefundNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets uniqueRefundNo
|
||||
* @param string $uniqueRefundNo
|
||||
* @return RefundQueryRequest
|
||||
*/
|
||||
public function setUniqueRefundNo($uniqueRefundNo)
|
||||
{
|
||||
$this->uniqueRefundNo = $uniqueRefundNo;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'refundQuery';
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user