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

48 lines
707 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* TOP API: taobao.subusers.info.query request
*
* @author auto create
* @since 1.0, 2022.02.18
*/
class SubusersInfoQueryRequest
{
/**
* 站点信息淘宝天猫传01688传3
**/
private $site;
private $apiParas = array();
public function setSite($site)
{
$this->site = $site;
$this->apiParas["site"] = $site;
}
public function getSite()
{
return $this->site;
}
public function getApiMethodName()
{
return "taobao.subusers.info.query";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}