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

49 lines
755 B
PHP

<?php
/**
* TOP API: taobao.sellercenter.subusers.get request
*
* @author auto create
* @since 1.0, 2022.05.25
*/
class SellercenterSubusersGetRequest
{
/**
* 表示卖家昵称
**/
private $nick;
private $apiParas = array();
public function setNick($nick)
{
$this->nick = $nick;
$this->apiParas["nick"] = $nick;
}
public function getNick()
{
return $this->nick;
}
public function getApiMethodName()
{
return "taobao.sellercenter.subusers.get";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->nick,"nick");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}