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

33 lines
485 B
PHP
Raw Permalink Normal View History

2024-09-29 15:43:18 +08:00
<?php
/**
* TOP API: taobao.trade.sellerflags.get request
*
* @author auto create
* @since 1.0, 2024.02.01
*/
class TradeSellerflagsGetRequest
{
private $apiParas = array();
public function getApiMethodName()
{
return "taobao.trade.sellerflags.get";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}