I have the following json:
{
"razao_social":"INTELIDER",
"nome_fantasia":"INTELIDER LTDA",
"rg_insc_estadual":"123456"
}
And another json:
{
"usuario":{
"login":"gleyson",
"senha":"987654"
}
}
I need it to look this way:
{
"usuario":{
"login":"gleyson",
"senha":"987654"
},
"razao_social":"INTELIDER",
"nome_fantasia":"INTELIDER LTDA",
"rg_insc_estadual":"123456"
}
I tried to use parse but I did not succeed.