dicom = $dicom; } /** * @return DicomConfig */ public function getDicom() { return $this->dicom; } /** * @param FhirConfig */ public function setFhir(FhirConfig $fhir) { $this->fhir = $fhir; } /** * @return FhirConfig */ public function getFhir() { return $this->fhir; } /** * @param ImageConfig */ public function setImage(ImageConfig $image) { $this->image = $image; } /** * @return ImageConfig */ public function getImage() { return $this->image; } /** * @param TextConfig */ public function setText(TextConfig $text) { $this->text = $text; } /** * @return TextConfig */ public function getText() { return $this->text; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DeidentifyConfig::class, 'Google_Service_CloudHealthcare_DeidentifyConfig');