i use RestSharp to access a Rest API. I like to get Data back as an POCO. My RestSharp Client looks like this:
var client = new RestClient(@"http:\\localhost:8080");
        var request = new RestRequest("todos/{id}", Method.GET);
        request.AddUrlSegment("id", "4");
        //request.OnBeforeDeserialization = resp => { resp.ContentType = "application/json"; };
        //With enabling the next line I get an new empty object of TODO
        //as Data
        //client.AddHandler("*", new JsonDeserializer());
        IRestResponse<ToDo> response2 = client.Execute<ToDo>(request);
        ToDo td=new JsonDeserializer().Deserialize<ToDo>(response2);
        var name = response2.Data.name;
my Class for the JsonObject looks like this:
public class ToDo
{
    public int id;
    public string created_at;
    public string updated_at;
    public string name;
}
and the Json Response:
{
    "id":4,
    "created_at":"2015-06-18 09:43:15",
    "updated_at":"2015-06-18 09:43:15",
    "name":"Another Random Test"
}
 
                        
Per the documentation, RestSharp only deserializes to properties and you're using fields.
You need to change your
ToDoclass to the following: