68 lines
1.2 KiB
PHP
68 lines
1.2 KiB
PHP
<?php
|
|
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Account\Model;
|
|
|
|
|
|
class SetWithdrawRuleRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $fromMerchantNo;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $tomerchantNo;
|
|
|
|
/**
|
|
* Gets fromMerchantNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getFromMerchantNo()
|
|
{
|
|
return $this->fromMerchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets fromMerchantNo
|
|
*
|
|
* @param string $fromMerchantNo
|
|
* @return SetWithdrawRuleRequest
|
|
*/
|
|
public function setFromMerchantNo($fromMerchantNo)
|
|
{
|
|
$this->fromMerchantNo = $fromMerchantNo;
|
|
return $this;
|
|
}
|
|
/**
|
|
* Gets tomerchantNo
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getTomerchantNo()
|
|
{
|
|
return $this->tomerchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets tomerchantNo
|
|
*
|
|
* @param string $tomerchantNo
|
|
* @return SetWithdrawRuleRequest
|
|
*/
|
|
public function setTomerchantNo($tomerchantNo)
|
|
{
|
|
$this->tomerchantNo = $tomerchantNo;
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'setWithdrawRule';
|
|
}
|
|
|
|
|
|
}
|