We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c373c0e commit 4e01e46Copy full SHA for 4e01e46
valo_api/responses/match_history.py
@@ -196,9 +196,6 @@ class MatchRoundAssistantV3(DictStruct):
196
class MatchRoundKillEventV3(DictStruct):
197
kill_time_in_round: int
198
kill_time_in_match: int
199
- killer_puuid: str
200
- killer_display_name: str
201
- killer_team: str
202
victim_puuid: str
203
victim_display_name: str
204
victim_team: str
@@ -208,6 +205,9 @@ class MatchRoundKillEventV3(DictStruct):
208
205
secondary_fire_mode: bool
209
206
player_locations_on_kill: List[MatchRoundPlayerLocationV3]
210
207
assistants: List[MatchRoundAssistantV3]
+ killer_puuid: Optional[str] = None
+ killer_display_name: Optional[str] = None
+ killer_team: Optional[str] = None
211
damage_weapon_name: Optional[str] = None
212
213
0 commit comments