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

94 lines
1.6 KiB
PHP

<?php
namespace Yeepay\Yop\Sdk\Service\Trade\Model;
use Yeepay\Yop\Sdk\Model\BaseRequest;
class ReceiptDownloadRequest extends BaseRequest
{
/**
* @var string
*/
private $parentMerchantNo;
/**
* @var string
*/
private $merchantNo;
/**
* @var string
*/
private $orderId;
/**
* Gets parentMerchantNo
* @return string
*/
public function getParentMerchantNo()
{
return $this->parentMerchantNo;
}
/**
* Sets parentMerchantNo
* @param string $parentMerchantNo
* @return ReceiptDownloadRequest
*/
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 ReceiptDownloadRequest
*/
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 ReceiptDownloadRequest
*/
public function setOrderId($orderId)
{
$this->orderId = $orderId;
return $this;
}
public static function getOperationId()
{
return 'receiptDownload';
}
}