chatbotId = $chatbotId; $this->apiParas["chatbot_id"] = $chatbotId; } public function getChatbotId() { return $this->chatbotId; } public function setMsgKey($msgKey) { $this->msgKey = $msgKey; $this->apiParas["msg_key"] = $msgKey; } public function getMsgKey() { return $this->msgKey; } public function setMsgParam($msgParam) { $this->msgParam = $msgParam; $this->apiParas["msg_param"] = $msgParam; } public function getMsgParam() { return $this->msgParam; } public function setOpenConversationId($openConversationId) { $this->openConversationId = $openConversationId; $this->apiParas["open_conversation_id"] = $openConversationId; } public function getOpenConversationId() { return $this->openConversationId; } public function setToken($token) { $this->token = $token; $this->apiParas["token"] = $token; } public function getToken() { return $this->token; } public function getApiMethodName() { return "dingtalk.oapi.robot.message.sendorggroup"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->msgKey,"msgKey"); RequestCheckUtil::checkNotNull($this->msgParam,"msgParam"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }