please help me to create the body request from the following output:
{
"categoryIds": [
[
"4654-456465-4564",
"4654-456465-9512"
]
],
"lastUpdate": "1231",
"controlStructureId": "4654-456465-4564",
"controntrolId": "4654-456465-4564",
"vehicleId": "4654-456465-4564"
}
My code:
Map<String,Object> jsonBodyUsingMap = new HashMap<String,Object>();
jsonBodyUsingMap.put("lastUpdate", "1231");
jsonBodyUsingMap.put("controlStructureId", "4654-456465-4564");
jsonBodyUsingMap.put("controntrolId", "4654-456465-4564");
jsonBodyUsingMap.put("vehicleId", "4654-456465-4564");
But I have no idea with categoryIds, please help