description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param string */ public function setMountPath($mountPath) { $this->mountPath = $mountPath; } /** * @return string */ public function getMountPath() { return $this->mountPath; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param bool */ public function setOptional($optional) { $this->optional = $optional; } /** * @return bool */ public function getOptional() { return $this->optional; } /** * @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(WorkspaceDeclaration::class, 'Google_Service_CloudBuild_WorkspaceDeclaration');