Skip to content

RiotAPISchema

from pulsefire.schemas import RiotAPISchema
Source code in pulsefire/schemas.py
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
class RiotAPISchema:

    # Account Types

    AccountV1Account = TypedDict("AccountV1Account", {
        "puuid": str,
        "gameName": str,
        "tagLine": str,
    })
    AccountV1ActiveShard = TypedDict("AccountV1ActiveShard", {
        "puuid": str,
        "game": str,
        "activeShard": str,
    })

    # League of Legends Types

    LolChampionV3Rotation = TypedDict("LolChampionV3Rotation", {
        "freeChampionIds": list[int],
        "freeChampionIdsForNewPlayers": list[int],
        "maxNewPlayerLevel": int
    })
    LolChampionV4MasteryMilestoneRewardConfig = TypedDict("LolChampionV4MasteryMilestoneRewardConfig", {
        "maximumReward": int,
        "rewardType": str,
        "rewardValue": str,
    })
    LolChampionV4MasteryMilestone = TypedDict("LolChampionV4MasteryMilestone", {
        "bonus": bool,
        "requireGradeCounts": dict[str, int],
        "rewardConfig": LolChampionV4MasteryMilestoneRewardConfig,
        "rewardMarks": int,
        "totalGamesRequires": int,
    })
    LolChampionV4Mastery = TypedDict("LolChampionV4Mastery", {
        "puuid": str,
        "championId": int,
        "championLevel": int,
        "championPoints": int,
        "lastPlayTime": int,
        "championPointsSinceLastLevel": int,
        "championPointsUntilNextLevel": int,
        "championSeasonMilestone": int,
        "markRequiredForNextLevel": int,
        "milestoneGrades": NotRequired[list[str]],
        "nextSeasonMilestone": NotRequired[LolChampionV4MasteryMilestone],
        "tokensEarned": int,
    })
    LolClashV1Player = TypedDict("LolClashV1Player", {
        "summonerId": str,
        "teamId": str,
        "position": str,
        "role": str,
    })
    LolClashV1Team = TypedDict("LolClashV1Team", {
        "id": str,
        "tournamentId": int,
        "name": str,
        "iconId": int,
        "tier": int,
        "captain": str,
        "abbreviation": str,
        "players": list[LolClashV1Player],
    })
    LolClashV1TournamentSchedule = TypedDict("LolClashV1TournamentSchedule", {
        "id": int,
        "registrationTime": int,
        "startTime": int,
        "cancelled": bool,
    })
    LolClashV1Tournament = TypedDict("LolClashV1Tournament", {
        "id": int,
        "themeId": int,
        "nameKey": str,
        "nameKeySecondary": str,
        "schedule": list[LolClashV1TournamentSchedule]
    })
    LolLeagueV4LeagueEntryMiniSeries = TypedDict("LolLeagueV4LeagueEntryMiniSeries", {
        "losses": int,
        "progress": str,
        "target": int,
        "wins": int,
    })
    LolLeagueV4LeagueEntry = TypedDict("LolLeagueV4LeagueEntry", {
        "summonerId": str,
        "summonerName": NotRequired[str],
        "rank": str,
        "leaguePoints": int,
        "wins": int,
        "losses": int,
        "hotStreak": bool,
        "veteran": bool,
        "freshBlood": bool,
        "inactive": bool,
    })
    LolLeagueV4LeagueFullEntry = TypedDict("LolLeagueV4LeagueFullEntry", {
        "leagueId": str,
        "summonerId": str,
        "summonerName": NotRequired[str],
        "queueType": str,
        "tier": str,
        "rank": str,
        "leaguePoints": int,
        "wins": int,
        "losses": int,
        "hotStreak": bool,
        "veteran": bool,
        "freshBlood": bool,
        "inactive": bool,
        "miniSeries": NotRequired[LolLeagueV4LeagueEntryMiniSeries],
    })
    LolLeagueV4League = TypedDict("LolLeagueV4League", {
        "tier": str,
        "leagueId": str,
        "queue": str,
        "name": str,
        "entries": list[LolLeagueV4LeagueEntry]
    })
    LolMatchV5MatchMetadata = TypedDict("LolMatchV5MatchMetadata", {
        "dataVersion": str,
        "matchId": str,
        "participants": list[str]
    })
    LolMatchV5MatchTeamObjective = TypedDict("LolMatchV5MatchTeamObjective", {
        "first": bool,
        "kills": int
    })
    LolMatchV5MatchInfoParticipantChallenges = TypedDict("LolMatchV5MatchInfoParticipantChallenges", {
        "12AssistStreakCount": int,
        "abilityUses": int,
        "acesBefore15Minutes": int,
        "alliedJungleMonsterKills": int,
        "baronTakedowns": int,
        "blastConeOppositeOpponentCount": int,
        "bountyGold": int,
        "buffsStolen": int,
        "completeSupportQuestInTime": int,
        "controlWardTimeCoverageInRiverOrEnemyHalf": float,
        "controlWardsPlaced": int,
        "damagePerMinute": float,
        "damageTakenOnTeamPercentage": float,
        "dancedWithRiftHerald": int,
        "deathsByEnemyChamps": int,
        "dodgeSkillShotsSmallWindow": int,
        "doubleAces": int,
        "dragonTakedowns": int,
        "earliestBaron": float,
        "earlyLaningPhaseGoldExpAdvantage": int,
        "effectiveHealAndShielding": float,
        "elderDragonKillsWithOpposingSoul": int,
        "elderDragonMultikills": int,
        "enemyChampionImmobilizations": int,
        "enemyJungleMonsterKills": int,
        "epicMonsterKillsNearEnemyJungler": int,
        "epicMonsterKillsWithin30SecondsOfSpawn": int,
        "epicMonsterSteals": int,
        "epicMonsterStolenWithoutSmite": int,
        "firstTurretKilled": int,
        "firstTurretKilledTime": float,
        "flawlessAces": int,
        "fullTeamTakedown": int,
        "gameLength": float,
        "getTakedownsInAllLanesEarlyJungleAsLaner": int,
        "goldPerMinute": float,
        "hadOpenNexus": int,
        "immobilizeAndKillWithAlly": int,
        "initialBuffCount": int,
        "initialCrabCount": int,
        "jungleCsBefore10Minutes": float,
        "junglerTakedownsNearDamagedEpicMonster": int,
        "kTurretsDestroyedBeforePlatesFall": int,
        "kda": float,
        "killAfterHiddenWithAlly": int,
        "killParticipation": float,
        "killedChampTookFullTeamDamageSurvived": int,
        "killingSprees": int,
        "killsNearEnemyTurret": int,
        "killsOnOtherLanesEarlyJungleAsLaner": int,
        "killsOnRecentlyHealedByAramPack": int,
        "killsUnderOwnTurret": int,
        "killsWithHelpFromEpicMonster": int,
        "knockEnemyIntoTeamAndKill": int,
        "landSkillShotsEarlyGame": int,
        "laneMinionsFirst10Minutes": int,
        "laningPhaseGoldExpAdvantage": int,
        "legendaryCount": int,
        "lostAnInhibitor": int,
        "maxCsAdvantageOnLaneOpponent": float,
        "maxKillDeficit": int,
        "maxLevelLeadLaneOpponent": int,
        "mejaisFullStackInTime": int,
        "moreEnemyJungleThanOpponent": float,
        "multiKillOneSpell": int,
        "multiTurretRiftHeraldCount": int,
        "multikills": int,
        "multikillsAfterAggressiveFlash": int,
        "mythicItemUsed": int,
        "outerTurretExecutesBefore10Minutes": int,
        "outnumberedKills": int,
        "outnumberedNexusKill": int,
        "perfectDragonSoulsTaken": int,
        "perfectGame": int,
        "pickKillWithAlly": int,
        "playedChampSelectPosition": int,
        "poroExplosions": int,
        "quickCleanse": int,
        "quickFirstTurret": int,
        "quickSoloKills": int,
        "riftHeraldTakedowns": int,
        "saveAllyFromDeath": int,
        "scuttleCrabKills": int,
        "shortestTimeToAceFromFirstTakedown": float,
        "skillshotsDodged": int,
        "skillshotsHit": int,
        "snowballsHit": int,
        "soloBaronKills": int,
        "soloKills": int,
        "stealthWardsPlaced": int,
        "survivedSingleDigitHpCount": int,
        "survivedThreeImmobilizesInFight": int,
        "takedownOnFirstTurret": int,
        "takedowns": int,
        "takedownsAfterGainingLevelAdvantage": int,
        "takedownsBeforeJungleMinionSpawn": int,
        "takedownsFirstXMinutes": int,
        "takedownsInAlcove": int,
        "takedownsInEnemyFountain": int,
        "teamBaronKills": int,
        "teamDamagePercentage": float,
        "teamElderDragonKills": int,
        "teamRiftHeraldKills": int,
        "tookLargeDamageSurvived": int,
        "turretPlatesTaken": int,
        "turretTakedowns": int,
        "turretsTakenWithRiftHerald": int,
        "twentyMinionsIn3SecondsCount": int,
        "twoWardsOneSweeperCount": int,
        "unseenRecalls": int,
        "visionScoreAdvantageLaneOpponent": float,
        "visionScorePerMinute": float,
        "wardTakedowns": int,
        "wardTakedownsBefore20M": int,
        "wardsGuarded": int,
        "earliestDragonTakedown": float,
        "baronBuffGoldAdvantageOverThreshold": int,
        "teleportTakedowns": int,
        "fastestLegendary": float,
        "highestChampionDamage": int,
        "highestCrowdControlScore": int,
        "junglerKillsEarlyJungle": int,
        "killsOnLanersEarlyJungleAsJungler": int,
        "fasterSupportQuestCompletion": int,
        "highestWardKills": int,
        "soloTurretsLategame": int,
        "thirdInhibitorDestroyedTime": float,
        "HealFromMapSources": float,
        "InfernalScalePickup": int,
        "SWARM_DefeatAatrox": int,
        "SWARM_DefeatBriar": int,
        "SWARM_DefeatMiniBosses": int,
        "SWARM_EvolveWeapon": int,
        "SWARM_Have3Passives": int,
        "SWARM_KillEnemy": int,
        "SWARM_PickupGold": int,
        "SWARM_ReachLevel50": int,
        "SWARM_Survive15Min": int,
        "SWARM_WinWith5EvolvedWeapons": int,
        "fistBumpParticipation": int,
        "legendaryItemUsed": list[int],
        "voidMonsterKill": int,
    }, total=False)
    LolMatchV5MatchInfoParticipantPerksStatPerks = TypedDict("LolMatchV5MatchInfoParticipantPerksStatPerks", {
        "defense": int,
        "flex": int,
        "offense": int
    })
    LolMatchV5MatchInfoParticipantPerksStyleSelection = TypedDict("LolMatchV5MatchInfoParticipantPerksStyleSelection", {
        "perk": int,
        "var1": int,
        "var2": int,
        "var3": int
    })
    LolMatchV5MatchInfoParticipantPerksStyle = TypedDict("LolMatchV5MatchInfoParticipantPerksStyle", {
        "description": str,
        "selections": list[LolMatchV5MatchInfoParticipantPerksStyleSelection],
        "style": int
    })
    LolMatchV5MatchInfoParticipantPerks = TypedDict("LolMatchV5MatchInfoParticipantPerks", {
        "statPerks": LolMatchV5MatchInfoParticipantPerksStatPerks,
        "styles": list[LolMatchV5MatchInfoParticipantPerksStyle]
    })
    LolMatchV5MatchInfoParticipantMissions = TypedDict("LolMatchV5MatchInfoParticipant", {
        "playerScore0": float,
        "playerScore1": float,
        "playerScore10": float,
        "playerScore11": float,
        "playerScore2": float,
        "playerScore3": float,
        "playerScore4": float,
        "playerScore5": float,
        "playerScore6": float,
        "playerScore7": float,
        "playerScore8": float,
        "playerScore9": float,
    })
    LolMatchV5MatchInfoParticipant = TypedDict("LolMatchV5MatchInfoParticipant", {
        "allInPings": int,
        "assistMePings": int,
        "assists": int,
        "baitPings": NotRequired[int],
        "baronKills": int,
        "basicPings": int,
        "bountyLevel": int,
        "challenges": LolMatchV5MatchInfoParticipantChallenges,
        "champExperience": int,
        "champLevel": int,
        "championId": int,
        "championName": str,
        "championTransform": int,
        "commandPings": int,
        "consumablesPurchased": int,
        "damageDealtToBuildings": int,
        "damageDealtToObjectives": int,
        "damageDealtToTurrets": int,
        "damageSelfMitigated": int,
        "dangerPings": int,
        "deaths": int,
        "detectorWardsPlaced": int,
        "doubleKills": int,
        "dragonKills": int,
        "eligibleForProgression": bool,
        "enemyMissingPings": int,
        "enemyVisionPings": int,
        "firstBloodAssist": bool,
        "firstBloodKill": bool,
        "firstTowerAssist": bool,
        "firstTowerKill": bool,
        "gameEndedInEarlySurrender": bool,
        "gameEndedInSurrender": bool,
        "getBackPings": int,
        "goldEarned": int,
        "goldSpent": int,
        "holdPings": int,
        "individualPosition": str,
        "inhibitorKills": int,
        "inhibitorTakedowns": int,
        "inhibitorsLost": int,
        "item0": int,
        "item1": int,
        "item2": int,
        "item3": int,
        "item4": int,
        "item5": int,
        "item6": int,
        "itemsPurchased": int,
        "killingSprees": int,
        "kills": int,
        "lane": str,
        "largestCriticalStrike": int,
        "largestKillingSpree": int,
        "largestMultiKill": int,
        "longestTimeSpentLiving": int,
        "magicDamageDealt": int,
        "magicDamageDealtToChampions": int,
        "magicDamageTaken": int,
        "missions": LolMatchV5MatchInfoParticipantMissions,
        "needVisionPings": int,
        "neutralMinionsKilled": int,
        "nexusKills": int,
        "nexusLost": int,
        "nexusTakedowns": int,
        "objectivesStolen": int,
        "objectivesStolenAssists": int,
        "onMyWayPings": int,
        "participantId": int,
        "pentaKills": int,
        "perks": LolMatchV5MatchInfoParticipantPerks,
        "physicalDamageDealt": int,
        "physicalDamageDealtToChampions": int,
        "physicalDamageTaken": int,
        "placement": int,
        "playerAugment1": int,
        "playerAugment2": int,
        "playerAugment3": int,
        "playerAugment4": int,
        "playerAugment5": int,
        "playerAugment6": int,
        "playerSubteamId": int,
        "playerScore0": NotRequired[float],
        "playerScore1": NotRequired[float],
        "playerScore10": NotRequired[float],
        "playerScore11": NotRequired[float],
        "playerScore2": NotRequired[float],
        "playerScore3": NotRequired[float],
        "playerScore4": NotRequired[float],
        "playerScore5": NotRequired[float],
        "playerScore6": NotRequired[float],
        "playerScore7": NotRequired[float],
        "playerScore8": NotRequired[float],
        "playerScore9": NotRequired[float],
        "profileIcon": int,
        "pushPings": int,
        "puuid": str,
        "quadraKills": int,
        "riotIdTagline": str,
        "riotIdGameName": str,
        "role": str,
        "sightWardsBoughtInGame": int,
        "spell1Casts": int,
        "spell2Casts": int,
        "spell3Casts": int,
        "spell4Casts": int,
        "subteamPlacement": int,
        "summoner1Casts": int,
        "summoner1Id": int,
        "summoner2Casts": int,
        "summoner2Id": int,
        "summonerId": str,
        "summonerLevel": int,
        "summonerName": NotRequired[str],
        "teamEarlySurrendered": bool,
        "teamId": int,
        "teamPosition": str,
        "timeCCingOthers": int,
        "timePlayed": int,
        "totalAllyJungleMinionsKilled": int,
        "totalDamageDealt": int,
        "totalDamageDealtToChampions": int,
        "totalDamageShieldedOnTeammates": int,
        "totalDamageTaken": int,
        "totalEnemyJungleMinionsKilled": int,
        "totalHeal": int,
        "totalHealsOnTeammates": int,
        "totalMinionsKilled": int,
        "totalTimeCCDealt": int,
        "totalTimeSpentDead": int,
        "totalUnitsHealed": int,
        "tripleKills": int,
        "trueDamageDealt": int,
        "trueDamageDealtToChampions": int,
        "trueDamageTaken": int,
        "turretKills": int,
        "turretTakedowns": int,
        "turretsLost": int,
        "unrealKills": int,
        "visionClearedPings": int,
        "visionScore": int,
        "visionWardsBoughtInGame": int,
        "wardsKilled": int,
        "wardsPlaced": int,
        "retreatPings": NotRequired[int],
        "win": bool
    })
    LolMatchV5MatchInfoTeamBan = TypedDict("LolMatchV5MatchInfoTeamBan", {
        "championId": int,
        "pickTurn": int
    })
    LolMatchV5MatchInfoTeamObjectives = TypedDict("LolMatchV5MatchInfoTeamObjectives", {
        "baron": LolMatchV5MatchTeamObjective,
        "champion": LolMatchV5MatchTeamObjective,
        "dragon": LolMatchV5MatchTeamObjective,
        "horde": NotRequired[LolMatchV5MatchTeamObjective],
        "inhibitor": LolMatchV5MatchTeamObjective,
        "riftHerald": LolMatchV5MatchTeamObjective,
        "tower": LolMatchV5MatchTeamObjective
    })
    LolMatchV5MatchInfoTeam = TypedDict("LolMatchV5MatchInfoTeam", {
        "bans": list[LolMatchV5MatchInfoTeamBan],
        "objectives": LolMatchV5MatchInfoTeamObjectives,
        "teamId": int,
        "win": bool
    })
    LolMatchV5MatchInfo = TypedDict("LolMatchV5MatchInfo", {
        "gameCreation": int,
        "gameDuration": int,
        "gameEndTimestamp": int,
        "gameId": int,
        "gameMode": str,
        "gameName": str,
        "gameStartTimestamp": int,
        "gameType": str,
        "gameVersion": str,
        "mapId": int,
        "participants": list[LolMatchV5MatchInfoParticipant],
        "platformId": str,
        "queueId": int,
        "teams": list[LolMatchV5MatchInfoTeam],
        "tournamentCode": str,
        "endOfGameResult": str
    })
    LolMatchV5Match = TypedDict("LolMatchV5Match", {
        "metadata": LolMatchV5MatchMetadata,
        "info": LolMatchV5MatchInfo
    })
    LolMatchV5MatchTimelineParticipantFrameChampionStats = TypedDict("LolMatchV5MatchTimelineParticipantFrameChampionStats", {
        "abilityHaste": int,
        "abilityPower": int,
        "armor": int,
        "armorPen": int,
        "armorPenPercent": int,
        "attackDamage": int,
        "attackSpeed": int,
        "bonusArmorPenPercent": int,
        "bonusMagicPenPercent": int,
        "ccReduction": int,
        "cooldownReduction": int,
        "health": int,
        "healthMax": int,
        "healthRegen": int,
        "lifesteal": int,
        "magicPen": int,
        "magicPenPercent": int,
        "magicResist": int,
        "movementSpeed": int,
        "omnivamp": int,
        "physicalVamp": int,
        "power": int,
        "powerMax": int,
        "powerRegen": int,
        "spellVamp": int
    })
    LolMatchV5MatchTimelineParticipantFrameDamageStats = TypedDict("LolMatchV5MatchTimelineParticipantFrameDamageStats", {
        "magicDamageDone": int,
        "magicDamageDoneToChampions": int,
        "magicDamageTaken": int,
        "physicalDamageDone": int,
        "physicalDamageDoneToChampions": int,
        "physicalDamageTaken": int,
        "totalDamageDone": int,
        "totalDamageDoneToChampions": int,
        "totalDamageTaken": int,
        "trueDamageDone": int,
        "trueDamageDoneToChampions": int,
        "trueDamageTaken": int
    })
    LolMatchV5MatchTimelinePosition = TypedDict("LolMatchV5MatchTimelinePosition", {
        "x": int,
        "y": int
    })
    LolMatchV5MatchTimelineParticipantFrame = TypedDict("LolMatchV5MatchTimelineParticipantFrame", {
        "championStats": LolMatchV5MatchTimelineParticipantFrameChampionStats,
        "currentGold": int,
        "damageStats": LolMatchV5MatchTimelineParticipantFrameDamageStats,
        "goldPerSecond": int,
        "jungleMinionsKilled": int,
        "level": int,
        "minionsKilled": int,
        "participantId": int,
        "position": LolMatchV5MatchTimelinePosition,
        "timeEnemySpentControlled": int,
        "totalGold": int,
        "xp": int
    })
    LolMatchV5MatchTimelineEventDamage = TypedDict("LolMatchV5MatchTimelineEventDamage", {
        "basic": bool,
        "magicDamage": int,
        "name": str,
        "participantId": int,
        "physicalDamage": int,
        "spellName": str,
        "spellSlot": int,
        "trueDamage": int,
        "type": str
    })
    LolMatchV5MatchTimelineMetadata = TypedDict("LolMatchV5MatchTimelineMetadata", {
        "dataVersion": str,
        "matchId": str,
        "participants": list[str]
    })
    LolMatchV5MatchTimelineInfoFrameEvent = TypedDict("LolMatchV5MatchTimelineInfoFrameEvent", {
        "afterId": NotRequired[int],
        "beforeId": NotRequired[int],
        "goldGain": NotRequired[int],
        "participantId": NotRequired[int],
        "timestamp": int,
        "type": str,
        "creatorId": NotRequired[int],
        "wardType": NotRequired[str],
        "level": NotRequired[int],
        "itemId": NotRequired[int],
        "assistingParticipantIds": NotRequired[list[int]],
        "bounty": NotRequired[int],
        "killStreakLength": NotRequired[int],
        "killerId": NotRequired[int],
        "position": NotRequired[LolMatchV5MatchTimelinePosition],
        "shutdownBounty": NotRequired[int],
        "victimDamageDealt": NotRequired[list[LolMatchV5MatchTimelineEventDamage]],
        "victimDamageReceived": NotRequired[list[LolMatchV5MatchTimelineEventDamage]],
        "victimId": NotRequired[int],
        "levelUpType": NotRequired[str],
        "skillSlot": NotRequired[int],
        "realTimestamp": NotRequired[int],
    })
    LolMatchV5MatchTimelineInfoFrame = TypedDict("LolMatchV5MatchTimelineInfoFrame", {
        "events": list[LolMatchV5MatchTimelineInfoFrameEvent],
        "participantFrames": dict[str, LolMatchV5MatchTimelineParticipantFrame],
        "timestamp": int
    })
    LolMatchV5MatchTimelineInfoParticipants = TypedDict("LolMatchV5MatchTimelineInfoParticipants", {
        "participantId": int,
        "puuid": str,
    })
    LolMatchV5MatchTimelineInfo = TypedDict("LolMatchV5MatchTimelineInfo", {
        "frameInterval": int,
        "frames": list[LolMatchV5MatchTimelineInfoFrame],
        "gameId": int,
        "participants": list[LolMatchV5MatchTimelineInfoParticipants],
        "endOfGameResult": str
    })
    LolMatchV5MatchTimeline = TypedDict("LolMatchV5MatchTimeline", {
        "metadata": LolMatchV5MatchTimelineMetadata,
        "info": LolMatchV5MatchTimelineInfo
    })
    LolSpectatorV4GameParticipantPerks = TypedDict("LolSpectatorV4GameParticipantPerks", {
        "perkIds": list[int],
        "perkStyle": int,
        "perkSubStyle": int
    })
    LolSpectatorV4GameParticipant = TypedDict("LolSpectatorV4GameParticipant", {
        "gameCustomizationObjects": NotRequired[list[str]],
        "perks": NotRequired[LolSpectatorV4GameParticipantPerks],
        "puuid": str,
        "summonerId": str,
        "teamId": int,
        "spell1Id": int,
        "spell2Id": int,
        "championId": int,
        "profileIconId": int,
        "summonerName": NotRequired[str],
        "bot": bool
    })
    LolSpectatorV4GameObservers = TypedDict("LolSpectatorV4GameObservers", {
        "encryptionKey": str
    })
    LolSpectatorV4Game = TypedDict("LolSpectatorV4Game", {
        "gameId": int,
        "mapId": int,
        "gameMode": str,
        "gameType": str,
        "gameQueueConfigId": int,
        "participants": list[LolSpectatorV4GameParticipant],
        "observers": LolSpectatorV4GameObservers,
        "platformId": str,
        "bannedChampions": list[int],
        "gameStartTime": int,
        "gameLength": int
    })
    LolSpectatorV4GameList = TypedDict("LolSpectatorV4GameList", {
        "gameList": list[LolSpectatorV4Game],
        "clientRefreshInterval": int
    })
    LolSpectatorV5GameParticipant = TypedDict("LolSpectatorV5GameParticipant", {
        "gameCustomizationObjects": NotRequired[list[str]],
        "perks": NotRequired[LolSpectatorV4GameParticipantPerks],
        "puuid": str,
        "summonerId": str,
        "teamId": int,
        "spell1Id": int,
        "spell2Id": int,
        "championId": int,
        "profileIconId": int,
        "riotId": str,
        "bot": bool,
    })
    LolSpectatorV5GameBannedChampion = TypedDict("LolSpectatorV4Game", {
        "championId": int,
        "pickTurn": int,
        "teamId": int,
    })
    LolSpectatorV5Game = TypedDict("LolSpectatorV5Game", {
        "gameId": int,
        "mapId": int,
        "gameMode": str,
        "gameType": str,
        "gameQueueConfigId": int,
        "participants": list[LolSpectatorV5GameParticipant],
        "observers": LolSpectatorV4GameObservers,
        "platformId": str,
        "bannedChampions": list[LolSpectatorV5GameBannedChampion],
        "gameStartTime": NotRequired[int],
        "gameLength": int
    })
    LolSpectatorV5GameList = TypedDict("LolSpectatorV5GameList", {
        "gameList": list[LolSpectatorV5Game],
    })
    LolSummonerV4Summoner = TypedDict("SummonerV4Summoner", {
        "id": str,
        "accountId": str,
        "puuid": str,
        "name": NotRequired[str],
        "profileIconId": int,
        "revisionDate": int,
        "summonerLevel": int
    })

    # Teamfight Tactics Types

    TftLeagueV1LeagueEntry = TypedDict("TftLeagueV1LeagueEntry", {
        "summonerId": str,
        "summonerName": NotRequired[str],
        "rank": str,
        "leaguePoints": int,
        "wins": int,
        "losses": int,
        "hotStreak": bool,
        "veteran": bool,
        "freshBlood": bool,
        "inactive": bool,
    })
    TftLeagueV1LeagueFullEntry = TypedDict("TftLeagueV1LeagueFullEntry", {
        "leagueId": str,
        "puuid": str,
        "summonerId": str,
        "summonerName": NotRequired[str],
        "queueType": str,
        "tier": str,
        "rank": str,
        "leaguePoints": int,
        "wins": int,
        "losses": int,
        "hotStreak": bool,
        "veteran": bool,
        "freshBlood": bool,
        "inactive": bool,
        "miniSeries": NotRequired[LolLeagueV4LeagueEntryMiniSeries],
    })
    TftLeagueV1League = TypedDict("TftLeagueV1League", {
        "tier": str,
        "leagueId": str,
        "queue": str,
        "name": str,
        "entries": list[TftLeagueV1LeagueEntry]
    })
    TftMatchV1MatchMetadata = TypedDict("TftMatchV1MatchMetadata", {
        "data_version": str,
        "match_id": str,
        "participants": list[str]
    })
    TftMatchV1MatchInfoParticipantCompanion = TypedDict("TftMatchV1MatchInfoParticipantCompanion", {
        "content_ID": str,
        "item_ID": int,
        "skin_ID": int,
        "species": str
    })
    TftMatchV1MatchInfoParticipantTrait = TypedDict("TftMatchV1MatchInfoParticipantTrait", {
        "name": str,
        "num_units": int,
        "style": int,
        "tier_current": int,
        "tier_total": int
    })
    TftMatchV1MatchInfoParticipantUnit = TypedDict("TftMatchV1MatchInfoParticipantUnit", {
        "character_id": str,
        "itemNames": list[str],
        "name": str,
        "rarity": int,
        "tier": int
    })
    TftMatchV1MatchInfoParticipantMission = TypedDict("TftMatchV1MatchInfoParticipantMission", {
        "Assists": NotRequired[int],
        "DamageDealt": NotRequired[int],
        "DamageDealtToObjectives": NotRequired[int],
        "DamageDealtToTurrets": NotRequired[int],
        "DamageTaken": NotRequired[int],
        "Deaths": NotRequired[int],
        "DoubleKills": NotRequired[int],
        "GoldEarned": NotRequired[int],
        "GoldSpent": NotRequired[int],
        "InhibitorsDestroyed": NotRequired[int],
        "KillingSprees": NotRequired[int],
        "Kills": NotRequired[int],
        "LargestKillingSpree": NotRequired[int],
        "LargestMultiKill": NotRequired[int],
        "MagicDamageDealt": NotRequired[int],
        "MagicDamageDealtToChampions": NotRequired[int],
        "MagicDamageTaken": NotRequired[int],
        "NeutralMinionsKilledTeamJungle": NotRequired[int],
        "PentaKills": NotRequired[int],
        "PhysicalDamageDealt": NotRequired[int],
        "PhysicalDamageDealtToChampions": NotRequired[int],
        "PhysicalDamageTaken": NotRequired[int],
        "PlayerScore0": NotRequired[int],
        "PlayerScore1": NotRequired[int],
        "PlayerScore10": NotRequired[int],
        "PlayerScore11": NotRequired[int],
        "PlayerScore2": NotRequired[int],
        "PlayerScore3": NotRequired[int],
        "PlayerScore4": NotRequired[int],
        "PlayerScore5": NotRequired[int],
        "PlayerScore6": NotRequired[int],
        "PlayerScore9": NotRequired[int],
        "QuadraKills": NotRequired[int],
        "Spell1Casts": NotRequired[int],
        "Spell2Casts": NotRequired[int],
        "Spell3Casts": NotRequired[int],
        "Spell4Casts": NotRequired[int],
        "SummonerSpell1Casts": NotRequired[int],
        "TimeCCOthers": NotRequired[int],
        "TotalDamageDealtToChampions": NotRequired[int],
        "TotalMinionsKilled": NotRequired[int],
        "TripleKills": NotRequired[int],
        "TrueDamageDealt": NotRequired[int],
        "TrueDamageDealtToChampions": NotRequired[int],
        "TrueDamageTaken": NotRequired[int],
        "UnrealKills": NotRequired[int],
        "VisionScore": NotRequired[int],
        "WardsKilled": NotRequired[int],
    })
    TftMatchV1MatchInfoParticipantSkillTree = TypedDict("TftMatchV1MatchInfoParticipantSkillTree", {
        "EventSkill_DemotionProtection": int,
        "EventSkill_PlacementDelta": int,
    })
    TftMatchV1MatchInfoParticipant = TypedDict("TftMatchV1MatchInfoParticipant", {
        "augments": list[str],
        "companion": TftMatchV1MatchInfoParticipantCompanion,
        "gold_left": int,
        "last_round": int,
        "level": int,
        "placement": int,
        "players_eliminated": int,
        "puuid": str,
        "time_eliminated": float,
        "total_damage_to_players": int,
        "traits": list[TftMatchV1MatchInfoParticipantTrait],
        "units": list[TftMatchV1MatchInfoParticipantUnit],
        "missions": TftMatchV1MatchInfoParticipantMission,
        "riotIdGameName": str,
        "riotIdTagline": str,
        "skill_tree": NotRequired[TftMatchV1MatchInfoParticipantSkillTree],
        "partner_group_id": int,
        "win": bool,
    })
    TftMatchV1MatchInfo = TypedDict("TftMatchV1MatchInfo", {
        "game_datetime": int,
        "game_length": float,
        "game_version": str,
        "participants": list[TftMatchV1MatchInfoParticipant],
        "queue_id": int,
        "tft_game_type": str,
        "tft_set_core_name": str,
        "tft_set_number": int,
        "endOfGameResult": str,
        "gameCreation": int,
        "gameId": int,
        "mapId": int,
        "queueId": int,
    })
    TftMatchV1Match = TypedDict("TftMatchV1Match", {
        "metadata": TftMatchV1MatchMetadata,
        "info": TftMatchV1MatchInfo
    })
    TftSummonerV1Summoner = LolSummonerV4Summoner

    # Legends of Runeterra Types

    LorRankedV1LeaderboardPlayer = TypedDict("LorRankedV1LeaderboardPlayer", {
        "name": str,
        "rank": int,
        "lp": float
    })
    LorRankedV1Leaderboard = TypedDict("LorRankedV1Leaderboard", {
        "players": list[LorRankedV1LeaderboardPlayer]
    })
    LorMatchV1MatchMetadata = TypedDict("LorMatchV1MatchMetadata", {
        "data_version": str,
        "match_id": str,
        "participants": list[str]
    })
    LorMatchV1MatchInfoPlayer = TypedDict("LorMatchV1MatchInfoPlayer", {
        "puuid": str,
        "deck_id": str,
        "deck_code": str,
        "factions": list[str],
        "game_outcome": str,
        "order_of_play": int
    })
    LorMatchV1MatchInfo = TypedDict("LorMatchV1MatchInfo", {
        "game_format": str,
        "game_mode": str,
        "game_type": str,
        "game_start_time_utc": str,
        "game_version": str,
        "players": list[LorMatchV1MatchInfoPlayer],
        "total_turn_count": int
    })
    LorMatchV1Match = TypedDict("LorMatchV1Match", {
        "metadata": LorMatchV1MatchMetadata,
        "info": LorMatchV1MatchInfo
    })

    # Valorant Types

    ValContentV1ContentsAssetLocalizedNames = TypedDict("ValContentV1ContentsAssetLocalizedNames", {
        "ar-AE": str,
        "de-DE": str,
        "en-US": str,
        "es-ES": str,
        "es-MX": str,
        "fr-FR": str,
        "id-ID": str,
        "it-IT": str,
        "ja-JP": str,
        "ko-KR": str,
        "pl-PL": str,
        "pt-BR": str,
        "ru-RU": str,
        "th-TH": str,
        "tr-TR": str,
        "vi-VN": str,
        "zh-CN": str,
        "zh-TW": str,
    })
    ValContentV1ContentsAsset = TypedDict("ValContentV1ContentsAsset", {
        "name": str,
        "id": str,
        "localizedNames": NotRequired[ValContentV1ContentsAssetLocalizedNames],
        "assetName": str,
        "assetPath": NotRequired[str]
    })
    ValContentV1ContentsAct = TypedDict("ValContentV1ContentsAct", {
        "id": str,
        "localizedNames": NotRequired[ValContentV1ContentsAssetLocalizedNames],
        "parentId": str,
        "type": str,
        "name": str,
        "isActive": bool
    })
    ValContentV1Contents = TypedDict("ValContentV1Contents", {
        "version": str,
        "characters": list[ValContentV1ContentsAsset],
        "maps": list[ValContentV1ContentsAsset],
        "chromas": list[ValContentV1ContentsAsset],
        "skins": list[ValContentV1ContentsAsset],
        "skinLevels": list[ValContentV1ContentsAsset],
        "equips": list[ValContentV1ContentsAsset],
        "gameModes": list[ValContentV1ContentsAsset],
        "totems": list[ValContentV1ContentsAsset],
        "sprays": list[ValContentV1ContentsAsset],
        "sprayLevels": list[ValContentV1ContentsAsset],
        "charms": list[ValContentV1ContentsAsset],
        "charmLevels": list[ValContentV1ContentsAsset],
        "playerCards": list[ValContentV1ContentsAsset],
        "playerTitles": list[ValContentV1ContentsAsset],
        "acts": list[ValContentV1ContentsAct],
        "ceremonies": list[ValContentV1ContentsAsset]
    })

    ValRankedV1LeaderboardTierDetail = TypedDict("ValRankedV1LeaderboardTierDetail", {
        "rankedRatingThreshold": int,
        "startingPage": int,
        "startingIndex": int
    })
    ValRankedV1LeaderboardPlayer = TypedDict("ValRankedV1LeaderboardPlayer", {
        "puuid": str,
        "gameName": str,
        "tagLine": str,
        "leaderboardRank": int,
        "rankedRating": int,
        "numberOfWins": int,
        "competitiveTier": int
    })
    ValRankedV1LeaderboardTierDetails = TypedDict("ValRankedV1LeaderboardTierDetails", {
        "24": ValRankedV1LeaderboardTierDetail,
        "25": ValRankedV1LeaderboardTierDetail,
        "26": ValRankedV1LeaderboardTierDetail,
        "27": ValRankedV1LeaderboardTierDetail
    })
    ValRankedV1Leaderboard = TypedDict("ValRankedV1Leaderboard", {
        "actId": str,
        "players": list[ValRankedV1LeaderboardPlayer],
        "totalPlayers": int,
        "immortalStartingPage": int,
        "immortalStartingIndex": int,
        "topTierRRThreshold": int,
        "tierDetails": ValRankedV1LeaderboardTierDetails,
        "startIndex": int,
        "query": str,
        "shard": str
    })
    ValMatchV1MatchLocation = TypedDict("ValMatchV1MatchLocation", {
        "x": float,
        "y": float
    })
    ValMatchV1MatchPlayerLocation = TypedDict("ValMatchV1MatchPlayerLocation", {
        "puuid": str,
        "viewRadians": float,
        "location": ValMatchV1MatchLocation
    })
    ValMatchV1MatchInfo = TypedDict("ValMatchV1MatchInfo", {
        "matchId": str,
        "mapId": str,
        "gameVersion": str,
        "gameLengthMillis": int,
        "region": str,
        "gameStartMillis": int,
        "provisioningFlowId": str,
        "isCompleted": bool,
        "customGameName": str,
        "queueId": str,
        "gameMode": str,
        "isRanked": bool,
        "premierMatchInfo": dict,
        "seasonId": str
    })
    ValMatchV1MatchPlayerStatsAbilityCasts = TypedDict("ValMatchV1MatchPlayerStatsAbilityCasts", {
        "grenadeCasts": int,
        "ability1Casts": int,
        "ability2Casts": int,
        "ultimateCasts": int
    })
    ValMatchV1MatchPlayerStats = TypedDict("ValMatchV1MatchPlayerStats", {
        "score": int,
        "roundsPlayed": int,
        "kills": int,
        "deaths": int,
        "assists": int,
        "playtimeMillis": int,
        "abilityCasts": ValMatchV1MatchPlayerStatsAbilityCasts | None
    })
    ValMatchV1MatchPlayer = TypedDict("ValMatchV1MatchPlayer", {
        "puuid": str,
        "gameName": str,
        "tagLine": str,
        "teamId": str,
        "partyId": str,
        "characterId": str,
        "stats": ValMatchV1MatchPlayerStats,
        "competitiveTier": int,
        "isObserver": bool,
        "playerCard": str,
        "playerTitle": str,
        "accountLevel": int
    })
    ValMatchV1MatchTeam = TypedDict("ValMatchV1MatchTeam", {
        "teamId": str,
        "won": bool,
        "roundsPlayed": int,
        "roundsWon": int,
        "numPoints": int
    })
    ValMatchV1MatchRoundResultPlayerStatFinishingDamage = TypedDict("ValMatchV1MatchRoundResultPlayerStatFinishingDamage", {
        "damageType": str,
        "damageItem": str,
        "isSecondaryFireMode": bool
    })
    ValMatchV1MatchRoundResultPlayerStatKill = TypedDict("ValMatchV1MatchRoundResultPlayerStatKill", {
        "timeSinceGameStartMillis": int,
        "timeSinceRoundStartMillis": int,
        "killer": str,
        "victim": str,
        "victimLocation": ValMatchV1MatchLocation,
        "assistants": list[str],
        "playerLocations": list[ValMatchV1MatchPlayerLocation],
        "finishingDamage": ValMatchV1MatchRoundResultPlayerStatFinishingDamage
    })
    ValMatchV1MatchRoundResultPlayerStatDamage = TypedDict("ValMatchV1MatchRoundResultPlayerStatDamage", {
        "receiver": str,
        "damage": int,
        "legshots": int,
        "bodyshots": int,
        "headshots": int
    })
    ValMatchV1MatchRoundResultPlayerStatEconomy = TypedDict("ValMatchV1MatchRoundResultPlayerStatEconomy", {
        "loadoutValue": int,
        "weapon": str,
        "armor": str,
        "remaining": int,
        "spent": int
    })
    ValMatchV1MatchRoundResultPlayerStatAbility = TypedDict("ValMatchV1MatchRoundResultPlayerStatAbility", {
        "grenadeEffects": str | None,
        "ability1Effects": str | None,
        "ability2Effects": str | None,
        "ultimateEffects": str | None
    })
    ValMatchV1MatchRoundResultPlayerStat = TypedDict("ValMatchV1MatchRoundResultPlayerStat", {
        "puuid": str,
        "kills": list[ValMatchV1MatchRoundResultPlayerStatKill],
        "damage": list[ValMatchV1MatchRoundResultPlayerStatDamage],
        "score": int,
        "economy": ValMatchV1MatchRoundResultPlayerStatEconomy,
        "ability": ValMatchV1MatchRoundResultPlayerStatAbility
    })
    ValMatchV1MatchRoundResult = TypedDict("ValMatchV1MatchRoundResult", {
        "roundNum": int,
        "roundResult": str,
        "roundCeremony": str,
        "winningTeam": str,
        "winningTeamRole": str,
        "bombPlanter": str | None,
        "bombDefuser": str | None,
        "plantRoundTime": int,
        "plantPlayerLocations": list[ValMatchV1MatchPlayerLocation] | None,
        "plantLocation": ValMatchV1MatchLocation,
        "plantSite": str,
        "defuseRoundTime": int,
        "defusePlayerLocations": list[ValMatchV1MatchPlayerLocation] | None,
        "defuseLocation": ValMatchV1MatchLocation,
        "playerStats": list[ValMatchV1MatchRoundResultPlayerStat],
        "roundResultCode": str
    })
    ValMatchV1Match = TypedDict("ValMatchV1Match", {
        "matchInfo": ValMatchV1MatchInfo,
        "players": list[ValMatchV1MatchPlayer],
        "coaches": list[str],
        "teams": list[ValMatchV1MatchTeam],
        "roundResults": list[ValMatchV1MatchRoundResult]
    })
    ValMatchV1MatchlistHistory = TypedDict("ValMatchV1MatchlistHistory", {
        "matchId": str,
        "gameStartTimeMillis": int,
        "queueId": str
    })
    ValMatchV1Matchlist = TypedDict("ValMatchV1Matchlist", {
        "puuid": str,
        "history": list[ValMatchV1MatchlistHistory]
    })
    ValMatchV1RecentMatches = TypedDict("ValMatchV1RecentMatches", {
        "currentTime": int,
        "matchIds": list[str]
    })

    # Status Types

    StatusV1PlatformDataLocaleContent = TypedDict("StatusV1PlatformDataLocaleContent", {
        "locale": str,
        "content": str
    })
    StatusV1PlatformDataEntryUpdate = TypedDict("StatusV1PlatformDataEntryUpdate", {
        "id": int,
        "created_at": str,
        "updated_at": str,
        "publish": bool,
        "author": str,
        "translations": list[StatusV1PlatformDataLocaleContent],
        "publish_locations": list[str]
    })
    StatusV1PlatformDataEntry = TypedDict("StatusV1PlatformDataEntry", {
        "id": int,
        "created_at": str,
        "updated_at": str | None,
        "archive_at": str | None,
        "titles": list[StatusV1PlatformDataLocaleContent],
        "updates": list[StatusV1PlatformDataEntryUpdate],
        "platforms": list[str],
        "maintenance_status": str | None,
        "incident_severity": str | None
    })
    StatusV1PlatformData = TypedDict("StatusV4PlatformData", {
        "id": str,
        "name": str,
        "locales": list[str],
        "maintenances": list[StatusV1PlatformDataEntry],
        "incidents": list[StatusV1PlatformDataEntry]
    })
