agentId = $agentId; $this->apiParas["agent_id"] = $agentId; } public function getAgentId() { return $this->agentId; } public function setCode($code) { $this->code = $code; $this->apiParas["code"] = $code; } public function getCode() { return $this->code; } 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["user_id_list"] = $userIdList; } public function getUserIdList() { return $this->userIdList; } public function getApiMethodName() { return "dingtalk.corp.message.corpconversation.asyncsendbycode"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->agentId,"agentId"); RequestCheckUtil::checkNotNull($this->code,"code"); RequestCheckUtil::checkMaxListSize($this->deptIdList,20,"deptIdList"); RequestCheckUtil::checkNotNull($this->msgcontent,"msgcontent"); RequestCheckUtil::checkNotNull($this->msgtype,"msgtype"); RequestCheckUtil::checkMaxListSize($this->userIdList,20,"userIdList"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }