|
25 | 25 | import com.lukaspradel.steamapi.data.json.dota2.gameitems.GetGameItems; |
26 | 26 | import com.lukaspradel.steamapi.data.json.dota2.proplayerlist.GetProPlayerList; |
27 | 27 | import com.lukaspradel.steamapi.data.json.applist.GetAppList; |
| 28 | +import com.lukaspradel.steamapi.data.json.tf2.getplayeritems.GetPlayerItems; |
28 | 29 |
|
29 | 30 |
|
30 | 31 | /** |
|
39 | 40 | */ |
40 | 41 | public enum SteamWebApiInterfaceMethod { |
41 | 42 |
|
42 | | - GET_NEWS_FOR_APP("GetNewsForApp", GetNewsForApp.class), GET_GLOBAL_ACHIEVEMENT_PERCENTAGES_FOR_APP( |
43 | | - "GetGlobalAchievementPercentagesForApp", |
44 | | - GetGlobalAchievementPercentagesForApp.class), GET_GLOBAL_STATS_FOR_GAME( |
45 | | - "GetGlobalStatsForGame", GetGlobalStatsForGame.class), GET_PLAYER_SUMMARIES( |
46 | | - "GetPlayerSummaries", GetPlayerSummaries.class), GET_FRIEND_LIST( |
47 | | - "GetFriendList", GetFriendList.class), GET_PLAYER_ACHIEVEMENTS( |
48 | | - "GetPlayerAchievements", GetPlayerAchievements.class), GET_USER_STATS_FOR_GAME( |
49 | | - "GetUserStatsForGame", GetUserStatsForGame.class), GET_OWNED_GAMES( |
50 | | - "GetOwnedGames", GetOwnedGames.class), GET_RECENTLY_PLAYED_GAMES( |
51 | | - "GetRecentlyPlayedGames", GetRecentlyPlayedGames.class), IS_PLAYING_SHARED_GAME( |
52 | | - "IsPlayingSharedGame", IsPlayingSharedGame.class), GET_SCHEMA_FOR_GAME( |
53 | | - "GetSchemaForGame", GetSchemaForGame.class), GET_PLAYER_BANS( |
54 | | - "GetPlayerBans", GetPlayerBans.class), GET_HEROES( |
55 | | - "GetHeroes",GetHeroes.class), GET_MATCH_DETAILS( |
56 | | - "GetMatchDetails",GetMatchDetails.class), GET_MATCH_HISTORY( |
57 | | - "GetMatchHistory",GetMatchHistory.class), GET_LEAGUE_LISTING( |
58 | | - "GetLeagueListing",GetLeagueListing.class), GET_LIVE_LEAGUE_GAMES( |
59 | | - "GetLiveLeagueGames",GetLiveLeagueGames.class), GET_MATCH_HISTORY_BY_SEQUENCE_NUM( |
60 | | - "GetMatchHistoryBySequenceNum",GetMatchHistoryBySequenceNum.class), GET_TEAM_INFO_BY_TEAM_ID( |
61 | | - "GetTeamInfoByTeamID",GetTeamInfoByTeamID.class), GET_GAME_ITEMS( |
62 | | - "GetGameItems",GetGameItems.class), GET_PRO_PLAYER_LIST( |
63 | | - "GetProPlayerList",GetProPlayerList.class), GET_PLAYER_OFFICIAL_INFO( |
64 | | - "GetPlayerOfficialInfo",GetPlayerOfficialInfo.class), GET_FANTASY_PLAYER_STATS( |
65 | | - "GetFantasyPlayerStats",GetFantasyPlayerStats.class), GET_APP_LIST( |
66 | | - "GetAppList", GetAppList.class), RESOLVE_VANITY_URL( |
67 | | - "ResolveVanityURL", ResolveVanityURL.class) |
68 | | - ; |
| 43 | + GET_NEWS_FOR_APP("GetNewsForApp", GetNewsForApp.class), |
| 44 | + GET_GLOBAL_ACHIEVEMENT_PERCENTAGES_FOR_APP("GetGlobalAchievementPercentagesForApp", GetGlobalAchievementPercentagesForApp.class), |
| 45 | + GET_GLOBAL_STATS_FOR_GAME("GetGlobalStatsForGame", GetGlobalStatsForGame.class), |
| 46 | + GET_PLAYER_SUMMARIES("GetPlayerSummaries", GetPlayerSummaries.class), |
| 47 | + GET_FRIEND_LIST("GetFriendList", GetFriendList.class), |
| 48 | + GET_PLAYER_ACHIEVEMENTS("GetPlayerAchievements", GetPlayerAchievements.class), |
| 49 | + GET_USER_STATS_FOR_GAME("GetUserStatsForGame", GetUserStatsForGame.class), |
| 50 | + GET_OWNED_GAMES("GetOwnedGames", GetOwnedGames.class), |
| 51 | + GET_RECENTLY_PLAYED_GAMES("GetRecentlyPlayedGames", GetRecentlyPlayedGames.class), |
| 52 | + IS_PLAYING_SHARED_GAME("IsPlayingSharedGame", IsPlayingSharedGame.class), |
| 53 | + GET_SCHEMA_FOR_GAME("GetSchemaForGame", GetSchemaForGame.class), |
| 54 | + GET_PLAYER_BANS("GetPlayerBans", GetPlayerBans.class), |
| 55 | + GET_HEROES("GetHeroes", GetHeroes.class), |
| 56 | + GET_MATCH_DETAILS("GetMatchDetails", GetMatchDetails.class), |
| 57 | + GET_MATCH_HISTORY("GetMatchHistory", GetMatchHistory.class), |
| 58 | + GET_LEAGUE_LISTING("GetLeagueListing", GetLeagueListing.class), |
| 59 | + GET_LIVE_LEAGUE_GAMES("GetLiveLeagueGames", GetLiveLeagueGames.class), |
| 60 | + GET_MATCH_HISTORY_BY_SEQUENCE_NUM("GetMatchHistoryBySequenceNum", GetMatchHistoryBySequenceNum.class), |
| 61 | + GET_TEAM_INFO_BY_TEAM_ID("GetTeamInfoByTeamID", GetTeamInfoByTeamID.class), |
| 62 | + GET_GAME_ITEMS("GetGameItems", GetGameItems.class), |
| 63 | + GET_PRO_PLAYER_LIST("GetProPlayerList", GetProPlayerList.class), |
| 64 | + GET_PLAYER_OFFICIAL_INFO("GetPlayerOfficialInfo", GetPlayerOfficialInfo.class), |
| 65 | + GET_FANTASY_PLAYER_STATS("GetFantasyPlayerStats", GetFantasyPlayerStats.class), |
| 66 | + GET_APP_LIST("GetAppList", GetAppList.class), |
| 67 | + RESOLVE_VANITY_URL("ResolveVanityURL", ResolveVanityURL.class), |
| 68 | + GET_PLAYER_ITEMS("GetPlayerItems", GetPlayerItems.class); |
69 | 69 |
|
70 | 70 | private final String interfaceMethod; |
71 | 71 |
|
|
0 commit comments