@xmobitea/gn-typescript-client 2.6.9 → 2.6.10-tsc

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (201) hide show
  1. package/dist/index.js +337 -34162
  2. package/dist/runtime/GNNetwork.js +250 -0
  3. package/dist/runtime/GNNetworkAuthenticateApi.js +122 -0
  4. package/dist/runtime/GNNetworkCharacterPlayerApi.js +968 -0
  5. package/dist/runtime/GNNetworkCloudScriptApi.js +104 -0
  6. package/dist/runtime/GNNetworkContentApi.js +140 -0
  7. package/dist/runtime/GNNetworkDashboardApi.js +170 -0
  8. package/dist/runtime/GNNetworkGamePlayerApi.js +950 -0
  9. package/dist/runtime/GNNetworkGroupApi.js +734 -0
  10. package/dist/runtime/GNNetworkInventoryApi.js +626 -0
  11. package/dist/runtime/GNNetworkMasterPlayerApi.js +1550 -0
  12. package/dist/runtime/GNNetworkMultiplayerApi.js +194 -0
  13. package/dist/runtime/GNNetworkStoreInventoryApi.js +266 -0
  14. package/dist/runtime/common/Action0.js +1 -0
  15. package/dist/runtime/common/Action1.js +1 -0
  16. package/dist/runtime/common/Action2.js +1 -0
  17. package/dist/runtime/common/Action3.js +1 -0
  18. package/dist/runtime/common/Action4.js +1 -0
  19. package/dist/runtime/common/GNData.js +211 -0
  20. package/dist/runtime/config/GNServerSettings.d.ts +3 -0
  21. package/dist/runtime/config/GNServerSettings.js +156 -0
  22. package/dist/runtime/constant/Commands.d.ts +1 -0
  23. package/dist/runtime/constant/Commands.js +20 -0
  24. package/dist/runtime/constant/EventCode.js +8 -0
  25. package/dist/runtime/constant/OperationCode.js +221 -0
  26. package/dist/runtime/constant/ReturnCode.js +14 -0
  27. package/dist/runtime/constant/enumType/ExecuteResponseStatus.js +8 -0
  28. package/dist/runtime/constant/enumType/FriendStatus.js +7 -0
  29. package/dist/runtime/constant/enumType/GoogleLoginType.js +5 -0
  30. package/dist/runtime/constant/enumType/GroupStatus.js +7 -0
  31. package/dist/runtime/constant/enumType/InvalidMemberType.js +18 -0
  32. package/dist/runtime/constant/enumType/ItemType.js +5 -0
  33. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +6 -0
  34. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +8 -0
  35. package/dist/runtime/constant/enumType/OwnerType.js +9 -0
  36. package/dist/runtime/constant/enumType/PermissionDataItem.js +5 -0
  37. package/dist/runtime/constant/enumType/PushPlatformType.js +5 -0
  38. package/dist/runtime/constant/enumType/RequestRole.js +6 -0
  39. package/dist/runtime/constant/enumType/RequestType.js +15 -0
  40. package/dist/runtime/constant/enumType/StoreItemType.js +5 -0
  41. package/dist/runtime/constant/enumType/StoreReceiveType.js +8 -0
  42. package/dist/runtime/constant/errorCode/ErrorCode.js +52 -0
  43. package/dist/runtime/constant/parameterCode/ParameterCode.js +617 -0
  44. package/dist/runtime/entity/DataMember.js +208 -0
  45. package/dist/runtime/entity/GNMetadata.js +11 -0
  46. package/dist/runtime/entity/InvalidMember.js +1 -0
  47. package/dist/runtime/entity/OperationEvent.js +24 -0
  48. package/dist/runtime/entity/OperationHelper.js +24 -0
  49. package/dist/runtime/entity/OperationRequest.js +42 -0
  50. package/dist/runtime/entity/OperationResponse.js +73 -0
  51. package/dist/runtime/entity/models/AuthenticateModels.js +426 -0
  52. package/dist/runtime/entity/models/AuthenticateRequestModels.js +188 -0
  53. package/dist/runtime/entity/models/AuthenticateResponseModels.js +131 -0
  54. package/dist/runtime/entity/models/CharacterPlayerModels.js +1433 -0
  55. package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +1386 -0
  56. package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +376 -0
  57. package/dist/runtime/entity/models/CloudScriptModels.js +197 -0
  58. package/dist/runtime/entity/models/CloudScriptRequestModels.js +138 -0
  59. package/dist/runtime/entity/models/CloudScriptResponseModels.js +40 -0
  60. package/dist/runtime/entity/models/ContentModels.js +203 -0
  61. package/dist/runtime/entity/models/ContentRequestModels.js +190 -0
  62. package/dist/runtime/entity/models/ContentResponseModels.js +54 -0
  63. package/dist/runtime/entity/models/DashboardModels.js +3002 -0
  64. package/dist/runtime/entity/models/DashboardRequestModels.js +268 -0
  65. package/dist/runtime/entity/models/DashboardResponseModels.js +187 -0
  66. package/dist/runtime/entity/models/GamePlayerModels.js +1591 -0
  67. package/dist/runtime/entity/models/GamePlayerRequestModels.js +1360 -0
  68. package/dist/runtime/entity/models/GamePlayerResponseModels.js +369 -0
  69. package/dist/runtime/entity/models/GenericModels.js +177 -0
  70. package/dist/runtime/entity/models/GroupModels.js +1135 -0
  71. package/dist/runtime/entity/models/GroupRequestModels.js +1048 -0
  72. package/dist/runtime/entity/models/GroupResponseModels.js +285 -0
  73. package/dist/runtime/entity/models/InventoryModels.js +915 -0
  74. package/dist/runtime/entity/models/InventoryRequestModels.js +892 -0
  75. package/dist/runtime/entity/models/InventoryResponseModels.js +243 -0
  76. package/dist/runtime/entity/models/MasterPlayerModels.js +2573 -0
  77. package/dist/runtime/entity/models/MasterPlayerRequestModels.js +2228 -0
  78. package/dist/runtime/entity/models/MasterPlayerResponseModels.js +607 -0
  79. package/dist/runtime/entity/models/MultiplayerModels.js +404 -0
  80. package/dist/runtime/entity/models/MultiplayerRequestModels.js +268 -0
  81. package/dist/runtime/entity/models/MultiplayerResponseModels.js +75 -0
  82. package/dist/runtime/entity/models/StoreInventoryModels.js +797 -0
  83. package/dist/runtime/entity/models/StoreInventoryRequestModels.js +372 -0
  84. package/dist/runtime/entity/models/StoreInventoryResponseModels.js +103 -0
  85. package/dist/runtime/entity/request/CustomOperationRequest.js +24 -0
  86. package/dist/runtime/entity/response/CustomOperationResponse.js +29 -0
  87. package/dist/runtime/entity/response/GetAuthInfoResponse.js +2 -0
  88. package/dist/runtime/entity/response/UploadFileResponse.js +2 -0
  89. package/dist/runtime/helper/CodeHelper.js +63 -0
  90. package/dist/runtime/helper/ConverterService.js +275 -0
  91. package/dist/runtime/helper/EnumUtility.js +33 -0
  92. package/dist/runtime/helper/GNSupport.js +8 -0
  93. package/dist/runtime/helper/GNUtils.js +72 -0
  94. package/dist/runtime/helper/MessagePackConverterService.js +9 -0
  95. package/dist/runtime/logger/GNDebug.js +29 -0
  96. package/dist/runtime/networking/AuthenticateStatus.js +14 -0
  97. package/dist/runtime/networking/IPeer.js +1 -0
  98. package/dist/runtime/networking/NetworkingPeer.js +178 -0
  99. package/dist/runtime/networking/OperationPending.js +53 -0
  100. package/dist/runtime/networking/PeerBase.js +161 -0
  101. package/dist/runtime/networking/handler/IServerEventHandler.js +13 -0
  102. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +39 -0
  103. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +39 -0
  104. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +39 -0
  105. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +39 -0
  106. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +35 -0
  107. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +43 -0
  108. package/dist/runtime/networking/http/HttpPeer.js +123 -0
  109. package/dist/runtime/networking/http/NetworkingHttpPeerBase.d.ts +2 -0
  110. package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +9 -0
  111. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +179 -0
  112. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +130 -0
  113. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +165 -0
  114. package/dist/runtime/networking/socket/SocketPeer.js +115 -0
  115. package/dist/runtime/typescript/ServiceUpdate.js +12 -0
  116. package/package.json +1 -1
  117. package/dist/gearn.js.client.js +0 -46884
  118. package/dist/gearn.js.client.min.js +0 -2
  119. package/dist/gearn.js.client.min.js.LICENSE.txt +0 -14
  120. package/responseModel/chatgpt/Authenticate.json +0 -724
  121. package/responseModel/chatgpt/CharacterPlayer.json +0 -1890
  122. package/responseModel/chatgpt/CloudScript.json +0 -254
  123. package/responseModel/chatgpt/Content.json +0 -273
  124. package/responseModel/chatgpt/Dashboard.json +0 -4110
  125. package/responseModel/chatgpt/GamePlayer.json +0 -2306
  126. package/responseModel/chatgpt/Generic.json +0 -253
  127. package/responseModel/chatgpt/Group.json +0 -1509
  128. package/responseModel/chatgpt/Inventory.json +0 -1211
  129. package/responseModel/chatgpt/MasterPlayer.json +0 -3801
  130. package/responseModel/chatgpt/Multiplayer.json +0 -634
  131. package/responseModel/chatgpt/StoreInventory.json +0 -1099
  132. package/responseModel/clients/AuthenticateModels.json +0 -271
  133. package/responseModel/clients/CharacterPlayerModels.json +0 -792
  134. package/responseModel/clients/CloudScriptModels.json +0 -191
  135. package/responseModel/clients/ContentModels.json +0 -178
  136. package/responseModel/clients/DashboardModels.json +0 -5423
  137. package/responseModel/clients/GamePlayerModels.json +0 -781
  138. package/responseModel/clients/GenericModels.json +0 -344
  139. package/responseModel/clients/GroupModels.json +0 -705
  140. package/responseModel/clients/InventoryModels.json +0 -568
  141. package/responseModel/clients/MasterPlayerModels.json +0 -1281
  142. package/responseModel/clients/MultiplayerModels.json +0 -439
  143. package/responseModel/clients/StoreInventoryModels.json +0 -971
  144. package/responseModel/finalChatgpt/Authenticate.json +0 -1475
  145. package/responseModel/finalChatgpt/CharacterPlayer.json +0 -4104
  146. package/responseModel/finalChatgpt/CloudScript.json +0 -515
  147. package/responseModel/finalChatgpt/Content.json +0 -536
  148. package/responseModel/finalChatgpt/Dashboard.json +0 -6712
  149. package/responseModel/finalChatgpt/GamePlayer.json +0 -5142
  150. package/responseModel/finalChatgpt/Generic.json +0 -333
  151. package/responseModel/finalChatgpt/Group.json +0 -3232
  152. package/responseModel/finalChatgpt/Inventory.json +0 -2606
  153. package/responseModel/finalChatgpt/MasterPlayer.json +0 -8385
  154. package/responseModel/finalChatgpt/Multiplayer.json +0 -1196
  155. package/responseModel/finalChatgpt/StoreInventory.json +0 -2085
  156. package/responseModel/finals/Authenticate.json +0 -1460
  157. package/responseModel/finals/CharacterPlayer.json +0 -3639
  158. package/responseModel/finals/CloudScript.json +0 -465
  159. package/responseModel/finals/Content.json +0 -479
  160. package/responseModel/finals/Dashboard.json +0 -6718
  161. package/responseModel/finals/GamePlayer.json +0 -4291
  162. package/responseModel/finals/Generic.json +0 -345
  163. package/responseModel/finals/Group.json +0 -2885
  164. package/responseModel/finals/Inventory.json +0 -2309
  165. package/responseModel/finals/MasterPlayer.json +0 -7018
  166. package/responseModel/finals/Multiplayer.json +0 -1082
  167. package/responseModel/finals/StoreInventory.json +0 -1979
  168. package/responseModel/finalsShort/Authenticate.json +0 -723
  169. package/responseModel/finalsShort/CharacterPlayer.json +0 -1889
  170. package/responseModel/finalsShort/CloudScript.json +0 -253
  171. package/responseModel/finalsShort/Content.json +0 -272
  172. package/responseModel/finalsShort/Dashboard.json +0 -4109
  173. package/responseModel/finalsShort/GamePlayer.json +0 -2305
  174. package/responseModel/finalsShort/Generic.json +0 -252
  175. package/responseModel/finalsShort/Group.json +0 -1508
  176. package/responseModel/finalsShort/Inventory.json +0 -1210
  177. package/responseModel/finalsShort/MasterPlayer.json +0 -3800
  178. package/responseModel/finalsShort/Multiplayer.json +0 -633
  179. package/responseModel/finalsShort/StoreInventory.json +0 -1098
  180. package/responseModel/operationResponse/AuthenticateResponseModels.json +0 -77
  181. package/responseModel/operationResponse/CharacterPlayerResponseModels.json +0 -217
  182. package/responseModel/operationResponse/CloudScriptResponseModels.json +0 -25
  183. package/responseModel/operationResponse/ContentResponseModels.json +0 -33
  184. package/responseModel/operationResponse/DashboardResponseModels.json +0 -109
  185. package/responseModel/operationResponse/GamePlayerResponseModels.json +0 -213
  186. package/responseModel/operationResponse/GroupResponseModels.json +0 -165
  187. package/responseModel/operationResponse/InventoryResponseModels.json +0 -141
  188. package/responseModel/operationResponse/MasterPlayerResponseModels.json +0 -349
  189. package/responseModel/operationResponse/MultiplayerResponseModels.json +0 -45
  190. package/responseModel/operationResponse/StoreInventoryResponseModels.json +0 -61
  191. package/responseModel/servers/Authenticate.json +0 -1328
  192. package/responseModel/servers/CharacterPlayer.json +0 -3199
  193. package/responseModel/servers/CloudScript.json +0 -278
  194. package/responseModel/servers/Content.json +0 -324
  195. package/responseModel/servers/GamePlayer.json +0 -3844
  196. package/responseModel/servers/Group.json +0 -2454
  197. package/responseModel/servers/Inventory.json +0 -1964
  198. package/responseModel/servers/MasterAdmin.json +0 -5569
  199. package/responseModel/servers/MasterPlayer.json +0 -5924
  200. package/responseModel/servers/Multiplayer.json +0 -545
  201. package/responseModel/servers/StoreInventory.json +0 -1290
@@ -1,3800 +0,0 @@
1
- {
2
- "requestType": "MasterPlayer",
3
- "operations": [
4
- {
5
- "operationCode": "AddPushNotification",
6
- "details": [
7
- {
8
- "role": "Client",
9
- "requestData": [
10
- {
11
- "code": "UserId",
12
- "description": "",
13
- "type": "string"
14
- },
15
- {
16
- "code": "Token",
17
- "description": "",
18
- "type": "string"
19
- },
20
- {
21
- "code": "PlatformType",
22
- "description": "",
23
- "type": "number"
24
- }
25
- ]
26
- },
27
- {
28
- "role": "Server",
29
- "requestData": [
30
- {
31
- "code": "UserId",
32
- "description": "",
33
- "type": "string"
34
- }
35
- ]
36
- }
37
- ],
38
- "description": ""
39
- },
40
- {
41
- "operationCode": "AddSegment",
42
- "details": [
43
- {
44
- "role": "Client",
45
- "requestData": [
46
- {
47
- "code": "UserId",
48
- "description": "",
49
- "type": "string"
50
- },
51
- {
52
- "code": "Value",
53
- "description": "",
54
- "type": "string"
55
- }
56
- ]
57
- },
58
- {
59
- "role": "Server",
60
- "requestData": [
61
- {
62
- "code": "UserId",
63
- "description": "",
64
- "type": "string"
65
- }
66
- ]
67
- }
68
- ],
69
- "description": ""
70
- },
71
- {
72
- "operationCode": "ChangeAccountPassword",
73
- "details": [
74
- {
75
- "role": "Client",
76
- "requestData": [
77
- {
78
- "code": "UserId",
79
- "description": "",
80
- "type": "string"
81
- },
82
- {
83
- "code": "CurrentPassword",
84
- "description": "",
85
- "type": "string"
86
- },
87
- {
88
- "code": "Password",
89
- "description": "",
90
- "type": "string"
91
- }
92
- ]
93
- }
94
- ],
95
- "description": ""
96
- },
97
- {
98
- "operationCode": "ChangePlayerCurrency",
99
- "details": [
100
- {
101
- "role": "Client",
102
- "requestData": [
103
- {
104
- "code": "UserId",
105
- "description": "",
106
- "type": "string"
107
- },
108
- {
109
- "code": "PlayerCurrencies",
110
- "description": "",
111
- "type": "Array<PlayerCurrencyParam>"
112
- },
113
- {
114
- "code": "Log",
115
- "description": "",
116
- "type": "string"
117
- }
118
- ]
119
- },
120
- {
121
- "role": "Server",
122
- "requestData": [
123
- {
124
- "code": "UserId",
125
- "description": "",
126
- "type": "string"
127
- }
128
- ]
129
- }
130
- ],
131
- "description": ""
132
- },
133
- {
134
- "operationCode": "ChangePlayerStatistics",
135
- "details": [
136
- {
137
- "role": "Client",
138
- "requestData": [
139
- {
140
- "code": "UserId",
141
- "description": "",
142
- "type": "string"
143
- },
144
- {
145
- "code": "PlayerStatistics",
146
- "description": "",
147
- "type": "Array<PlayerStatisticsParam>"
148
- },
149
- {
150
- "code": "Log",
151
- "description": "",
152
- "type": "string"
153
- }
154
- ]
155
- },
156
- {
157
- "role": "Server",
158
- "requestData": [
159
- {
160
- "code": "UserId",
161
- "description": "",
162
- "type": "string"
163
- }
164
- ]
165
- }
166
- ],
167
- "description": ""
168
- },
169
- {
170
- "operationCode": "GetAvatar",
171
- "details": [
172
- {
173
- "role": "Client",
174
- "requestData": [
175
- {
176
- "code": "UserId",
177
- "description": "",
178
- "type": "string"
179
- }
180
- ]
181
- },
182
- {
183
- "role": "Server",
184
- "requestData": [
185
- {
186
- "code": "UserId",
187
- "description": "",
188
- "type": "string"
189
- }
190
- ]
191
- }
192
- ],
193
- "description": ""
194
- },
195
- {
196
- "operationCode": "GetCountryCode",
197
- "details": [
198
- {
199
- "role": "Client",
200
- "requestData": [
201
- {
202
- "code": "UserId",
203
- "description": "",
204
- "type": "string"
205
- }
206
- ]
207
- },
208
- {
209
- "role": "Server",
210
- "requestData": [
211
- {
212
- "code": "UserId",
213
- "description": "",
214
- "type": "string"
215
- }
216
- ]
217
- }
218
- ],
219
- "description": ""
220
- },
221
- {
222
- "operationCode": "GetCreateLeaderboard",
223
- "details": [
224
- {
225
- "role": "Client",
226
- "requestData": [
227
- {
228
- "code": "InfoRequestParam",
229
- "description": "",
230
- "type": "InfoRequestParam"
231
- },
232
- {
233
- "code": "Skip",
234
- "description": "",
235
- "type": "number",
236
- "defaultValue": "0"
237
- },
238
- {
239
- "code": "Limit",
240
- "description": "",
241
- "type": "number",
242
- "defaultValue": "10"
243
- },
244
- {
245
- "code": "LoadFromCache",
246
- "description": "",
247
- "type": "boolean",
248
- "defaultValue": "true"
249
- }
250
- ]
251
- }
252
- ],
253
- "description": ""
254
- },
255
- {
256
- "operationCode": "GetCurrencyLeaderboard",
257
- "details": [
258
- {
259
- "role": "Client",
260
- "requestData": [
261
- {
262
- "code": "Key",
263
- "description": "",
264
- "type": "string"
265
- },
266
- {
267
- "code": "InfoRequestParam",
268
- "description": "",
269
- "type": "InfoRequestParam"
270
- },
271
- {
272
- "code": "Skip",
273
- "description": "",
274
- "type": "number",
275
- "defaultValue": "0"
276
- },
277
- {
278
- "code": "Limit",
279
- "description": "",
280
- "type": "number",
281
- "defaultValue": "10"
282
- },
283
- {
284
- "code": "LoadFromCache",
285
- "description": "",
286
- "type": "boolean",
287
- "defaultValue": "true"
288
- }
289
- ]
290
- }
291
- ],
292
- "description": ""
293
- },
294
- {
295
- "operationCode": "GetCurrencyLog",
296
- "details": [
297
- {
298
- "role": "Client",
299
- "requestData": [
300
- {
301
- "code": "Keys",
302
- "description": "",
303
- "type": "Array<string>"
304
- },
305
- {
306
- "code": "UserId",
307
- "description": "",
308
- "type": "string"
309
- },
310
- {
311
- "code": "Limit",
312
- "description": "",
313
- "type": "number",
314
- "defaultValue": "10"
315
- },
316
- {
317
- "code": "Token",
318
- "description": "",
319
- "type": "string"
320
- }
321
- ]
322
- }
323
- ],
324
- "description": ""
325
- },
326
- {
327
- "operationCode": "GetCustomData",
328
- "details": [
329
- {
330
- "role": "Client",
331
- "requestData": [
332
- {
333
- "code": "UserId",
334
- "description": "",
335
- "type": "string"
336
- },
337
- {
338
- "code": "CustomDataKeys",
339
- "description": "",
340
- "type": "Array<string>"
341
- }
342
- ]
343
- },
344
- {
345
- "role": "Server",
346
- "requestData": [
347
- {
348
- "code": "UserId",
349
- "description": "",
350
- "type": "string"
351
- }
352
- ]
353
- }
354
- ],
355
- "description": ""
356
- },
357
- {
358
- "operationCode": "GetDisplayName",
359
- "details": [
360
- {
361
- "role": "Client",
362
- "requestData": [
363
- {
364
- "code": "UserId",
365
- "description": "",
366
- "type": "string"
367
- }
368
- ]
369
- },
370
- {
371
- "role": "Server",
372
- "requestData": [
373
- {
374
- "code": "UserId",
375
- "description": "",
376
- "type": "string"
377
- }
378
- ]
379
- }
380
- ],
381
- "description": ""
382
- },
383
- {
384
- "operationCode": "GetEmail",
385
- "details": [
386
- {
387
- "role": "Client",
388
- "requestData": [
389
- {
390
- "code": "UserId",
391
- "description": "",
392
- "type": "string"
393
- }
394
- ]
395
- },
396
- {
397
- "role": "Server",
398
- "requestData": [
399
- {
400
- "code": "UserId",
401
- "description": "",
402
- "type": "string"
403
- }
404
- ]
405
- }
406
- ],
407
- "description": ""
408
- },
409
- {
410
- "operationCode": "GetExternal",
411
- "details": [
412
- {
413
- "role": "Client",
414
- "requestData": [
415
- {
416
- "code": "UserId",
417
- "description": "",
418
- "type": "string"
419
- }
420
- ]
421
- },
422
- {
423
- "role": "Server",
424
- "requestData": [
425
- {
426
- "code": "UserId",
427
- "description": "",
428
- "type": "string"
429
- }
430
- ]
431
- }
432
- ],
433
- "description": ""
434
- },
435
- {
436
- "operationCode": "GetIpAddressCreate",
437
- "details": [
438
- {
439
- "role": "Client",
440
- "requestData": [
441
- {
442
- "code": "UserId",
443
- "description": "",
444
- "type": "string"
445
- }
446
- ]
447
- },
448
- {
449
- "role": "Server",
450
- "requestData": [
451
- {
452
- "code": "UserId",
453
- "description": "",
454
- "type": "string"
455
- }
456
- ]
457
- }
458
- ],
459
- "description": ""
460
- },
461
- {
462
- "operationCode": "GetLastLoginLeaderboard",
463
- "details": [
464
- {
465
- "role": "Client",
466
- "requestData": [
467
- {
468
- "code": "InfoRequestParam",
469
- "description": "",
470
- "type": "InfoRequestParam"
471
- },
472
- {
473
- "code": "Skip",
474
- "description": "",
475
- "type": "number",
476
- "defaultValue": "0"
477
- },
478
- {
479
- "code": "Limit",
480
- "description": "",
481
- "type": "number",
482
- "defaultValue": "10"
483
- },
484
- {
485
- "code": "LoadFromCache",
486
- "description": "",
487
- "type": "boolean",
488
- "defaultValue": "true"
489
- }
490
- ]
491
- }
492
- ],
493
- "description": ""
494
- },
495
- {
496
- "operationCode": "GetPlayerBan",
497
- "details": [
498
- {
499
- "role": "Client",
500
- "requestData": [
501
- {
502
- "code": "UserId",
503
- "description": "",
504
- "type": "string"
505
- }
506
- ]
507
- },
508
- {
509
- "role": "Server",
510
- "requestData": [
511
- {
512
- "code": "UserId",
513
- "description": "",
514
- "type": "string"
515
- }
516
- ]
517
- }
518
- ],
519
- "description": ""
520
- },
521
- {
522
- "operationCode": "GetPlayerCurrency",
523
- "details": [
524
- {
525
- "role": "Client",
526
- "requestData": [
527
- {
528
- "code": "UserId",
529
- "description": "",
530
- "type": "string"
531
- },
532
- {
533
- "code": "PlayerCurrencyKeys",
534
- "description": "",
535
- "type": "Array<string>"
536
- }
537
- ]
538
- },
539
- {
540
- "role": "Server",
541
- "requestData": [
542
- {
543
- "code": "UserId",
544
- "description": "",
545
- "type": "string"
546
- }
547
- ]
548
- }
549
- ],
550
- "description": ""
551
- },
552
- {
553
- "operationCode": "GetPlayerData",
554
- "details": [
555
- {
556
- "role": "Client",
557
- "requestData": [
558
- {
559
- "code": "UserId",
560
- "description": "",
561
- "type": "string"
562
- },
563
- {
564
- "code": "PlayerDataKeys",
565
- "description": "",
566
- "type": "Array<string>"
567
- }
568
- ]
569
- },
570
- {
571
- "role": "Server",
572
- "requestData": [
573
- {
574
- "code": "UserId",
575
- "description": "",
576
- "type": "string"
577
- }
578
- ]
579
- }
580
- ],
581
- "description": ""
582
- },
583
- {
584
- "operationCode": "GetPlayerInformation",
585
- "details": [
586
- {
587
- "role": "Client",
588
- "requestData": [
589
- {
590
- "code": "UserId",
591
- "description": "",
592
- "type": "string"
593
- },
594
- {
595
- "code": "InfoRequestParam",
596
- "description": "",
597
- "type": "InfoRequestParam"
598
- }
599
- ]
600
- },
601
- {
602
- "role": "Server",
603
- "requestData": [
604
- {
605
- "code": "UserId",
606
- "description": "",
607
- "type": "string"
608
- }
609
- ]
610
- }
611
- ],
612
- "description": ""
613
- },
614
- {
615
- "operationCode": "GetPlayerStatistics",
616
- "details": [
617
- {
618
- "role": "Client",
619
- "requestData": [
620
- {
621
- "code": "UserId",
622
- "description": "",
623
- "type": "string"
624
- },
625
- {
626
- "code": "PlayerStatisticsKeys",
627
- "description": "",
628
- "type": "Array<string>"
629
- }
630
- ]
631
- },
632
- {
633
- "role": "Server",
634
- "requestData": [
635
- {
636
- "code": "UserId",
637
- "description": "",
638
- "type": "string"
639
- }
640
- ]
641
- }
642
- ],
643
- "description": ""
644
- },
645
- {
646
- "operationCode": "GetPlayersWithApple",
647
- "details": [
648
- {
649
- "role": "Client",
650
- "requestData": [
651
- {
652
- "code": "AppleIds",
653
- "description": "",
654
- "type": "Array<string>"
655
- },
656
- {
657
- "code": "InfoRequestParam",
658
- "description": "",
659
- "type": "InfoRequestParam"
660
- }
661
- ]
662
- }
663
- ],
664
- "description": ""
665
- },
666
- {
667
- "operationCode": "GetPlayersWithDisplayName",
668
- "details": [
669
- {
670
- "role": "Client",
671
- "requestData": [
672
- {
673
- "code": "Keyword",
674
- "description": "",
675
- "type": "string"
676
- },
677
- {
678
- "code": "InfoRequestParam",
679
- "description": "",
680
- "type": "InfoRequestParam"
681
- },
682
- {
683
- "code": "Skip",
684
- "description": "",
685
- "type": "number",
686
- "defaultValue": "0"
687
- },
688
- {
689
- "code": "Limit",
690
- "description": "",
691
- "type": "number",
692
- "defaultValue": "10"
693
- }
694
- ]
695
- }
696
- ],
697
- "description": ""
698
- },
699
- {
700
- "operationCode": "GetPlayersWithFacebook",
701
- "details": [
702
- {
703
- "role": "Client",
704
- "requestData": [
705
- {
706
- "code": "FacebookIds",
707
- "description": "",
708
- "type": "Array<string>"
709
- },
710
- {
711
- "code": "InfoRequestParam",
712
- "description": "",
713
- "type": "InfoRequestParam"
714
- }
715
- ]
716
- }
717
- ],
718
- "description": ""
719
- },
720
- {
721
- "operationCode": "GetPlayersWithGameCenter",
722
- "details": [
723
- {
724
- "role": "Client",
725
- "requestData": [
726
- {
727
- "code": "PlayerIds",
728
- "description": "",
729
- "type": "Array<string>"
730
- },
731
- {
732
- "code": "InfoRequestParam",
733
- "description": "",
734
- "type": "InfoRequestParam"
735
- }
736
- ]
737
- }
738
- ],
739
- "description": ""
740
- },
741
- {
742
- "operationCode": "GetPlayersWithGenericService",
743
- "details": [
744
- {
745
- "role": "Client",
746
- "requestData": [
747
- {
748
- "code": "ServiceName",
749
- "description": "",
750
- "type": "string"
751
- },
752
- {
753
- "code": "GenericIds",
754
- "description": "",
755
- "type": "Array<string>"
756
- },
757
- {
758
- "code": "InfoRequestParam",
759
- "description": "",
760
- "type": "InfoRequestParam"
761
- }
762
- ]
763
- }
764
- ],
765
- "description": ""
766
- },
767
- {
768
- "operationCode": "GetPlayersWithGooglePlayGameService",
769
- "details": [
770
- {
771
- "role": "Client",
772
- "requestData": [
773
- {
774
- "code": "PlayerIds",
775
- "description": "",
776
- "type": "Array<string>"
777
- },
778
- {
779
- "code": "InfoRequestParam",
780
- "description": "",
781
- "type": "InfoRequestParam"
782
- }
783
- ]
784
- }
785
- ],
786
- "description": ""
787
- },
788
- {
789
- "operationCode": "GetPlayersWithGoogle",
790
- "details": [
791
- {
792
- "role": "Client",
793
- "requestData": [
794
- {
795
- "code": "GoogleIds",
796
- "description": "",
797
- "type": "Array<string>"
798
- },
799
- {
800
- "code": "InfoRequestParam",
801
- "description": "",
802
- "type": "InfoRequestParam"
803
- }
804
- ]
805
- }
806
- ],
807
- "description": ""
808
- },
809
- {
810
- "operationCode": "GetPlayersWithSegment",
811
- "details": [
812
- {
813
- "role": "Client",
814
- "requestData": [
815
- {
816
- "code": "Value",
817
- "description": "",
818
- "type": "string"
819
- },
820
- {
821
- "code": "InfoRequestParam",
822
- "description": "",
823
- "type": "InfoRequestParam"
824
- },
825
- {
826
- "code": "Skip",
827
- "description": "",
828
- "type": "number",
829
- "defaultValue": "0"
830
- },
831
- {
832
- "code": "Limit",
833
- "description": "",
834
- "type": "number",
835
- "defaultValue": "10"
836
- }
837
- ]
838
- }
839
- ],
840
- "description": ""
841
- },
842
- {
843
- "operationCode": "GetPlayersWithTag",
844
- "details": [
845
- {
846
- "role": "Client",
847
- "requestData": [
848
- {
849
- "code": "Key",
850
- "description": "",
851
- "type": "string"
852
- },
853
- {
854
- "code": "Value",
855
- "description": "",
856
- "type": "string"
857
- },
858
- {
859
- "code": "InfoRequestParam",
860
- "description": "",
861
- "type": "InfoRequestParam"
862
- },
863
- {
864
- "code": "Skip",
865
- "description": "",
866
- "type": "number",
867
- "defaultValue": "0"
868
- },
869
- {
870
- "code": "Limit",
871
- "description": "",
872
- "type": "number",
873
- "defaultValue": "10"
874
- }
875
- ]
876
- }
877
- ],
878
- "description": ""
879
- },
880
- {
881
- "operationCode": "GetPushNotification",
882
- "details": [
883
- {
884
- "role": "Client",
885
- "requestData": [
886
- {
887
- "code": "UserId",
888
- "description": "",
889
- "type": "string"
890
- }
891
- ]
892
- },
893
- {
894
- "role": "Server",
895
- "requestData": [
896
- {
897
- "code": "UserId",
898
- "description": "",
899
- "type": "string"
900
- }
901
- ]
902
- }
903
- ],
904
- "description": ""
905
- },
906
- {
907
- "operationCode": "GetSegment",
908
- "details": [
909
- {
910
- "role": "Client",
911
- "requestData": [
912
- {
913
- "code": "UserId",
914
- "description": "",
915
- "type": "string"
916
- }
917
- ]
918
- },
919
- {
920
- "role": "Server",
921
- "requestData": [
922
- {
923
- "code": "UserId",
924
- "description": "",
925
- "type": "string"
926
- }
927
- ]
928
- }
929
- ],
930
- "description": ""
931
- },
932
- {
933
- "operationCode": "GetStatisticsLeaderboardAroundPlayer",
934
- "details": [
935
- {
936
- "role": "Client",
937
- "requestData": [
938
- {
939
- "code": "UserId",
940
- "description": "",
941
- "type": "string"
942
- },
943
- {
944
- "code": "Key",
945
- "description": "",
946
- "type": "string"
947
- },
948
- {
949
- "code": "InfoRequestParam",
950
- "description": "",
951
- "type": "InfoRequestParam"
952
- },
953
- {
954
- "code": "Skip",
955
- "description": "",
956
- "type": "number",
957
- "defaultValue": "0"
958
- },
959
- {
960
- "code": "Limit",
961
- "description": "",
962
- "type": "number",
963
- "defaultValue": "10"
964
- },
965
- {
966
- "code": "LoadFromCache",
967
- "description": "",
968
- "type": "boolean",
969
- "defaultValue": "true"
970
- }
971
- ]
972
- },
973
- {
974
- "role": "Server",
975
- "requestData": [
976
- {
977
- "code": "UserId",
978
- "description": "",
979
- "type": "string"
980
- }
981
- ]
982
- }
983
- ],
984
- "description": ""
985
- },
986
- {
987
- "operationCode": "GetStatisticsLeaderboard",
988
- "details": [
989
- {
990
- "role": "Client",
991
- "requestData": [
992
- {
993
- "code": "Key",
994
- "description": "",
995
- "type": "string"
996
- },
997
- {
998
- "code": "InfoRequestParam",
999
- "description": "",
1000
- "type": "InfoRequestParam"
1001
- },
1002
- {
1003
- "code": "Skip",
1004
- "description": "",
1005
- "type": "number",
1006
- "defaultValue": "0"
1007
- },
1008
- {
1009
- "code": "Limit",
1010
- "description": "",
1011
- "type": "number",
1012
- "defaultValue": "10"
1013
- },
1014
- {
1015
- "code": "LoadFromCache",
1016
- "description": "",
1017
- "type": "boolean",
1018
- "defaultValue": "true"
1019
- },
1020
- {
1021
- "code": "Version",
1022
- "description": "",
1023
- "type": "string"
1024
- }
1025
- ]
1026
- }
1027
- ],
1028
- "description": ""
1029
- },
1030
- {
1031
- "operationCode": "GetStatisticsLog",
1032
- "details": [
1033
- {
1034
- "role": "Client",
1035
- "requestData": [
1036
- {
1037
- "code": "Keys",
1038
- "description": "",
1039
- "type": "Array<string>"
1040
- },
1041
- {
1042
- "code": "UserId",
1043
- "description": "",
1044
- "type": "string"
1045
- },
1046
- {
1047
- "code": "Limit",
1048
- "description": "",
1049
- "type": "number",
1050
- "defaultValue": "10"
1051
- },
1052
- {
1053
- "code": "Token",
1054
- "description": "",
1055
- "type": "string"
1056
- }
1057
- ]
1058
- }
1059
- ],
1060
- "description": ""
1061
- },
1062
- {
1063
- "operationCode": "GetTag",
1064
- "details": [
1065
- {
1066
- "role": "Client",
1067
- "requestData": [
1068
- {
1069
- "code": "UserId",
1070
- "description": "",
1071
- "type": "string"
1072
- },
1073
- {
1074
- "code": "TagKeys",
1075
- "description": "",
1076
- "type": "Array<string>"
1077
- }
1078
- ]
1079
- },
1080
- {
1081
- "role": "Server",
1082
- "requestData": [
1083
- {
1084
- "code": "UserId",
1085
- "description": "",
1086
- "type": "string"
1087
- }
1088
- ]
1089
- }
1090
- ],
1091
- "description": ""
1092
- },
1093
- {
1094
- "operationCode": "GetTsCreate",
1095
- "details": [
1096
- {
1097
- "role": "Client",
1098
- "requestData": [
1099
- {
1100
- "code": "UserId",
1101
- "description": "",
1102
- "type": "string"
1103
- }
1104
- ]
1105
- },
1106
- {
1107
- "role": "Server",
1108
- "requestData": [
1109
- {
1110
- "code": "UserId",
1111
- "description": "",
1112
- "type": "string"
1113
- }
1114
- ]
1115
- }
1116
- ],
1117
- "description": ""
1118
- },
1119
- {
1120
- "operationCode": "GetTsLastLogin",
1121
- "details": [
1122
- {
1123
- "role": "Client",
1124
- "requestData": [
1125
- {
1126
- "code": "UserId",
1127
- "description": "",
1128
- "type": "string"
1129
- }
1130
- ]
1131
- },
1132
- {
1133
- "role": "Server",
1134
- "requestData": [
1135
- {
1136
- "code": "UserId",
1137
- "description": "",
1138
- "type": "string"
1139
- }
1140
- ]
1141
- }
1142
- ],
1143
- "description": ""
1144
- },
1145
- {
1146
- "operationCode": "LinkAccount",
1147
- "details": [
1148
- {
1149
- "role": "Client",
1150
- "requestData": [
1151
- {
1152
- "code": "UserId",
1153
- "description": "",
1154
- "type": "string"
1155
- },
1156
- {
1157
- "code": "Username",
1158
- "description": "",
1159
- "type": "string"
1160
- },
1161
- {
1162
- "code": "Password",
1163
- "description": "",
1164
- "type": "string"
1165
- },
1166
- {
1167
- "code": "ForceLink",
1168
- "description": "",
1169
- "type": "boolean",
1170
- "defaultValue": "false"
1171
- }
1172
- ]
1173
- },
1174
- {
1175
- "role": "Server",
1176
- "requestData": [
1177
- {
1178
- "code": "UserId",
1179
- "description": "",
1180
- "type": "string"
1181
- }
1182
- ]
1183
- }
1184
- ],
1185
- "description": ""
1186
- },
1187
- {
1188
- "operationCode": "LinkAndroidDeviceId",
1189
- "details": [
1190
- {
1191
- "role": "Client",
1192
- "requestData": [
1193
- {
1194
- "code": "UserId",
1195
- "description": "",
1196
- "type": "string"
1197
- },
1198
- {
1199
- "code": "AndroidDeviceId",
1200
- "description": "",
1201
- "type": "string"
1202
- },
1203
- {
1204
- "code": "ForceLink",
1205
- "description": "",
1206
- "type": "boolean",
1207
- "defaultValue": "false"
1208
- }
1209
- ]
1210
- },
1211
- {
1212
- "role": "Server",
1213
- "requestData": [
1214
- {
1215
- "code": "UserId",
1216
- "description": "",
1217
- "type": "string"
1218
- }
1219
- ]
1220
- }
1221
- ],
1222
- "description": ""
1223
- },
1224
- {
1225
- "operationCode": "LinkApple",
1226
- "details": [
1227
- {
1228
- "role": "Client",
1229
- "requestData": [
1230
- {
1231
- "code": "UserId",
1232
- "description": "",
1233
- "type": "string"
1234
- },
1235
- {
1236
- "code": "Token",
1237
- "description": "",
1238
- "type": "string"
1239
- },
1240
- {
1241
- "code": "ForceLink",
1242
- "description": "",
1243
- "type": "boolean",
1244
- "defaultValue": "false"
1245
- }
1246
- ]
1247
- },
1248
- {
1249
- "role": "Server",
1250
- "requestData": [
1251
- {
1252
- "code": "UserId",
1253
- "description": "",
1254
- "type": "string"
1255
- }
1256
- ]
1257
- }
1258
- ],
1259
- "description": ""
1260
- },
1261
- {
1262
- "operationCode": "LinkCustomDeviceId",
1263
- "details": [
1264
- {
1265
- "role": "Client",
1266
- "requestData": [
1267
- {
1268
- "code": "UserId",
1269
- "description": "",
1270
- "type": "string"
1271
- },
1272
- {
1273
- "code": "CustomDeviceId",
1274
- "description": "",
1275
- "type": "string"
1276
- },
1277
- {
1278
- "code": "ForceLink",
1279
- "description": "",
1280
- "type": "boolean",
1281
- "defaultValue": "false"
1282
- }
1283
- ]
1284
- },
1285
- {
1286
- "role": "Server",
1287
- "requestData": [
1288
- {
1289
- "code": "UserId",
1290
- "description": "",
1291
- "type": "string"
1292
- }
1293
- ]
1294
- }
1295
- ],
1296
- "description": ""
1297
- },
1298
- {
1299
- "operationCode": "LinkCustomId",
1300
- "details": [
1301
- {
1302
- "role": "Client",
1303
- "requestData": [
1304
- {
1305
- "code": "UserId",
1306
- "description": "",
1307
- "type": "string"
1308
- },
1309
- {
1310
- "code": "CustomId",
1311
- "description": "",
1312
- "type": "string"
1313
- },
1314
- {
1315
- "code": "ForceLink",
1316
- "description": "",
1317
- "type": "boolean",
1318
- "defaultValue": "false"
1319
- }
1320
- ]
1321
- },
1322
- {
1323
- "role": "Server",
1324
- "requestData": [
1325
- {
1326
- "code": "UserId",
1327
- "description": "",
1328
- "type": "string"
1329
- }
1330
- ]
1331
- }
1332
- ],
1333
- "description": ""
1334
- },
1335
- {
1336
- "operationCode": "LinkEditorDeviceId",
1337
- "details": [
1338
- {
1339
- "role": "Client",
1340
- "requestData": [
1341
- {
1342
- "code": "UserId",
1343
- "description": "",
1344
- "type": "string"
1345
- },
1346
- {
1347
- "code": "EditorDeviceId",
1348
- "description": "",
1349
- "type": "string"
1350
- },
1351
- {
1352
- "code": "ForceLink",
1353
- "description": "",
1354
- "type": "boolean",
1355
- "defaultValue": "false"
1356
- }
1357
- ]
1358
- },
1359
- {
1360
- "role": "Server",
1361
- "requestData": [
1362
- {
1363
- "code": "UserId",
1364
- "description": "",
1365
- "type": "string"
1366
- }
1367
- ]
1368
- }
1369
- ],
1370
- "description": ""
1371
- },
1372
- {
1373
- "operationCode": "LinkFacebook",
1374
- "details": [
1375
- {
1376
- "role": "Client",
1377
- "requestData": [
1378
- {
1379
- "code": "UserId",
1380
- "description": "",
1381
- "type": "string"
1382
- },
1383
- {
1384
- "code": "Token",
1385
- "description": "",
1386
- "type": "string"
1387
- },
1388
- {
1389
- "code": "ForceLink",
1390
- "description": "",
1391
- "type": "boolean",
1392
- "defaultValue": "false"
1393
- }
1394
- ]
1395
- },
1396
- {
1397
- "role": "Server",
1398
- "requestData": [
1399
- {
1400
- "code": "UserId",
1401
- "description": "",
1402
- "type": "string"
1403
- }
1404
- ]
1405
- }
1406
- ],
1407
- "description": ""
1408
- },
1409
- {
1410
- "operationCode": "LinkGameCenter",
1411
- "details": [
1412
- {
1413
- "role": "Client",
1414
- "requestData": [
1415
- {
1416
- "code": "UserId",
1417
- "description": "",
1418
- "type": "string"
1419
- },
1420
- {
1421
- "code": "PlayerId",
1422
- "description": "",
1423
- "type": "string"
1424
- },
1425
- {
1426
- "code": "Name",
1427
- "description": "",
1428
- "type": "string"
1429
- },
1430
- {
1431
- "code": "PublicKeyUrl",
1432
- "description": "",
1433
- "type": "string"
1434
- },
1435
- {
1436
- "code": "Signature",
1437
- "description": "",
1438
- "type": "string"
1439
- },
1440
- {
1441
- "code": "Salt",
1442
- "description": "",
1443
- "type": "string"
1444
- },
1445
- {
1446
- "code": "Timestamp",
1447
- "description": "",
1448
- "type": "number"
1449
- },
1450
- {
1451
- "code": "ForceLink",
1452
- "description": "",
1453
- "type": "boolean",
1454
- "defaultValue": "false"
1455
- }
1456
- ]
1457
- },
1458
- {
1459
- "role": "Server",
1460
- "requestData": [
1461
- {
1462
- "code": "UserId",
1463
- "description": "",
1464
- "type": "string"
1465
- }
1466
- ]
1467
- }
1468
- ],
1469
- "description": ""
1470
- },
1471
- {
1472
- "operationCode": "LinkGenericService",
1473
- "details": [
1474
- {
1475
- "role": "Client",
1476
- "requestData": [
1477
- {
1478
- "code": "UserId",
1479
- "description": "",
1480
- "type": "string"
1481
- },
1482
- {
1483
- "code": "ServiceName",
1484
- "description": "",
1485
- "type": "string"
1486
- },
1487
- {
1488
- "code": "ServiceData",
1489
- "description": "",
1490
- "type": "GNHashtable"
1491
- },
1492
- {
1493
- "code": "ForceLink",
1494
- "description": "",
1495
- "type": "boolean",
1496
- "defaultValue": "false"
1497
- }
1498
- ]
1499
- },
1500
- {
1501
- "role": "Server",
1502
- "requestData": [
1503
- {
1504
- "code": "UserId",
1505
- "description": "",
1506
- "type": "string"
1507
- }
1508
- ]
1509
- }
1510
- ],
1511
- "description": ""
1512
- },
1513
- {
1514
- "operationCode": "LinkGooglePlayGameService",
1515
- "details": [
1516
- {
1517
- "role": "Client",
1518
- "requestData": [
1519
- {
1520
- "code": "UserId",
1521
- "description": "",
1522
- "type": "string"
1523
- },
1524
- {
1525
- "code": "Token",
1526
- "description": "",
1527
- "type": "string"
1528
- },
1529
- {
1530
- "code": "ForceLink",
1531
- "description": "",
1532
- "type": "boolean",
1533
- "defaultValue": "false"
1534
- }
1535
- ]
1536
- },
1537
- {
1538
- "role": "Server",
1539
- "requestData": [
1540
- {
1541
- "code": "UserId",
1542
- "description": "",
1543
- "type": "string"
1544
- }
1545
- ]
1546
- }
1547
- ],
1548
- "description": ""
1549
- },
1550
- {
1551
- "operationCode": "LinkGoogle",
1552
- "details": [
1553
- {
1554
- "role": "Client",
1555
- "requestData": [
1556
- {
1557
- "code": "UserId",
1558
- "description": "",
1559
- "type": "string"
1560
- },
1561
- {
1562
- "code": "Token",
1563
- "description": "",
1564
- "type": "string"
1565
- },
1566
- {
1567
- "code": "Type",
1568
- "description": "",
1569
- "type": "number"
1570
- },
1571
- {
1572
- "code": "ForceLink",
1573
- "description": "",
1574
- "type": "boolean",
1575
- "defaultValue": "false"
1576
- }
1577
- ]
1578
- },
1579
- {
1580
- "role": "Server",
1581
- "requestData": [
1582
- {
1583
- "code": "UserId",
1584
- "description": "",
1585
- "type": "string"
1586
- }
1587
- ]
1588
- }
1589
- ],
1590
- "description": ""
1591
- },
1592
- {
1593
- "operationCode": "LinkiOSDeviceId",
1594
- "details": [
1595
- {
1596
- "role": "Client",
1597
- "requestData": [
1598
- {
1599
- "code": "UserId",
1600
- "description": "",
1601
- "type": "string"
1602
- },
1603
- {
1604
- "code": "iOSDeviceId",
1605
- "description": "",
1606
- "type": "string"
1607
- },
1608
- {
1609
- "code": "ForceLink",
1610
- "description": "",
1611
- "type": "boolean",
1612
- "defaultValue": "false"
1613
- }
1614
- ]
1615
- },
1616
- {
1617
- "role": "Server",
1618
- "requestData": [
1619
- {
1620
- "code": "UserId",
1621
- "description": "",
1622
- "type": "string"
1623
- }
1624
- ]
1625
- }
1626
- ],
1627
- "description": ""
1628
- },
1629
- {
1630
- "operationCode": "LinkLinuxDeviceId",
1631
- "details": [
1632
- {
1633
- "role": "Client",
1634
- "requestData": [
1635
- {
1636
- "code": "UserId",
1637
- "description": "",
1638
- "type": "string"
1639
- },
1640
- {
1641
- "code": "LinuxDeviceId",
1642
- "description": "",
1643
- "type": "string"
1644
- },
1645
- {
1646
- "code": "ForceLink",
1647
- "description": "",
1648
- "type": "boolean",
1649
- "defaultValue": "false"
1650
- }
1651
- ]
1652
- },
1653
- {
1654
- "role": "Server",
1655
- "requestData": [
1656
- {
1657
- "code": "UserId",
1658
- "description": "",
1659
- "type": "string"
1660
- }
1661
- ]
1662
- }
1663
- ],
1664
- "description": ""
1665
- },
1666
- {
1667
- "operationCode": "LinkMacOSDeviceId",
1668
- "details": [
1669
- {
1670
- "role": "Client",
1671
- "requestData": [
1672
- {
1673
- "code": "UserId",
1674
- "description": "",
1675
- "type": "string"
1676
- },
1677
- {
1678
- "code": "MacOSDeviceId",
1679
- "description": "",
1680
- "type": "string"
1681
- },
1682
- {
1683
- "code": "ForceLink",
1684
- "description": "",
1685
- "type": "boolean",
1686
- "defaultValue": "false"
1687
- }
1688
- ]
1689
- },
1690
- {
1691
- "role": "Server",
1692
- "requestData": [
1693
- {
1694
- "code": "UserId",
1695
- "description": "",
1696
- "type": "string"
1697
- }
1698
- ]
1699
- }
1700
- ],
1701
- "description": ""
1702
- },
1703
- {
1704
- "operationCode": "LinkWindowsDeviceId",
1705
- "details": [
1706
- {
1707
- "role": "Client",
1708
- "requestData": [
1709
- {
1710
- "code": "UserId",
1711
- "description": "",
1712
- "type": "string"
1713
- },
1714
- {
1715
- "code": "WindowsDeviceId",
1716
- "description": "",
1717
- "type": "string"
1718
- },
1719
- {
1720
- "code": "ForceLink",
1721
- "description": "",
1722
- "type": "boolean",
1723
- "defaultValue": "false"
1724
- }
1725
- ]
1726
- },
1727
- {
1728
- "role": "Server",
1729
- "requestData": [
1730
- {
1731
- "code": "UserId",
1732
- "description": "",
1733
- "type": "string"
1734
- }
1735
- ]
1736
- }
1737
- ],
1738
- "description": ""
1739
- },
1740
- {
1741
- "operationCode": "LinkWindowsPhoneDeviceId",
1742
- "details": [
1743
- {
1744
- "role": "Client",
1745
- "requestData": [
1746
- {
1747
- "code": "UserId",
1748
- "description": "",
1749
- "type": "string"
1750
- },
1751
- {
1752
- "code": "WindowsPhoneDeviceId",
1753
- "description": "",
1754
- "type": "string"
1755
- },
1756
- {
1757
- "code": "ForceLink",
1758
- "description": "",
1759
- "type": "boolean",
1760
- "defaultValue": "false"
1761
- }
1762
- ]
1763
- },
1764
- {
1765
- "role": "Server",
1766
- "requestData": [
1767
- {
1768
- "code": "UserId",
1769
- "description": "",
1770
- "type": "string"
1771
- }
1772
- ]
1773
- }
1774
- ],
1775
- "description": ""
1776
- },
1777
- {
1778
- "operationCode": "RemovePushNotification",
1779
- "details": [
1780
- {
1781
- "role": "Client",
1782
- "requestData": [
1783
- {
1784
- "code": "UserId",
1785
- "description": "",
1786
- "type": "string"
1787
- },
1788
- {
1789
- "code": "PushId",
1790
- "description": "",
1791
- "type": "string"
1792
- }
1793
- ]
1794
- },
1795
- {
1796
- "role": "Server",
1797
- "requestData": [
1798
- {
1799
- "code": "UserId",
1800
- "description": "",
1801
- "type": "string"
1802
- }
1803
- ]
1804
- }
1805
- ],
1806
- "description": ""
1807
- },
1808
- {
1809
- "operationCode": "RemoveSegment",
1810
- "details": [
1811
- {
1812
- "role": "Client",
1813
- "requestData": [
1814
- {
1815
- "code": "UserId",
1816
- "description": "",
1817
- "type": "string"
1818
- },
1819
- {
1820
- "code": "Value",
1821
- "description": "",
1822
- "type": "string"
1823
- }
1824
- ]
1825
- },
1826
- {
1827
- "role": "Server",
1828
- "requestData": [
1829
- {
1830
- "code": "UserId",
1831
- "description": "",
1832
- "type": "string"
1833
- }
1834
- ]
1835
- }
1836
- ],
1837
- "description": ""
1838
- },
1839
- {
1840
- "operationCode": "RemoveTag",
1841
- "details": [
1842
- {
1843
- "role": "Client",
1844
- "requestData": [
1845
- {
1846
- "code": "UserId",
1847
- "description": "",
1848
- "type": "string"
1849
- },
1850
- {
1851
- "code": "Key",
1852
- "description": "",
1853
- "type": "string"
1854
- }
1855
- ]
1856
- },
1857
- {
1858
- "role": "Server",
1859
- "requestData": [
1860
- {
1861
- "code": "UserId",
1862
- "description": "",
1863
- "type": "string"
1864
- }
1865
- ]
1866
- }
1867
- ],
1868
- "description": ""
1869
- },
1870
- {
1871
- "operationCode": "ResetAccountPassword",
1872
- "details": [
1873
- {
1874
- "role": "Client",
1875
- "requestData": [
1876
- {
1877
- "code": "UserId",
1878
- "description": "",
1879
- "type": "string"
1880
- },
1881
- {
1882
- "code": "Password",
1883
- "description": "",
1884
- "type": "string"
1885
- }
1886
- ]
1887
- },
1888
- {
1889
- "role": "Server",
1890
- "requestData": [
1891
- {
1892
- "code": "UserId",
1893
- "description": "",
1894
- "type": "string"
1895
- }
1896
- ]
1897
- }
1898
- ],
1899
- "description": ""
1900
- },
1901
- {
1902
- "operationCode": "SendEmail",
1903
- "details": [
1904
- {
1905
- "role": "Client",
1906
- "requestData": [
1907
- {
1908
- "code": "UserId",
1909
- "description": "",
1910
- "type": "string"
1911
- },
1912
- {
1913
- "code": "Subject",
1914
- "description": "",
1915
- "type": "string"
1916
- },
1917
- {
1918
- "code": "ContentHtml",
1919
- "description": "",
1920
- "type": "string"
1921
- }
1922
- ]
1923
- },
1924
- {
1925
- "role": "Server",
1926
- "requestData": [
1927
- {
1928
- "code": "UserId",
1929
- "description": "",
1930
- "type": "string"
1931
- }
1932
- ]
1933
- }
1934
- ],
1935
- "description": ""
1936
- },
1937
- {
1938
- "operationCode": "SendPushNotification",
1939
- "details": [
1940
- {
1941
- "role": "Client",
1942
- "requestData": [
1943
- {
1944
- "code": "UserId",
1945
- "description": "",
1946
- "type": "string"
1947
- },
1948
- {
1949
- "code": "Title",
1950
- "description": "",
1951
- "type": "string"
1952
- },
1953
- {
1954
- "code": "Body",
1955
- "description": "",
1956
- "type": "string"
1957
- },
1958
- {
1959
- "code": "Badge",
1960
- "description": "",
1961
- "type": "number",
1962
- "defaultValue": "null"
1963
- },
1964
- {
1965
- "code": "Sound",
1966
- "description": "",
1967
- "type": "string"
1968
- },
1969
- {
1970
- "code": "Icon",
1971
- "description": "",
1972
- "type": "string"
1973
- },
1974
- {
1975
- "code": "Data",
1976
- "description": "",
1977
- "type": "GNHashtable"
1978
- }
1979
- ]
1980
- },
1981
- {
1982
- "role": "Server",
1983
- "requestData": [
1984
- {
1985
- "code": "UserId",
1986
- "description": "",
1987
- "type": "string"
1988
- }
1989
- ]
1990
- }
1991
- ],
1992
- "description": ""
1993
- },
1994
- {
1995
- "operationCode": "SendSocketOperationEvent",
1996
- "details": [
1997
- {
1998
- "role": "Client",
1999
- "requestData": [
2000
- {
2001
- "code": "UserId",
2002
- "description": "",
2003
- "type": "string"
2004
- },
2005
- {
2006
- "code": "EventCode",
2007
- "description": "",
2008
- "type": "string"
2009
- },
2010
- {
2011
- "code": "EventParameters",
2012
- "description": "",
2013
- "type": "GNHashtable"
2014
- }
2015
- ]
2016
- },
2017
- {
2018
- "role": "Server",
2019
- "requestData": [
2020
- {
2021
- "code": "UserId",
2022
- "description": "",
2023
- "type": "string"
2024
- }
2025
- ]
2026
- }
2027
- ],
2028
- "description": ""
2029
- },
2030
- {
2031
- "operationCode": "SetAvatar",
2032
- "details": [
2033
- {
2034
- "role": "Client",
2035
- "requestData": [
2036
- {
2037
- "code": "UserId",
2038
- "description": "",
2039
- "type": "string"
2040
- },
2041
- {
2042
- "code": "Type",
2043
- "description": "",
2044
- "type": "number"
2045
- },
2046
- {
2047
- "code": "Value",
2048
- "description": "",
2049
- "type": "string"
2050
- }
2051
- ]
2052
- },
2053
- {
2054
- "role": "Server",
2055
- "requestData": [
2056
- {
2057
- "code": "UserId",
2058
- "description": "",
2059
- "type": "string"
2060
- }
2061
- ]
2062
- }
2063
- ],
2064
- "description": ""
2065
- },
2066
- {
2067
- "operationCode": "SetCountryCode",
2068
- "details": [
2069
- {
2070
- "role": "Client",
2071
- "requestData": [
2072
- {
2073
- "code": "UserId",
2074
- "description": "",
2075
- "type": "string"
2076
- },
2077
- {
2078
- "code": "CountryCode",
2079
- "description": "",
2080
- "type": "string"
2081
- }
2082
- ]
2083
- },
2084
- {
2085
- "role": "Server",
2086
- "requestData": [
2087
- {
2088
- "code": "UserId",
2089
- "description": "",
2090
- "type": "string"
2091
- }
2092
- ]
2093
- }
2094
- ],
2095
- "description": ""
2096
- },
2097
- {
2098
- "operationCode": "SetCustomData",
2099
- "details": [
2100
- {
2101
- "role": "Client",
2102
- "requestData": [
2103
- {
2104
- "code": "UserId",
2105
- "description": "",
2106
- "type": "string"
2107
- },
2108
- {
2109
- "code": "CustomDatas",
2110
- "description": "",
2111
- "type": "Array<CustomDataParam>"
2112
- }
2113
- ]
2114
- },
2115
- {
2116
- "role": "Server",
2117
- "requestData": [
2118
- {
2119
- "code": "UserId",
2120
- "description": "",
2121
- "type": "string"
2122
- }
2123
- ]
2124
- }
2125
- ],
2126
- "description": ""
2127
- },
2128
- {
2129
- "operationCode": "SetDisplayName",
2130
- "details": [
2131
- {
2132
- "role": "Client",
2133
- "requestData": [
2134
- {
2135
- "code": "UserId",
2136
- "description": "",
2137
- "type": "string"
2138
- },
2139
- {
2140
- "code": "DisplayName",
2141
- "description": "",
2142
- "type": "string"
2143
- },
2144
- {
2145
- "code": "UniqueDisplayName",
2146
- "description": "",
2147
- "type": "boolean",
2148
- "defaultValue": "false"
2149
- }
2150
- ]
2151
- },
2152
- {
2153
- "role": "Server",
2154
- "requestData": [
2155
- {
2156
- "code": "UserId",
2157
- "description": "",
2158
- "type": "string"
2159
- }
2160
- ]
2161
- }
2162
- ],
2163
- "description": ""
2164
- },
2165
- {
2166
- "operationCode": "SetEmail",
2167
- "details": [
2168
- {
2169
- "role": "Client",
2170
- "requestData": [
2171
- {
2172
- "code": "UserId",
2173
- "description": "",
2174
- "type": "string"
2175
- },
2176
- {
2177
- "code": "Email",
2178
- "description": "",
2179
- "type": "string"
2180
- }
2181
- ]
2182
- },
2183
- {
2184
- "role": "Server",
2185
- "requestData": [
2186
- {
2187
- "code": "UserId",
2188
- "description": "",
2189
- "type": "string"
2190
- }
2191
- ]
2192
- }
2193
- ],
2194
- "description": ""
2195
- },
2196
- {
2197
- "operationCode": "SetPlayerBan",
2198
- "details": [
2199
- {
2200
- "role": "Client",
2201
- "requestData": [
2202
- {
2203
- "code": "UserId",
2204
- "description": "",
2205
- "type": "string"
2206
- },
2207
- {
2208
- "code": "TsExpire",
2209
- "description": "",
2210
- "type": "number"
2211
- },
2212
- {
2213
- "code": "Reason",
2214
- "description": "",
2215
- "type": "string"
2216
- }
2217
- ]
2218
- },
2219
- {
2220
- "role": "Server",
2221
- "requestData": [
2222
- {
2223
- "code": "UserId",
2224
- "description": "",
2225
- "type": "string"
2226
- }
2227
- ]
2228
- }
2229
- ],
2230
- "description": ""
2231
- },
2232
- {
2233
- "operationCode": "SetPlayerData",
2234
- "details": [
2235
- {
2236
- "role": "Client",
2237
- "requestData": [
2238
- {
2239
- "code": "UserId",
2240
- "description": "",
2241
- "type": "string"
2242
- },
2243
- {
2244
- "code": "PlayerDatas",
2245
- "description": "",
2246
- "type": "Array<PlayerDataParam>"
2247
- }
2248
- ]
2249
- },
2250
- {
2251
- "role": "Server",
2252
- "requestData": [
2253
- {
2254
- "code": "UserId",
2255
- "description": "",
2256
- "type": "string"
2257
- }
2258
- ]
2259
- }
2260
- ],
2261
- "description": ""
2262
- },
2263
- {
2264
- "operationCode": "SetTag",
2265
- "details": [
2266
- {
2267
- "role": "Client",
2268
- "requestData": [
2269
- {
2270
- "code": "UserId",
2271
- "description": "",
2272
- "type": "string"
2273
- },
2274
- {
2275
- "code": "Key",
2276
- "description": "",
2277
- "type": "string"
2278
- },
2279
- {
2280
- "code": "Value",
2281
- "description": "",
2282
- "type": "string"
2283
- }
2284
- ]
2285
- },
2286
- {
2287
- "role": "Server",
2288
- "requestData": [
2289
- {
2290
- "code": "UserId",
2291
- "description": "",
2292
- "type": "string"
2293
- }
2294
- ]
2295
- }
2296
- ],
2297
- "description": ""
2298
- },
2299
- {
2300
- "operationCode": "SetTsLastLogin",
2301
- "details": [
2302
- {
2303
- "role": "Client",
2304
- "requestData": [
2305
- {
2306
- "code": "UserId",
2307
- "description": "",
2308
- "type": "string"
2309
- }
2310
- ]
2311
- },
2312
- {
2313
- "role": "Server",
2314
- "requestData": [
2315
- {
2316
- "code": "UserId",
2317
- "description": "",
2318
- "type": "string"
2319
- }
2320
- ]
2321
- }
2322
- ],
2323
- "description": ""
2324
- },
2325
- {
2326
- "operationCode": "UnlinkAccount",
2327
- "details": [
2328
- {
2329
- "role": "Client",
2330
- "requestData": [
2331
- {
2332
- "code": "UserId",
2333
- "description": "",
2334
- "type": "string"
2335
- },
2336
- {
2337
- "code": "Username",
2338
- "description": "",
2339
- "type": "string"
2340
- }
2341
- ]
2342
- },
2343
- {
2344
- "role": "Server",
2345
- "requestData": [
2346
- {
2347
- "code": "UserId",
2348
- "description": "",
2349
- "type": "string"
2350
- }
2351
- ]
2352
- }
2353
- ],
2354
- "description": ""
2355
- },
2356
- {
2357
- "operationCode": "UnlinkAndroidDeviceId",
2358
- "details": [
2359
- {
2360
- "role": "Client",
2361
- "requestData": [
2362
- {
2363
- "code": "UserId",
2364
- "description": "",
2365
- "type": "string"
2366
- },
2367
- {
2368
- "code": "AndroidDeviceId",
2369
- "description": "",
2370
- "type": "string"
2371
- }
2372
- ]
2373
- },
2374
- {
2375
- "role": "Server",
2376
- "requestData": [
2377
- {
2378
- "code": "UserId",
2379
- "description": "",
2380
- "type": "string"
2381
- }
2382
- ]
2383
- }
2384
- ],
2385
- "description": ""
2386
- },
2387
- {
2388
- "operationCode": "UnlinkApple",
2389
- "details": [
2390
- {
2391
- "role": "Client",
2392
- "requestData": [
2393
- {
2394
- "code": "UserId",
2395
- "description": "",
2396
- "type": "string"
2397
- },
2398
- {
2399
- "code": "AppleId",
2400
- "description": "",
2401
- "type": "string"
2402
- }
2403
- ]
2404
- },
2405
- {
2406
- "role": "Server",
2407
- "requestData": [
2408
- {
2409
- "code": "UserId",
2410
- "description": "",
2411
- "type": "string"
2412
- }
2413
- ]
2414
- }
2415
- ],
2416
- "description": ""
2417
- },
2418
- {
2419
- "operationCode": "UnlinkCustomDeviceId",
2420
- "details": [
2421
- {
2422
- "role": "Client",
2423
- "requestData": [
2424
- {
2425
- "code": "UserId",
2426
- "description": "",
2427
- "type": "string"
2428
- },
2429
- {
2430
- "code": "CustomDeviceId",
2431
- "description": "",
2432
- "type": "string"
2433
- }
2434
- ]
2435
- },
2436
- {
2437
- "role": "Server",
2438
- "requestData": [
2439
- {
2440
- "code": "UserId",
2441
- "description": "",
2442
- "type": "string"
2443
- }
2444
- ]
2445
- }
2446
- ],
2447
- "description": ""
2448
- },
2449
- {
2450
- "operationCode": "UnlinkCustomId",
2451
- "details": [
2452
- {
2453
- "role": "Client",
2454
- "requestData": [
2455
- {
2456
- "code": "UserId",
2457
- "description": "",
2458
- "type": "string"
2459
- },
2460
- {
2461
- "code": "CustomId",
2462
- "description": "",
2463
- "type": "string"
2464
- }
2465
- ]
2466
- },
2467
- {
2468
- "role": "Server",
2469
- "requestData": [
2470
- {
2471
- "code": "UserId",
2472
- "description": "",
2473
- "type": "string"
2474
- }
2475
- ]
2476
- }
2477
- ],
2478
- "description": ""
2479
- },
2480
- {
2481
- "operationCode": "UnlinkEditorDeviceId",
2482
- "details": [
2483
- {
2484
- "role": "Client",
2485
- "requestData": [
2486
- {
2487
- "code": "UserId",
2488
- "description": "",
2489
- "type": "string"
2490
- },
2491
- {
2492
- "code": "EditorDeviceId",
2493
- "description": "",
2494
- "type": "string"
2495
- }
2496
- ]
2497
- },
2498
- {
2499
- "role": "Server",
2500
- "requestData": [
2501
- {
2502
- "code": "UserId",
2503
- "description": "",
2504
- "type": "string"
2505
- }
2506
- ]
2507
- }
2508
- ],
2509
- "description": ""
2510
- },
2511
- {
2512
- "operationCode": "UnlinkFacebook",
2513
- "details": [
2514
- {
2515
- "role": "Client",
2516
- "requestData": [
2517
- {
2518
- "code": "UserId",
2519
- "description": "",
2520
- "type": "string"
2521
- },
2522
- {
2523
- "code": "FacebookId",
2524
- "description": "",
2525
- "type": "string"
2526
- }
2527
- ]
2528
- },
2529
- {
2530
- "role": "Server",
2531
- "requestData": [
2532
- {
2533
- "code": "UserId",
2534
- "description": "",
2535
- "type": "string"
2536
- }
2537
- ]
2538
- }
2539
- ],
2540
- "description": ""
2541
- },
2542
- {
2543
- "operationCode": "UnlinkGameCenter",
2544
- "details": [
2545
- {
2546
- "role": "Client",
2547
- "requestData": [
2548
- {
2549
- "code": "UserId",
2550
- "description": "",
2551
- "type": "string"
2552
- },
2553
- {
2554
- "code": "PlayerId",
2555
- "description": "",
2556
- "type": "string"
2557
- }
2558
- ]
2559
- },
2560
- {
2561
- "role": "Server",
2562
- "requestData": [
2563
- {
2564
- "code": "UserId",
2565
- "description": "",
2566
- "type": "string"
2567
- }
2568
- ]
2569
- }
2570
- ],
2571
- "description": ""
2572
- },
2573
- {
2574
- "operationCode": "UnlinkGenericService",
2575
- "details": [
2576
- {
2577
- "role": "Client",
2578
- "requestData": [
2579
- {
2580
- "code": "UserId",
2581
- "description": "",
2582
- "type": "string"
2583
- },
2584
- {
2585
- "code": "ServiceName",
2586
- "description": "",
2587
- "type": "string"
2588
- },
2589
- {
2590
- "code": "ServiceId",
2591
- "description": "",
2592
- "type": "string"
2593
- }
2594
- ]
2595
- },
2596
- {
2597
- "role": "Server",
2598
- "requestData": [
2599
- {
2600
- "code": "UserId",
2601
- "description": "",
2602
- "type": "string"
2603
- }
2604
- ]
2605
- }
2606
- ],
2607
- "description": ""
2608
- },
2609
- {
2610
- "operationCode": "UnlinkGooglePlayGameService",
2611
- "details": [
2612
- {
2613
- "role": "Client",
2614
- "requestData": [
2615
- {
2616
- "code": "UserId",
2617
- "description": "",
2618
- "type": "string"
2619
- },
2620
- {
2621
- "code": "PlayerId",
2622
- "description": "",
2623
- "type": "string"
2624
- }
2625
- ]
2626
- },
2627
- {
2628
- "role": "Server",
2629
- "requestData": [
2630
- {
2631
- "code": "UserId",
2632
- "description": "",
2633
- "type": "string"
2634
- }
2635
- ]
2636
- }
2637
- ],
2638
- "description": ""
2639
- },
2640
- {
2641
- "operationCode": "UnlinkGoogle",
2642
- "details": [
2643
- {
2644
- "role": "Client",
2645
- "requestData": [
2646
- {
2647
- "code": "UserId",
2648
- "description": "",
2649
- "type": "string"
2650
- },
2651
- {
2652
- "code": "GoogleId",
2653
- "description": "",
2654
- "type": "string"
2655
- }
2656
- ]
2657
- },
2658
- {
2659
- "role": "Server",
2660
- "requestData": [
2661
- {
2662
- "code": "UserId",
2663
- "description": "",
2664
- "type": "string"
2665
- }
2666
- ]
2667
- }
2668
- ],
2669
- "description": ""
2670
- },
2671
- {
2672
- "operationCode": "UnlinkiOSDeviceId",
2673
- "details": [
2674
- {
2675
- "role": "Client",
2676
- "requestData": [
2677
- {
2678
- "code": "UserId",
2679
- "description": "",
2680
- "type": "string"
2681
- },
2682
- {
2683
- "code": "iOSDeviceId",
2684
- "description": "",
2685
- "type": "string"
2686
- }
2687
- ]
2688
- },
2689
- {
2690
- "role": "Server",
2691
- "requestData": [
2692
- {
2693
- "code": "UserId",
2694
- "description": "",
2695
- "type": "string"
2696
- }
2697
- ]
2698
- }
2699
- ],
2700
- "description": ""
2701
- },
2702
- {
2703
- "operationCode": "UnlinkLinuxDeviceId",
2704
- "details": [
2705
- {
2706
- "role": "Client",
2707
- "requestData": [
2708
- {
2709
- "code": "UserId",
2710
- "description": "",
2711
- "type": "string"
2712
- },
2713
- {
2714
- "code": "LinuxDeviceId",
2715
- "description": "",
2716
- "type": "string"
2717
- }
2718
- ]
2719
- },
2720
- {
2721
- "role": "Server",
2722
- "requestData": [
2723
- {
2724
- "code": "UserId",
2725
- "description": "",
2726
- "type": "string"
2727
- }
2728
- ]
2729
- }
2730
- ],
2731
- "description": ""
2732
- },
2733
- {
2734
- "operationCode": "UnlinkMacOSDeviceId",
2735
- "details": [
2736
- {
2737
- "role": "Client",
2738
- "requestData": [
2739
- {
2740
- "code": "UserId",
2741
- "description": "",
2742
- "type": "string"
2743
- },
2744
- {
2745
- "code": "MacOSDeviceId",
2746
- "description": "",
2747
- "type": "string"
2748
- }
2749
- ]
2750
- },
2751
- {
2752
- "role": "Server",
2753
- "requestData": [
2754
- {
2755
- "code": "UserId",
2756
- "description": "",
2757
- "type": "string"
2758
- }
2759
- ]
2760
- }
2761
- ],
2762
- "description": ""
2763
- },
2764
- {
2765
- "operationCode": "UnlinkWindowsDeviceId",
2766
- "details": [
2767
- {
2768
- "role": "Client",
2769
- "requestData": [
2770
- {
2771
- "code": "UserId",
2772
- "description": "",
2773
- "type": "string"
2774
- },
2775
- {
2776
- "code": "WindowsDeviceId",
2777
- "description": "",
2778
- "type": "string"
2779
- }
2780
- ]
2781
- },
2782
- {
2783
- "role": "Server",
2784
- "requestData": [
2785
- {
2786
- "code": "UserId",
2787
- "description": "",
2788
- "type": "string"
2789
- }
2790
- ]
2791
- }
2792
- ],
2793
- "description": ""
2794
- },
2795
- {
2796
- "operationCode": "UnlinkWindowsPhoneDeviceId",
2797
- "details": [
2798
- {
2799
- "role": "Client",
2800
- "requestData": [
2801
- {
2802
- "code": "UserId",
2803
- "description": "",
2804
- "type": "string"
2805
- },
2806
- {
2807
- "code": "WindowsPhoneDeviceId",
2808
- "description": "",
2809
- "type": "string"
2810
- }
2811
- ]
2812
- },
2813
- {
2814
- "role": "Server",
2815
- "requestData": [
2816
- {
2817
- "code": "UserId",
2818
- "description": "",
2819
- "type": "string"
2820
- }
2821
- ]
2822
- }
2823
- ],
2824
- "description": ""
2825
- }
2826
- ],
2827
- "models": [
2828
- {
2829
- "name": "CustomDataParam",
2830
- "details": [
2831
- {
2832
- "code": "Key",
2833
- "description": "",
2834
- "type": "string"
2835
- },
2836
- {
2837
- "code": "Value",
2838
- "description": "",
2839
- "type": "any"
2840
- }
2841
- ],
2842
- "description": ""
2843
- },
2844
- {
2845
- "name": "InfoRequestParam",
2846
- "details": [
2847
- {
2848
- "code": "External",
2849
- "description": "",
2850
- "type": "boolean",
2851
- "defaultValue": "false"
2852
- },
2853
- {
2854
- "code": "Segments",
2855
- "description": "",
2856
- "type": "boolean",
2857
- "defaultValue": "false"
2858
- },
2859
- {
2860
- "code": "CustomDatas",
2861
- "description": "",
2862
- "type": "boolean",
2863
- "defaultValue": "false"
2864
- },
2865
- {
2866
- "code": "DisplayName",
2867
- "description": "",
2868
- "type": "boolean",
2869
- "defaultValue": "false"
2870
- },
2871
- {
2872
- "code": "Avatar",
2873
- "description": "",
2874
- "type": "boolean",
2875
- "defaultValue": "false"
2876
- },
2877
- {
2878
- "code": "TsCreate",
2879
- "description": "",
2880
- "type": "boolean",
2881
- "defaultValue": "false"
2882
- },
2883
- {
2884
- "code": "Tags",
2885
- "description": "",
2886
- "type": "boolean",
2887
- "defaultValue": "false"
2888
- },
2889
- {
2890
- "code": "PlayerBan",
2891
- "description": "",
2892
- "type": "boolean",
2893
- "defaultValue": "false"
2894
- },
2895
- {
2896
- "code": "PlayerCurrencies",
2897
- "description": "",
2898
- "type": "boolean",
2899
- "defaultValue": "false"
2900
- },
2901
- {
2902
- "code": "PlayerStatistics",
2903
- "description": "",
2904
- "type": "boolean",
2905
- "defaultValue": "false"
2906
- },
2907
- {
2908
- "code": "PlayerDatas",
2909
- "description": "",
2910
- "type": "boolean",
2911
- "defaultValue": "false"
2912
- },
2913
- {
2914
- "code": "IpAddressCreate",
2915
- "description": "",
2916
- "type": "boolean",
2917
- "defaultValue": "false"
2918
- },
2919
- {
2920
- "code": "CountryCode",
2921
- "description": "",
2922
- "type": "boolean",
2923
- "defaultValue": "false"
2924
- },
2925
- {
2926
- "code": "Email",
2927
- "description": "",
2928
- "type": "boolean",
2929
- "defaultValue": "false"
2930
- },
2931
- {
2932
- "code": "TsLastLogin",
2933
- "description": "",
2934
- "type": "boolean",
2935
- "defaultValue": "false"
2936
- },
2937
- {
2938
- "code": "PushNotifications",
2939
- "description": "",
2940
- "type": "boolean",
2941
- "defaultValue": "false"
2942
- },
2943
- {
2944
- "code": "PlayerDataKeys",
2945
- "description": "",
2946
- "type": "Array<string>"
2947
- },
2948
- {
2949
- "code": "PlayerCurrencyKeys",
2950
- "description": "",
2951
- "type": "Array<string>"
2952
- },
2953
- {
2954
- "code": "PlayerStatisticsKeys",
2955
- "description": "",
2956
- "type": "Array<string>"
2957
- },
2958
- {
2959
- "code": "CustomDataKeys",
2960
- "description": "",
2961
- "type": "Array<string>"
2962
- },
2963
- {
2964
- "code": "TagKeys",
2965
- "description": "",
2966
- "type": "Array<string>"
2967
- }
2968
- ],
2969
- "description": ""
2970
- },
2971
- {
2972
- "name": "PlayerCurrencyParam",
2973
- "details": [
2974
- {
2975
- "code": "Key",
2976
- "description": "",
2977
- "type": "string"
2978
- },
2979
- {
2980
- "code": "Amount",
2981
- "description": "",
2982
- "type": "number"
2983
- }
2984
- ],
2985
- "description": ""
2986
- },
2987
- {
2988
- "name": "PlayerDataParam",
2989
- "details": [
2990
- {
2991
- "code": "Key",
2992
- "description": "",
2993
- "type": "string"
2994
- },
2995
- {
2996
- "code": "Value",
2997
- "description": "",
2998
- "type": "any"
2999
- }
3000
- ],
3001
- "description": ""
3002
- },
3003
- {
3004
- "name": "PlayerStatisticsParam",
3005
- "details": [
3006
- {
3007
- "code": "Key",
3008
- "description": "",
3009
- "type": "string"
3010
- },
3011
- {
3012
- "code": "Value",
3013
- "description": "",
3014
- "type": "number"
3015
- }
3016
- ],
3017
- "description": ""
3018
- },
3019
- {
3020
- "name": "GenericService",
3021
- "details": [
3022
- {
3023
- "code": "ServiceName",
3024
- "description": "",
3025
- "type": "string"
3026
- },
3027
- {
3028
- "code": "ServiceId",
3029
- "description": "",
3030
- "type": "string"
3031
- }
3032
- ],
3033
- "extends": null,
3034
- "description": ""
3035
- },
3036
- {
3037
- "name": "Device",
3038
- "details": [
3039
- {
3040
- "code": "CustomDeviceId",
3041
- "description": "",
3042
- "type": "string"
3043
- },
3044
- {
3045
- "code": "AndroidDeviceId",
3046
- "description": "",
3047
- "type": "string"
3048
- },
3049
- {
3050
- "code": "iOSDeviceId",
3051
- "description": "",
3052
- "type": "string"
3053
- },
3054
- {
3055
- "code": "WindowsPhoneDeviceId",
3056
- "description": "",
3057
- "type": "string"
3058
- },
3059
- {
3060
- "code": "WindowsDeviceId",
3061
- "description": "",
3062
- "type": "string"
3063
- },
3064
- {
3065
- "code": "LinuxDeviceId",
3066
- "description": "",
3067
- "type": "string"
3068
- },
3069
- {
3070
- "code": "MacOSDeviceId",
3071
- "description": "",
3072
- "type": "string"
3073
- },
3074
- {
3075
- "code": "EditorDeviceId",
3076
- "description": "",
3077
- "type": "string"
3078
- }
3079
- ],
3080
- "extends": null,
3081
- "description": ""
3082
- },
3083
- {
3084
- "name": "Account",
3085
- "details": [
3086
- {
3087
- "code": "Username",
3088
- "description": "",
3089
- "type": "string"
3090
- }
3091
- ],
3092
- "extends": null,
3093
- "description": ""
3094
- },
3095
- {
3096
- "name": "Custom",
3097
- "details": [
3098
- {
3099
- "code": "CustomId",
3100
- "description": "",
3101
- "type": "string"
3102
- }
3103
- ],
3104
- "extends": null,
3105
- "description": ""
3106
- },
3107
- {
3108
- "name": "Apple",
3109
- "details": [
3110
- {
3111
- "code": "AppleId",
3112
- "description": "",
3113
- "type": "string"
3114
- },
3115
- {
3116
- "code": "Email",
3117
- "description": "",
3118
- "type": "string"
3119
- }
3120
- ],
3121
- "extends": null,
3122
- "description": ""
3123
- },
3124
- {
3125
- "name": "Google",
3126
- "details": [
3127
- {
3128
- "code": "GoogleId",
3129
- "description": "",
3130
- "type": "string"
3131
- },
3132
- {
3133
- "code": "DisplayName",
3134
- "description": "",
3135
- "type": "string"
3136
- },
3137
- {
3138
- "code": "Email",
3139
- "description": "",
3140
- "type": "string"
3141
- }
3142
- ],
3143
- "extends": null,
3144
- "description": ""
3145
- },
3146
- {
3147
- "name": "Facebook",
3148
- "details": [
3149
- {
3150
- "code": "FacebookId",
3151
- "description": "",
3152
- "type": "string"
3153
- },
3154
- {
3155
- "code": "DisplayName",
3156
- "description": "",
3157
- "type": "string"
3158
- },
3159
- {
3160
- "code": "Email",
3161
- "description": "",
3162
- "type": "string"
3163
- }
3164
- ],
3165
- "extends": null,
3166
- "description": ""
3167
- },
3168
- {
3169
- "name": "GooglePlayGameService",
3170
- "details": [
3171
- {
3172
- "code": "PlayerId",
3173
- "description": "",
3174
- "type": "string"
3175
- },
3176
- {
3177
- "code": "DisplayName",
3178
- "description": "",
3179
- "type": "string"
3180
- },
3181
- {
3182
- "code": "Email",
3183
- "description": "",
3184
- "type": "string"
3185
- }
3186
- ],
3187
- "extends": null,
3188
- "description": ""
3189
- },
3190
- {
3191
- "name": "GameCenter",
3192
- "details": [
3193
- {
3194
- "code": "PlayerId",
3195
- "description": "",
3196
- "type": "string"
3197
- },
3198
- {
3199
- "code": "DisplayName",
3200
- "description": "",
3201
- "type": "string"
3202
- },
3203
- {
3204
- "code": "Email",
3205
- "description": "",
3206
- "type": "string"
3207
- }
3208
- ],
3209
- "extends": null,
3210
- "description": ""
3211
- },
3212
- {
3213
- "name": "ExternalItem",
3214
- "details": [
3215
- {
3216
- "code": "Device",
3217
- "description": "",
3218
- "type": "Device"
3219
- },
3220
- {
3221
- "code": "Account",
3222
- "description": "",
3223
- "type": "Account"
3224
- },
3225
- {
3226
- "code": "Custom",
3227
- "description": "",
3228
- "type": "Custom"
3229
- },
3230
- {
3231
- "code": "Apple",
3232
- "description": "",
3233
- "type": "Apple"
3234
- },
3235
- {
3236
- "code": "Google",
3237
- "description": "",
3238
- "type": "Google"
3239
- },
3240
- {
3241
- "code": "Facebook",
3242
- "description": "",
3243
- "type": "Facebook"
3244
- },
3245
- {
3246
- "code": "GenericService",
3247
- "description": "",
3248
- "type": "Array<GenericService>"
3249
- },
3250
- {
3251
- "code": "GooglePlayGameService",
3252
- "description": "",
3253
- "type": "GooglePlayGameService"
3254
- },
3255
- {
3256
- "code": "GameCenter",
3257
- "description": "",
3258
- "type": "GameCenter"
3259
- }
3260
- ],
3261
- "extends": null,
3262
- "description": ""
3263
- },
3264
- {
3265
- "name": "PushNotificationItem",
3266
- "details": [
3267
- {
3268
- "code": "Token",
3269
- "description": "",
3270
- "type": "string"
3271
- },
3272
- {
3273
- "code": "PushId",
3274
- "description": "",
3275
- "type": "string"
3276
- },
3277
- {
3278
- "code": "PlatformType",
3279
- "description": "",
3280
- "type": "number"
3281
- }
3282
- ],
3283
- "extends": null,
3284
- "description": ""
3285
- },
3286
- {
3287
- "name": "InfoResponseParameters",
3288
- "details": [
3289
- {
3290
- "code": "External",
3291
- "description": "",
3292
- "type": "ExternalItem"
3293
- },
3294
- {
3295
- "code": "Segments",
3296
- "description": "",
3297
- "type": "Array<string>"
3298
- },
3299
- {
3300
- "code": "CustomDatas",
3301
- "description": "",
3302
- "type": "Array<GenericModels.DataItem>"
3303
- },
3304
- {
3305
- "code": "DisplayName",
3306
- "description": "",
3307
- "type": "string"
3308
- },
3309
- {
3310
- "code": "Avatar",
3311
- "description": "",
3312
- "type": "GenericModels.AvatarItem"
3313
- },
3314
- {
3315
- "code": "TsCreate",
3316
- "description": "",
3317
- "type": "number"
3318
- },
3319
- {
3320
- "code": "Tags",
3321
- "description": "",
3322
- "type": "Array<GenericModels.TagItem>"
3323
- },
3324
- {
3325
- "code": "PlayerBan",
3326
- "description": "",
3327
- "type": "GenericModels.BanItem"
3328
- },
3329
- {
3330
- "code": "PlayerDatas",
3331
- "description": "",
3332
- "type": "Array<GenericModels.DataItem>"
3333
- },
3334
- {
3335
- "code": "PlayerCurrencies",
3336
- "description": "",
3337
- "type": "Array<GenericModels.CurrencyItem>"
3338
- },
3339
- {
3340
- "code": "PlayerStatistics",
3341
- "description": "",
3342
- "type": "Array<GenericModels.StatisticsItem>"
3343
- },
3344
- {
3345
- "code": "TsLastLogin",
3346
- "description": "",
3347
- "type": "number"
3348
- },
3349
- {
3350
- "code": "IpAddressCreate",
3351
- "description": "",
3352
- "type": "string"
3353
- },
3354
- {
3355
- "code": "CountryCode",
3356
- "description": "",
3357
- "type": "string"
3358
- },
3359
- {
3360
- "code": "Email",
3361
- "description": "",
3362
- "type": "string"
3363
- },
3364
- {
3365
- "code": "PushNotifications",
3366
- "description": "",
3367
- "type": "Array<MasterPlayerModels.PushNotificationItem>"
3368
- }
3369
- ],
3370
- "extends": null,
3371
- "description": ""
3372
- },
3373
- {
3374
- "name": "MasterPlayerResponseData",
3375
- "details": [
3376
- {
3377
- "code": "InfoResponseParameters",
3378
- "description": "",
3379
- "type": "InfoResponseParameters"
3380
- }
3381
- ],
3382
- "extends": null,
3383
- "description": ""
3384
- },
3385
- {
3386
- "name": "GenericServiceMasterPlayerResponseData",
3387
- "details": [
3388
- {
3389
- "code": "ErrorMessage",
3390
- "description": "",
3391
- "type": "string"
3392
- },
3393
- {
3394
- "code": "InfoResponseParameters",
3395
- "description": "",
3396
- "type": "InfoResponseParameters"
3397
- }
3398
- ],
3399
- "extends": null,
3400
- "description": ""
3401
- },
3402
- {
3403
- "name": "MasterPlayerWithUserIdResponseData",
3404
- "details": [
3405
- {
3406
- "code": "UserId",
3407
- "description": "",
3408
- "type": "string"
3409
- },
3410
- {
3411
- "code": "InfoResponseParameters",
3412
- "description": "",
3413
- "type": "InfoResponseParameters"
3414
- }
3415
- ],
3416
- "extends": null,
3417
- "description": ""
3418
- },
3419
- {
3420
- "name": "MasterPlayerWithAppleIdResponseData",
3421
- "details": [
3422
- {
3423
- "code": "AppleId",
3424
- "description": "",
3425
- "type": "string"
3426
- },
3427
- {
3428
- "code": "UserId",
3429
- "description": "",
3430
- "type": "string"
3431
- },
3432
- {
3433
- "code": "InfoResponseParameters",
3434
- "description": "",
3435
- "type": "InfoResponseParameters"
3436
- }
3437
- ],
3438
- "extends": null,
3439
- "description": ""
3440
- },
3441
- {
3442
- "name": "GetPlayersWithAppleResponseData",
3443
- "details": [
3444
- {
3445
- "code": "Results",
3446
- "description": "",
3447
- "type": "Array<MasterPlayerWithAppleIdResponseData>"
3448
- }
3449
- ],
3450
- "extends": null,
3451
- "description": ""
3452
- },
3453
- {
3454
- "name": "MasterPlayersWithUserIdResponseData",
3455
- "details": [
3456
- {
3457
- "code": "Results",
3458
- "description": "",
3459
- "type": "Array<MasterPlayerWithUserIdResponseData>"
3460
- }
3461
- ],
3462
- "extends": null,
3463
- "description": ""
3464
- },
3465
- {
3466
- "name": "MasterPlayerWithFacebookIdResponseData",
3467
- "details": [
3468
- {
3469
- "code": "FacebookId",
3470
- "description": "",
3471
- "type": "string"
3472
- },
3473
- {
3474
- "code": "UserId",
3475
- "description": "",
3476
- "type": "string"
3477
- },
3478
- {
3479
- "code": "InfoResponseParameters",
3480
- "description": "",
3481
- "type": "InfoResponseParameters"
3482
- }
3483
- ],
3484
- "extends": null,
3485
- "description": ""
3486
- },
3487
- {
3488
- "name": "GetPlayersWithFacebookResponseData",
3489
- "details": [
3490
- {
3491
- "code": "Results",
3492
- "description": "",
3493
- "type": "Array<MasterPlayerWithFacebookIdResponseData>"
3494
- }
3495
- ],
3496
- "extends": null,
3497
- "description": ""
3498
- },
3499
- {
3500
- "name": "MasterPlayerWithGenericServiceIdResponseData",
3501
- "details": [
3502
- {
3503
- "code": "ServiceId",
3504
- "description": "",
3505
- "type": "string"
3506
- },
3507
- {
3508
- "code": "UserId",
3509
- "description": "",
3510
- "type": "string"
3511
- },
3512
- {
3513
- "code": "InfoResponseParameters",
3514
- "description": "",
3515
- "type": "InfoResponseParameters"
3516
- }
3517
- ],
3518
- "extends": null,
3519
- "description": ""
3520
- },
3521
- {
3522
- "name": "GetPlayersWithGenericServiceResponseData",
3523
- "details": [
3524
- {
3525
- "code": "Results",
3526
- "description": "",
3527
- "type": "Array<MasterPlayerWithGenericServiceIdResponseData>"
3528
- }
3529
- ],
3530
- "extends": null,
3531
- "description": ""
3532
- },
3533
- {
3534
- "name": "MasterPlayerWithGoogleIdResponseData",
3535
- "details": [
3536
- {
3537
- "code": "GoogleId",
3538
- "description": "",
3539
- "type": "string"
3540
- },
3541
- {
3542
- "code": "UserId",
3543
- "description": "",
3544
- "type": "string"
3545
- },
3546
- {
3547
- "code": "InfoResponseParameters",
3548
- "description": "",
3549
- "type": "InfoResponseParameters"
3550
- }
3551
- ],
3552
- "extends": null,
3553
- "description": ""
3554
- },
3555
- {
3556
- "name": "GetPlayersWithGoogleResponseData",
3557
- "details": [
3558
- {
3559
- "code": "Results",
3560
- "description": "",
3561
- "type": "Array<MasterPlayerWithGoogleIdResponseData>"
3562
- }
3563
- ],
3564
- "extends": null,
3565
- "description": ""
3566
- },
3567
- {
3568
- "name": "MasterPlayerWithPlayerIdResponseData",
3569
- "details": [
3570
- {
3571
- "code": "PlayerId",
3572
- "description": "",
3573
- "type": "string"
3574
- },
3575
- {
3576
- "code": "UserId",
3577
- "description": "",
3578
- "type": "string"
3579
- },
3580
- {
3581
- "code": "InfoResponseParameters",
3582
- "description": "",
3583
- "type": "InfoResponseParameters"
3584
- }
3585
- ],
3586
- "extends": null,
3587
- "description": ""
3588
- },
3589
- {
3590
- "name": "GetPlayersWithGooglePlayGameServiceResponseData",
3591
- "details": [
3592
- {
3593
- "code": "Results",
3594
- "description": "",
3595
- "type": "Array<MasterPlayerWithPlayerIdResponseData>"
3596
- }
3597
- ],
3598
- "extends": null,
3599
- "description": ""
3600
- },
3601
- {
3602
- "name": "GetPlayersWithGameCenterResponseData",
3603
- "details": [
3604
- {
3605
- "code": "Results",
3606
- "description": "",
3607
- "type": "Array<MasterPlayerWithPlayerIdResponseData>"
3608
- }
3609
- ],
3610
- "extends": null,
3611
- "description": ""
3612
- },
3613
- {
3614
- "name": "MasterPlayerLeaderboardResponseData",
3615
- "details": [
3616
- {
3617
- "code": "Position",
3618
- "description": "",
3619
- "type": "number"
3620
- },
3621
- {
3622
- "code": "BackupValue",
3623
- "description": "",
3624
- "type": "number"
3625
- },
3626
- {
3627
- "code": "UserId",
3628
- "description": "",
3629
- "type": "string"
3630
- },
3631
- {
3632
- "code": "InfoResponseParameters",
3633
- "description": "",
3634
- "type": "InfoResponseParameters"
3635
- }
3636
- ],
3637
- "extends": null,
3638
- "description": ""
3639
- },
3640
- {
3641
- "name": "MasterPlayerLogResponseData",
3642
- "details": [
3643
- {
3644
- "code": "UserId",
3645
- "description": "",
3646
- "type": "string"
3647
- },
3648
- {
3649
- "code": "TsCreate",
3650
- "description": "",
3651
- "type": "number"
3652
- },
3653
- {
3654
- "code": "Log",
3655
- "description": "",
3656
- "type": "string"
3657
- },
3658
- {
3659
- "code": "Key",
3660
- "description": "",
3661
- "type": "string"
3662
- },
3663
- {
3664
- "code": "Amount",
3665
- "description": "",
3666
- "type": "number"
3667
- },
3668
- {
3669
- "code": "StartValue",
3670
- "description": "",
3671
- "type": "number"
3672
- },
3673
- {
3674
- "code": "FinalValue",
3675
- "description": "",
3676
- "type": "number"
3677
- }
3678
- ],
3679
- "extends": null,
3680
- "description": ""
3681
- },
3682
- {
3683
- "name": "GetStatisticsLeaderboardResponseData",
3684
- "details": [
3685
- {
3686
- "code": "Results",
3687
- "description": "",
3688
- "type": "Array<MasterPlayerLeaderboardResponseData>"
3689
- },
3690
- {
3691
- "code": "TsCreate",
3692
- "description": "",
3693
- "type": "number"
3694
- }
3695
- ],
3696
- "extends": null,
3697
- "description": ""
3698
- },
3699
- {
3700
- "name": "GetCurrencyLeaderboardResponseData",
3701
- "details": [
3702
- {
3703
- "code": "Results",
3704
- "description": "",
3705
- "type": "Array<MasterPlayerLeaderboardResponseData>"
3706
- }
3707
- ],
3708
- "extends": null,
3709
- "description": ""
3710
- },
3711
- {
3712
- "name": "GetCreateLeaderboardResponseData",
3713
- "details": [
3714
- {
3715
- "code": "Results",
3716
- "description": "",
3717
- "type": "Array<MasterPlayerLeaderboardResponseData>"
3718
- }
3719
- ],
3720
- "extends": null,
3721
- "description": ""
3722
- },
3723
- {
3724
- "name": "GetLastLoginLeaderboardResponseData",
3725
- "details": [
3726
- {
3727
- "code": "Results",
3728
- "description": "",
3729
- "type": "Array<MasterPlayerLeaderboardResponseData>"
3730
- }
3731
- ],
3732
- "extends": null,
3733
- "description": ""
3734
- },
3735
- {
3736
- "name": "GetStatisticsLogResponseData",
3737
- "details": [
3738
- {
3739
- "code": "Results",
3740
- "description": "",
3741
- "type": "Array<MasterPlayerLogResponseData>"
3742
- },
3743
- {
3744
- "code": "Token",
3745
- "description": "",
3746
- "type": "string"
3747
- }
3748
- ],
3749
- "extends": null,
3750
- "description": ""
3751
- },
3752
- {
3753
- "name": "GetCurrencyLogResponseData",
3754
- "details": [
3755
- {
3756
- "code": "Results",
3757
- "description": "",
3758
- "type": "Array<MasterPlayerLogResponseData>"
3759
- },
3760
- {
3761
- "code": "Token",
3762
- "description": "",
3763
- "type": "string"
3764
- }
3765
- ],
3766
- "extends": null,
3767
- "description": ""
3768
- },
3769
- {
3770
- "name": "AddPushNotificationResponseData",
3771
- "details": [
3772
- {
3773
- "code": "PushId",
3774
- "description": "",
3775
- "type": "string"
3776
- }
3777
- ],
3778
- "extends": null,
3779
- "description": ""
3780
- },
3781
- {
3782
- "name": "SendPushNotificationResponseData",
3783
- "details": [
3784
- {
3785
- "code": "Message",
3786
- "description": "",
3787
- "type": "string"
3788
- }
3789
- ],
3790
- "extends": null,
3791
- "description": ""
3792
- },
3793
- {
3794
- "name": "EmptyResponseData",
3795
- "details": [],
3796
- "extends": null,
3797
- "description": ""
3798
- }
3799
- ]
3800
- }