/// <summary> /// /// </summary> /// <param name="options"></param> /// <returns></returns> public SteamGetGlobalStatsForGameResponse GetGlobalStatsForGame(SteamGetGlobalStatsForGameOptions options) { return(SteamGetGlobalStatsForGameResponse.ParseResponse(Raw.GetGlobalStatsForGame(options))); }
/// <summary> /// /// </summary> /// <param name="appId"></param> /// <param name="count"></param> /// <param name="name"></param> /// <param name="startDate"></param> /// <param name="endDate"></param> /// <returns></returns> public SteamGetGlobalStatsForGameResponse GetGlobalStatsForGame(uint appId, uint count, string name, uint?startDate = null, uint?endDate = null) { return(SteamGetGlobalStatsForGameResponse.ParseResponse(Raw.GetGlobalStatsForGame(appId, count, name, startDate, endDate))); }