displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param DbServerProperties */ public function setProperties(DbServerProperties $properties) { $this->properties = $properties; } /** * @return DbServerProperties */ public function getProperties() { return $this->properties; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DbServer::class, 'Google_Service_OracleDatabase_DbServer');