@@ -6,40 +6,43 @@ namespace Nest
66 [ JsonObject ]
77 public class IndexingStats
88 {
9- [ JsonProperty ( PropertyName = "delete_current" ) ]
9+ [ JsonProperty ( "delete_current" ) ]
1010 public long DeleteCurrent { get ; set ; }
1111
12- [ JsonProperty ( PropertyName = "delete_time" ) ]
12+ [ JsonProperty ( "delete_time" ) ]
1313 public string DeleteTime { get ; set ; }
14- [ JsonProperty ( PropertyName = "delete_time_in_millis" ) ]
14+
15+ [ JsonProperty ( "delete_time_in_millis" ) ]
1516 public long DeleteTimeInMilliseconds { get ; set ; }
16-
17- [ JsonProperty ( PropertyName = "delete_total" ) ]
17+
18+ [ JsonProperty ( "delete_total" ) ]
1819 public long DeleteTotal { get ; set ; }
1920
20- [ JsonProperty ( PropertyName = "index_current" ) ]
21+ [ JsonProperty ( "index_current" ) ]
2122 public long Current { get ; set ; }
22-
23- [ JsonProperty ( PropertyName = "index_time" ) ]
23+
24+ [ JsonProperty ( "index_time" ) ]
2425 public string Time { get ; set ; }
25- [ JsonProperty ( PropertyName = "index_time_in_millis" ) ]
26+
27+ [ JsonProperty ( "index_time_in_millis" ) ]
2628 public long TimeInMilliseconds { get ; set ; }
2729
28- [ JsonProperty ( PropertyName = "index_total" ) ]
30+ [ JsonProperty ( "index_total" ) ]
2931 public long Total { get ; set ; }
3032
31- [ JsonProperty ( PropertyName = "is_throttled" ) ]
33+ [ JsonProperty ( "is_throttled" ) ]
3234 public bool IsThrottled { get ; set ; }
3335
34- [ JsonProperty ( PropertyName = "noop_update_total" ) ]
36+ [ JsonProperty ( "noop_update_total" ) ]
3537 public long NoopUpdateTotal { get ; set ; }
36-
37- [ JsonProperty ( PropertyName = "throttle_time" ) ]
38+
39+ [ JsonProperty ( "throttle_time" ) ]
3840 public string ThrottleTime { get ; set ; }
39- [ JsonProperty ( PropertyName = "throttle_time_in_millis" ) ]
41+
42+ [ JsonProperty ( "throttle_time_in_millis" ) ]
4043 public long ThrottleTimeInMilliseconds { get ; set ; }
41-
42- [ JsonProperty ( PropertyName = "types" ) ]
44+
45+ [ JsonProperty ( "types" ) ]
4346 [ JsonConverter ( typeof ( VerbatimDictionaryKeysJsonConverter ) ) ]
4447 public Dictionary < string , IndexingStats > Types { get ; set ; }
4548 }
0 commit comments