49 lines
740 B
PHP
49 lines
740 B
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* TOP API: taobao.trade.confirmfee.get request
|
||
|
*
|
||
|
* @author auto create
|
||
|
* @since 1.0, 2022.09.19
|
||
|
*/
|
||
|
class TradeConfirmfeeGetRequest
|
||
|
{
|
||
|
/**
|
||
|
* 交易主订单或子订单ID
|
||
|
**/
|
||
|
private $tid;
|
||
|
|
||
|
private $apiParas = array();
|
||
|
|
||
|
public function setTid($tid)
|
||
|
{
|
||
|
$this->tid = $tid;
|
||
|
$this->apiParas["tid"] = $tid;
|
||
|
}
|
||
|
|
||
|
public function getTid()
|
||
|
{
|
||
|
return $this->tid;
|
||
|
}
|
||
|
|
||
|
public function getApiMethodName()
|
||
|
{
|
||
|
return "taobao.trade.confirmfee.get";
|
||
|
}
|
||
|
|
||
|
public function getApiParas()
|
||
|
{
|
||
|
return $this->apiParas;
|
||
|
}
|
||
|
|
||
|
public function check()
|
||
|
{
|
||
|
|
||
|
RequestCheckUtil::checkNotNull($this->tid,"tid");
|
||
|
}
|
||
|
|
||
|
public function putOtherTextParam($key, $value) {
|
||
|
$this->apiParas[$key] = $value;
|
||
|
$this->$key = $value;
|
||
|
}
|
||
|
}
|