createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * Output only. A human readable reason why the Study is inactive. This should * be empty if a study is ACTIVE or COMPLETED. * * @param string $inactiveReason */ public function setInactiveReason($inactiveReason) { $this->inactiveReason = $inactiveReason; } /** * @return string */ public function getInactiveReason() { return $this->inactiveReason; } /** * Output only. The name of a study. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Output only. The detailed state of a study. * * Accepted values: STATE_UNSPECIFIED, ACTIVE, INACTIVE, COMPLETED * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } /** * Required. Configuration of the study. * * @param GoogleCloudMlV1StudyConfig $studyConfig */ public function setStudyConfig(GoogleCloudMlV1StudyConfig $studyConfig) { $this->studyConfig = $studyConfig; } /** * @return GoogleCloudMlV1StudyConfig */ public function getStudyConfig() { return $this->studyConfig; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudMlV1Study::class, 'Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Study');