94 lines
1.6 KiB
PHP
94 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Frontcashier\Model;
|
|
|
|
use Yeepay\Yop\Sdk\Model\BaseRequest;
|
|
|
|
class BindcardConfirm0Request extends BaseRequest
|
|
{
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $parentMerchantNo;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantFlowId;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $smsCode;
|
|
|
|
/**
|
|
* Gets parentMerchantNo
|
|
* @return string
|
|
*/
|
|
public function getParentMerchantNo()
|
|
{
|
|
return $this->parentMerchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets parentMerchantNo
|
|
* @param string $parentMerchantNo
|
|
* @return BindcardConfirm0Request
|
|
*/
|
|
public function setParentMerchantNo($parentMerchantNo)
|
|
{
|
|
$this->parentMerchantNo = $parentMerchantNo;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets merchantFlowId
|
|
* @return string
|
|
*/
|
|
public function getMerchantFlowId()
|
|
{
|
|
return $this->merchantFlowId;
|
|
}
|
|
|
|
/**
|
|
* Sets merchantFlowId
|
|
* @param string $merchantFlowId
|
|
* @return BindcardConfirm0Request
|
|
*/
|
|
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 BindcardConfirm0Request
|
|
*/
|
|
public function setSmsCode($smsCode)
|
|
{
|
|
$this->smsCode = $smsCode;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'bindcardConfirm_0';
|
|
}
|
|
|
|
}
|