增加聚合支付托管下单

This commit is contained in:
2024-04-01 17:07:53 +08:00
parent 899d816bc3
commit f8299b36aa
1291 changed files with 220566 additions and 169 deletions

View File

@@ -0,0 +1,67 @@
<?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';
}
}