first commit
This commit is contained in:
145
lib/Service/Account/Model/WithdrawCardBindRequest.php
Normal file
145
lib/Service/Account/Model/WithdrawCardBindRequest.php
Normal file
@@ -0,0 +1,145 @@
|
||||
<?php
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Account\Model;
|
||||
|
||||
use Yeepay\Yop\Sdk\Model\BaseRequest;
|
||||
|
||||
class WithdrawCardBindRequest extends BaseRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $merchantNo;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $bankCardType;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $accountNo;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $bankCode;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $branchCode;
|
||||
|
||||
/**
|
||||
* Gets merchantNo
|
||||
* @return string
|
||||
*/
|
||||
public function getMerchantNo()
|
||||
{
|
||||
return $this->merchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets merchantNo
|
||||
* @param string $merchantNo
|
||||
* @return WithdrawCardBindRequest
|
||||
*/
|
||||
public function setMerchantNo($merchantNo)
|
||||
{
|
||||
$this->merchantNo = $merchantNo;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets bankCardType
|
||||
* @return string
|
||||
*/
|
||||
public function getBankCardType()
|
||||
{
|
||||
return $this->bankCardType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets bankCardType
|
||||
* @param string $bankCardType
|
||||
* @return WithdrawCardBindRequest
|
||||
*/
|
||||
public function setBankCardType($bankCardType)
|
||||
{
|
||||
$this->bankCardType = $bankCardType;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets accountNo
|
||||
* @return string
|
||||
*/
|
||||
public function getAccountNo()
|
||||
{
|
||||
return $this->accountNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets accountNo
|
||||
* @param string $accountNo
|
||||
* @return WithdrawCardBindRequest
|
||||
*/
|
||||
public function setAccountNo($accountNo)
|
||||
{
|
||||
$this->accountNo = $accountNo;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets bankCode
|
||||
* @return string
|
||||
*/
|
||||
public function getBankCode()
|
||||
{
|
||||
return $this->bankCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets bankCode
|
||||
* @param string $bankCode
|
||||
* @return WithdrawCardBindRequest
|
||||
*/
|
||||
public function setBankCode($bankCode)
|
||||
{
|
||||
$this->bankCode = $bankCode;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets branchCode
|
||||
* @return string
|
||||
*/
|
||||
public function getBranchCode()
|
||||
{
|
||||
return $this->branchCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets branchCode
|
||||
* @param string $branchCode
|
||||
* @return WithdrawCardBindRequest
|
||||
*/
|
||||
public function setBranchCode($branchCode)
|
||||
{
|
||||
$this->branchCode = $branchCode;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'withdrawCardBind';
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user