268 lines
4.5 KiB
PHP
268 lines
4.5 KiB
PHP
<?php
|
|
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Frontcashier\Model;
|
|
|
|
|
|
class AgreementNosmsbindRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantFlowId;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $userNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $bankCardNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $idCardNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $idCardType;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $userName;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $phone;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $cvv;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $valid;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $parentMerchantNo;
|
|
|
|
/**
|
|
* Gets merchantFlowId
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getMerchantFlowId()
|
|
{
|
|
return $this->merchantFlowId;
|
|
}
|
|
|
|
/**
|
|
* Sets merchantFlowId
|
|
*
|
|
* @param string $merchantFlowId
|
|
* @return AgreementNosmsbindRequest
|
|
*/
|
|
public function setMerchantFlowId($merchantFlowId)
|
|
{
|
|
$this->merchantFlowId = $merchantFlowId;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets userNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getUserNo()
|
|
{
|
|
return $this->userNo;
|
|
}
|
|
|
|
/**
|
|
* Sets userNo
|
|
*
|
|
* @param string $userNo
|
|
* @return AgreementNosmsbindRequest
|
|
*/
|
|
public function setUserNo($userNo)
|
|
{
|
|
$this->userNo = $userNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets bankCardNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getBankCardNo()
|
|
{
|
|
return $this->bankCardNo;
|
|
}
|
|
|
|
/**
|
|
* Sets bankCardNo
|
|
*
|
|
* @param string $bankCardNo
|
|
* @return AgreementNosmsbindRequest
|
|
*/
|
|
public function setBankCardNo($bankCardNo)
|
|
{
|
|
$this->bankCardNo = $bankCardNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets idCardNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getIdCardNo()
|
|
{
|
|
return $this->idCardNo;
|
|
}
|
|
|
|
/**
|
|
* Sets idCardNo
|
|
*
|
|
* @param string $idCardNo
|
|
* @return AgreementNosmsbindRequest
|
|
*/
|
|
public function setIdCardNo($idCardNo)
|
|
{
|
|
$this->idCardNo = $idCardNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets idCardType
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getIdCardType()
|
|
{
|
|
return $this->idCardType;
|
|
}
|
|
|
|
/**
|
|
* Sets idCardType
|
|
*
|
|
* @param string $idCardType
|
|
* @return AgreementNosmsbindRequest
|
|
*/
|
|
public function setIdCardType($idCardType)
|
|
{
|
|
$this->idCardType = $idCardType;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets userName
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getUserName()
|
|
{
|
|
return $this->userName;
|
|
}
|
|
|
|
/**
|
|
* Sets userName
|
|
*
|
|
* @param string $userName
|
|
* @return AgreementNosmsbindRequest
|
|
*/
|
|
public function setUserName($userName)
|
|
{
|
|
$this->userName = $userName;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets phone
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getPhone()
|
|
{
|
|
return $this->phone;
|
|
}
|
|
|
|
/**
|
|
* Sets phone
|
|
*
|
|
* @param string $phone
|
|
* @return AgreementNosmsbindRequest
|
|
*/
|
|
public function setPhone($phone)
|
|
{
|
|
$this->phone = $phone;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets cvv
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getCvv()
|
|
{
|
|
return $this->cvv;
|
|
}
|
|
|
|
/**
|
|
* Sets cvv
|
|
*
|
|
* @param string $cvv
|
|
* @return AgreementNosmsbindRequest
|
|
*/
|
|
public function setCvv($cvv)
|
|
{
|
|
$this->cvv = $cvv;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets valid
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getValid()
|
|
{
|
|
return $this->valid;
|
|
}
|
|
|
|
/**
|
|
* Sets valid
|
|
*
|
|
* @param string $valid
|
|
* @return AgreementNosmsbindRequest
|
|
*/
|
|
public function setValid($valid)
|
|
{
|
|
$this->valid = $valid;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets parentMerchantNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getParentMerchantNo()
|
|
{
|
|
return $this->parentMerchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets parentMerchantNo
|
|
*
|
|
* @param string $parentMerchantNo
|
|
* @return AgreementNosmsbindRequest
|
|
*/
|
|
public function setParentMerchantNo($parentMerchantNo)
|
|
{
|
|
$this->parentMerchantNo = $parentMerchantNo;
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'agreementNosmsbind';
|
|
}
|
|
|
|
|
|
}
|