chatbotId = $chatbotId; $this->apiParas["chatbot_id"] = $chatbotId; } public function getChatbotId() { return $this->chatbotId; } public function setCursor($cursor) { $this->cursor = $cursor; $this->apiParas["cursor"] = $cursor; } public function getCursor() { return $this->cursor; } public function setOpenConversationId($openConversationId) { $this->openConversationId = $openConversationId; $this->apiParas["open_conversation_id"] = $openConversationId; } public function getOpenConversationId() { return $this->openConversationId; } public function setPageSize($pageSize) { $this->pageSize = $pageSize; $this->apiParas["page_size"] = $pageSize; } public function getPageSize() { return $this->pageSize; } public function setProcessQueryKey($processQueryKey) { $this->processQueryKey = $processQueryKey; $this->apiParas["process_query_key"] = $processQueryKey; } public function getProcessQueryKey() { return $this->processQueryKey; } 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.orggrouptask.query"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->processQueryKey,"processQueryKey"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }