pushka icon indicating copy to clipboard operation
pushka copied to clipboard

Add a way to define a naming scheme

Open schmitch opened this issue 9 years ago • 0 comments

Currently most scala code follows the following naming scheme:

case class User(firstName: String, lastName: String)

While in Json the object would be written has:

var user = {"first_name": "", "last_name": ""}

so it would be great if there would be a way to define a global naming scheme which automatically would assign a json object of {"first_name": "", "last_name": ""} to a scala object with firstName and lastName and vice versa.

schmitch avatar Jan 11 '16 19:01 schmitch