displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * The unique ID for a classification. Must be specified for case creation. To * retrieve valid classification IDs for case creation, use * `caseClassifications.search`. Classification IDs returned by * `caseClassifications.search` are guaranteed to be valid for at least 6 * months. If a given classification is deactiveated, it will immediately stop * being returned. After 6 months, `case.create` requests using the * classification ID will fail. * * @param string $id */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CaseClassification::class, 'Google_Service_CloudSupport_CaseClassification');