Привет. Подскажите как разобрать JSON?
Составил объектную модель
https://puu.sh/ARetB/df9ba6c614.png
Теперь мне нужен параметр Sm.text, как его получить?
Делаю так:
RootObject Res = new RootObject();
Res = JsonConvert.DeserializeObject(Response);
Res.sms = new Sm();
string strTextSMS = Res.sms.text;
Не получается. Ошибка. Что я упускаю?
public class Sm
{
public int id { get; set; }
public DateTime created_at { get; set; }
public DateTime date { get; set; }
public string sender { get; set; }
public string text { get; set; }
public string code { get; set; }
}
public class RootObject
{
public int id { get; set; }
public DateTime created_at { get; set; }
public string phone { get; set; }
public string product { get; set; }
public int price { get; set; }
public string status { get; set; }
public DateTime expires { get; set; }
public List sms { get; set; }
public bool forwarding { get; set; }
public string forwarding_number { get; set; }
}
Спасибо.
С Уважением.