168 lines
3.0 KiB
PHP
168 lines
3.0 KiB
PHP
<?php
|
|
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\MWallet\Model;
|
|
|
|
|
|
class AgreementPaymentRequestV1Request extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $parentMerchantNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantUserNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $requestNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $returnUrl;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $notifyUrl;
|
|
|
|
/**
|
|
* Gets parentMerchantNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getParentMerchantNo()
|
|
{
|
|
return $this->parentMerchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets parentMerchantNo
|
|
*
|
|
* @param string $parentMerchantNo
|
|
* @return AgreementPaymentRequestV1Request
|
|
*/
|
|
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 AgreementPaymentRequestV1Request
|
|
*/
|
|
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 AgreementPaymentRequestV1Request
|
|
*/
|
|
public function setMerchantUserNo($merchantUserNo)
|
|
{
|
|
$this->merchantUserNo = $merchantUserNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets requestNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getRequestNo()
|
|
{
|
|
return $this->requestNo;
|
|
}
|
|
|
|
/**
|
|
* Sets requestNo
|
|
*
|
|
* @param string $requestNo
|
|
* @return AgreementPaymentRequestV1Request
|
|
*/
|
|
public function setRequestNo($requestNo)
|
|
{
|
|
$this->requestNo = $requestNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets returnUrl
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getReturnUrl()
|
|
{
|
|
return $this->returnUrl;
|
|
}
|
|
|
|
/**
|
|
* Sets returnUrl
|
|
*
|
|
* @param string $returnUrl
|
|
* @return AgreementPaymentRequestV1Request
|
|
*/
|
|
public function setReturnUrl($returnUrl)
|
|
{
|
|
$this->returnUrl = $returnUrl;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets notifyUrl
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getNotifyUrl()
|
|
{
|
|
return $this->notifyUrl;
|
|
}
|
|
|
|
/**
|
|
* Sets notifyUrl
|
|
*
|
|
* @param string $notifyUrl
|
|
* @return AgreementPaymentRequestV1Request
|
|
*/
|
|
public function setNotifyUrl($notifyUrl)
|
|
{
|
|
$this->notifyUrl = $notifyUrl;
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'agreement_payment_request_v1';
|
|
}
|
|
|
|
|
|
}
|