databaseRoles = $databaseRoles; } /** * @return string[] */ public function getDatabaseRoles() { return $this->databaseRoles; } /** * @param bool */ public function setKeepExtraRoles($keepExtraRoles) { $this->keepExtraRoles = $keepExtraRoles; } /** * @return bool */ public function getKeepExtraRoles() { return $this->keepExtraRoles; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setPassword($password) { $this->password = $password; } /** * @return string */ public function getPassword() { return $this->password; } /** * @param string */ public function setUserType($userType) { $this->userType = $userType; } /** * @return string */ public function getUserType() { return $this->userType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(User::class, 'Google_Service_CloudAlloyDBAdmin_User');