When I convert a JSON response to a C# object, such as var routine = json.ToResult<List<Routine>>(); I noticed the start_date, end_date, and parameters values from the summary are null. Others like limit, message, status seem to be set correctly.
I changed the DataMember attributes to JsonProperty on the Summary class and all JSON properties were mapped correctly.
When I convert a JSON response to a C# object, such as
var routine = json.ToResult<List<Routine>>();I noticed thestart_date,end_date, andparametersvalues from the summary are null. Others likelimit,message,statusseem to be set correctly.I changed the DataMember attributes to JsonProperty on the Summary class and all JSON properties were mapped correctly.