I have a string array of the form
"education_history":
[{"name":"xxxxxx",
"concentrations":[],
"school_type":"College"},
{"name":"xxxxxxx",
"concentrations":[],
"school_type":"College"}]
I want to deserialize the values name and school_type. I have already deserialized the values of single value types but I am facing problems with string arrays.One more problem is that in my request I have multiple arrays which I want to deserealize.
Thanks for the help