I have the following json string
[
{
"data": {
"vehicle_number": "HR38Y1539",
"device_id": "0358735074626234",
"type": "we_track",
"cordinate": [
"28.427771",
"77.018409"
],
"address": "Haryana",
"city": "",
"state": "",
"motion_status": "halt",
"motion_state": "stopped",
"speed": 0,
"orientation": "306",
"last_received_at": 1555407765,
"share_link": "https://loconav.com/track-a-day/541387a344",
"custom_data": {}
}
},
{
"data": {
"vehicle_number": "UP63AE7715",
"device_id": "0866551031969632",
"type": "gt06mini",
"cordinate": [
"28.757673",
"77.160532"
],
"address": "Ganpati Sachidanand Datta Marg,Swaroop Nagar,Bhalswa,Delhi,North West Delhi",
"city": "",
"state": "",
"motion_status": "halt",
"motion_state": "moving",
"speed": 0,
"orientation": "243",
"last_received_at": 1555407768,
"share_link": "https://loconav.com/track-a-day/54961f9617",
"custom_data": {}
}
}]
I want to deserialize it to either into a customized c# object or datatable. I tried making various class definitions but none of them succeeded. Any help on this would be greatly appreciated.
EDIT:
I made the following class for this json:
public class CustomData
{
}
public class VehicleData
{
public string vehicle_number { get; set; }
public string device_id { get; set; }
public string type { get; set; }
public List<string> cordinate { get; set; }
public string address { get; set; }
public string city { get; set; }
public string state { get; set; }
public string motion_status { get; set; }
public string motion_state { get; set; }
public int speed { get; set; }
public string orientation { get; set; }
public int last_received_at { get; set; }
public string share_link { get; set; }
public CustomData custom_data { get; set; }
}
public class AUL_Json_Data
{
public VehicleData data { get; set; }
}
and I am using the following code to deserialize:
AUL_Json_Data truckData = new System.Web.Script.Serialization.JavaScriptSerializer().Deserialize<AUL_Json_Data>(json);
But it is giving an exception that says : Type 'AUL_Json_Data' is not supported for deserialization of an array.