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 ) ;
@@ -58,15 +57,15 @@ public class LootLockerEndPoints
58
57
public static EndPointClass createCharacter = new EndPointClass ( "v1/player/character" , LootLockerHTTPMethod . POST ) ;
59
58
public static EndPointClass listCharacterTypes = new EndPointClass ( "v1/player/character/types" , LootLockerHTTPMethod . GET ) ;
60
59
61
- // Persistentplayer storage
60
+ // Persistentplayer storage
62
61
[ Header ( "Persitent Player Storage" ) ]
63
62
public static EndPointClass getEntirePersistentStorage = new EndPointClass ( "v1/player/storage" , LootLockerHTTPMethod . GET ) ;
64
63
public static EndPointClass getSingleKeyFromPersitenctStorage = new EndPointClass ( "v1/player/storage?key={0}" , LootLockerHTTPMethod . GET ) ;
65
64
public static EndPointClass updateOrCreateKeyValue = new EndPointClass ( "v1/player/storage" , LootLockerHTTPMethod . POST ) ;
66
65
public static EndPointClass deleteKeyValue = new EndPointClass ( "v1/player/storage?key={0}" , LootLockerHTTPMethod . DELETE ) ;
67
66
public static EndPointClass getOtherPlayersPublicKeyValuePairs = new EndPointClass ( "v1/player/{0}/storage" , LootLockerHTTPMethod . GET ) ;
68
67
69
- // Asset storage
68
+ // Asset storage
70
69
[ Header ( "Assets" ) ]
71
70
public static EndPointClass gettingContexts = new EndPointClass ( "v1/contexts" , LootLockerHTTPMethod . GET ) ;
72
71
public static EndPointClass gettingAssetListWithCount = new EndPointClass ( "v1/assets/list?count={0}" , LootLockerHTTPMethod . GET ) ;
@@ -78,7 +77,7 @@ public class LootLockerEndPoints
78
77
public static EndPointClass addingFavouriteAssets = new EndPointClass ( "v1/asset/{0}/favourite" , LootLockerHTTPMethod . POST ) ;
79
78
public static EndPointClass removingFavouriteAssets = new EndPointClass ( "v1/asset/{0}/favourite" , LootLockerHTTPMethod . DELETE ) ;
80
79
81
- // Asset storage
80
+ // Asset storage
82
81
[ Header ( "Asset Instances" ) ]
83
82
public static EndPointClass getAllKeyValuePairs = new EndPointClass ( "v1/asset/instance/storage" , LootLockerHTTPMethod . GET ) ;
84
83
public static EndPointClass getAllKeyValuePairsToAnInstance = new EndPointClass ( "v1/asset/instance/{0}/storage" , LootLockerHTTPMethod . GET ) ;
@@ -89,7 +88,7 @@ public class LootLockerEndPoints
89
88
public static EndPointClass deleteKeyValuePair = new EndPointClass ( "v1/asset/instance/{0}/storage/{1}" , LootLockerHTTPMethod . DELETE ) ;
90
89
public static EndPointClass inspectALootBox = new EndPointClass ( "v1/asset/instance/{0}/inspect" , LootLockerHTTPMethod . GET ) ;
91
90
public static EndPointClass openALootBox = new EndPointClass ( "v1/asset/instance/{0}/open" , LootLockerHTTPMethod . PUT ) ;
92
-
91
+
93
92
// UGC
94
93
[ Header ( "UGC" ) ]
95
94
public static EndPointClass creatingAnAssetCandidate = new EndPointClass ( "v1/player/assets/candidates" , LootLockerHTTPMethod . POST ) ;
0 commit comments