Attributes
AccountV1Account class-attribute instance-attribute
AccountV1Account = TypedDict(
    "AccountV1Account",
    {"puuid": str, "gameName": str, "tagLine": str},
)
AccountV1ActiveShard class-attribute instance-attribute
AccountV1ActiveShard = TypedDict(
    "AccountV1ActiveShard",
    {"puuid": str, "game": str, "activeShard": str},
)
LolChampionV3Rotation class-attribute instance-attribute
LolChampionV3Rotation = TypedDict(
    "LolChampionV3Rotation",
    {
        "freeChampionIds": list[int],
        "freeChampionIdsForNewPlayers": list[int],
        "maxNewPlayerLevel": int,
    },
)
LolChampionV4MasteryMilestoneRewardConfig class-attribute instance-attribute
LolChampionV4MasteryMilestoneRewardConfig = TypedDict(
    "LolChampionV4MasteryMilestoneRewardConfig",
    {"maximumReward": int, "rewardType": str, "rewardValue": str},
)
LolChampionV4MasteryMilestone class-attribute instance-attribute
LolChampionV4MasteryMilestone = TypedDict(
    "LolChampionV4MasteryMilestone",
    {
        "bonus": bool,
        "requireGradeCounts": dict[str, int],
        "rewardConfig": LolChampionV4MasteryMilestoneRewardConfig,
        "rewardMarks": int,
        "totalGamesRequires": int,
    },
)
LolChampionV4Mastery class-attribute instance-attribute
LolChampionV4Mastery = TypedDict(
    "LolChampionV4Mastery",
    {
        "puuid": str,
        "championId": int,
        "championLevel": int,
        "championPoints": int,
        "lastPlayTime": int,
        "championPointsSinceLastLevel": int,
        "championPointsUntilNextLevel": int,
        "championSeasonMilestone": int,
        "markRequiredForNextLevel": int,
        "milestoneGrades": NotRequired[list[str]],
        "nextSeasonMilestone": NotRequired[
            LolChampionV4MasteryMilestone
        ],
        "tokensEarned": int,
    },
)
LolClashV1Player class-attribute instance-attribute
LolClashV1Player = TypedDict(
    "LolClashV1Player",
    {"summonerId": str, "teamId": str, "position": str, "role": str},
)
LolClashV1Team class-attribute instance-attribute
LolClashV1Team = TypedDict(
    "LolClashV1Team",
    {
        "id": str,
        "tournamentId": int,
        "name": str,
        "iconId": int,
        "tier": int,
        "captain": str,
        "abbreviation": str,
        "players": list[LolClashV1Player],
    },
)
LolClashV1TournamentSchedule class-attribute instance-attribute
LolClashV1TournamentSchedule = TypedDict(
    "LolClashV1TournamentSchedule",
    {
        "id": int,
        "registrationTime": int,
        "startTime": int,
        "cancelled": bool,
    },
)
LolClashV1Tournament class-attribute instance-attribute
LolClashV1Tournament = TypedDict(
    "LolClashV1Tournament",
    {
        "id": int,
        "themeId": int,
        "nameKey": str,
        "nameKeySecondary": str,
        "schedule": list[LolClashV1TournamentSchedule],
    },
)
LolLeagueV4LeagueEntryMiniSeries class-attribute instance-attribute
LolLeagueV4LeagueEntryMiniSeries = TypedDict(
    "LolLeagueV4LeagueEntryMiniSeries",
    {"losses": int, "progress": str, "target": int, "wins": int},
)
LolLeagueV4LeagueEntry class-attribute instance-attribute
LolLeagueV4LeagueEntry = TypedDict(
    "LolLeagueV4LeagueEntry",
    {
        "summonerId": str,
        "summonerName": NotRequired[str],
        "rank": str,
        "leaguePoints": int,
        "wins": int,
        "losses": int,
        "hotStreak": bool,
        "veteran": bool,
        "freshBlood": bool,
        "inactive": bool,
    },
)
LolLeagueV4LeagueFullEntry class-attribute instance-attribute
LolLeagueV4LeagueFullEntry = TypedDict(
    "LolLeagueV4LeagueFullEntry",
    {
        "leagueId": str,
        "summonerId": str,
        "summonerName": NotRequired[str],
        "queueType": str,
        "tier": str,
        "rank": str,
        "leaguePoints": int,
        "wins": int,
        "losses": int,
        "hotStreak": bool,
        "veteran": bool,
        "freshBlood": bool,
        "inactive": bool,
        "miniSeries": NotRequired[LolLeagueV4LeagueEntryMiniSeries],
    },
)
LolLeagueV4League class-attribute instance-attribute
LolLeagueV4League = TypedDict(
    "LolLeagueV4League",
    {
        "tier": str,
        "leagueId": str,
        "queue": str,
        "name": str,
        "entries": list[LolLeagueV4LeagueEntry],
    },
)
LolMatchV5MatchMetadata class-attribute instance-attribute
LolMatchV5MatchMetadata = TypedDict(
    "LolMatchV5MatchMetadata",
    {"dataVersion": str, "matchId": str, "participants": list[str]},
)
LolMatchV5MatchTeamObjective class-attribute instance-attribute
LolMatchV5MatchTeamObjective = TypedDict(
    "LolMatchV5MatchTeamObjective", {"first": bool, "kills": int}
)
LolMatchV5MatchInfoParticipantChallenges class-attribute instance-attribute
LolMatchV5MatchInfoParticipantChallenges = TypedDict(
    "LolMatchV5MatchInfoParticipantChallenges",
    {
        "12AssistStreakCount": int,
        "abilityUses": int,
        "acesBefore15Minutes": int,
        "alliedJungleMonsterKills": int,
        "baronTakedowns": int,
        "blastConeOppositeOpponentCount": int,
        "bountyGold": int,
        "buffsStolen": int,
        "completeSupportQuestInTime": int,
        "controlWardTimeCoverageInRiverOrEnemyHalf": float,
        "controlWardsPlaced": int,
        "damagePerMinute": float,
        "damageTakenOnTeamPercentage": float,
        "dancedWithRiftHerald": int,
        "deathsByEnemyChamps": int,
        "dodgeSkillShotsSmallWindow": int,
        "doubleAces": int,
        "dragonTakedowns": int,
        "earliestBaron": float,
        "earlyLaningPhaseGoldExpAdvantage": int,
        "effectiveHealAndShielding": float,
        "elderDragonKillsWithOpposingSoul": int,
        "elderDragonMultikills": int,
        "enemyChampionImmobilizations": int,
        "enemyJungleMonsterKills": int,
        "epicMonsterKillsNearEnemyJungler": int,
        "epicMonsterKillsWithin30SecondsOfSpawn": int,
        "epicMonsterSteals": int,
        "epicMonsterStolenWithoutSmite": int,
        "firstTurretKilled": int,
        "firstTurretKilledTime": float,
        "flawlessAces": int,
        "fullTeamTakedown": int,
        "gameLength": float,
        "getTakedownsInAllLanesEarlyJungleAsLaner": int,
        "goldPerMinute": float,
        "hadOpenNexus": int,
        "immobilizeAndKillWithAlly": int,
        "initialBuffCount": int,
        "initialCrabCount": int,
        "jungleCsBefore10Minutes": float,
        "junglerTakedownsNearDamagedEpicMonster": int,
        "kTurretsDestroyedBeforePlatesFall": int,
        "kda": float,
        "killAfterHiddenWithAlly": int,
        "killParticipation": float,
        "killedChampTookFullTeamDamageSurvived": int,
        "killingSprees": int,
        "killsNearEnemyTurret": int,
        "killsOnOtherLanesEarlyJungleAsLaner": int,
        "killsOnRecentlyHealedByAramPack": int,
        "killsUnderOwnTurret": int,
        "killsWithHelpFromEpicMonster": int,
        "knockEnemyIntoTeamAndKill": int,
        "landSkillShotsEarlyGame": int,
        "laneMinionsFirst10Minutes": int,
        "laningPhaseGoldExpAdvantage": int,
        "legendaryCount": int,
        "lostAnInhibitor": int,
        "maxCsAdvantageOnLaneOpponent": float,
        "maxKillDeficit": int,
        "maxLevelLeadLaneOpponent": int,
        "mejaisFullStackInTime": int,
        "moreEnemyJungleThanOpponent": float,
        "multiKillOneSpell": int,
        "multiTurretRiftHeraldCount": int,
        "multikills": int,
        "multikillsAfterAggressiveFlash": int,
        "mythicItemUsed": int,
        "outerTurretExecutesBefore10Minutes": int,
        "outnumberedKills": int,
        "outnumberedNexusKill": int,
        "perfectDragonSoulsTaken": int,
        "perfectGame": int,
        "pickKillWithAlly": int,
        "playedChampSelectPosition": int,
        "poroExplosions": int,
        "quickCleanse": int,
        "quickFirstTurret": int,
        "quickSoloKills": int,
        "riftHeraldTakedowns": int,
        "saveAllyFromDeath": int,
        "scuttleCrabKills": int,
        "shortestTimeToAceFromFirstTakedown": float,
        "skillshotsDodged": int,
        "skillshotsHit": int,
        "snowballsHit": int,
        "soloBaronKills": int,
        "soloKills": int,
        "stealthWardsPlaced": int,
        "survivedSingleDigitHpCount": int,
        "survivedThreeImmobilizesInFight": int,
        "takedownOnFirstTurret": int,
        "takedowns": int,
        "takedownsAfterGainingLevelAdvantage": int,
        "takedownsBeforeJungleMinionSpawn": int,
        "takedownsFirstXMinutes": int,
        "takedownsInAlcove": int,
        "takedownsInEnemyFountain": int,
        "teamBaronKills": int,
        "teamDamagePercentage": float,
        "teamElderDragonKills": int,
        "teamRiftHeraldKills": int,
        "tookLargeDamageSurvived": int,
        "turretPlatesTaken": int,
        "turretTakedowns": int,
        "turretsTakenWithRiftHerald": int,
        "twentyMinionsIn3SecondsCount": int,
        "twoWardsOneSweeperCount": int,
        "unseenRecalls": int,
        "visionScoreAdvantageLaneOpponent": float,
        "visionScorePerMinute": float,
        "wardTakedowns": int,
        "wardTakedownsBefore20M": int,
        "wardsGuarded": int,
        "earliestDragonTakedown": float,
        "baronBuffGoldAdvantageOverThreshold": int,
        "teleportTakedowns": int,
        "fastestLegendary": float,
        "highestChampionDamage": int,
        "highestCrowdControlScore": int,
        "junglerKillsEarlyJungle": int,
        "killsOnLanersEarlyJungleAsJungler": int,
        "fasterSupportQuestCompletion": int,
        "highestWardKills": int,
        "soloTurretsLategame": int,
        "thirdInhibitorDestroyedTime": float,
        "HealFromMapSources": float,
        "InfernalScalePickup": int,
        "SWARM_DefeatAatrox": int,
        "SWARM_DefeatBriar": int,
        "SWARM_DefeatMiniBosses": int,
        "SWARM_EvolveWeapon": int,
        "SWARM_Have3Passives": int,
        "SWARM_KillEnemy": int,
        "SWARM_PickupGold": int,
        "SWARM_ReachLevel50": int,
        "SWARM_Survive15Min": int,
        "SWARM_WinWith5EvolvedWeapons": int,
        "fistBumpParticipation": int,
        "legendaryItemUsed": list[int],
        "voidMonsterKill": int,
    },
    total=False,
)
LolMatchV5MatchInfoParticipantPerksStatPerks class-attribute instance-attribute
LolMatchV5MatchInfoParticipantPerksStatPerks = TypedDict(
    "LolMatchV5MatchInfoParticipantPerksStatPerks",
    {"defense": int, "flex": int, "offense": int},
)
LolMatchV5MatchInfoParticipantPerksStyleSelection class-attribute instance-attribute
LolMatchV5MatchInfoParticipantPerksStyleSelection = TypedDict(
    "LolMatchV5MatchInfoParticipantPerksStyleSelection",
    {"perk": int, "var1": int, "var2": int, "var3": int},
)
LolMatchV5MatchInfoParticipantPerksStyle class-attribute instance-attribute
LolMatchV5MatchInfoParticipantPerksStyle = TypedDict(
    "LolMatchV5MatchInfoParticipantPerksStyle",
    {
        "description": str,
        "selections": list[
            LolMatchV5MatchInfoParticipantPerksStyleSelection
        ],
        "style": int,
    },
)
LolMatchV5MatchInfoParticipantPerks class-attribute instance-attribute
LolMatchV5MatchInfoParticipantPerks = TypedDict(
    "LolMatchV5MatchInfoParticipantPerks",
    {
        "statPerks": LolMatchV5MatchInfoParticipantPerksStatPerks,
        "styles": list[LolMatchV5MatchInfoParticipantPerksStyle],
    },
)
LolMatchV5MatchInfoParticipantMissions class-attribute instance-attribute
LolMatchV5MatchInfoParticipantMissions = TypedDict(
    "LolMatchV5MatchInfoParticipant",
    {
        "playerScore0": float,
        "playerScore1": float,
        "playerScore10": float,
        "playerScore11": float,
        "playerScore2": float,
        "playerScore3": float,
        "playerScore4": float,
        "playerScore5": float,
        "playerScore6": float,
        "playerScore7": float,
        "playerScore8": float,
        "playerScore9": float,
    },
)
LolMatchV5MatchInfoParticipant class-attribute instance-attribute
LolMatchV5MatchInfoParticipant = TypedDict(
    "LolMatchV5MatchInfoParticipant",
    {
        "allInPings": int,
        "assistMePings": int,
        "assists": int,
        "baitPings": NotRequired[int],
        "baronKills": int,
        "basicPings": int,
        "bountyLevel": int,
        "challenges": LolMatchV5MatchInfoParticipantChallenges,
        "champExperience": int,
        "champLevel": int,
        "championId": int,
        "championName": str,
        "championTransform": int,
        "commandPings": int,
        "consumablesPurchased": int,
        "damageDealtToBuildings": int,
        "damageDealtToObjectives": int,
        "damageDealtToTurrets": int,
        "damageSelfMitigated": int,
        "dangerPings": int,
        "deaths": int,
        "detectorWardsPlaced": int,
        "doubleKills": int,
        "dragonKills": int,
        "eligibleForProgression": bool,
        "enemyMissingPings": int,
        "enemyVisionPings": int,
        "firstBloodAssist": bool,
        "firstBloodKill": bool,
        "firstTowerAssist": bool,
        "firstTowerKill": bool,
        "gameEndedInEarlySurrender": bool,
        "gameEndedInSurrender": bool,
        "getBackPings": int,
        "goldEarned": int,
        "goldSpent": int,
        "holdPings": int,
        "individualPosition": str,
        "inhibitorKills": int,
        "inhibitorTakedowns": int,
        "inhibitorsLost": int,
        "item0": int,
        "item1": int,
        "item2": int,
        "item3": int,
        "item4": int,
        "item5": int,
        "item6": int,
        "itemsPurchased": int,
        "killingSprees": int,
        "kills": int,
        "lane": str,
        "largestCriticalStrike": int,
        "largestKillingSpree": int,
        "largestMultiKill": int,
        "longestTimeSpentLiving": int,
        "magicDamageDealt": int,
        "magicDamageDealtToChampions": int,
        "magicDamageTaken": int,
        "missions": LolMatchV5MatchInfoParticipantMissions,
        "needVisionPings": int,
        "neutralMinionsKilled": int,
        "nexusKills": int,
        "nexusLost": int,
        "nexusTakedowns": int,
        "objectivesStolen": int,
        "objectivesStolenAssists": int,
        "onMyWayPings": int,
        "participantId": int,
        "pentaKills": int,
        "perks": LolMatchV5MatchInfoParticipantPerks,
        "physicalDamageDealt": int,
        "physicalDamageDealtToChampions": int,
        "physicalDamageTaken": int,
        "placement": int,
        "playerAugment1": int,
        "playerAugment2": int,
        "playerAugment3": int,
        "playerAugment4": int,
        "playerAugment5": int,
        "playerAugment6": int,
        "playerSubteamId": int,
        "playerScore0": NotRequired[float],
        "playerScore1": NotRequired[float],
        "playerScore10": NotRequired[float],
        "playerScore11": NotRequired[float],
        "playerScore2": NotRequired[float],
        "playerScore3": NotRequired[float],
        "playerScore4": NotRequired[float],
        "playerScore5": NotRequired[float],
        "playerScore6": NotRequired[float],
        "playerScore7": NotRequired[float],
        "playerScore8": NotRequired[float],
        "playerScore9": NotRequired[float],
        "profileIcon": int,
        "pushPings": int,
        "puuid": str,
        "quadraKills": int,
        "riotIdTagline": str,
        "riotIdGameName": str,
        "role": str,
        "sightWardsBoughtInGame": int,
        "spell1Casts": int,
        "spell2Casts": int,
        "spell3Casts": int,
        "spell4Casts": int,
        "subteamPlacement": int,
        "summoner1Casts": int,
        "summoner1Id": int,
        "summoner2Casts": int,
        "summoner2Id": int,
        "summonerId": str,
        "summonerLevel": int,
        "summonerName": NotRequired[str],
        "teamEarlySurrendered": bool,
        "teamId": int,
        "teamPosition": str,
        "timeCCingOthers": int,
        "timePlayed": int,
        "totalAllyJungleMinionsKilled": int,
        "totalDamageDealt": int,
        "totalDamageDealtToChampions": int,
        "totalDamageShieldedOnTeammates": int,
        "totalDamageTaken": int,
        "totalEnemyJungleMinionsKilled": int,
        "totalHeal": int,
        "totalHealsOnTeammates": int,
        "totalMinionsKilled": int,
        "totalTimeCCDealt": int,
        "totalTimeSpentDead": int,
        "totalUnitsHealed": int,
        "tripleKills": int,
        "trueDamageDealt": int,
        "trueDamageDealtToChampions": int,
        "trueDamageTaken": int,
        "turretKills": int,
        "turretTakedowns": int,
        "turretsLost": int,
        "unrealKills": int,
        "visionClearedPings": int,
        "visionScore": int,
        "visionWardsBoughtInGame": int,
        "wardsKilled": int,
        "wardsPlaced": int,
        "retreatPings": NotRequired[int],
        "win": bool,
    },
)
LolMatchV5MatchInfoTeamBan class-attribute instance-attribute
LolMatchV5MatchInfoTeamBan = TypedDict(
    "LolMatchV5MatchInfoTeamBan", {"championId": int, "pickTurn": int}
)
LolMatchV5MatchInfoTeamObjectives class-attribute instance-attribute
LolMatchV5MatchInfoTeamObjectives = TypedDict(
    "LolMatchV5MatchInfoTeamObjectives",
    {
        "baron": LolMatchV5MatchTeamObjective,
        "champion": LolMatchV5MatchTeamObjective,
        "dragon": LolMatchV5MatchTeamObjective,
        "horde": NotRequired[LolMatchV5MatchTeamObjective],
        "inhibitor": LolMatchV5MatchTeamObjective,
        "riftHerald": LolMatchV5MatchTeamObjective,
        "tower": LolMatchV5MatchTeamObjective,
    },
)
LolMatchV5MatchInfoTeam class-attribute instance-attribute
LolMatchV5MatchInfoTeam = TypedDict(
    "LolMatchV5MatchInfoTeam",
    {
        "bans": list[LolMatchV5MatchInfoTeamBan],
        "objectives": LolMatchV5MatchInfoTeamObjectives,
        "teamId": int,
        "win": bool,
    },
)
LolMatchV5MatchInfo class-attribute instance-attribute
LolMatchV5MatchInfo = TypedDict(
    "LolMatchV5MatchInfo",
    {
        "gameCreation": int,
        "gameDuration": int,
        "gameEndTimestamp": int,
        "gameId": int,
        "gameMode": str,
        "gameName": str,
        "gameStartTimestamp": int,
        "gameType": str,
        "gameVersion": str,
        "mapId": int,
        "participants": list[LolMatchV5MatchInfoParticipant],
        "platformId": str,
        "queueId": int,
        "teams": list[LolMatchV5MatchInfoTeam],
        "tournamentCode": str,
        "endOfGameResult": str,
    },
)
LolMatchV5Match class-attribute instance-attribute
LolMatchV5Match = TypedDict(
    "LolMatchV5Match",
    {
        "metadata": LolMatchV5MatchMetadata,
        "info": LolMatchV5MatchInfo,
    },
)
LolMatchV5MatchTimelineParticipantFrameChampionStats class-attribute instance-attribute
LolMatchV5MatchTimelineParticipantFrameChampionStats = TypedDict(
    "LolMatchV5MatchTimelineParticipantFrameChampionStats",
    {
        "abilityHaste": int,
        "abilityPower": int,
        "armor": int,
        "armorPen": int,
        "armorPenPercent": int,
        "attackDamage": int,
        "attackSpeed": int,
        "bonusArmorPenPercent": int,
        "bonusMagicPenPercent": int,
        "ccReduction": int,
        "cooldownReduction": int,
        "health": int,
        "healthMax": int,
        "healthRegen": int,
        "lifesteal": int,
        "magicPen": int,
        "magicPenPercent": int,
        "magicResist": int,
        "movementSpeed": int,
        "omnivamp": int,
        "physicalVamp": int,
        "power": int,
        "powerMax": int,
        "powerRegen": int,
        "spellVamp": int,
    },
)
LolMatchV5MatchTimelineParticipantFrameDamageStats class-attribute instance-attribute
LolMatchV5MatchTimelineParticipantFrameDamageStats = TypedDict(
    "LolMatchV5MatchTimelineParticipantFrameDamageStats",
    {
        "magicDamageDone": int,
        "magicDamageDoneToChampions": int,
        "magicDamageTaken": int,
        "physicalDamageDone": int,
        "physicalDamageDoneToChampions": int,
        "physicalDamageTaken": int,
        "totalDamageDone": int,
        "totalDamageDoneToChampions": int,
        "totalDamageTaken": int,
        "trueDamageDone": int,
        "trueDamageDoneToChampions": int,
        "trueDamageTaken": int,
    },
)
LolMatchV5MatchTimelinePosition class-attribute instance-attribute
LolMatchV5MatchTimelinePosition = TypedDict(
    "LolMatchV5MatchTimelinePosition", {"x": int, "y": int}
)
LolMatchV5MatchTimelineParticipantFrame class-attribute instance-attribute
LolMatchV5MatchTimelineParticipantFrame = TypedDict(
    "LolMatchV5MatchTimelineParticipantFrame",
    {
        "championStats": LolMatchV5MatchTimelineParticipantFrameChampionStats,
        "currentGold": int,
        "damageStats": LolMatchV5MatchTimelineParticipantFrameDamageStats,
        "goldPerSecond": int,
        "jungleMinionsKilled": int,
        "level": int,
        "minionsKilled": int,
        "participantId": int,
        "position": LolMatchV5MatchTimelinePosition,
        "timeEnemySpentControlled": int,
        "totalGold": int,
        "xp": int,
    },
)
LolMatchV5MatchTimelineEventDamage class-attribute instance-attribute
LolMatchV5MatchTimelineEventDamage = TypedDict(
    "LolMatchV5MatchTimelineEventDamage",
    {
        "basic": bool,
        "magicDamage": int,
        "name": str,
        "participantId": int,
        "physicalDamage": int,
        "spellName": str,
        "spellSlot": int,
        "trueDamage": int,
        "type": str,
    },
)
LolMatchV5MatchTimelineMetadata class-attribute instance-attribute
LolMatchV5MatchTimelineMetadata = TypedDict(
    "LolMatchV5MatchTimelineMetadata",
    {"dataVersion": str, "matchId": str, "participants": list[str]},
)
LolMatchV5MatchTimelineInfoFrameEvent class-attribute instance-attribute
LolMatchV5MatchTimelineInfoFrameEvent = TypedDict(
    "LolMatchV5MatchTimelineInfoFrameEvent",
    {
        "afterId": NotRequired[int],
        "beforeId": NotRequired[int],
        "goldGain": NotRequired[int],
        "participantId": NotRequired[int],
        "timestamp": int,
        "type": str,
        "creatorId": NotRequired[int],
        "wardType": NotRequired[str],
        "level": NotRequired[int],
        "itemId": NotRequired[int],
        "assistingParticipantIds": NotRequired[list[int]],
        "bounty": NotRequired[int],
        "killStreakLength": NotRequired[int],
        "killerId": NotRequired[int],
        "position": NotRequired[LolMatchV5MatchTimelinePosition],
        "shutdownBounty": NotRequired[int],
        "victimDamageDealt": NotRequired[
            list[LolMatchV5MatchTimelineEventDamage]
        ],
        "victimDamageReceived": NotRequired[
            list[LolMatchV5MatchTimelineEventDamage]
        ],
        "victimId": NotRequired[int],
        "levelUpType": NotRequired[str],
        "skillSlot": NotRequired[int],
        "realTimestamp": NotRequired[int],
    },
)
LolMatchV5MatchTimelineInfoFrame class-attribute instance-attribute
LolMatchV5MatchTimelineInfoFrame = TypedDict(
    "LolMatchV5MatchTimelineInfoFrame",
    {
        "events": list[LolMatchV5MatchTimelineInfoFrameEvent],
        "participantFrames": dict[
            str, LolMatchV5MatchTimelineParticipantFrame
        ],
        "timestamp": int,
    },
)
LolMatchV5MatchTimelineInfoParticipants class-attribute instance-attribute
LolMatchV5MatchTimelineInfoParticipants = TypedDict(
    "LolMatchV5MatchTimelineInfoParticipants",
    {"participantId": int, "puuid": str},
)
LolMatchV5MatchTimelineInfo class-attribute instance-attribute
LolMatchV5MatchTimelineInfo = TypedDict(
    "LolMatchV5MatchTimelineInfo",
    {
        "frameInterval": int,
        "frames": list[LolMatchV5MatchTimelineInfoFrame],
        "gameId": int,
        "participants": list[LolMatchV5MatchTimelineInfoParticipants],
        "endOfGameResult": str,
    },
)
LolMatchV5MatchTimeline class-attribute instance-attribute
LolMatchV5MatchTimeline = TypedDict(
    "LolMatchV5MatchTimeline",
    {
        "metadata": LolMatchV5MatchTimelineMetadata,
        "info": LolMatchV5MatchTimelineInfo,
    },
)
LolSpectatorV4GameParticipantPerks class-attribute instance-attribute
LolSpectatorV4GameParticipantPerks = TypedDict(
    "LolSpectatorV4GameParticipantPerks",
    {"perkIds": list[int], "perkStyle": int, "perkSubStyle": int},
)
LolSpectatorV4GameParticipant class-attribute instance-attribute
LolSpectatorV4GameParticipant = TypedDict(
    "LolSpectatorV4GameParticipant",
    {
        "gameCustomizationObjects": NotRequired[list[str]],
        "perks": NotRequired[LolSpectatorV4GameParticipantPerks],
        "puuid": str,
        "summonerId": str,
        "teamId": int,
        "spell1Id": int,
        "spell2Id": int,
        "championId": int,
        "profileIconId": int,
        "summonerName": NotRequired[str],
        "bot": bool,
    },
)
LolSpectatorV4GameObservers class-attribute instance-attribute
LolSpectatorV4GameObservers = TypedDict(
    "LolSpectatorV4GameObservers", {"encryptionKey": str}
)
LolSpectatorV4Game class-attribute instance-attribute
LolSpectatorV4Game = TypedDict(
    "LolSpectatorV4Game",
    {
        "gameId": int,
        "mapId": int,
        "gameMode": str,
        "gameType": str,
        "gameQueueConfigId": int,
        "participants": list[LolSpectatorV4GameParticipant],
        "observers": LolSpectatorV4GameObservers,
        "platformId": str,
        "bannedChampions": list[int],
        "gameStartTime": int,
        "gameLength": int,
    },
)
LolSpectatorV4GameList class-attribute instance-attribute
LolSpectatorV4GameList = TypedDict(
    "LolSpectatorV4GameList",
    {
        "gameList": list[LolSpectatorV4Game],
        "clientRefreshInterval": int,
    },
)
LolSpectatorV5GameParticipant class-attribute instance-attribute
LolSpectatorV5GameParticipant = TypedDict(
    "LolSpectatorV5GameParticipant",
    {
        "gameCustomizationObjects": NotRequired[list[str]],
        "perks": NotRequired[LolSpectatorV4GameParticipantPerks],
        "puuid": str,
        "summonerId": str,
        "teamId": int,
        "spell1Id": int,
        "spell2Id": int,
        "championId": int,
        "profileIconId": int,
        "riotId": str,
        "bot": bool,
    },
)
LolSpectatorV5GameBannedChampion class-attribute instance-attribute
LolSpectatorV5GameBannedChampion = TypedDict(
    "LolSpectatorV4Game",
    {"championId": int, "pickTurn": int, "teamId": int},
)
LolSpectatorV5Game class-attribute instance-attribute
LolSpectatorV5Game = TypedDict(
    "LolSpectatorV5Game",
    {
        "gameId": int,
        "mapId": int,
        "gameMode": str,
        "gameType": str,
        "gameQueueConfigId": int,
        "participants": list[LolSpectatorV5GameParticipant],
        "observers": LolSpectatorV4GameObservers,
        "platformId": str,
        "bannedChampions": list[LolSpectatorV5GameBannedChampion],
        "gameStartTime": NotRequired[int],
        "gameLength": int,
    },
)
LolSpectatorV5GameList class-attribute instance-attribute
LolSpectatorV5GameList = TypedDict(
    "LolSpectatorV5GameList", {"gameList": list[LolSpectatorV5Game]}
)
LolSummonerV4Summoner class-attribute instance-attribute
LolSummonerV4Summoner = TypedDict(
    "SummonerV4Summoner",
    {
        "id": str,
        "accountId": str,
        "puuid": str,
        "name": NotRequired[str],
        "profileIconId": int,
        "revisionDate": int,
        "summonerLevel": int,
    },
)
TftLeagueV1LeagueEntry class-attribute instance-attribute
TftLeagueV1LeagueEntry = TypedDict(
    "TftLeagueV1LeagueEntry",
    {
        "summonerId": str,
        "summonerName": NotRequired[str],
        "rank": str,
        "leaguePoints": int,
        "wins": int,
        "losses": int,
        "hotStreak": bool,
        "veteran": bool,
        "freshBlood": bool,
        "inactive": bool,
    },
)
TftLeagueV1LeagueFullEntry class-attribute instance-attribute
TftLeagueV1LeagueFullEntry = TypedDict(
    "TftLeagueV1LeagueFullEntry",
    {
        "leagueId": str,
        "puuid": str,
        "summonerId": str,
        "summonerName": NotRequired[str],
        "queueType": str,
        "tier": str,
        "rank": str,
        "leaguePoints": int,
        "wins": int,
        "losses": int,
        "hotStreak": bool,
        "veteran": bool,
        "freshBlood": bool,
        "inactive": bool,
        "miniSeries": NotRequired[LolLeagueV4LeagueEntryMiniSeries],
    },
)
TftLeagueV1League class-attribute instance-attribute
TftLeagueV1League = TypedDict(
    "TftLeagueV1League",
    {
        "tier": str,
        "leagueId": str,
        "queue": str,
        "name": str,
        "entries": list[TftLeagueV1LeagueEntry],
    },
)
TftMatchV1MatchMetadata class-attribute instance-attribute
TftMatchV1MatchMetadata = TypedDict(
    "TftMatchV1MatchMetadata",
    {"data_version": str, "match_id": str, "participants": list[str]},
)
TftMatchV1MatchInfoParticipantCompanion class-attribute instance-attribute
TftMatchV1MatchInfoParticipantCompanion = TypedDict(
    "TftMatchV1MatchInfoParticipantCompanion",
    {
        "content_ID": str,
        "item_ID": int,
        "skin_ID": int,
        "species": str,
    },
)
TftMatchV1MatchInfoParticipantTrait class-attribute instance-attribute
TftMatchV1MatchInfoParticipantTrait = TypedDict(
    "TftMatchV1MatchInfoParticipantTrait",
    {
        "name": str,
        "num_units": int,
        "style": int,
        "tier_current": int,
        "tier_total": int,
    },
)
TftMatchV1MatchInfoParticipantUnit class-attribute instance-attribute
TftMatchV1MatchInfoParticipantUnit = TypedDict(
    "TftMatchV1MatchInfoParticipantUnit",
    {
        "character_id": str,
        "itemNames": list[str],
        "name": str,
        "rarity": int,
        "tier": int,
    },
)
TftMatchV1MatchInfoParticipantMission class-attribute instance-attribute
TftMatchV1MatchInfoParticipantMission = TypedDict(
    "TftMatchV1MatchInfoParticipantMission",
    {
        "Assists": NotRequired[int],
        "DamageDealt": NotRequired[int],
        "DamageDealtToObjectives": NotRequired[int],
        "DamageDealtToTurrets": NotRequired[int],
        "DamageTaken": NotRequired[int],
        "Deaths": NotRequired[int],
        "DoubleKills": NotRequired[int],
        "GoldEarned": NotRequired[int],
        "GoldSpent": NotRequired[int],
        "InhibitorsDestroyed": NotRequired[int],
        "KillingSprees": NotRequired[int],
        "Kills": NotRequired[int],
        "LargestKillingSpree": NotRequired[int],
        "LargestMultiKill": NotRequired[int],
        "MagicDamageDealt": NotRequired[int],
        "MagicDamageDealtToChampions": NotRequired[int],
        "MagicDamageTaken": NotRequired[int],
        "NeutralMinionsKilledTeamJungle": NotRequired[int],
        "PentaKills": NotRequired[int],
        "PhysicalDamageDealt": NotRequired[int],
        "PhysicalDamageDealtToChampions": NotRequired[int],
        "PhysicalDamageTaken": NotRequired[int],
        "PlayerScore0": NotRequired[int],
        "PlayerScore1": NotRequired[int],
        "PlayerScore10": NotRequired[int],
        "PlayerScore11": NotRequired[int],
        "PlayerScore2": NotRequired[int],
        "PlayerScore3": NotRequired[int],
        "PlayerScore4": NotRequired[int],
        "PlayerScore5": NotRequired[int],
        "PlayerScore6": NotRequired[int],
        "PlayerScore9": NotRequired[int],
        "QuadraKills": NotRequired[int],
        "Spell1Casts": NotRequired[int],
        "Spell2Casts": NotRequired[int],
        "Spell3Casts": NotRequired[int],
        "Spell4Casts": NotRequired[int],
        "SummonerSpell1Casts": NotRequired[int],
        "TimeCCOthers": NotRequired[int],
        "TotalDamageDealtToChampions": NotRequired[int],
        "TotalMinionsKilled": NotRequired[int],
        "TripleKills": NotRequired[int],
        "TrueDamageDealt": NotRequired[int],
        "TrueDamageDealtToChampions": NotRequired[int],
        "TrueDamageTaken": NotRequired[int],
        "UnrealKills": NotRequired[int],
        "VisionScore": NotRequired[int],
        "WardsKilled": NotRequired[int],
    },
)
TftMatchV1MatchInfoParticipantSkillTree class-attribute instance-attribute
TftMatchV1MatchInfoParticipantSkillTree = TypedDict(
    "TftMatchV1MatchInfoParticipantSkillTree",
    {
        "EventSkill_DemotionProtection": int,
        "EventSkill_PlacementDelta": int,
    },
)
TftMatchV1MatchInfoParticipant class-attribute instance-attribute
TftMatchV1MatchInfoParticipant = TypedDict(
    "TftMatchV1MatchInfoParticipant",
    {
        "augments": list[str],
        "companion": TftMatchV1MatchInfoParticipantCompanion,
        "gold_left": int,
        "last_round": int,
        "level": int,
        "placement": int,
        "players_eliminated": int,
        "puuid": str,
        "time_eliminated": float,
        "total_damage_to_players": int,
        "traits": list[TftMatchV1MatchInfoParticipantTrait],
        "units": list[TftMatchV1MatchInfoParticipantUnit],
        "missions": TftMatchV1MatchInfoParticipantMission,
        "riotIdGameName": str,
        "riotIdTagline": str,
        "skill_tree": NotRequired[
            TftMatchV1MatchInfoParticipantSkillTree
        ],
        "partner_group_id": int,
        "win": bool,
    },
)
TftMatchV1MatchInfo class-attribute instance-attribute
TftMatchV1MatchInfo = TypedDict(
    "TftMatchV1MatchInfo",
    {
        "game_datetime": int,
        "game_length": float,
        "game_version": str,
        "participants": list[TftMatchV1MatchInfoParticipant],
        "queue_id": int,
        "tft_game_type": str,
        "tft_set_core_name": str,
        "tft_set_number": int,
        "endOfGameResult": str,
        "gameCreation": int,
        "gameId": int,
        "mapId": int,
        "queueId": int,
    },
)
TftMatchV1Match class-attribute instance-attribute
TftMatchV1Match = TypedDict(
    "TftMatchV1Match",
    {
        "metadata": TftMatchV1MatchMetadata,
        "info": TftMatchV1MatchInfo,
    },
)
TftSummonerV1Summoner class-attribute instance-attribute
TftSummonerV1Summoner = LolSummonerV4Summoner
LorRankedV1LeaderboardPlayer class-attribute instance-attribute
LorRankedV1LeaderboardPlayer = TypedDict(
    "LorRankedV1LeaderboardPlayer",
    {"name": str, "rank": int, "lp": float},
)
LorRankedV1Leaderboard class-attribute instance-attribute
LorRankedV1Leaderboard = TypedDict(
    "LorRankedV1Leaderboard",
    {"players": list[LorRankedV1LeaderboardPlayer]},
)
LorMatchV1MatchMetadata class-attribute instance-attribute
LorMatchV1MatchMetadata = TypedDict(
    "LorMatchV1MatchMetadata",
    {"data_version": str, "match_id": str, "participants": list[str]},
)
LorMatchV1MatchInfoPlayer class-attribute instance-attribute
LorMatchV1MatchInfoPlayer = TypedDict(
    "LorMatchV1MatchInfoPlayer",
    {
        "puuid": str,
        "deck_id": str,
        "deck_code": str,
        "factions": list[str],
        "game_outcome": str,
        "order_of_play": int,
    },
)
LorMatchV1MatchInfo class-attribute instance-attribute
LorMatchV1MatchInfo = TypedDict(
    "LorMatchV1MatchInfo",
    {
        "game_format": str,
        "game_mode": str,
        "game_type": str,
        "game_start_time_utc": str,
        "game_version": str,
        "players": list[LorMatchV1MatchInfoPlayer],
        "total_turn_count": int,
    },
)
LorMatchV1Match class-attribute instance-attribute
LorMatchV1Match = TypedDict(
    "LorMatchV1Match",
    {
        "metadata": LorMatchV1MatchMetadata,
        "info": LorMatchV1MatchInfo,
    },
)
ValContentV1ContentsAssetLocalizedNames class-attribute instance-attribute
ValContentV1ContentsAssetLocalizedNames = TypedDict(
    "ValContentV1ContentsAssetLocalizedNames",
    {
        "ar-AE": str,
        "de-DE": str,
        "en-US": str,
        "es-ES": str,
        "es-MX": str,
        "fr-FR": str,
        "id-ID": str,
        "it-IT": str,
        "ja-JP": str,
        "ko-KR": str,
        "pl-PL": str,
        "pt-BR": str,
        "ru-RU": str,
        "th-TH": str,
        "tr-TR": str,
        "vi-VN": str,
        "zh-CN": str,
        "zh-TW": str,
    },
)
ValContentV1ContentsAsset class-attribute instance-attribute
ValContentV1ContentsAsset = TypedDict(
    "ValContentV1ContentsAsset",
    {
        "name": str,
        "id": str,
        "localizedNames": NotRequired[
            ValContentV1ContentsAssetLocalizedNames
        ],
        "assetName": str,
        "assetPath": NotRequired[str],
    },
)
ValContentV1ContentsAct class-attribute instance-attribute
ValContentV1ContentsAct = TypedDict(
    "ValContentV1ContentsAct",
    {
        "id": str,
        "localizedNames": NotRequired[
            ValContentV1ContentsAssetLocalizedNames
        ],
        "parentId": str,
        "type": str,
        "name": str,
        "isActive": bool,
    },
)
ValContentV1Contents class-attribute instance-attribute
ValContentV1Contents = TypedDict(
    "ValContentV1Contents",
    {
        "version": str,
        "characters": list[ValContentV1ContentsAsset],
        "maps": list[ValContentV1ContentsAsset],
        "chromas": list[ValContentV1ContentsAsset],
        "skins": list[ValContentV1ContentsAsset],
        "skinLevels": list[ValContentV1ContentsAsset],
        "equips": list[ValContentV1ContentsAsset],
        "gameModes": list[ValContentV1ContentsAsset],
        "totems": list[ValContentV1ContentsAsset],
        "sprays": list[ValContentV1ContentsAsset],
        "sprayLevels": list[ValContentV1ContentsAsset],
        "charms": list[ValContentV1ContentsAsset],
        "charmLevels": list[ValContentV1ContentsAsset],
        "playerCards": list[ValContentV1ContentsAsset],
        "playerTitles": list[ValContentV1ContentsAsset],
        "acts": list[ValContentV1ContentsAct],
        "ceremonies": list[ValContentV1ContentsAsset],
    },
)
ValRankedV1LeaderboardTierDetail class-attribute instance-attribute
ValRankedV1LeaderboardTierDetail = TypedDict(
    "ValRankedV1LeaderboardTierDetail",
    {
        "rankedRatingThreshold": int,
        "startingPage": int,
        "startingIndex": int,
    },
)
ValRankedV1LeaderboardPlayer class-attribute instance-attribute
ValRankedV1LeaderboardPlayer = TypedDict(
    "ValRankedV1LeaderboardPlayer",
    {
        "puuid": str,
        "gameName": str,
        "tagLine": str,
        "leaderboardRank": int,
        "rankedRating": int,
        "numberOfWins": int,
        "competitiveTier": int,
    },
)
ValRankedV1LeaderboardTierDetails class-attribute instance-attribute
ValRankedV1LeaderboardTierDetails = TypedDict(
    "ValRankedV1LeaderboardTierDetails",
    {
        "24": ValRankedV1LeaderboardTierDetail,
        "25": ValRankedV1LeaderboardTierDetail,
        "26": ValRankedV1LeaderboardTierDetail,
        "27": ValRankedV1LeaderboardTierDetail,
    },
)
ValRankedV1Leaderboard class-attribute instance-attribute
ValRankedV1Leaderboard = TypedDict(
    "ValRankedV1Leaderboard",
    {
        "actId": str,
        "players": list[ValRankedV1LeaderboardPlayer],
        "totalPlayers": int,
        "immortalStartingPage": int,
        "immortalStartingIndex": int,
        "topTierRRThreshold": int,
        "tierDetails": ValRankedV1LeaderboardTierDetails,
        "startIndex": int,
        "query": str,
        "shard": str,
    },
)
ValMatchV1MatchLocation class-attribute instance-attribute
ValMatchV1MatchLocation = TypedDict(
    "ValMatchV1MatchLocation", {"x": float, "y": float}
)
ValMatchV1MatchPlayerLocation class-attribute instance-attribute
ValMatchV1MatchPlayerLocation = TypedDict(
    "ValMatchV1MatchPlayerLocation",
    {
        "puuid": str,
        "viewRadians": float,
        "location": ValMatchV1MatchLocation,
    },
)
ValMatchV1MatchInfo class-attribute instance-attribute
ValMatchV1MatchInfo = TypedDict(
    "ValMatchV1MatchInfo",
    {
        "matchId": str,
        "mapId": str,
        "gameVersion": str,
        "gameLengthMillis": int,
        "region": str,
        "gameStartMillis": int,
        "provisioningFlowId": str,
        "isCompleted": bool,
        "customGameName": str,
        "queueId": str,
        "gameMode": str,
        "isRanked": bool,
        "premierMatchInfo": dict,
        "seasonId": str,
    },
)
ValMatchV1MatchPlayerStatsAbilityCasts class-attribute instance-attribute
ValMatchV1MatchPlayerStatsAbilityCasts = TypedDict(
    "ValMatchV1MatchPlayerStatsAbilityCasts",
    {
        "grenadeCasts": int,
        "ability1Casts": int,
        "ability2Casts": int,
        "ultimateCasts": int,
    },
)
ValMatchV1MatchPlayerStats class-attribute instance-attribute
ValMatchV1MatchPlayerStats = TypedDict(
    "ValMatchV1MatchPlayerStats",
    {
        "score": int,
        "roundsPlayed": int,
        "kills": int,
        "deaths": int,
        "assists": int,
        "playtimeMillis": int,
        "abilityCasts": ValMatchV1MatchPlayerStatsAbilityCasts | None,
    },
)
ValMatchV1MatchPlayer class-attribute instance-attribute
ValMatchV1MatchPlayer = TypedDict(
    "ValMatchV1MatchPlayer",
    {
        "puuid": str,
        "gameName": str,
        "tagLine": str,
        "teamId": str,
        "partyId": str,
        "characterId": str,
        "stats": ValMatchV1MatchPlayerStats,
        "competitiveTier": int,
        "isObserver": bool,
        "playerCard": str,
        "playerTitle": str,
        "accountLevel": int,
    },
)
ValMatchV1MatchTeam class-attribute instance-attribute
ValMatchV1MatchTeam = TypedDict(
    "ValMatchV1MatchTeam",
    {
        "teamId": str,
        "won": bool,
        "roundsPlayed": int,
        "roundsWon": int,
        "numPoints": int,
    },
)
ValMatchV1MatchRoundResultPlayerStatFinishingDamage class-attribute instance-attribute
ValMatchV1MatchRoundResultPlayerStatFinishingDamage = TypedDict(
    "ValMatchV1MatchRoundResultPlayerStatFinishingDamage",
    {
        "damageType": str,
        "damageItem": str,
        "isSecondaryFireMode": bool,
    },
)
ValMatchV1MatchRoundResultPlayerStatKill class-attribute instance-attribute
ValMatchV1MatchRoundResultPlayerStatKill = TypedDict(
    "ValMatchV1MatchRoundResultPlayerStatKill",
    {
        "timeSinceGameStartMillis": int,
        "timeSinceRoundStartMillis": int,
        "killer": str,
        "victim": str,
        "victimLocation": ValMatchV1MatchLocation,
        "assistants": list[str],
        "playerLocations": list[ValMatchV1MatchPlayerLocation],
        "finishingDamage": ValMatchV1MatchRoundResultPlayerStatFinishingDamage,
    },
)
ValMatchV1MatchRoundResultPlayerStatDamage class-attribute instance-attribute
ValMatchV1MatchRoundResultPlayerStatDamage = TypedDict(
    "ValMatchV1MatchRoundResultPlayerStatDamage",
    {
        "receiver": str,
        "damage": int,
        "legshots": int,
        "bodyshots": int,
        "headshots": int,
    },
)
ValMatchV1MatchRoundResultPlayerStatEconomy class-attribute instance-attribute
ValMatchV1MatchRoundResultPlayerStatEconomy = TypedDict(
    "ValMatchV1MatchRoundResultPlayerStatEconomy",
    {
        "loadoutValue": int,
        "weapon": str,
        "armor": str,
        "remaining": int,
        "spent": int,
    },
)
ValMatchV1MatchRoundResultPlayerStatAbility class-attribute instance-attribute
ValMatchV1MatchRoundResultPlayerStatAbility = TypedDict(
    "ValMatchV1MatchRoundResultPlayerStatAbility",
    {
        "grenadeEffects": str | None,
        "ability1Effects": str | None,
        "ability2Effects": str | None,
        "ultimateEffects": str | None,
    },
)
ValMatchV1MatchRoundResultPlayerStat class-attribute instance-attribute
ValMatchV1MatchRoundResultPlayerStat = TypedDict(
    "ValMatchV1MatchRoundResultPlayerStat",
    {
        "puuid": str,
        "kills": list[ValMatchV1MatchRoundResultPlayerStatKill],
        "damage": list[ValMatchV1MatchRoundResultPlayerStatDamage],
        "score": int,
        "economy": ValMatchV1MatchRoundResultPlayerStatEconomy,
        "ability": ValMatchV1MatchRoundResultPlayerStatAbility,
    },
)
ValMatchV1MatchRoundResult class-attribute instance-attribute
ValMatchV1MatchRoundResult = TypedDict(
    "ValMatchV1MatchRoundResult",
    {
        "roundNum": int,
        "roundResult": str,
        "roundCeremony": str,
        "winningTeam": str,
        "winningTeamRole": str,
        "bombPlanter": str | None,
        "bombDefuser": str | None,
        "plantRoundTime": int,
        "plantPlayerLocations": list[ValMatchV1MatchPlayerLocation]
        | None,
        "plantLocation": ValMatchV1MatchLocation,
        "plantSite": str,
        "defuseRoundTime": int,
        "defusePlayerLocations": list[ValMatchV1MatchPlayerLocation]
        | None,
        "defuseLocation": ValMatchV1MatchLocation,
        "playerStats": list[ValMatchV1MatchRoundResultPlayerStat],
        "roundResultCode": str,
    },
)
ValMatchV1Match class-attribute instance-attribute
ValMatchV1Match = TypedDict(
    "ValMatchV1Match",
    {
        "matchInfo": ValMatchV1MatchInfo,
        "players": list[ValMatchV1MatchPlayer],
        "coaches": list[str],
        "teams": list[ValMatchV1MatchTeam],
        "roundResults": list[ValMatchV1MatchRoundResult],
    },
)
ValMatchV1MatchlistHistory class-attribute instance-attribute
ValMatchV1MatchlistHistory = TypedDict(
    "ValMatchV1MatchlistHistory",
    {"matchId": str, "gameStartTimeMillis": int, "queueId": str},
)
ValMatchV1Matchlist class-attribute instance-attribute
ValMatchV1Matchlist = TypedDict(
    "ValMatchV1Matchlist",
    {"puuid": str, "history": list[ValMatchV1MatchlistHistory]},
)
ValMatchV1RecentMatches class-attribute instance-attribute
ValMatchV1RecentMatches = TypedDict(
    "ValMatchV1RecentMatches",
    {"currentTime": int, "matchIds": list[str]},
)
StatusV1PlatformDataLocaleContent class-attribute instance-attribute
StatusV1PlatformDataLocaleContent = TypedDict(
    "StatusV1PlatformDataLocaleContent",
    {"locale": str, "content": str},
)
StatusV1PlatformDataEntryUpdate class-attribute instance-attribute
StatusV1PlatformDataEntryUpdate = TypedDict(
    "StatusV1PlatformDataEntryUpdate",
    {
        "id": int,
        "created_at": str,
        "updated_at": str,
        "publish": bool,
        "author": str,
        "translations": list[StatusV1PlatformDataLocaleContent],
        "publish_locations": list[str],
    },
)
StatusV1PlatformDataEntry class-attribute instance-attribute
StatusV1PlatformDataEntry = TypedDict(
    "StatusV1PlatformDataEntry",
    {
        "id": int,
        "created_at": str,
        "updated_at": str | None,
        "archive_at": str | None,
        "titles": list[StatusV1PlatformDataLocaleContent],
        "updates": list[StatusV1PlatformDataEntryUpdate],
        "platforms": list[str],
        "maintenance_status": str | None,
        "incident_severity": str | None,
    },
)
StatusV1PlatformData class-attribute instance-attribute
StatusV1PlatformData = TypedDict(
    "StatusV4PlatformData",
    {
        "id": str,
        "name": str,
        "locales": list[str],
        "maintenances": list[StatusV1PlatformDataEntry],
        "incidents": list[StatusV1PlatformDataEntry],
    },
)