I have a Java POJO class
eg:
public class Student {
String name;
String rollNo;
}
I have rest API's that return the above bean class. Some are returning this in the snake case for example roll_no. How can I make the model mapper configured to accept both snake case and camel case serialisation.