/// <summary>
 ///
 /// </summary>
 /// <param name="options"></param>
 /// <returns></returns>
 public SocialHttpResponse GetGlobalAchievementPercentagesForAppv2(SteamGetGlobalAchievementPercentagesForAppOptions options)
 {
     // Some validation
     if (options == null)
     {
         throw new ArgumentNullException(nameof(options));
     }
     return(Client.DoHttpGetRequest("/ISteamUserStats/GetGlobalAchievementPercentagesForApp/v2/", options));
 }
Example #2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="options"></param>
 /// <returns></returns>
 public SteamGetGlobalAchievementPercentagesForAppv2Response GetGlobalAchievementPercentagesForAppv2(SteamGetGlobalAchievementPercentagesForAppOptions options)
 {
     return(SteamGetGlobalAchievementPercentagesForAppv2Response.ParseResponse(Raw.GetGlobalAchievementPercentagesForAppv2(options)));
 }