Skip to content

Instantly share code, notes, and snippets.

@Pavneet-Sing
Created May 6, 2020 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pavneet-Sing/fca879119d518e00397262e8a8172440 to your computer and use it in GitHub Desktop.
Save Pavneet-Sing/fca879119d518e00397262e8a8172440 to your computer and use it in GitHub Desktop.
//JsonProperty to allow Jackson to use setters and getters
data class Person(
@JsonProperty("name") val name: String,
@JsonProperty("occupation") val occupation: String
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment