@@ -8,49 +8,46 @@ namespace ZendeskApi_v2.Models.Shared
88 public class Data
99 {
1010 [ JsonProperty ( "from" ) ]
11- public string from { get ; set ; }
11+ public string From { get ; set ; }
1212
1313 [ JsonProperty ( "to" ) ]
14- public string to { get ; set ; }
14+ public string To { get ; set ; }
1515
1616 [ JsonProperty ( "recording_url" ) ]
17- public string recording_url { get ; set ; }
17+ public string RecordingUrl { get ; set ; }
1818
1919 [ JsonProperty ( "call_id" ) ]
20- public long call_id { get ; set ; }
20+ public long CallId { get ; set ; }
2121
2222 [ JsonProperty ( "call_duration" ) ]
23- public long call_duration { get ; set ; }
23+ public long CallDuration { get ; set ; }
2424
2525 [ JsonProperty ( "answered_by_id" ) ]
26- public long ? answered_by_id { get ; set ; }
26+ public long ? AnsweredById { get ; set ; }
2727
2828 [ JsonProperty ( "started_at" ) ]
2929 [ JsonConverter ( typeof ( IsoDateTimeConverter ) ) ]
30- public DateTimeOffset ? started_at { get ; set ; }
31-
32- [ JsonProperty ( "" ) ]
33- public string MyProperty { get ; set ; }
30+ public DateTimeOffset ? StartedAt { get ; set ; }
3431
3532 [ JsonProperty ( "location" ) ]
36- public string location { get ; set ; }
33+ public string Location { get ; set ; }
3734
3835 [ JsonProperty ( "author_id" ) ]
39- public long ? author_id { get ; set ; }
36+ public long ? AuthorId { get ; set ; }
4037
4138 [ JsonProperty ( "public" ) ]
4239 public bool ? Public { get ; set ; }
4340
4441 [ JsonProperty ( "brand_id" ) ]
45- public long brand_id { get ; set ; }
42+ public long BrandId { get ; set ; }
4643
4744 [ JsonProperty ( "via_id" ) ]
48- public long via_id { get ; set ; }
45+ public long ViaId { get ; set ; }
4946
5047 [ JsonProperty ( "answered_by_name" ) ]
51- public string answered_by_name { get ; set ; }
48+ public string AnsweredByName { get ; set ; }
5249
5350 [ JsonProperty ( "transcription_status" ) ]
54- public string transcription_status { get ; set ; }
51+ public string TranscriptionStatus { get ; set ; }
5552 }
5653}
0 commit comments