1public class Customer {
2 @JsonProperty("customer_id")
3 private long customerId;
4 @JsonProperty("first_name")
5 private String firstName;
6 @JsonProperty("last_name")
7 private String lastName;
8 @JsonProperty("town")
9 private String town;
10}