193 lines
3.6 KiB
PHP
193 lines
3.6 KiB
PHP
<?php
|
|
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\MWallet\Model;
|
|
|
|
|
|
class AgreementPaymentCancelWeb3V10Request extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantUserNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $operateReason;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $operatedMerchantNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $notifyUrl;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $parentMerchantNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $requestNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantNo;
|
|
|
|
/**
|
|
* Gets merchantUserNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getMerchantUserNo()
|
|
{
|
|
return $this->merchantUserNo;
|
|
}
|
|
|
|
/**
|
|
* Sets merchantUserNo
|
|
*
|
|
* @param string $merchantUserNo
|
|
* @return AgreementPaymentCancelWeb3V10Request
|
|
*/
|
|
public function setMerchantUserNo($merchantUserNo)
|
|
{
|
|
$this->merchantUserNo = $merchantUserNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets operateReason
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getOperateReason()
|
|
{
|
|
return $this->operateReason;
|
|
}
|
|
|
|
/**
|
|
* Sets operateReason
|
|
*
|
|
* @param string $operateReason
|
|
* @return AgreementPaymentCancelWeb3V10Request
|
|
*/
|
|
public function setOperateReason($operateReason)
|
|
{
|
|
$this->operateReason = $operateReason;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets operatedMerchantNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getOperatedMerchantNo()
|
|
{
|
|
return $this->operatedMerchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets operatedMerchantNo
|
|
*
|
|
* @param string $operatedMerchantNo
|
|
* @return AgreementPaymentCancelWeb3V10Request
|
|
*/
|
|
public function setOperatedMerchantNo($operatedMerchantNo)
|
|
{
|
|
$this->operatedMerchantNo = $operatedMerchantNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets notifyUrl
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getNotifyUrl()
|
|
{
|
|
return $this->notifyUrl;
|
|
}
|
|
|
|
/**
|
|
* Sets notifyUrl
|
|
*
|
|
* @param string $notifyUrl
|
|
* @return AgreementPaymentCancelWeb3V10Request
|
|
*/
|
|
public function setNotifyUrl($notifyUrl)
|
|
{
|
|
$this->notifyUrl = $notifyUrl;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets parentMerchantNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getParentMerchantNo()
|
|
{
|
|
return $this->parentMerchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets parentMerchantNo
|
|
*
|
|
* @param string $parentMerchantNo
|
|
* @return AgreementPaymentCancelWeb3V10Request
|
|
*/
|
|
public function setParentMerchantNo($parentMerchantNo)
|
|
{
|
|
$this->parentMerchantNo = $parentMerchantNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets requestNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getRequestNo()
|
|
{
|
|
return $this->requestNo;
|
|
}
|
|
|
|
/**
|
|
* Sets requestNo
|
|
*
|
|
* @param string $requestNo
|
|
* @return AgreementPaymentCancelWeb3V10Request
|
|
*/
|
|
public function setRequestNo($requestNo)
|
|
{
|
|
$this->requestNo = $requestNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets merchantNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getMerchantNo()
|
|
{
|
|
return $this->merchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets merchantNo
|
|
*
|
|
* @param string $merchantNo
|
|
* @return AgreementPaymentCancelWeb3V10Request
|
|
*/
|
|
public function setMerchantNo($merchantNo)
|
|
{
|
|
$this->merchantNo = $merchantNo;
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'agreement_payment_cancel_web3_v1_0';
|
|
}
|
|
|
|
|
|
}
|