@@ -3127,25 +3127,25 @@ public static void DeleteCharacterProgression(int characterId, string progressio
3127
3127
/// <summary>
3128
3128
/// Get the player storage for the currently active player (key/values).
3129
3129
/// </summary>
3130
- /// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetPersistentStoragResponse </param>
3131
- public static void GetEntirePersistentStorage ( Action < LootLockerGetPersistentStoragResponse > onComplete )
3130
+ /// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetPersistentStorageResponse </param>
3131
+ public static void GetEntirePersistentStorage ( Action < LootLockerGetPersistentStorageResponse > onComplete )
3132
3132
{
3133
3133
if ( ! CheckInitialized ( ) )
3134
3134
{
3135
- onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerGetPersistentStoragResponse > ( ) ) ;
3135
+ onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerGetPersistentStorageResponse > ( ) ) ;
3136
3136
return ;
3137
3137
}
3138
3138
LootLockerAPIManager . GetEntirePersistentStorage ( onComplete ) ;
3139
3139
}
3140
3140
/// <summary>
3141
3141
/// Get the player storage as a Dictionary<string, string> for the currently active player (key/values).
3142
3142
/// </summary>
3143
- /// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetPersistentStoragResponseDictionary </param>
3144
- public static void GetEntirePersistentStorage ( Action < LootLockerGetPersistentStoragResponseDictionary > onComplete )
3143
+ /// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetPersistentStorageResponseDictionary </param>
3144
+ public static void GetEntirePersistentStorage ( Action < LootLockerGetPersistentStorageResponseDictionary > onComplete )
3145
3145
{
3146
3146
if ( ! CheckInitialized ( ) )
3147
3147
{
3148
- onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerGetPersistentStoragResponseDictionary > ( ) ) ;
3148
+ onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerGetPersistentStorageResponseDictionary > ( ) ) ;
3149
3149
return ;
3150
3150
}
3151
3151
LootLockerAPIManager . GetEntirePersistentStorage ( onComplete ) ;
@@ -3173,12 +3173,12 @@ public static void GetSingleKeyPersistentStorage(string key, Action<LootLockerGe
3173
3173
/// </summary>
3174
3174
/// <param name="key">Name of the key</param>
3175
3175
/// <param name="value">Value of the key</param>
3176
- /// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetPersistentStoragResponse </param>
3177
- public static void UpdateOrCreateKeyValue ( string key , string value , Action < LootLockerGetPersistentStoragResponse > onComplete )
3176
+ /// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetPersistentStorageResponse </param>
3177
+ public static void UpdateOrCreateKeyValue ( string key , string value , Action < LootLockerGetPersistentStorageResponse > onComplete )
3178
3178
{
3179
3179
if ( ! CheckInitialized ( ) )
3180
3180
{
3181
- onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerGetPersistentStoragResponse > ( ) ) ;
3181
+ onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerGetPersistentStorageResponse > ( ) ) ;
3182
3182
return ;
3183
3183
}
3184
3184
LootLockerGetPersistentStorageRequest data = new LootLockerGetPersistentStorageRequest ( ) ;
@@ -3192,12 +3192,12 @@ public static void UpdateOrCreateKeyValue(string key, string value, Action<LootL
3192
3192
/// <param name="key">Name of the key</param>
3193
3193
/// <param name="value">Value of the key</param>
3194
3194
/// <param name="isPublic">Is the key public?</param>
3195
- /// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetPersistentStoragResponse </param>
3196
- public static void UpdateOrCreateKeyValue ( string key , string value , bool isPublic , Action < LootLockerGetPersistentStoragResponse > onComplete )
3195
+ /// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetPersistentStorageResponse </param>
3196
+ public static void UpdateOrCreateKeyValue ( string key , string value , bool isPublic , Action < LootLockerGetPersistentStorageResponse > onComplete )
3197
3197
{
3198
3198
if ( ! CheckInitialized ( ) )
3199
3199
{
3200
- onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerGetPersistentStoragResponse > ( ) ) ;
3200
+ onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerGetPersistentStorageResponse > ( ) ) ;
3201
3201
return ;
3202
3202
}
3203
3203
LootLockerGetPersistentStorageRequest data = new LootLockerGetPersistentStorageRequest ( ) ;
@@ -3209,12 +3209,12 @@ public static void UpdateOrCreateKeyValue(string key, string value, bool isPubli
3209
3209
/// Update or create multiple key/value pairs in the player storage for the currently active player.
3210
3210
/// </summary>
3211
3211
/// <param name="data">A LootLockerGetPersistentStorageRequest with multiple keys</param>
3212
- /// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetPersistentStoragResponse </param>
3213
- public static void UpdateOrCreateKeyValue ( LootLockerGetPersistentStorageRequest data , Action < LootLockerGetPersistentStoragResponse > onComplete )
3212
+ /// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetPersistentStorageResponse </param>
3213
+ public static void UpdateOrCreateKeyValue ( LootLockerGetPersistentStorageRequest data , Action < LootLockerGetPersistentStorageResponse > onComplete )
3214
3214
{
3215
3215
if ( ! CheckInitialized ( ) )
3216
3216
{
3217
- onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerGetPersistentStoragResponse > ( ) ) ;
3217
+ onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerGetPersistentStorageResponse > ( ) ) ;
3218
3218
return ;
3219
3219
}
3220
3220
LootLockerAPIManager . UpdateOrCreateKeyValue ( data , onComplete ) ;
@@ -3224,12 +3224,12 @@ public static void UpdateOrCreateKeyValue(LootLockerGetPersistentStorageRequest
3224
3224
/// Delete a key from the player storage for the currently active player.
3225
3225
/// </summary>
3226
3226
/// <param name="keyToDelete">The key/value key(name) to delete</param>
3227
- /// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetPersistentStoragResponse </param>
3228
- public static void DeleteKeyValue ( string keyToDelete , Action < LootLockerGetPersistentStoragResponse > onComplete )
3227
+ /// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetPersistentStorageResponse </param>
3228
+ public static void DeleteKeyValue ( string keyToDelete , Action < LootLockerGetPersistentStorageResponse > onComplete )
3229
3229
{
3230
3230
if ( ! CheckInitialized ( ) )
3231
3231
{
3232
- onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerGetPersistentStoragResponse > ( ) ) ;
3232
+ onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerGetPersistentStorageResponse > ( ) ) ;
3233
3233
return ;
3234
3234
}
3235
3235
LootLockerGetRequest data = new LootLockerGetRequest ( ) ;
@@ -3241,13 +3241,13 @@ public static void DeleteKeyValue(string keyToDelete, Action<LootLockerGetPersis
3241
3241
/// Get the public player storage(key/values) for a specific player.
3242
3242
/// </summary>
3243
3243
/// <param name="otherPlayerId">The ID of the player to retrieve the public ley/values for</param>
3244
- /// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetPersistentStoragResponse </param>
3245
- public static void GetOtherPlayersPublicKeyValuePairs ( string otherPlayerId , Action < LootLockerGetPersistentStoragResponse > onComplete )
3244
+ /// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetPersistentStorageResponse </param>
3245
+ public static void GetOtherPlayersPublicKeyValuePairs ( string otherPlayerId , Action < LootLockerGetPersistentStorageResponse > onComplete )
3246
3246
{
3247
3247
3248
3248
if ( ! CheckInitialized ( ) )
3249
3249
{
3250
- onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerGetPersistentStoragResponse > ( ) ) ;
3250
+ onComplete ? . Invoke ( LootLockerResponseFactory . SDKNotInitializedError < LootLockerGetPersistentStorageResponse > ( ) ) ;
3251
3251
return ;
3252
3252
}
3253
3253
LootLockerGetRequest data = new LootLockerGetRequest ( ) ;
0 commit comments