Hi,
I’m still beginner in json deserialization.
I have this JSON I get.
{
"1": {
"id": 1,
"user_id": "xx",
"booth_type": "EXPERT",
"category": "Digital",
"virtual_location": "G-01-201",
"template": "B0167-3",
"payment_status": "PAID",
"status": null,
"date_registered": "30/10/2020",
"panels": {
"1": {
"id": 1,
"type": "youtubeVideo",
"mime_type": "youtubeVideo",
"url": xx"
},
"2": {
"id": 3,
"type": "banner",
"mime_type": "image/jpeg",
"url": "xx"
},
"3": {
"id": 4,
"type": "logo",
"mime_type": "image/png",
"url": "xx"
},
"4": {
"id": 5,
"type": "brochure",
"mime_type": "application/pdf",
"url": "xx"
}
}
},
"2": {
"id": 2,
"user_id": "yy",
"booth_type": "STANDARD",
"category": "DIGITAL",
"virtual_location": "G-01-202",
"template": "B0167-2",
"payment_status": "PENDING",
"status": null,
"date_registered": "30/10/2020",
"panels": {
"1": {
"id": 6,
"type": "poster",
"mime_type": "application/pdf",
"url": "yy"
},
"2": {
"id": 7,
"type": "logo",
"mime_type": "image/png",
"url": "yy"
},
"3": {
"id": 8,
"type": "photo",
"mime_type": "image/png",
"url": "yy"
}
}
}
}
How do I deserialize this json to object? is it possible with JSON.Utility?