So, i have a List of my custom Object and I need a JSON like this:
{
"surveys": [{
"survey": {
"code": "05052017153632",
"date": "05/05/2017 15:36:32",
"device_id": 1,
"questions_attributes": [{
"kind": "string",
"label": "Você encontrou tudo o que procurava?",
"value": "Infelizmente, n?o"
}, {
"kind": "string",
"label": "Em qual departamento você n?o encontrou o produto?",
"value": "FERRAMENTAS, TAPETES"
}, {
"kind": "string",
"label": "Deseja que a Havan entre em contato com você?",
"value": "N?o informado"
}, {
"kind": "string",
"label": "Nome",
"value": "N?o informado"
}, {
"kind": "string",
"label": "E-mail",
"value": "N?o informado"
}, {
"kind": "string",
"label": "Telefone",
"value": "N?o informado"
}]
}
}]}
But I dont have any ideia how to do it using Gson.
I'm Using Retrofit 2 and need to pass this JSON into a body request.
Any ideias?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…