shop-php/extend/taobao/request/TopIpoutGetRequest.php
2024-01-26 09:39:36 +08:00

33 lines
461 B
PHP
Executable File

<?php
/**
* TOP API: taobao.top.ipout.get request
*
* @author auto create
* @since 1.0, 2023.07.25
*/
class TopIpoutGetRequest
{
private $apiParas = array();
public function getApiMethodName()
{
return "taobao.top.ipout.get";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}