You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Runtime/Game/LootLockerSDKManager.cs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5835,12 +5835,12 @@ public static void RedeemGooglePlayStorePurchaseForClass(string productId, strin
5835
5835
/// Redeem a purchase that was made successfully towards the Epic Store for the current player
5836
5836
/// </summary>
5837
5837
/// <param name="accountId">The Epic account id of the account that this purchase was made for</param>
5838
-
/// <param name="bearerToken">The token from Epic used to allow the LootLocker backend to verify ownership of the specified entitlements. This is sometimes referred to as the Access Token or the Auth Token</param>
5838
+
/// <param name="bearerToken">This is the token from epic used to allow the LootLocker backend to verify ownership of the specified entitlements. This is sometimes referred to as the Server Auth Ticket or Auth Token depending on your Epic integration.</param>
5839
5839
/// <param name="entitlementIds">The ids of the purchased entitlements that you wish to redeem</param>
5840
+
/// <param name="sandboxId">The Sandbox Id configured for the game making the purchase (this is the sandbox id from your epic online service configuration)</param>
5840
5841
/// <param name="onComplete">onComplete Action for handling the response</param>
5841
5842
/// <param name="forPlayerWithUlid">Optional: Execute the request for the specified player. If not supplied, the default player will be used.</param>
5842
-
/// <param name="sandboxId">Optional: The sandbox id to use for the request, only applicable for "sandbox purchases" (ie, fake development purchases)</param>
/// Redeem a purchase that was made successfully towards the Epic Store for a class that the current player owns
5862
5862
/// </summary>
5863
5863
/// <param name="accountId">The Epic account id of the account that this purchase was made for</param>
5864
-
/// <param name="bearerToken">The token from Epic used to allow the LootLocker backend to verify ownership of the specified entitlements. This is sometimes referred to as the Access Token or the Auth Token</param>
5864
+
/// <param name="bearerToken">This is the token from epic used to allow the LootLocker backend to verify ownership of the specified entitlements. This is sometimes referred to as the Server Auth Ticket or Auth Token depending on your Epic integration.</param>
5865
5865
/// <param name="entitlementIds">The ids of the purchased entitlements that you wish to redeem</param>
5866
+
/// <param name="sandboxId">The Sandbox Id configured for the game making the purchase (this is the sandbox id from your epic online service configuration)</param>
5866
5867
/// <param name="classId">The id of the class to redeem this purchase for</param>
5867
5868
/// <param name="onComplete">onComplete Action for handling the response</param>
5868
5869
/// <param name="forPlayerWithUlid">Optional: Execute the request for the specified player. If not supplied, the default player will be used.</param>
5869
-
/// <param name="sandboxId">Optional: The sandbox id to use for the request, only applicable for "sandbox purchases" (ie, fake development purchases)</param>
Copy file name to clipboardExpand all lines: Runtime/Game/Requests/PurchaseRequest.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -136,15 +136,15 @@ public class LootLockerRedeemEpicStorePurchaseForPlayerRequest
136
136
/// </summary>
137
137
publicstringaccount_id;
138
138
/// <summary>
139
-
/// This is the token from epic used to allow the LootLocker backend to verify ownership of the specified entitlements. This is sometimes referred to as the Access Token or the Auth Token
139
+
/// This is the token from epic used to allow the LootLocker backend to verify ownership of the specified entitlements. This is sometimes referred to as the Server Auth Ticket or Auth Token depending on your Epic integration.
140
140
/// </summary>
141
141
publicstringbearer_token;
142
142
/// <summary>
143
143
/// The ids of the purchased entitlements that you wish to redeem
144
144
/// </summary>
145
145
publicList<string>entitlement_ids;
146
146
/// <summary>
147
-
/// The sandbox id to use for the request, only applicable for "sandbox purchases" (ie, fake development purchases)
147
+
/// The Sandbox Id configured for the game making the purchase (this is the sandbox id from your epic online service configuration)
0 commit comments