agentId = $agentId; $this->apiParas["agentId"] = $agentId; } public function getAgentId() { return $this->agentId; } public function setUserids($userids) { $this->userids = $userids; $this->apiParas["userids"] = $userids; } public function getUserids() { return $this->userids; } public function getApiMethodName() { return "dingtalk.oapi.microapp.delwithuserid"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->agentId,"agentId"); RequestCheckUtil::checkNotNull($this->userids,"userids"); RequestCheckUtil::checkMaxListSize($this->userids,20,"userids"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }