steam_api_wrapper/
generics.rs1pub const BASE_URL: &str = "https://api.steampowered.com";
8
9pub const VERSION_V1: &str = "v1";
11pub const VERSION_V2: &str = "v2";
12
13pub const ISTEAM_USER: &str = "ISteamUser";
15pub const IPLAYER_SERVICE: &str = "IPlayerService";
16pub const ISTEAM_USER_STATS: &str = "ISteamUserStats";
17
18pub const GET_PLAYER_SUMMARIES: &str = "GetPlayerSummaries";
20pub const GET_RECENTLY_PLAYED_GAMES: &str = "GetRecentlyPlayedGames";
21pub const GET_OWNED_GAMES: &str = "GetOwnedGames";
22pub const _GET_NUMBER_OF_CURRENT_PLAYERS: &str = "GetNumberOfCurrentPlayers";
23pub const GET_PLAYER_ACHIEVEMENTS: &str = "GetPlayerAchievements";
24pub const _GET_SINGLE_GAME_PLAYTIME: &str = "GetSingleGamePlaytime";
25pub const GET_STEAM_LEVEL: &str = "GetSteamLevel";
26pub const GET_SCHEMA_FOR_GAME: &str = "GetSchemaForGame";