@@ -5124,12 +5124,12 @@ public static void SubmitScore(string memberId, int score, string leaderboardKey
5124
5124
/// List the archived versions of a leaderboard, containing past rewards, ranks, etc.
5125
5125
/// </summary>
5126
5126
/// <param name="leaderboard_key">Key of the Leaderboard</param>
5127
- /// <param name="onComplete">onComplete Action for handling the response of type LootLockerLeaderboardHistoryResponse </param>
5128
- public static void ListLeaderboardArchive ( string leaderboard_key , Action < LootLockerLeaderboardHistoryResponse > onComplete )
5127
+ /// <param name="onComplete">onComplete Action for handling the response of type LootLockerLeaderboardArchiveResponse </param>
5128
+ public static void ListLeaderboardArchive ( string leaderboard_key , Action < LootLockerLeaderboardArchiveResponse > onComplete )
5129
5129
{
5130
5130
if ( ! CheckInitialized ( ) )
5131
5131
{
5132
- onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerLeaderboardHistoryResponse > ( ) ) ;
5132
+ onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerLeaderboardArchiveResponse > ( ) ) ;
5133
5133
return ;
5134
5134
}
5135
5135
@@ -5142,8 +5142,8 @@ public static void ListLeaderboardArchive(string leaderboard_key, Action<LootLoc
5142
5142
/// Get the details of a Leaderboard Archive, containing past rewards, ranks, etc
5143
5143
/// </summary>
5144
5144
/// <param name="key"> Key of the json archive to read</param>
5145
- /// <param name="onComplete"><onComplete Action for handling the response of type LootLockerLeaderboardHistoryDetailsResponse </param>
5146
- public static void GetLeaderboardArchive ( string key , Action < LootLockerLeaderboardHistoryDetailsResponse > onComplete )
5145
+ /// <param name="onComplete"><onComplete Action for handling the response of type LootLockerLeaderboardArchiveDetailsResponse </param>
5146
+ public static void GetLeaderboardArchive ( string key , Action < LootLockerLeaderboardArchiveDetailsResponse > onComplete )
5147
5147
{
5148
5148
GetLeaderboardArchive ( key , - 1 , null , onComplete ) ;
5149
5149
}
@@ -5153,24 +5153,24 @@ public static void GetLeaderboardArchive(string key, Action<LootLockerLeaderboar
5153
5153
/// </summary>
5154
5154
/// <param name="key"> Key of the json archive to read</param>
5155
5155
/// <param name="count"> Amount of entries to read </param>
5156
- /// <param name="onComplete"><onComplete Action for handling the response of type LootLockerLeaderboardHistoryDetailsResponse </param>
5157
- public static void GetLeaderboardArchive ( string key , int count , Action < LootLockerLeaderboardHistoryDetailsResponse > onComplete )
5156
+ /// <param name="onComplete"><onComplete Action for handling the response of type LootLockerLeaderboardArchiveDetailsResponse </param>
5157
+ public static void GetLeaderboardArchive ( string key , int count , Action < LootLockerLeaderboardArchiveDetailsResponse > onComplete )
5158
5158
{
5159
5159
GetLeaderboardArchive ( key , count , null , onComplete ) ;
5160
5160
}
5161
-
5161
+
5162
5162
/// <summary>
5163
5163
/// Get the details of a Leaderboard Archive, containing past rewards, ranks, etc
5164
5164
/// </summary>
5165
5165
/// <param name="key"> Key of the json archive to read</param>
5166
5166
/// <param name="count"> Amount of entries to read </param>
5167
5167
/// <param name="after"> Return after specified index </param>
5168
- /// <param name="onComplete"><onComplete Action for handling the response of type LootLockerLeaderboardHistoryDetailsResponse </param>
5169
- public static void GetLeaderboardArchive ( string key , int count , string after , Action < LootLockerLeaderboardHistoryDetailsResponse > onComplete )
5168
+ /// <param name="onComplete"><onComplete Action for handling the response of type LootLockerLeaderboardArchiveDetailsResponse </param>
5169
+ public static void GetLeaderboardArchive ( string key , int count , string after , Action < LootLockerLeaderboardArchiveDetailsResponse > onComplete )
5170
5170
{
5171
5171
if ( ! CheckInitialized ( ) )
5172
5172
{
5173
- onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerLeaderboardHistoryDetailsResponse > ( ) ) ;
5173
+ onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerLeaderboardArchiveDetailsResponse > ( ) ) ;
5174
5174
return ;
5175
5175
}
5176
5176
0 commit comments