We need something similar to GSON's `SerializedName` annotation which can map a different name field from JSON string to RealmObject's property. eg: ``` { "dog_name": "abc"} ``` ``` class Dog { @SerializedName("dog_name") private String name; } ```
We need something similar to GSON's
SerializedNameannotation which can map a different name field from JSON string to RealmObject's property.eg: