Change class fields from snake case to camel case
Change the class fields in this Scala class from snake case to camel case
case class User( id: Long, username: String, email: String, first_name: String, last_name: String, age: Int, gender: String, phone_number: String, address: String, city: String, country: String, postal_code: String, occupation: String, company: String, salary: Double, is_active: Boolean, registration_date: java.time.LocalDate, last_login_date: java.time.LocalDateTime, preferences: Map[String, String], roles: List[String] )
case class User( id: Long, username: String, email: String, firstName: String, lastName: String, age: Int, gender: String, phoneNumber: String, address: String, city: String, country: String, postalCode: String, occupation: String, company: String, salary: Double, isActive: Boolean, registrationDate: java.time.LocalDate, lastLoginDate: java.time.LocalDateTime, preferences: Map[String, String], roles: List[String] )