118 lines
1.9 KiB
PHP
118 lines
1.9 KiB
PHP
<?php
|
|
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Frontcashier\Model;
|
|
|
|
|
|
class BindcardUnbindcardRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $merchantNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $userNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $userType;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $bindId;
|
|
|
|
/**
|
|
* Gets merchantNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getMerchantNo()
|
|
{
|
|
return $this->merchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets merchantNo
|
|
*
|
|
* @param string $merchantNo
|
|
* @return BindcardUnbindcardRequest
|
|
*/
|
|
public function setMerchantNo($merchantNo)
|
|
{
|
|
$this->merchantNo = $merchantNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets userNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getUserNo()
|
|
{
|
|
return $this->userNo;
|
|
}
|
|
|
|
/**
|
|
* Sets userNo
|
|
*
|
|
* @param string $userNo
|
|
* @return BindcardUnbindcardRequest
|
|
*/
|
|
public function setUserNo($userNo)
|
|
{
|
|
$this->userNo = $userNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets userType
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getUserType()
|
|
{
|
|
return $this->userType;
|
|
}
|
|
|
|
/**
|
|
* Sets userType
|
|
*
|
|
* @param string $userType
|
|
* @return BindcardUnbindcardRequest
|
|
*/
|
|
public function setUserType($userType)
|
|
{
|
|
$this->userType = $userType;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets bindId
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getBindId()
|
|
{
|
|
return $this->bindId;
|
|
}
|
|
|
|
/**
|
|
* Sets bindId
|
|
*
|
|
* @param string $bindId
|
|
* @return BindcardUnbindcardRequest
|
|
*/
|
|
public function setBindId($bindId)
|
|
{
|
|
$this->bindId = $bindId;
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'bindcardUnbindcard';
|
|
}
|
|
|
|
|
|
}
|