REAPI/extend/sdk/taobao/top/request/TradeConfirmfeeGetRequest.php

49 lines
740 B
PHP
Raw Normal View History

2024-09-29 15:43:18 +08:00
<?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;
}
}