liveId = $liveId; $this->apiParas["live_id"] = $liveId; } public function getLiveId() { return $this->liveId; } public function setUserIds($userIds) { $this->userIds = $userIds; $this->apiParas["user_ids"] = $userIds; } public function getUserIds() { return $this->userIds; } public function getApiMethodName() { return "dingtalk.oapi.kac.openlive.white_users.batch_delete"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->liveId,"liveId"); RequestCheckUtil::checkNotNull($this->userIds,"userIds"); RequestCheckUtil::checkMaxListSize($this->userIds,999,"userIds"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }