@@ -6,7 +6,7 @@ namespace LootLocker
6
6
{
7
7
public class LootLockerEndPoints
8
8
{
9
- //Authentication
9
+ // Authentication
10
10
[ Header ( "Authentication Endpoints" ) ]
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 ) ;
@@ -16,7 +16,7 @@ public class LootLockerEndPoints
16
16
public static EndPointClass twoFactorAuthenticationCodeVerification = new EndPointClass ( "v1/2fa" , LootLockerHTTPMethod . POST ) ;
17
17
public static EndPointClass subsequentRequests = new EndPointClass ( "v1/games" , LootLockerHTTPMethod . GET ) ;
18
18
19
- //Player
19
+ // Player
20
20
[ Header ( "Player Endpoints" ) ]
21
21
public static EndPointClass getPlayerInfo = new EndPointClass ( "v1/player/info" , LootLockerHTTPMethod . GET ) ;
22
22
public static EndPointClass getInventory = new EndPointClass ( "v1/player/inventory/list" , LootLockerHTTPMethod . GET ) ;
@@ -32,7 +32,7 @@ public class LootLockerEndPoints
32
32
public static EndPointClass getPlayerName = new EndPointClass ( "player/name" , LootLockerHTTPMethod . GET ) ;
33
33
public static EndPointClass setPlayerName = new EndPointClass ( "player/name" , LootLockerHTTPMethod . PATCH ) ;
34
34
35
- //Character
35
+ // Character
36
36
[ Header ( "Character Endpoints" ) ]
37
37
public static EndPointClass characterLoadouts = new EndPointClass ( "v1/player/character/loadout" , LootLockerHTTPMethod . GET ) ;
38
38
public static EndPointClass getOtherPlayersCharacterLoadouts = new EndPointClass ( "v1/player/character/loadout/{0}?platform={1}" , LootLockerHTTPMethod . GET ) ;
@@ -47,20 +47,18 @@ public class LootLockerEndPoints
47
47
public static EndPointClass getOtherPlayersLoadoutToDefaultCharacter = new EndPointClass ( "v1/player/loadout/{0}?platform={1}" , LootLockerHTTPMethod . GET ) ;
48
48
public static EndPointClass getEquipableContextToDefaultCharacter = new EndPointClass ( "v1/player/character/contexts" , LootLockerHTTPMethod . GET ) ;
49
49
public static EndPointClass getEquipableContextbyCharacter = new EndPointClass ( "v1/player/character/{0}/contexts" , LootLockerHTTPMethod . GET ) ;
50
-
51
50
public static EndPointClass createCharacter = new EndPointClass ( "v1/player/character" , LootLockerHTTPMethod . POST ) ;
52
51
public static EndPointClass listCharacterTypes = new EndPointClass ( "v1/player/character/types" , LootLockerHTTPMethod . GET ) ;
53
52
54
-
55
- //Persistentplayer storage
53
+ // Persistentplayer storage
56
54
[ Header ( "Persitent Player Storage" ) ]
57
55
public static EndPointClass getEntirePersistentStorage = new EndPointClass ( "v1/player/storage" , LootLockerHTTPMethod . GET ) ;
58
56
public static EndPointClass getSingleKeyFromPersitenctStorage = new EndPointClass ( "v1/player/storage?key={0}" , LootLockerHTTPMethod . GET ) ;
59
57
public static EndPointClass updateOrCreateKeyValue = new EndPointClass ( "v1/player/storage" , LootLockerHTTPMethod . POST ) ;
60
58
public static EndPointClass deleteKeyValue = new EndPointClass ( "v1/player/storage?key={0}" , LootLockerHTTPMethod . DELETE ) ;
61
59
public static EndPointClass getOtherPlayersPublicKeyValuePairs = new EndPointClass ( "v1/player/{0}/storage" , LootLockerHTTPMethod . GET ) ;
62
60
63
- //Asset storage
61
+ // Asset storage
64
62
[ Header ( "Assets" ) ]
65
63
public static EndPointClass gettingContexts = new EndPointClass ( "v1/contexts" , LootLockerHTTPMethod . GET ) ;
66
64
public static EndPointClass gettingAssetListWithCount = new EndPointClass ( "v1/assets/list?count={0}" , LootLockerHTTPMethod . GET ) ;
@@ -72,7 +70,7 @@ public class LootLockerEndPoints
72
70
public static EndPointClass addingFavouriteAssets = new EndPointClass ( "v1/asset/{0}/favourite" , LootLockerHTTPMethod . POST ) ;
73
71
public static EndPointClass removingFavouriteAssets = new EndPointClass ( "v1/asset/{0}/favourite" , LootLockerHTTPMethod . DELETE ) ;
74
72
75
- //Asset storage
73
+ // Asset storage
76
74
[ Header ( "Asset Instances" ) ]
77
75
public static EndPointClass getAllKeyValuePairs = new EndPointClass ( "v1/asset/instance/storage" , LootLockerHTTPMethod . GET ) ;
78
76
public static EndPointClass getAllKeyValuePairsToAnInstance = new EndPointClass ( "v1/asset/instance/{0}/storage" , LootLockerHTTPMethod . GET ) ;
@@ -83,7 +81,8 @@ public class LootLockerEndPoints
83
81
public static EndPointClass deleteKeyValuePair = new EndPointClass ( "v1/asset/instance/{0}/storage/{1}" , LootLockerHTTPMethod . DELETE ) ;
84
82
public static EndPointClass inspectALootBox = new EndPointClass ( "v1/asset/instance/{0}/inspect" , LootLockerHTTPMethod . GET ) ;
85
83
public static EndPointClass openALootBox = new EndPointClass ( "v1/asset/instance/{0}/open" , LootLockerHTTPMethod . PUT ) ;
86
- //UGC
84
+
85
+ // UGC
87
86
[ Header ( "UGC" ) ]
88
87
public static EndPointClass creatingAnAssetCandidate = new EndPointClass ( "v1/player/assets/candidates" , LootLockerHTTPMethod . POST ) ;
89
88
public static EndPointClass updatingAnAssetCandidate = new EndPointClass ( "v1/player/assets/candidates/{0}" , LootLockerHTTPMethod . PUT ) ;
@@ -93,25 +92,25 @@ public class LootLockerEndPoints
93
92
public static EndPointClass addingFilesToAssetCandidates = new EndPointClass ( "v1/player/assets/candidates/{0}/file" , LootLockerHTTPMethod . UPLOAD ) ;
94
93
public static EndPointClass removingFilesFromAssetCandidates = new EndPointClass ( "v1/player/assets/candidates/{0}/file/{1}" , LootLockerHTTPMethod . DELETE ) ;
95
94
96
- //Events
95
+ // Events
97
96
[ Header ( "Events" ) ]
98
97
public static EndPointClass gettingAllEvents = new EndPointClass ( "v1/missions" , LootLockerHTTPMethod . GET ) ;
99
98
public static EndPointClass gettingASingleEvent = new EndPointClass ( "v1/mission/{0}" , LootLockerHTTPMethod . GET ) ;
100
99
public static EndPointClass startingEvent = new EndPointClass ( "v1/mission/{0}/start" , LootLockerHTTPMethod . POST ) ;
101
100
public static EndPointClass finishingEvent = new EndPointClass ( "v1/mission/{0}/end" , LootLockerHTTPMethod . POST ) ;
102
101
103
- //UGC
102
+ // UGC
104
103
[ Header ( "Missions" ) ]
105
104
public static EndPointClass gettingAllMissions = new EndPointClass ( "v1/missions" , LootLockerHTTPMethod . GET ) ;
106
105
public static EndPointClass gettingASingleMission = new EndPointClass ( "v1/mission/{0}" , LootLockerHTTPMethod . GET ) ;
107
106
public static EndPointClass startingMission = new EndPointClass ( "v1/mission/{0}/start" , LootLockerHTTPMethod . POST ) ;
108
107
public static EndPointClass finishingMission = new EndPointClass ( "v1/mission/{0}/end" , LootLockerHTTPMethod . POST ) ;
109
108
110
- //Maps
109
+ // Maps
111
110
[ Header ( "Maps" ) ]
112
111
public static EndPointClass gettingAllMaps = new EndPointClass ( "v1/maps" , LootLockerHTTPMethod . GET ) ;
113
112
114
- //Purchase
113
+ // Purchase
115
114
[ Header ( "Purchase" ) ]
116
115
public static EndPointClass normalPurchaseCall = new EndPointClass ( "v1/purchase" , LootLockerHTTPMethod . POST ) ;
117
116
public static EndPointClass rentalPurchaseCall = new EndPointClass ( "v1/purchase" , LootLockerHTTPMethod . POST ) ;
@@ -120,33 +119,33 @@ public class LootLockerEndPoints
120
119
public static EndPointClass pollingOrderStatus = new EndPointClass ( "v1/purchase/{0}" , LootLockerHTTPMethod . GET ) ;
121
120
public static EndPointClass activatingARentalAsset = new EndPointClass ( "v1/asset/instance/{0}/activate" , LootLockerHTTPMethod . POST ) ;
122
121
123
- //EventTrigger
122
+ // EventTrigger
124
123
[ Header ( "EventTrigger" ) ]
125
124
public static EndPointClass triggeringAnEvent = new EndPointClass ( "v1/player/trigger" , LootLockerHTTPMethod . POST ) ;
126
125
public static EndPointClass listingTriggeredTriggerEvents = new EndPointClass ( "v1/player/triggers" , LootLockerHTTPMethod . GET ) ;
127
126
128
- //Maps
127
+ // Maps
129
128
[ Header ( "Collectables" ) ]
130
129
public static EndPointClass gettingCollectables = new EndPointClass ( "v1/collectable" , LootLockerHTTPMethod . GET ) ;
131
130
public static EndPointClass collectingAnItem = new EndPointClass ( "v1/collectable" , LootLockerHTTPMethod . POST ) ;
132
131
133
- //Messages
132
+ // Messages
134
133
[ Header ( "Messages" ) ]
135
134
public static EndPointClass getMessages = new EndPointClass ( "v1/messages" , LootLockerHTTPMethod . GET ) ;
136
135
137
- //Crashes
136
+ // Crashes
138
137
[ Header ( "Crashes" ) ]
139
138
public static EndPointClass submittingACrashLog = new EndPointClass ( "v1/crash" , LootLockerHTTPMethod . POST ) ;
140
139
141
- //Leaderboards
140
+ // Leaderboards
142
141
[ Header ( "Leaderboards" ) ]
143
142
public static EndPointClass getMemberRank = new EndPointClass ( "leaderboards/{0}/member/{1}" , LootLockerHTTPMethod . GET ) ;
144
143
public static EndPointClass getByListOfMembers = new EndPointClass ( "leaderboards/{0}/members" , LootLockerHTTPMethod . POST ) ;
145
144
public static EndPointClass getAllMemberRanks = new EndPointClass ( "leaderboards/member/{0}?count={1}" , LootLockerHTTPMethod . GET ) ;
146
145
public static EndPointClass getScoreList = new EndPointClass ( "leaderboards/{0}/list?count={1}" , LootLockerHTTPMethod . GET ) ;
147
146
public static EndPointClass submitScore = new EndPointClass ( "leaderboards/{0}/submit" , LootLockerHTTPMethod . POST ) ;
148
147
149
- //Drop Tables
148
+ // Drop Tables
150
149
[ Header ( "Drop Tables" ) ]
151
150
public static EndPointClass ComputeAndLockDropTable = new EndPointClass ( "v1/player/droptables/{0}/compute?asset_details={1}" , LootLockerHTTPMethod . POST ) ;
152
151
public static EndPointClass PickDropsFromDropTable = new EndPointClass ( "v1/player/droptables/{0}/pick" , LootLockerHTTPMethod . POST ) ;
0 commit comments