atUserIds = $atUserIds; $this->apiParas["at_user_ids"] = $atUserIds; } public function getAtUserIds() { return $this->atUserIds; } 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 setReceiverUserIds($receiverUserIds) { $this->receiverUserIds = $receiverUserIds; $this->apiParas["receiver_user_ids"] = $receiverUserIds; } public function getReceiverUserIds() { return $this->receiverUserIds; } public function getApiMethodName() { return "dingtalk.oapi.robot.org.intelligent.message.send"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkMaxListSize($this->atUserIds,999,"atUserIds"); RequestCheckUtil::checkNotNull($this->msgKey,"msgKey"); RequestCheckUtil::checkNotNull($this->msgParam,"msgParam"); RequestCheckUtil::checkNotNull($this->openConversationId,"openConversationId"); RequestCheckUtil::checkMaxListSize($this->receiverUserIds,999,"receiverUserIds"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }