chatbotUserId = $chatbotUserId; $this->apiParas["chatbot_user_id"] = $chatbotUserId; } public function getChatbotUserId() { return $this->chatbotUserId; } public function setOpenConversationId($openConversationId) { $this->openConversationId = $openConversationId; $this->apiParas["open_conversation_id"] = $openConversationId; } public function getOpenConversationId() { return $this->openConversationId; } public function getApiMethodName() { return "dingtalk.oapi.im.chatbot.delete"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->chatbotUserId,"chatbotUserId"); RequestCheckUtil::checkMaxLength($this->chatbotUserId,128,"chatbotUserId"); RequestCheckUtil::checkNotNull($this->openConversationId,"openConversationId"); RequestCheckUtil::checkMaxLength($this->openConversationId,128,"openConversationId"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }