bizKey = $bizKey; $this->apiParas["biz_key"] = $bizKey; } public function getBizKey() { return $this->bizKey; } public function setIsPushRecord($isPushRecord) { $this->isPushRecord = $isPushRecord; $this->apiParas["is_push_record"] = $isPushRecord; } public function getIsPushRecord() { return $this->isPushRecord; } public function setPreferenceRegion($preferenceRegion) { $this->preferenceRegion = $preferenceRegion; $this->apiParas["preference_region"] = $preferenceRegion; } public function getPreferenceRegion() { return $this->preferenceRegion; } public function setRoomValidTime($roomValidTime) { $this->roomValidTime = $roomValidTime; $this->apiParas["room_valid_time"] = $roomValidTime; } public function getRoomValidTime() { return $this->roomValidTime; } public function setTitle($title) { $this->title = $title; $this->apiParas["title"] = $title; } public function getTitle() { return $this->title; } public function getApiMethodName() { return "dingtalk.oapi.mcs.conference.create"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->bizKey,"bizKey"); RequestCheckUtil::checkNotNull($this->roomValidTime,"roomValidTime"); RequestCheckUtil::checkNotNull($this->title,"title"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }