disk = $disk; } /** * @return string */ public function getDisk() { return $this->disk; } /** * @param string */ public function setPath($path) { $this->path = $path; } /** * @return string */ public function getPath() { return $this->path; } /** * @param bool */ public function setReadOnly($readOnly) { $this->readOnly = $readOnly; } /** * @return bool */ public function getReadOnly() { return $this->readOnly; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Mount::class, 'Google_Service_Genomics_Mount');