REAPI/extend/sdk/taobao/top/request/TmallItemAddSimpleschemaGetRequest.php
2024-09-29 15:43:18 +08:00

33 lines
499 B
PHP

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