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

50 lines
878 B
PHP
Raw Normal View History

2024-09-29 15:43:18 +08:00
<?php
/**
* TOP API: taobao.sellercenter.subuser.permissions.roles.get request
*
* @author auto create
* @since 1.0, 2022.09.20
*/
class SellercenterSubuserPermissionsRolesGetRequest
{
/**
* 子账号昵称(子账号标识)
**/
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.subuser.permissions.roles.get";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->nick,"nick");
RequestCheckUtil::checkMaxLength($this->nick,100,"nick");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}