118 lines
2.1 KiB
PHP
118 lines
2.1 KiB
PHP
<?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';
|
|
}
|
|
|
|
|
|
}
|