增加聚合支付托管下单
This commit is contained in:
117
lib/Service/Frontcashier/Model/BindcardConfirmV2Request.php
Normal file
117
lib/Service/Frontcashier/Model/BindcardConfirmV2Request.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Frontcashier\Model;
|
||||
|
||||
|
||||
class BindcardConfirmV2Request extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $parentMerchantNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $merchantNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $merchantFlowId;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $smsCode;
|
||||
|
||||
/**
|
||||
* Gets parentMerchantNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getParentMerchantNo()
|
||||
{
|
||||
return $this->parentMerchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets parentMerchantNo
|
||||
*
|
||||
* @param string $parentMerchantNo
|
||||
* @return BindcardConfirmV2Request
|
||||
*/
|
||||
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 BindcardConfirmV2Request
|
||||
*/
|
||||
public function setMerchantNo($merchantNo)
|
||||
{
|
||||
$this->merchantNo = $merchantNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets merchantFlowId
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMerchantFlowId()
|
||||
{
|
||||
return $this->merchantFlowId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets merchantFlowId
|
||||
*
|
||||
* @param string $merchantFlowId
|
||||
* @return BindcardConfirmV2Request
|
||||
*/
|
||||
public function setMerchantFlowId($merchantFlowId)
|
||||
{
|
||||
$this->merchantFlowId = $merchantFlowId;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets smsCode
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getSmsCode()
|
||||
{
|
||||
return $this->smsCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets smsCode
|
||||
*
|
||||
* @param string $smsCode
|
||||
* @return BindcardConfirmV2Request
|
||||
*/
|
||||
public function setSmsCode($smsCode)
|
||||
{
|
||||
$this->smsCode = $smsCode;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'bindcardConfirmV2';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user