My response is like below
"data":[
{
"title": "hbdv",
"description" : [
"a", "b", "c"
]
},
{
"title": "bdvv",
"description": [
"d", "f"
]
}
]
I created a custom model say X
then
@SerializedName("title") String a;
@SerializedName("description") ???
How to create model that implement parcelable
.