using System.Collections.Generic;
public static void Main()
""type"": ""java.lang.String""
var example = JsonConvert.DeserializeObject<RootObject>(result);
var report_row = example.report_row;
foreach (var reportRow in report_row)
foreach (var row in reportRow)
Console.WriteLine(row.Key + ", " + row.Value);
public string name { get; set; }
public string type { get; set; }
public List<Dictionary<string, string>> report_row { get; set; }
public List<string> message { get; set; }
public int status { get; set; }