@@ -39,6 +39,18 @@ internal class MatchPlayer
3939 [ JsonProperty ( PropertyName = "item_5" ) ]
4040 public uint Item5 { get ; set ; }
4141
42+ [ JsonProperty ( PropertyName = "backpack_0" ) ]
43+ public uint Backpack0 { get ; set ; }
44+
45+ [ JsonProperty ( PropertyName = "backpack_1" ) ]
46+ public uint Backpack1 { get ; set ; }
47+
48+ [ JsonProperty ( PropertyName = "backpack_2" ) ]
49+ public uint Backpack2 { get ; set ; }
50+
51+ [ JsonProperty ( PropertyName = "item_neutral" ) ]
52+ public uint ItemNeutral { get ; set ; }
53+
4254 public uint Kills { get ; set ; }
4355 public uint Deaths { get ; set ; }
4456 public uint Assists { get ; set ; }
@@ -71,6 +83,15 @@ internal class MatchPlayer
7183 [ JsonProperty ( PropertyName = "hero_healing" ) ]
7284 public uint HeroHealing { get ; set ; }
7385
86+ [ JsonProperty ( PropertyName = "scaled_hero_damage" ) ]
87+ public uint ScaledHeroDamage { get ; set ; }
88+
89+ [ JsonProperty ( PropertyName = "scaled_tower_damage" ) ]
90+ public uint ScaledTowerDamage { get ; set ; }
91+
92+ [ JsonProperty ( PropertyName = "scaled_hero_healing" ) ]
93+ public uint ScaledHeroHealing { get ; set ; }
94+
7495 public uint Level { get ; set ; }
7596
7697 [ JsonProperty ( PropertyName = "ability_upgrades" ) ]
@@ -96,6 +117,9 @@ internal class MatchDetailResult
96117 [ JsonProperty ( PropertyName = "radiant_win" ) ]
97118 public bool RadiantWin { get ; set ; }
98119
120+ [ JsonProperty ( PropertyName = "pre_game_duration" ) ]
121+ public uint PreGameDuration { get ; set ; }
122+
99123 public uint Duration { get ; set ; }
100124
101125 [ JsonProperty ( PropertyName = "start_time" ) ]
@@ -174,6 +198,12 @@ internal class MatchDetailResult
174198 [ JsonProperty ( PropertyName = "dire_captain" ) ]
175199 public uint DireCaptain { get ; set ; }
176200
201+ [ JsonProperty ( PropertyName = "radiant_score" ) ]
202+ public uint RadiantScore { get ; set ; }
203+
204+ [ JsonProperty ( PropertyName = "dire_score" ) ]
205+ public uint DireScore { get ; set ; }
206+
177207 [ JsonProperty ( PropertyName = "picks_bans" ) ]
178208 public IList < MatchPickBan > PicksAndBans { get ; set ; }
179209 }
0 commit comments