cohort = $cohort; } /** * @return string */ public function getCohort() { return $this->cohort; } /** * Output only. Source of the cohort. * * Accepted values: COHORT_SOURCE_UNSPECIFIED, USER_PROVIDED, AIRFLOW * * @param self::COHORT_SOURCE_* $cohortSource */ public function setCohortSource($cohortSource) { $this->cohortSource = $cohortSource; } /** * @return self::COHORT_SOURCE_* */ public function getCohortSource() { return $this->cohortSource; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CohortInfo::class, 'Google_Service_Dataproc_CohortInfo');