4
4
5
5
namespace LootLocker
6
6
{
7
- public class LootLockerEndPoints
7
+ public class LootLockerEndPoints
8
8
{
9
9
// Authentication
10
10
[ Header ( "Authentication" ) ]
11
11
public static EndPointClass playerVerification = new EndPointClass ( "v1/player/verify" , LootLockerHTTPMethod . POST ) ;
12
12
public static EndPointClass authenticationRequest = new EndPointClass ( "v2/session" , LootLockerHTTPMethod . POST ) ;
13
13
public static EndPointClass guestSessionRequest = new EndPointClass ( "v2/session/guest" , LootLockerHTTPMethod . POST ) ;
14
- public static EndPointClass nintendoSwitchSessionRequest = new EndPointClass ( "session/nintendo-switch" , LootLockerHTTPMethod . POST ) ;
15
14
public static EndPointClass whiteLabelLoginSessionRequest = new EndPointClass ( "v2/session/white-label" , LootLockerHTTPMethod . POST ) ;
16
15
public static EndPointClass endingSession = new EndPointClass ( "v1/session" , LootLockerHTTPMethod . DELETE ) ;
17
16
public static EndPointClass initialAuthenticationRequest = new EndPointClass ( "v1/session" , LootLockerHTTPMethod . POST ) ;
@@ -60,15 +59,15 @@ public class LootLockerEndPoints
60
59
public static EndPointClass createCharacter = new EndPointClass ( "v1/player/character" , LootLockerHTTPMethod . POST ) ;
61
60
public static EndPointClass listCharacterTypes = new EndPointClass ( "v1/player/character/types" , LootLockerHTTPMethod . GET ) ;
62
61
63
- // Persistentplayer storage
62
+ // Persistentplayer storage
64
63
[ Header ( "Persitent Player Storage" ) ]
65
64
public static EndPointClass getEntirePersistentStorage = new EndPointClass ( "v1/player/storage" , LootLockerHTTPMethod . GET ) ;
66
65
public static EndPointClass getSingleKeyFromPersitenctStorage = new EndPointClass ( "v1/player/storage?key={0}" , LootLockerHTTPMethod . GET ) ;
67
66
public static EndPointClass updateOrCreateKeyValue = new EndPointClass ( "v1/player/storage" , LootLockerHTTPMethod . POST ) ;
68
67
public static EndPointClass deleteKeyValue = new EndPointClass ( "v1/player/storage?key={0}" , LootLockerHTTPMethod . DELETE ) ;
69
68
public static EndPointClass getOtherPlayersPublicKeyValuePairs = new EndPointClass ( "v1/player/{0}/storage" , LootLockerHTTPMethod . GET ) ;
70
69
71
- // Asset storage
70
+ // Asset storage
72
71
[ Header ( "Assets" ) ]
73
72
public static EndPointClass gettingContexts = new EndPointClass ( "v1/contexts" , LootLockerHTTPMethod . GET ) ;
74
73
public static EndPointClass gettingAssetListWithCount = new EndPointClass ( "v1/assets/list?count={0}" , LootLockerHTTPMethod . GET ) ;
@@ -80,7 +79,7 @@ public class LootLockerEndPoints
80
79
public static EndPointClass addingFavouriteAssets = new EndPointClass ( "v1/asset/{0}/favourite" , LootLockerHTTPMethod . POST ) ;
81
80
public static EndPointClass removingFavouriteAssets = new EndPointClass ( "v1/asset/{0}/favourite" , LootLockerHTTPMethod . DELETE ) ;
82
81
83
- // Asset storage
82
+ // Asset storage
84
83
[ Header ( "Asset Instances" ) ]
85
84
public static EndPointClass getAllKeyValuePairs = new EndPointClass ( "v1/asset/instance/storage" , LootLockerHTTPMethod . GET ) ;
86
85
public static EndPointClass getAllKeyValuePairsToAnInstance = new EndPointClass ( "v1/asset/instance/{0}/storage" , LootLockerHTTPMethod . GET ) ;
@@ -91,7 +90,7 @@ public class LootLockerEndPoints
91
90
public static EndPointClass deleteKeyValuePair = new EndPointClass ( "v1/asset/instance/{0}/storage/{1}" , LootLockerHTTPMethod . DELETE ) ;
92
91
public static EndPointClass inspectALootBox = new EndPointClass ( "v1/asset/instance/{0}/inspect" , LootLockerHTTPMethod . GET ) ;
93
92
public static EndPointClass openALootBox = new EndPointClass ( "v1/asset/instance/{0}/open" , LootLockerHTTPMethod . PUT ) ;
94
-
93
+
95
94
// UGC
96
95
[ Header ( "UGC" ) ]
97
96
public static EndPointClass creatingAnAssetCandidate = new EndPointClass ( "v1/player/assets/candidates" , LootLockerHTTPMethod . POST ) ;
0 commit comments