agentId = $agentId; $this->apiParas["agent_id"] = $agentId; } public function getAgentId() { return $this->agentId; } public function setDeptIdList($deptIdList) { $this->deptIdList = $deptIdList; $this->apiParas["dept_id_list"] = $deptIdList; } public function getDeptIdList() { return $this->deptIdList; } public function setMsgcontent($msgcontent) { $this->msgcontent = $msgcontent; $this->apiParas["msgcontent"] = $msgcontent; } public function getMsgcontent() { return $this->msgcontent; } public function setMsgtype($msgtype) { $this->msgtype = $msgtype; $this->apiParas["msgtype"] = $msgtype; } public function getMsgtype() { return $this->msgtype; } public function setToAllUser($toAllUser) { $this->toAllUser = $toAllUser; $this->apiParas["to_all_user"] = $toAllUser; } public function getToAllUser() { return $this->toAllUser; } public function setUseridList($useridList) { $this->useridList = $useridList; $this->apiParas["userid_list"] = $useridList; } public function getUseridList() { return $this->useridList; } public function getApiMethodName() { return "dingtalk.oapi.message.corpconversation.asyncsend"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->agentId,"agentId"); RequestCheckUtil::checkMaxListSize($this->deptIdList,20,"deptIdList"); RequestCheckUtil::checkNotNull($this->msgcontent,"msgcontent"); RequestCheckUtil::checkNotNull($this->msgtype,"msgtype"); RequestCheckUtil::checkMaxListSize($this->useridList,100,"useridList"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }