How to json accept single value as array?
This json throw exception:
{ "code": "1", "message": "OK", "response": { "partners": { "id": "33", "name": "", "clienttypeid": "29", "logo": "", "description": "", "website": "www.site.com" } } }
This json parsed correct:
{ "code": "1", "message": "OK", "response": { "partners": [ { "id": "33", "name": "", "clienttypeid": "29", "logo": "", "description": "", "website": "www.site.com" }, { "id": "34", "name": "", "clienttypeid": "29", "logo": "", "description": "", "website": "www.site.com" } ] } }
Model:
public class Partner
{
public string id { get; set; }
public string name { get; set; }
public string clienttypeid { get; set; }
public string logo { get; set; }
public string description { get; set; }
public string website { get; set; }
}
public class Response
{
public List<Partner> partners { get; set; }
}
public class RootObject
{
public string code { get; set; }
public string message { get; set; }
public Response response { get; set; }
}