@xmobitea/gn-typescript-client 2.6.8 → 2.6.9

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 (91) hide show
  1. package/LICENSE +198 -5
  2. package/dist/gearn.js.client.js +3 -11
  3. package/dist/gearn.js.client.min.js +1 -1
  4. package/dist/index.js +3 -11
  5. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +0 -1
  6. package/dist/runtime/entity/models/DashboardModels.d.ts +7 -7
  7. package/dist/runtime/entity/models/GroupModels.d.ts +0 -1
  8. package/dist/runtime/entity/models/MultiplayerModels.d.ts +1 -1
  9. package/package.json +2 -2
  10. package/responseModel/chatgpt/Authenticate.json +724 -0
  11. package/responseModel/chatgpt/CharacterPlayer.json +1890 -0
  12. package/responseModel/chatgpt/CloudScript.json +254 -0
  13. package/responseModel/chatgpt/Content.json +273 -0
  14. package/responseModel/chatgpt/Dashboard.json +4110 -0
  15. package/responseModel/chatgpt/GamePlayer.json +2306 -0
  16. package/responseModel/chatgpt/Generic.json +253 -0
  17. package/responseModel/chatgpt/Group.json +1509 -0
  18. package/responseModel/chatgpt/Inventory.json +1211 -0
  19. package/responseModel/chatgpt/MasterPlayer.json +3801 -0
  20. package/responseModel/chatgpt/Multiplayer.json +634 -0
  21. package/responseModel/chatgpt/StoreInventory.json +1099 -0
  22. package/responseModel/clients/AuthenticateModels.json +271 -0
  23. package/responseModel/clients/CharacterPlayerModels.json +792 -0
  24. package/responseModel/clients/CloudScriptModels.json +191 -0
  25. package/responseModel/clients/ContentModels.json +178 -0
  26. package/responseModel/clients/DashboardModels.json +5423 -0
  27. package/responseModel/clients/GamePlayerModels.json +781 -0
  28. package/responseModel/clients/GenericModels.json +344 -0
  29. package/responseModel/clients/GroupModels.json +705 -0
  30. package/responseModel/clients/InventoryModels.json +568 -0
  31. package/responseModel/clients/MasterPlayerModels.json +1281 -0
  32. package/responseModel/clients/MultiplayerModels.json +439 -0
  33. package/responseModel/clients/StoreInventoryModels.json +971 -0
  34. package/responseModel/finalChatgpt/Authenticate.json +1475 -0
  35. package/responseModel/finalChatgpt/CharacterPlayer.json +4104 -0
  36. package/responseModel/finalChatgpt/CloudScript.json +515 -0
  37. package/responseModel/finalChatgpt/Content.json +536 -0
  38. package/responseModel/finalChatgpt/Dashboard.json +6712 -0
  39. package/responseModel/finalChatgpt/GamePlayer.json +5142 -0
  40. package/responseModel/finalChatgpt/Generic.json +333 -0
  41. package/responseModel/finalChatgpt/Group.json +3232 -0
  42. package/responseModel/finalChatgpt/Inventory.json +2606 -0
  43. package/responseModel/finalChatgpt/MasterPlayer.json +8385 -0
  44. package/responseModel/finalChatgpt/Multiplayer.json +1196 -0
  45. package/responseModel/finalChatgpt/StoreInventory.json +2085 -0
  46. package/responseModel/finals/Authenticate.json +1460 -0
  47. package/responseModel/finals/CharacterPlayer.json +3639 -0
  48. package/responseModel/finals/CloudScript.json +465 -0
  49. package/responseModel/finals/Content.json +479 -0
  50. package/responseModel/finals/Dashboard.json +6718 -0
  51. package/responseModel/finals/GamePlayer.json +4291 -0
  52. package/responseModel/finals/Generic.json +345 -0
  53. package/responseModel/finals/Group.json +2885 -0
  54. package/responseModel/finals/Inventory.json +2309 -0
  55. package/responseModel/finals/MasterPlayer.json +7018 -0
  56. package/responseModel/finals/Multiplayer.json +1082 -0
  57. package/responseModel/finals/StoreInventory.json +1979 -0
  58. package/responseModel/finalsShort/Authenticate.json +723 -0
  59. package/responseModel/finalsShort/CharacterPlayer.json +1889 -0
  60. package/responseModel/finalsShort/CloudScript.json +253 -0
  61. package/responseModel/finalsShort/Content.json +272 -0
  62. package/responseModel/finalsShort/Dashboard.json +4109 -0
  63. package/responseModel/finalsShort/GamePlayer.json +2305 -0
  64. package/responseModel/finalsShort/Generic.json +252 -0
  65. package/responseModel/finalsShort/Group.json +1508 -0
  66. package/responseModel/finalsShort/Inventory.json +1210 -0
  67. package/responseModel/finalsShort/MasterPlayer.json +3800 -0
  68. package/responseModel/finalsShort/Multiplayer.json +633 -0
  69. package/responseModel/finalsShort/StoreInventory.json +1098 -0
  70. package/responseModel/operationResponse/AuthenticateResponseModels.json +77 -0
  71. package/responseModel/operationResponse/CharacterPlayerResponseModels.json +217 -0
  72. package/responseModel/operationResponse/CloudScriptResponseModels.json +25 -0
  73. package/responseModel/operationResponse/ContentResponseModels.json +33 -0
  74. package/responseModel/operationResponse/DashboardResponseModels.json +109 -0
  75. package/responseModel/operationResponse/GamePlayerResponseModels.json +213 -0
  76. package/responseModel/operationResponse/GroupResponseModels.json +165 -0
  77. package/responseModel/operationResponse/InventoryResponseModels.json +141 -0
  78. package/responseModel/operationResponse/MasterPlayerResponseModels.json +349 -0
  79. package/responseModel/operationResponse/MultiplayerResponseModels.json +45 -0
  80. package/responseModel/operationResponse/StoreInventoryResponseModels.json +61 -0
  81. package/responseModel/servers/Authenticate.json +1328 -0
  82. package/responseModel/servers/CharacterPlayer.json +3199 -0
  83. package/responseModel/servers/CloudScript.json +278 -0
  84. package/responseModel/servers/Content.json +324 -0
  85. package/responseModel/servers/GamePlayer.json +3844 -0
  86. package/responseModel/servers/Group.json +2454 -0
  87. package/responseModel/servers/Inventory.json +1964 -0
  88. package/responseModel/servers/MasterAdmin.json +5569 -0
  89. package/responseModel/servers/MasterPlayer.json +5924 -0
  90. package/responseModel/servers/Multiplayer.json +545 -0
  91. package/responseModel/servers/StoreInventory.json +1290 -0
@@ -0,0 +1,3199 @@
1
+ {
2
+ "requestType": "CharacterPlayer",
3
+ "operations": [
4
+ {
5
+ "operationCode": "AddPlayerFriend",
6
+ "details": [
7
+ {
8
+ "role": "Client",
9
+ "requestData": [
10
+ {
11
+ "code": "CharacterId",
12
+ "description": "",
13
+ "optional": false,
14
+ "type": "string",
15
+ "gnType": "String",
16
+ "conditions": {
17
+ "mustNonNull": true,
18
+ "minLength": 11,
19
+ "maxLength": 11
20
+ }
21
+ },
22
+ {
23
+ "code": "FriendId",
24
+ "description": "",
25
+ "optional": false,
26
+ "type": "string",
27
+ "gnType": "String",
28
+ "conditions": {
29
+ "mustNonNull": true,
30
+ "minLength": 11,
31
+ "maxLength": 11
32
+ }
33
+ },
34
+ {
35
+ "code": "CatalogId",
36
+ "description": "",
37
+ "optional": false,
38
+ "type": "string",
39
+ "gnType": "String",
40
+ "conditions": {
41
+ "mustNonNull": true,
42
+ "minLength": 2,
43
+ "maxLength": 32
44
+ }
45
+ }
46
+ ]
47
+ }
48
+ ],
49
+ "responseData": [
50
+ {
51
+ "code": "ErrorCode",
52
+ "value": [
53
+ "CatalogIdNotFound",
54
+ "CharacterPlayerNotFound",
55
+ "Ok"
56
+ ]
57
+ }
58
+ ],
59
+ "description": ""
60
+ },
61
+ {
62
+ "operationCode": "AddSegment",
63
+ "details": [
64
+ {
65
+ "role": "Client",
66
+ "requestData": [
67
+ {
68
+ "code": "CharacterId",
69
+ "description": "",
70
+ "optional": false,
71
+ "type": "string",
72
+ "gnType": "String",
73
+ "conditions": {
74
+ "mustNonNull": true,
75
+ "minLength": 11,
76
+ "maxLength": 11
77
+ }
78
+ },
79
+ {
80
+ "code": "Value",
81
+ "description": "",
82
+ "optional": false,
83
+ "type": "string",
84
+ "gnType": "String",
85
+ "conditions": {
86
+ "mustNonNull": true,
87
+ "minLength": 6,
88
+ "maxLength": 32
89
+ }
90
+ }
91
+ ]
92
+ }
93
+ ],
94
+ "responseData": [
95
+ {
96
+ "code": "ErrorCode",
97
+ "value": [
98
+ "CharacterPlayerNotFound",
99
+ "Ok"
100
+ ]
101
+ }
102
+ ],
103
+ "description": ""
104
+ },
105
+ {
106
+ "operationCode": "ChangePlayerCurrency",
107
+ "details": [
108
+ {
109
+ "role": "Client",
110
+ "requestData": [
111
+ {
112
+ "code": "CharacterId",
113
+ "description": "",
114
+ "optional": false,
115
+ "type": "string",
116
+ "gnType": "String",
117
+ "conditions": {
118
+ "mustNonNull": true,
119
+ "minLength": 11,
120
+ "maxLength": 11
121
+ }
122
+ },
123
+ {
124
+ "code": "PlayerCurrencies",
125
+ "description": "",
126
+ "optional": false,
127
+ "type": "PlayerCurrencyParam",
128
+ "gnType": "GNArray",
129
+ "conditions": {
130
+ "mustNonNull": true,
131
+ "minLength": 1,
132
+ "maxLength": 32
133
+ }
134
+ },
135
+ {
136
+ "code": "Log",
137
+ "description": "",
138
+ "optional": true,
139
+ "type": "string",
140
+ "gnType": "String",
141
+ "conditions": {
142
+ "mustNonNull": true,
143
+ "minLength": 1,
144
+ "maxLength": 256
145
+ }
146
+ }
147
+ ]
148
+ }
149
+ ],
150
+ "responseData": [
151
+ {
152
+ "code": "ErrorCode",
153
+ "value": [
154
+ "CharacterPlayerNotFound",
155
+ "NotEnoughCurrency",
156
+ "Ok"
157
+ ]
158
+ },
159
+ {
160
+ "code": "InfoResponseParameters"
161
+ }
162
+ ],
163
+ "description": ""
164
+ },
165
+ {
166
+ "operationCode": "ChangePlayerStatistics",
167
+ "details": [
168
+ {
169
+ "role": "Client",
170
+ "requestData": [
171
+ {
172
+ "code": "CharacterId",
173
+ "description": "",
174
+ "optional": false,
175
+ "type": "string",
176
+ "gnType": "String",
177
+ "conditions": {
178
+ "mustNonNull": true,
179
+ "minLength": 11,
180
+ "maxLength": 11
181
+ }
182
+ },
183
+ {
184
+ "code": "PlayerStatistics",
185
+ "description": "",
186
+ "optional": false,
187
+ "type": "PlayerStatisticsParam",
188
+ "gnType": "GNArray",
189
+ "conditions": {
190
+ "mustNonNull": true,
191
+ "minLength": 1,
192
+ "maxLength": 32
193
+ }
194
+ },
195
+ {
196
+ "code": "Log",
197
+ "description": "",
198
+ "optional": true,
199
+ "type": "string",
200
+ "gnType": "String",
201
+ "conditions": {
202
+ "mustNonNull": true,
203
+ "minLength": 1,
204
+ "maxLength": 256
205
+ }
206
+ }
207
+ ]
208
+ }
209
+ ],
210
+ "responseData": [
211
+ {
212
+ "code": "ErrorCode",
213
+ "value": [
214
+ "CharacterPlayerNotFound",
215
+ "Ok"
216
+ ]
217
+ },
218
+ {
219
+ "code": "InfoResponseParameters"
220
+ }
221
+ ],
222
+ "description": ""
223
+ },
224
+ {
225
+ "operationCode": "CreateGroup",
226
+ "details": [
227
+ {
228
+ "role": "Client",
229
+ "requestData": [
230
+ {
231
+ "code": "CharacterId",
232
+ "description": "",
233
+ "optional": false,
234
+ "type": "string",
235
+ "gnType": "String",
236
+ "conditions": {
237
+ "mustNonNull": true,
238
+ "minLength": 11,
239
+ "maxLength": 11
240
+ }
241
+ },
242
+ {
243
+ "code": "CatalogId",
244
+ "description": "",
245
+ "optional": false,
246
+ "type": "string",
247
+ "gnType": "String",
248
+ "conditions": {
249
+ "mustNonNull": true,
250
+ "minLength": 2,
251
+ "maxLength": 32
252
+ }
253
+ },
254
+ {
255
+ "code": "GroupMembers",
256
+ "description": "",
257
+ "optional": true,
258
+ "type": "GroupMemberParam",
259
+ "gnType": "GNArray",
260
+ "conditions": {}
261
+ },
262
+ {
263
+ "code": "DisplayName",
264
+ "description": "",
265
+ "optional": true,
266
+ "type": "string",
267
+ "gnType": "String",
268
+ "defaultValue": "\"\"",
269
+ "conditions": {}
270
+ }
271
+ ]
272
+ }
273
+ ],
274
+ "responseData": [
275
+ {
276
+ "code": "ErrorCode",
277
+ "value": [
278
+ "CatalogIdNotFound",
279
+ "CharacterPlayerNotFound",
280
+ "Ok"
281
+ ]
282
+ },
283
+ {
284
+ "code": "InfoResponseParameters"
285
+ }
286
+ ],
287
+ "description": ""
288
+ },
289
+ {
290
+ "operationCode": "CreatePlayerItem",
291
+ "details": [
292
+ {
293
+ "role": "Client",
294
+ "requestData": [
295
+ {
296
+ "code": "CharacterId",
297
+ "description": "",
298
+ "optional": false,
299
+ "type": "string",
300
+ "gnType": "String",
301
+ "conditions": {
302
+ "mustNonNull": true,
303
+ "minLength": 11,
304
+ "maxLength": 11
305
+ }
306
+ },
307
+ {
308
+ "code": "CatalogId",
309
+ "description": "",
310
+ "optional": false,
311
+ "type": "string",
312
+ "gnType": "String",
313
+ "conditions": {
314
+ "mustNonNull": true,
315
+ "minLength": 2,
316
+ "maxLength": 32
317
+ }
318
+ },
319
+ {
320
+ "code": "ClassId",
321
+ "description": "",
322
+ "optional": false,
323
+ "type": "string",
324
+ "gnType": "String",
325
+ "conditions": {
326
+ "mustNonNull": true,
327
+ "minLength": 2,
328
+ "maxLength": 32
329
+ }
330
+ },
331
+ {
332
+ "code": "DisplayName",
333
+ "description": "",
334
+ "optional": true,
335
+ "type": "string",
336
+ "gnType": "String",
337
+ "defaultValue": "\"\"",
338
+ "conditions": {}
339
+ },
340
+ {
341
+ "code": "Amount",
342
+ "description": "",
343
+ "optional": true,
344
+ "type": "number",
345
+ "gnType": "Number",
346
+ "defaultValue": "1",
347
+ "conditions": {
348
+ "mustInt": true
349
+ }
350
+ }
351
+ ]
352
+ }
353
+ ],
354
+ "responseData": [
355
+ {
356
+ "code": "ErrorCode",
357
+ "value": [
358
+ "CatalogIdNotFound",
359
+ "ClassIdNotFound",
360
+ "CharacterPlayerNotFound",
361
+ "Ok"
362
+ ]
363
+ },
364
+ {
365
+ "code": "InfoResponseParameters"
366
+ }
367
+ ],
368
+ "description": ""
369
+ },
370
+ {
371
+ "operationCode": "GetAvatar",
372
+ "details": [
373
+ {
374
+ "role": "Client",
375
+ "requestData": [
376
+ {
377
+ "code": "CharacterId",
378
+ "description": "",
379
+ "optional": false,
380
+ "type": "string",
381
+ "gnType": "String",
382
+ "conditions": {
383
+ "mustNonNull": true,
384
+ "minLength": 11,
385
+ "maxLength": 11
386
+ }
387
+ }
388
+ ]
389
+ }
390
+ ],
391
+ "responseData": [
392
+ {
393
+ "code": "ErrorCode",
394
+ "value": [
395
+ "CharacterPlayerNotFound",
396
+ "Ok"
397
+ ]
398
+ },
399
+ {
400
+ "code": "InfoResponseParameters"
401
+ }
402
+ ],
403
+ "description": ""
404
+ },
405
+ {
406
+ "operationCode": "GetCatalogId",
407
+ "details": [
408
+ {
409
+ "role": "Client",
410
+ "requestData": [
411
+ {
412
+ "code": "CharacterId",
413
+ "description": "",
414
+ "optional": false,
415
+ "type": "string",
416
+ "gnType": "String",
417
+ "conditions": {
418
+ "mustNonNull": true,
419
+ "minLength": 11,
420
+ "maxLength": 11
421
+ }
422
+ }
423
+ ]
424
+ }
425
+ ],
426
+ "responseData": [
427
+ {
428
+ "code": "ErrorCode",
429
+ "value": [
430
+ "CharacterPlayerNotFound",
431
+ "Ok"
432
+ ]
433
+ },
434
+ {
435
+ "code": "InfoResponseParameters"
436
+ }
437
+ ],
438
+ "description": ""
439
+ },
440
+ {
441
+ "operationCode": "GetCountryCode",
442
+ "details": [
443
+ {
444
+ "role": "Client",
445
+ "requestData": [
446
+ {
447
+ "code": "CharacterId",
448
+ "description": "",
449
+ "optional": false,
450
+ "type": "string",
451
+ "gnType": "String",
452
+ "conditions": {
453
+ "mustNonNull": true,
454
+ "minLength": 11,
455
+ "maxLength": 11
456
+ }
457
+ }
458
+ ]
459
+ }
460
+ ],
461
+ "responseData": [
462
+ {
463
+ "code": "ErrorCode",
464
+ "value": [
465
+ "CharacterPlayerNotFound",
466
+ "Ok"
467
+ ]
468
+ },
469
+ {
470
+ "code": "InfoResponseParameters"
471
+ }
472
+ ],
473
+ "description": ""
474
+ },
475
+ {
476
+ "operationCode": "GetCreateLeaderboard",
477
+ "details": [
478
+ {
479
+ "role": "Client",
480
+ "requestData": [
481
+ {
482
+ "code": "InfoRequestParam",
483
+ "description": "",
484
+ "optional": false,
485
+ "type": "InfoRequestParam",
486
+ "gnType": "GNHashtable",
487
+ "conditions": {
488
+ "mustNonNull": true
489
+ }
490
+ },
491
+ {
492
+ "code": "Skip",
493
+ "description": "",
494
+ "optional": true,
495
+ "type": "number",
496
+ "gnType": "Number",
497
+ "defaultValue": "0",
498
+ "conditions": {
499
+ "mustInt": true,
500
+ "minValue": 0
501
+ }
502
+ },
503
+ {
504
+ "code": "Limit",
505
+ "description": "",
506
+ "optional": true,
507
+ "type": "number",
508
+ "gnType": "Number",
509
+ "defaultValue": "10",
510
+ "conditions": {
511
+ "mustInt": true,
512
+ "minValue": 1,
513
+ "maxValue": 100
514
+ }
515
+ },
516
+ {
517
+ "code": "LoadFromCache",
518
+ "description": "",
519
+ "optional": true,
520
+ "type": "boolean",
521
+ "gnType": "Boolean",
522
+ "defaultValue": "true",
523
+ "conditions": {}
524
+ }
525
+ ]
526
+ }
527
+ ],
528
+ "responseData": [
529
+ {
530
+ "code": "ErrorCode",
531
+ "value": [
532
+ "Ok"
533
+ ]
534
+ },
535
+ {
536
+ "code": "Results"
537
+ }
538
+ ],
539
+ "description": ""
540
+ },
541
+ {
542
+ "operationCode": "GetCurrencyLeaderboard",
543
+ "details": [
544
+ {
545
+ "role": "Client",
546
+ "requestData": [
547
+ {
548
+ "code": "Key",
549
+ "description": "",
550
+ "optional": false,
551
+ "type": "string",
552
+ "gnType": "String",
553
+ "conditions": {
554
+ "mustNonNull": true,
555
+ "minLength": 2,
556
+ "maxLength": 32
557
+ }
558
+ },
559
+ {
560
+ "code": "InfoRequestParam",
561
+ "description": "",
562
+ "optional": false,
563
+ "type": "InfoRequestParam",
564
+ "gnType": "GNHashtable",
565
+ "conditions": {
566
+ "mustNonNull": true
567
+ }
568
+ },
569
+ {
570
+ "code": "Skip",
571
+ "description": "",
572
+ "optional": true,
573
+ "type": "number",
574
+ "gnType": "Number",
575
+ "defaultValue": "0",
576
+ "conditions": {
577
+ "mustInt": true,
578
+ "minValue": 0
579
+ }
580
+ },
581
+ {
582
+ "code": "Limit",
583
+ "description": "",
584
+ "optional": true,
585
+ "type": "number",
586
+ "gnType": "Number",
587
+ "defaultValue": "10",
588
+ "conditions": {
589
+ "mustInt": true,
590
+ "minValue": 1,
591
+ "maxValue": 100
592
+ }
593
+ },
594
+ {
595
+ "code": "LoadFromCache",
596
+ "description": "",
597
+ "optional": true,
598
+ "type": "boolean",
599
+ "gnType": "Boolean",
600
+ "defaultValue": "true",
601
+ "conditions": {}
602
+ },
603
+ {
604
+ "code": "CatalogId",
605
+ "description": "",
606
+ "optional": true,
607
+ "type": "string",
608
+ "gnType": "String",
609
+ "conditions": {
610
+ "mustNonNull": true,
611
+ "minLength": 2,
612
+ "maxLength": 32
613
+ }
614
+ }
615
+ ]
616
+ }
617
+ ],
618
+ "responseData": [
619
+ {
620
+ "code": "ErrorCode",
621
+ "value": [
622
+ "KeyNotFound",
623
+ "Ok"
624
+ ]
625
+ },
626
+ {
627
+ "code": "Results"
628
+ }
629
+ ],
630
+ "description": ""
631
+ },
632
+ {
633
+ "operationCode": "GetCurrencyLog",
634
+ "details": [
635
+ {
636
+ "role": "Client",
637
+ "requestData": [
638
+ {
639
+ "code": "Keys",
640
+ "description": "",
641
+ "optional": true,
642
+ "type": "string",
643
+ "gnType": "GNArray",
644
+ "conditions": {
645
+ "mustNonNull": true,
646
+ "minLength": 1,
647
+ "maxLength": 32
648
+ }
649
+ },
650
+ {
651
+ "code": "CharacterId",
652
+ "description": "",
653
+ "optional": true,
654
+ "type": "string",
655
+ "gnType": "String",
656
+ "conditions": {
657
+ "mustNonNull": true,
658
+ "minLength": 11,
659
+ "maxLength": 11
660
+ }
661
+ },
662
+ {
663
+ "code": "Limit",
664
+ "description": "",
665
+ "optional": true,
666
+ "type": "number",
667
+ "gnType": "Number",
668
+ "defaultValue": "10",
669
+ "conditions": {
670
+ "mustInt": true,
671
+ "minValue": 1,
672
+ "maxValue": 100
673
+ }
674
+ },
675
+ {
676
+ "code": "Token",
677
+ "description": "",
678
+ "optional": true,
679
+ "type": "string",
680
+ "gnType": "String",
681
+ "conditions": {
682
+ "mustNonNull": true,
683
+ "minLength": 24,
684
+ "maxLength": 24
685
+ }
686
+ }
687
+ ]
688
+ }
689
+ ],
690
+ "responseData": [
691
+ {
692
+ "code": "ErrorCode",
693
+ "value": [
694
+ "Ok"
695
+ ]
696
+ },
697
+ {
698
+ "code": "Results"
699
+ },
700
+ {
701
+ "code": "Token"
702
+ }
703
+ ],
704
+ "description": ""
705
+ },
706
+ {
707
+ "operationCode": "GetCustomData",
708
+ "details": [
709
+ {
710
+ "role": "Client",
711
+ "requestData": [
712
+ {
713
+ "code": "CharacterId",
714
+ "description": "",
715
+ "optional": false,
716
+ "type": "string",
717
+ "gnType": "String",
718
+ "conditions": {
719
+ "mustNonNull": true,
720
+ "minLength": 11,
721
+ "maxLength": 11
722
+ }
723
+ },
724
+ {
725
+ "code": "CustomDataKeys",
726
+ "description": "",
727
+ "optional": true,
728
+ "type": "string",
729
+ "gnType": "GNArray",
730
+ "conditions": {}
731
+ }
732
+ ]
733
+ }
734
+ ],
735
+ "responseData": [
736
+ {
737
+ "code": "ErrorCode",
738
+ "value": [
739
+ "CharacterPlayerNotFound",
740
+ "Ok"
741
+ ]
742
+ },
743
+ {
744
+ "code": "InfoResponseParameters"
745
+ }
746
+ ],
747
+ "description": ""
748
+ },
749
+ {
750
+ "operationCode": "GetDisplayName",
751
+ "details": [
752
+ {
753
+ "role": "Client",
754
+ "requestData": [
755
+ {
756
+ "code": "CharacterId",
757
+ "description": "",
758
+ "optional": false,
759
+ "type": "string",
760
+ "gnType": "String",
761
+ "conditions": {
762
+ "mustNonNull": true,
763
+ "minLength": 11,
764
+ "maxLength": 11
765
+ }
766
+ }
767
+ ]
768
+ }
769
+ ],
770
+ "responseData": [
771
+ {
772
+ "code": "ErrorCode",
773
+ "value": [
774
+ "CharacterPlayerNotFound",
775
+ "Ok"
776
+ ]
777
+ },
778
+ {
779
+ "code": "InfoResponseParameters"
780
+ }
781
+ ],
782
+ "description": ""
783
+ },
784
+ {
785
+ "operationCode": "GetFriendStatisticsLeaderboardAroundPlayer",
786
+ "details": [
787
+ {
788
+ "role": "Client",
789
+ "requestData": [
790
+ {
791
+ "code": "CharacterId",
792
+ "description": "",
793
+ "optional": false,
794
+ "type": "string",
795
+ "gnType": "String",
796
+ "conditions": {
797
+ "mustNonNull": true,
798
+ "minLength": 11,
799
+ "maxLength": 11
800
+ }
801
+ },
802
+ {
803
+ "code": "Key",
804
+ "description": "",
805
+ "optional": false,
806
+ "type": "string",
807
+ "gnType": "String",
808
+ "conditions": {
809
+ "mustNonNull": true,
810
+ "minLength": 2,
811
+ "maxLength": 32
812
+ }
813
+ },
814
+ {
815
+ "code": "InfoRequestParam",
816
+ "description": "",
817
+ "optional": false,
818
+ "type": "InfoRequestParam",
819
+ "gnType": "GNHashtable",
820
+ "conditions": {
821
+ "mustNonNull": true
822
+ }
823
+ },
824
+ {
825
+ "code": "Skip",
826
+ "description": "",
827
+ "optional": true,
828
+ "type": "number",
829
+ "gnType": "Number",
830
+ "defaultValue": "0",
831
+ "conditions": {
832
+ "mustInt": true,
833
+ "minValue": 0
834
+ }
835
+ },
836
+ {
837
+ "code": "Limit",
838
+ "description": "",
839
+ "optional": true,
840
+ "type": "number",
841
+ "gnType": "Number",
842
+ "defaultValue": "10",
843
+ "conditions": {
844
+ "mustInt": true,
845
+ "minValue": 1,
846
+ "maxValue": 100
847
+ }
848
+ },
849
+ {
850
+ "code": "LoadFromCache",
851
+ "description": "",
852
+ "optional": true,
853
+ "type": "boolean",
854
+ "gnType": "Boolean",
855
+ "defaultValue": "true",
856
+ "conditions": {}
857
+ }
858
+ ]
859
+ }
860
+ ],
861
+ "responseData": [
862
+ {
863
+ "code": "ErrorCode",
864
+ "value": [
865
+ "KeyNotFound",
866
+ "CharacterPlayerNotFound",
867
+ "Ok"
868
+ ]
869
+ },
870
+ {
871
+ "code": "Results"
872
+ }
873
+ ],
874
+ "description": ""
875
+ },
876
+ {
877
+ "operationCode": "GetFriendStatisticsLeaderboard",
878
+ "details": [
879
+ {
880
+ "role": "Client",
881
+ "requestData": [
882
+ {
883
+ "code": "CharacterId",
884
+ "description": "",
885
+ "optional": false,
886
+ "type": "string",
887
+ "gnType": "String",
888
+ "conditions": {
889
+ "mustNonNull": true,
890
+ "minLength": 11,
891
+ "maxLength": 11
892
+ }
893
+ },
894
+ {
895
+ "code": "Key",
896
+ "description": "",
897
+ "optional": false,
898
+ "type": "string",
899
+ "gnType": "String",
900
+ "conditions": {
901
+ "mustNonNull": true,
902
+ "minLength": 2,
903
+ "maxLength": 32
904
+ }
905
+ },
906
+ {
907
+ "code": "InfoRequestParam",
908
+ "description": "",
909
+ "optional": false,
910
+ "type": "InfoRequestParam",
911
+ "gnType": "GNHashtable",
912
+ "conditions": {
913
+ "mustNonNull": true
914
+ }
915
+ },
916
+ {
917
+ "code": "Skip",
918
+ "description": "",
919
+ "optional": true,
920
+ "type": "number",
921
+ "gnType": "Number",
922
+ "defaultValue": "0",
923
+ "conditions": {
924
+ "mustInt": true,
925
+ "minValue": 0
926
+ }
927
+ },
928
+ {
929
+ "code": "Limit",
930
+ "description": "",
931
+ "optional": true,
932
+ "type": "number",
933
+ "gnType": "Number",
934
+ "defaultValue": "10",
935
+ "conditions": {
936
+ "mustInt": true,
937
+ "minValue": 1,
938
+ "maxValue": 100
939
+ }
940
+ },
941
+ {
942
+ "code": "LoadFromCache",
943
+ "description": "",
944
+ "optional": true,
945
+ "type": "boolean",
946
+ "gnType": "Boolean",
947
+ "defaultValue": "true",
948
+ "conditions": {}
949
+ }
950
+ ]
951
+ }
952
+ ],
953
+ "responseData": [
954
+ {
955
+ "code": "ErrorCode",
956
+ "value": [
957
+ "KeyNotFound",
958
+ "CharacterPlayerNotFound",
959
+ "Ok"
960
+ ]
961
+ },
962
+ {
963
+ "code": "Results"
964
+ }
965
+ ],
966
+ "description": ""
967
+ },
968
+ {
969
+ "operationCode": "GetIpAddressCreate",
970
+ "details": [
971
+ {
972
+ "role": "Client",
973
+ "requestData": [
974
+ {
975
+ "code": "CharacterId",
976
+ "description": "",
977
+ "optional": false,
978
+ "type": "string",
979
+ "gnType": "String",
980
+ "conditions": {
981
+ "mustNonNull": true,
982
+ "minLength": 11,
983
+ "maxLength": 11
984
+ }
985
+ }
986
+ ]
987
+ }
988
+ ],
989
+ "responseData": [
990
+ {
991
+ "code": "ErrorCode",
992
+ "value": [
993
+ "CharacterPlayerNotFound",
994
+ "Ok"
995
+ ]
996
+ },
997
+ {
998
+ "code": "InfoResponseParameters"
999
+ }
1000
+ ],
1001
+ "description": ""
1002
+ },
1003
+ {
1004
+ "operationCode": "GetLastLoginLeaderboard",
1005
+ "details": [
1006
+ {
1007
+ "role": "Client",
1008
+ "requestData": [
1009
+ {
1010
+ "code": "InfoRequestParam",
1011
+ "description": "",
1012
+ "optional": false,
1013
+ "type": "InfoRequestParam",
1014
+ "gnType": "GNHashtable",
1015
+ "conditions": {
1016
+ "mustNonNull": true
1017
+ }
1018
+ },
1019
+ {
1020
+ "code": "Skip",
1021
+ "description": "",
1022
+ "optional": true,
1023
+ "type": "number",
1024
+ "gnType": "Number",
1025
+ "defaultValue": "0",
1026
+ "conditions": {
1027
+ "mustInt": true,
1028
+ "minValue": 0
1029
+ }
1030
+ },
1031
+ {
1032
+ "code": "Limit",
1033
+ "description": "",
1034
+ "optional": true,
1035
+ "type": "number",
1036
+ "gnType": "Number",
1037
+ "defaultValue": "10",
1038
+ "conditions": {
1039
+ "mustInt": true,
1040
+ "minValue": 1,
1041
+ "maxValue": 100
1042
+ }
1043
+ },
1044
+ {
1045
+ "code": "LoadFromCache",
1046
+ "description": "",
1047
+ "optional": true,
1048
+ "type": "boolean",
1049
+ "gnType": "Boolean",
1050
+ "defaultValue": "true",
1051
+ "conditions": {}
1052
+ }
1053
+ ]
1054
+ }
1055
+ ],
1056
+ "responseData": [
1057
+ {
1058
+ "code": "ErrorCode",
1059
+ "value": [
1060
+ "Ok"
1061
+ ]
1062
+ },
1063
+ {
1064
+ "code": "Results"
1065
+ }
1066
+ ],
1067
+ "description": ""
1068
+ },
1069
+ {
1070
+ "operationCode": "GetOwner",
1071
+ "details": [
1072
+ {
1073
+ "role": "Client",
1074
+ "requestData": [
1075
+ {
1076
+ "code": "CharacterId",
1077
+ "description": "",
1078
+ "optional": false,
1079
+ "type": "string",
1080
+ "gnType": "String",
1081
+ "conditions": {
1082
+ "mustNonNull": true,
1083
+ "minLength": 11,
1084
+ "maxLength": 11
1085
+ }
1086
+ }
1087
+ ]
1088
+ }
1089
+ ],
1090
+ "responseData": [
1091
+ {
1092
+ "code": "ErrorCode",
1093
+ "value": [
1094
+ "CharacterPlayerNotFound",
1095
+ "Ok"
1096
+ ]
1097
+ },
1098
+ {
1099
+ "code": "InfoResponseParameters"
1100
+ }
1101
+ ],
1102
+ "description": ""
1103
+ },
1104
+ {
1105
+ "operationCode": "GetPlayerBan",
1106
+ "details": [
1107
+ {
1108
+ "role": "Client",
1109
+ "requestData": [
1110
+ {
1111
+ "code": "CharacterId",
1112
+ "description": "",
1113
+ "optional": false,
1114
+ "type": "string",
1115
+ "gnType": "String",
1116
+ "conditions": {
1117
+ "mustNonNull": true,
1118
+ "minLength": 11,
1119
+ "maxLength": 11
1120
+ }
1121
+ }
1122
+ ]
1123
+ }
1124
+ ],
1125
+ "responseData": [
1126
+ {
1127
+ "code": "ErrorCode",
1128
+ "value": [
1129
+ "CharacterPlayerNotFound",
1130
+ "Ok"
1131
+ ]
1132
+ },
1133
+ {
1134
+ "code": "InfoResponseParameters"
1135
+ }
1136
+ ],
1137
+ "description": ""
1138
+ },
1139
+ {
1140
+ "operationCode": "GetPlayerCurrency",
1141
+ "details": [
1142
+ {
1143
+ "role": "Client",
1144
+ "requestData": [
1145
+ {
1146
+ "code": "CharacterId",
1147
+ "description": "",
1148
+ "optional": false,
1149
+ "type": "string",
1150
+ "gnType": "String",
1151
+ "conditions": {
1152
+ "mustNonNull": true,
1153
+ "minLength": 11,
1154
+ "maxLength": 11
1155
+ }
1156
+ },
1157
+ {
1158
+ "code": "PlayerCurrencyKeys",
1159
+ "description": "",
1160
+ "optional": true,
1161
+ "type": "string",
1162
+ "gnType": "GNArray",
1163
+ "conditions": {}
1164
+ }
1165
+ ]
1166
+ }
1167
+ ],
1168
+ "responseData": [
1169
+ {
1170
+ "code": "ErrorCode",
1171
+ "value": [
1172
+ "CharacterPlayerNotFound",
1173
+ "Ok"
1174
+ ]
1175
+ },
1176
+ {
1177
+ "code": "InfoResponseParameters"
1178
+ }
1179
+ ],
1180
+ "description": ""
1181
+ },
1182
+ {
1183
+ "operationCode": "GetPlayerData",
1184
+ "details": [
1185
+ {
1186
+ "role": "Client",
1187
+ "requestData": [
1188
+ {
1189
+ "code": "CharacterId",
1190
+ "description": "",
1191
+ "optional": false,
1192
+ "type": "string",
1193
+ "gnType": "String",
1194
+ "conditions": {
1195
+ "mustNonNull": true,
1196
+ "minLength": 11,
1197
+ "maxLength": 11
1198
+ }
1199
+ },
1200
+ {
1201
+ "code": "PlayerDataKeys",
1202
+ "description": "",
1203
+ "optional": true,
1204
+ "type": "string",
1205
+ "gnType": "GNArray",
1206
+ "conditions": {}
1207
+ }
1208
+ ]
1209
+ }
1210
+ ],
1211
+ "responseData": [
1212
+ {
1213
+ "code": "ErrorCode",
1214
+ "value": [
1215
+ "CharacterPlayerNotFound",
1216
+ "Ok"
1217
+ ]
1218
+ },
1219
+ {
1220
+ "code": "InfoResponseParameters"
1221
+ }
1222
+ ],
1223
+ "description": ""
1224
+ },
1225
+ {
1226
+ "operationCode": "GetPlayerFriend",
1227
+ "details": [
1228
+ {
1229
+ "role": "Client",
1230
+ "requestData": [
1231
+ {
1232
+ "code": "CharacterId",
1233
+ "description": "",
1234
+ "optional": false,
1235
+ "type": "string",
1236
+ "gnType": "String",
1237
+ "conditions": {
1238
+ "mustNonNull": true,
1239
+ "minLength": 11,
1240
+ "maxLength": 11
1241
+ }
1242
+ },
1243
+ {
1244
+ "code": "FriendCatalogIds",
1245
+ "description": "",
1246
+ "optional": true,
1247
+ "type": "string",
1248
+ "gnType": "GNArray",
1249
+ "conditions": {}
1250
+ }
1251
+ ]
1252
+ }
1253
+ ],
1254
+ "responseData": [
1255
+ {
1256
+ "code": "ErrorCode",
1257
+ "value": [
1258
+ "CharacterPlayerNotFound",
1259
+ "Ok"
1260
+ ]
1261
+ },
1262
+ {
1263
+ "code": "InfoResponseParameters"
1264
+ }
1265
+ ],
1266
+ "description": ""
1267
+ },
1268
+ {
1269
+ "operationCode": "GetPlayerGroup",
1270
+ "details": [
1271
+ {
1272
+ "role": "Client",
1273
+ "requestData": [
1274
+ {
1275
+ "code": "CharacterId",
1276
+ "description": "",
1277
+ "optional": false,
1278
+ "type": "string",
1279
+ "gnType": "String",
1280
+ "conditions": {
1281
+ "mustNonNull": true,
1282
+ "minLength": 11,
1283
+ "maxLength": 11
1284
+ }
1285
+ },
1286
+ {
1287
+ "code": "GroupCatalogIds",
1288
+ "description": "",
1289
+ "optional": true,
1290
+ "type": "string",
1291
+ "gnType": "GNArray",
1292
+ "conditions": {}
1293
+ }
1294
+ ]
1295
+ }
1296
+ ],
1297
+ "responseData": [
1298
+ {
1299
+ "code": "ErrorCode",
1300
+ "value": [
1301
+ "CharacterPlayerNotFound",
1302
+ "Ok"
1303
+ ]
1304
+ },
1305
+ {
1306
+ "code": "InfoResponseParameters"
1307
+ }
1308
+ ],
1309
+ "description": ""
1310
+ },
1311
+ {
1312
+ "operationCode": "GetPlayerInformation",
1313
+ "details": [
1314
+ {
1315
+ "role": "Client",
1316
+ "requestData": [
1317
+ {
1318
+ "code": "CharacterId",
1319
+ "description": "",
1320
+ "optional": false,
1321
+ "type": "string",
1322
+ "gnType": "String",
1323
+ "conditions": {
1324
+ "mustNonNull": true,
1325
+ "minLength": 11,
1326
+ "maxLength": 11
1327
+ }
1328
+ },
1329
+ {
1330
+ "code": "InfoRequestParam",
1331
+ "description": "",
1332
+ "optional": false,
1333
+ "type": "InfoRequestParam",
1334
+ "gnType": "GNHashtable",
1335
+ "conditions": {
1336
+ "mustNonNull": true
1337
+ }
1338
+ }
1339
+ ]
1340
+ }
1341
+ ],
1342
+ "responseData": [
1343
+ {
1344
+ "code": "ErrorCode",
1345
+ "value": [
1346
+ "CharacterPlayerNotFound",
1347
+ "Ok"
1348
+ ]
1349
+ },
1350
+ {
1351
+ "code": "InfoResponseParameters"
1352
+ }
1353
+ ],
1354
+ "description": ""
1355
+ },
1356
+ {
1357
+ "operationCode": "GetPlayerInventory",
1358
+ "details": [
1359
+ {
1360
+ "role": "Client",
1361
+ "requestData": [
1362
+ {
1363
+ "code": "CharacterId",
1364
+ "description": "",
1365
+ "optional": false,
1366
+ "type": "string",
1367
+ "gnType": "String",
1368
+ "conditions": {
1369
+ "mustNonNull": true,
1370
+ "minLength": 11,
1371
+ "maxLength": 11
1372
+ }
1373
+ },
1374
+ {
1375
+ "code": "ItemCatalogIds",
1376
+ "description": "",
1377
+ "optional": true,
1378
+ "type": "string",
1379
+ "gnType": "GNArray",
1380
+ "conditions": {}
1381
+ }
1382
+ ]
1383
+ }
1384
+ ],
1385
+ "responseData": [
1386
+ {
1387
+ "code": "ErrorCode",
1388
+ "value": [
1389
+ "CharacterPlayerNotFound",
1390
+ "Ok"
1391
+ ]
1392
+ },
1393
+ {
1394
+ "code": "InfoResponseParameters"
1395
+ }
1396
+ ],
1397
+ "description": ""
1398
+ },
1399
+ {
1400
+ "operationCode": "GetPlayerStatistics",
1401
+ "details": [
1402
+ {
1403
+ "role": "Client",
1404
+ "requestData": [
1405
+ {
1406
+ "code": "CharacterId",
1407
+ "description": "",
1408
+ "optional": false,
1409
+ "type": "string",
1410
+ "gnType": "String",
1411
+ "conditions": {
1412
+ "mustNonNull": true,
1413
+ "minLength": 11,
1414
+ "maxLength": 11
1415
+ }
1416
+ },
1417
+ {
1418
+ "code": "StatisticsKeys",
1419
+ "description": "",
1420
+ "optional": true,
1421
+ "type": "string",
1422
+ "gnType": "GNArray",
1423
+ "conditions": {}
1424
+ }
1425
+ ]
1426
+ }
1427
+ ],
1428
+ "responseData": [
1429
+ {
1430
+ "code": "ErrorCode",
1431
+ "value": [
1432
+ "CharacterPlayerNotFound",
1433
+ "Ok"
1434
+ ]
1435
+ },
1436
+ {
1437
+ "code": "InfoResponseParameters"
1438
+ }
1439
+ ],
1440
+ "description": ""
1441
+ },
1442
+ {
1443
+ "operationCode": "GetPlayersWithDisplayName",
1444
+ "details": [
1445
+ {
1446
+ "role": "Client",
1447
+ "requestData": [
1448
+ {
1449
+ "code": "Keyword",
1450
+ "description": "",
1451
+ "optional": false,
1452
+ "type": "string",
1453
+ "gnType": "String",
1454
+ "conditions": {
1455
+ "minLength": 2,
1456
+ "maxLength": 32
1457
+ }
1458
+ },
1459
+ {
1460
+ "code": "InfoRequestParam",
1461
+ "description": "",
1462
+ "optional": false,
1463
+ "type": "InfoRequestParam",
1464
+ "gnType": "GNHashtable",
1465
+ "conditions": {
1466
+ "mustNonNull": true
1467
+ }
1468
+ },
1469
+ {
1470
+ "code": "Skip",
1471
+ "description": "",
1472
+ "optional": true,
1473
+ "type": "number",
1474
+ "gnType": "Number",
1475
+ "defaultValue": "0",
1476
+ "conditions": {
1477
+ "mustInt": true,
1478
+ "minValue": 0
1479
+ }
1480
+ },
1481
+ {
1482
+ "code": "Limit",
1483
+ "description": "",
1484
+ "optional": true,
1485
+ "type": "number",
1486
+ "gnType": "Number",
1487
+ "defaultValue": "10",
1488
+ "conditions": {
1489
+ "mustInt": true,
1490
+ "minValue": 1,
1491
+ "maxValue": 100
1492
+ }
1493
+ }
1494
+ ]
1495
+ }
1496
+ ],
1497
+ "responseData": [
1498
+ {
1499
+ "code": "ErrorCode",
1500
+ "value": [
1501
+ "Ok"
1502
+ ]
1503
+ },
1504
+ {
1505
+ "code": "Results"
1506
+ }
1507
+ ],
1508
+ "description": ""
1509
+ },
1510
+ {
1511
+ "operationCode": "GetPlayersWithSegment",
1512
+ "details": [
1513
+ {
1514
+ "role": "Client",
1515
+ "requestData": [
1516
+ {
1517
+ "code": "Value",
1518
+ "description": "",
1519
+ "optional": false,
1520
+ "type": "string",
1521
+ "gnType": "String",
1522
+ "conditions": {
1523
+ "mustNonNull": true,
1524
+ "minLength": 2,
1525
+ "maxLength": 32
1526
+ }
1527
+ },
1528
+ {
1529
+ "code": "InfoRequestParam",
1530
+ "description": "",
1531
+ "optional": false,
1532
+ "type": "InfoRequestParam",
1533
+ "gnType": "GNHashtable",
1534
+ "conditions": {
1535
+ "mustNonNull": true
1536
+ }
1537
+ },
1538
+ {
1539
+ "code": "Skip",
1540
+ "description": "",
1541
+ "optional": true,
1542
+ "type": "number",
1543
+ "gnType": "Number",
1544
+ "defaultValue": "0",
1545
+ "conditions": {
1546
+ "mustInt": true,
1547
+ "minValue": 0
1548
+ }
1549
+ },
1550
+ {
1551
+ "code": "Limit",
1552
+ "description": "",
1553
+ "optional": true,
1554
+ "type": "number",
1555
+ "gnType": "Number",
1556
+ "defaultValue": "10",
1557
+ "conditions": {
1558
+ "mustInt": true,
1559
+ "minValue": 1,
1560
+ "maxValue": 100
1561
+ }
1562
+ }
1563
+ ]
1564
+ }
1565
+ ],
1566
+ "responseData": [
1567
+ {
1568
+ "code": "ErrorCode",
1569
+ "value": [
1570
+ "Ok"
1571
+ ]
1572
+ },
1573
+ {
1574
+ "code": "Results"
1575
+ }
1576
+ ],
1577
+ "description": ""
1578
+ },
1579
+ {
1580
+ "operationCode": "GetPlayersWithTag",
1581
+ "details": [
1582
+ {
1583
+ "role": "Client",
1584
+ "requestData": [
1585
+ {
1586
+ "code": "Key",
1587
+ "description": "",
1588
+ "optional": false,
1589
+ "type": "string",
1590
+ "gnType": "String",
1591
+ "conditions": {
1592
+ "mustNonNull": true,
1593
+ "minLength": 2,
1594
+ "maxLength": 32
1595
+ }
1596
+ },
1597
+ {
1598
+ "code": "Value",
1599
+ "description": "",
1600
+ "optional": false,
1601
+ "type": "string",
1602
+ "gnType": "String",
1603
+ "conditions": {
1604
+ "mustNonNull": true,
1605
+ "minLength": 2,
1606
+ "maxLength": 32
1607
+ }
1608
+ },
1609
+ {
1610
+ "code": "InfoRequestParam",
1611
+ "description": "",
1612
+ "optional": false,
1613
+ "type": "InfoRequestParam",
1614
+ "gnType": "GNHashtable",
1615
+ "conditions": {
1616
+ "mustNonNull": true
1617
+ }
1618
+ },
1619
+ {
1620
+ "code": "Skip",
1621
+ "description": "",
1622
+ "optional": true,
1623
+ "type": "number",
1624
+ "gnType": "Number",
1625
+ "defaultValue": "0",
1626
+ "conditions": {
1627
+ "mustInt": true,
1628
+ "minValue": 0
1629
+ }
1630
+ },
1631
+ {
1632
+ "code": "Limit",
1633
+ "description": "",
1634
+ "optional": true,
1635
+ "type": "number",
1636
+ "gnType": "Number",
1637
+ "defaultValue": "10",
1638
+ "conditions": {
1639
+ "mustInt": true,
1640
+ "minValue": 1,
1641
+ "maxValue": 100
1642
+ }
1643
+ }
1644
+ ]
1645
+ }
1646
+ ],
1647
+ "responseData": [
1648
+ {
1649
+ "code": "ErrorCode",
1650
+ "value": [
1651
+ "KeyNotFound",
1652
+ "Ok"
1653
+ ]
1654
+ },
1655
+ {
1656
+ "code": "Results"
1657
+ }
1658
+ ],
1659
+ "description": ""
1660
+ },
1661
+ {
1662
+ "operationCode": "GetRemoveStatus",
1663
+ "details": [
1664
+ {
1665
+ "role": "Client",
1666
+ "requestData": [
1667
+ {
1668
+ "code": "CharacterId",
1669
+ "description": "",
1670
+ "optional": false,
1671
+ "type": "string",
1672
+ "gnType": "String",
1673
+ "conditions": {
1674
+ "mustNonNull": true,
1675
+ "minLength": 11,
1676
+ "maxLength": 11
1677
+ }
1678
+ }
1679
+ ]
1680
+ }
1681
+ ],
1682
+ "responseData": [
1683
+ {
1684
+ "code": "ErrorCode",
1685
+ "value": [
1686
+ "CharacterPlayerNotFound",
1687
+ "Ok"
1688
+ ]
1689
+ },
1690
+ {
1691
+ "code": "InfoResponseParameters"
1692
+ }
1693
+ ],
1694
+ "description": ""
1695
+ },
1696
+ {
1697
+ "operationCode": "GetSegment",
1698
+ "details": [
1699
+ {
1700
+ "role": "Client",
1701
+ "requestData": [
1702
+ {
1703
+ "code": "CharacterId",
1704
+ "description": "",
1705
+ "optional": false,
1706
+ "type": "string",
1707
+ "gnType": "String",
1708
+ "conditions": {
1709
+ "mustNonNull": true,
1710
+ "minLength": 11,
1711
+ "maxLength": 11
1712
+ }
1713
+ }
1714
+ ]
1715
+ }
1716
+ ],
1717
+ "responseData": [
1718
+ {
1719
+ "code": "ErrorCode",
1720
+ "value": [
1721
+ "CharacterPlayerNotFound",
1722
+ "Ok"
1723
+ ]
1724
+ },
1725
+ {
1726
+ "code": "InfoResponseParameters"
1727
+ }
1728
+ ],
1729
+ "description": ""
1730
+ },
1731
+ {
1732
+ "operationCode": "GetStatisticsLeaderboardAroundPlayer",
1733
+ "details": [
1734
+ {
1735
+ "role": "Client",
1736
+ "requestData": [
1737
+ {
1738
+ "code": "CharacterId",
1739
+ "description": "",
1740
+ "optional": false,
1741
+ "type": "string",
1742
+ "gnType": "String",
1743
+ "conditions": {
1744
+ "mustNonNull": true,
1745
+ "minLength": 11,
1746
+ "maxLength": 11
1747
+ }
1748
+ },
1749
+ {
1750
+ "code": "Key",
1751
+ "description": "",
1752
+ "optional": false,
1753
+ "type": "string",
1754
+ "gnType": "String",
1755
+ "conditions": {
1756
+ "mustNonNull": true,
1757
+ "minLength": 2,
1758
+ "maxLength": 32
1759
+ }
1760
+ },
1761
+ {
1762
+ "code": "InfoRequestParam",
1763
+ "description": "",
1764
+ "optional": false,
1765
+ "type": "InfoRequestParam",
1766
+ "gnType": "GNHashtable",
1767
+ "conditions": {
1768
+ "mustNonNull": true
1769
+ }
1770
+ },
1771
+ {
1772
+ "code": "Skip",
1773
+ "description": "",
1774
+ "optional": true,
1775
+ "type": "number",
1776
+ "gnType": "Number",
1777
+ "defaultValue": "0",
1778
+ "conditions": {
1779
+ "mustInt": true,
1780
+ "minValue": 0
1781
+ }
1782
+ },
1783
+ {
1784
+ "code": "Limit",
1785
+ "description": "",
1786
+ "optional": true,
1787
+ "type": "number",
1788
+ "gnType": "Number",
1789
+ "defaultValue": "10",
1790
+ "conditions": {
1791
+ "mustInt": true,
1792
+ "minValue": 1,
1793
+ "maxValue": 100
1794
+ }
1795
+ },
1796
+ {
1797
+ "code": "LoadFromCache",
1798
+ "description": "",
1799
+ "optional": true,
1800
+ "type": "boolean",
1801
+ "gnType": "Boolean",
1802
+ "defaultValue": "true",
1803
+ "conditions": {}
1804
+ },
1805
+ {
1806
+ "code": "CatalogId",
1807
+ "description": "",
1808
+ "optional": true,
1809
+ "type": "string",
1810
+ "gnType": "String",
1811
+ "conditions": {
1812
+ "mustNonNull": true,
1813
+ "minLength": 2,
1814
+ "maxLength": 32
1815
+ }
1816
+ }
1817
+ ]
1818
+ }
1819
+ ],
1820
+ "responseData": [
1821
+ {
1822
+ "code": "ErrorCode",
1823
+ "value": [
1824
+ "KeyNotFound",
1825
+ "Ok"
1826
+ ]
1827
+ },
1828
+ {
1829
+ "code": "Results"
1830
+ }
1831
+ ],
1832
+ "description": ""
1833
+ },
1834
+ {
1835
+ "operationCode": "GetStatisticsLeaderboard",
1836
+ "details": [
1837
+ {
1838
+ "role": "Client",
1839
+ "requestData": [
1840
+ {
1841
+ "code": "Key",
1842
+ "description": "",
1843
+ "optional": false,
1844
+ "type": "string",
1845
+ "gnType": "String",
1846
+ "conditions": {
1847
+ "mustNonNull": true,
1848
+ "minLength": 2,
1849
+ "maxLength": 32
1850
+ }
1851
+ },
1852
+ {
1853
+ "code": "InfoRequestParam",
1854
+ "description": "",
1855
+ "optional": false,
1856
+ "type": "InfoRequestParam",
1857
+ "gnType": "GNHashtable",
1858
+ "conditions": {
1859
+ "mustNonNull": true
1860
+ }
1861
+ },
1862
+ {
1863
+ "code": "Skip",
1864
+ "description": "",
1865
+ "optional": true,
1866
+ "type": "number",
1867
+ "gnType": "Number",
1868
+ "defaultValue": "0",
1869
+ "conditions": {
1870
+ "mustInt": true,
1871
+ "minValue": 0
1872
+ }
1873
+ },
1874
+ {
1875
+ "code": "Limit",
1876
+ "description": "",
1877
+ "optional": true,
1878
+ "type": "number",
1879
+ "gnType": "Number",
1880
+ "defaultValue": "10",
1881
+ "conditions": {
1882
+ "mustInt": true,
1883
+ "minValue": 1,
1884
+ "maxValue": 100
1885
+ }
1886
+ },
1887
+ {
1888
+ "code": "LoadFromCache",
1889
+ "description": "",
1890
+ "optional": true,
1891
+ "type": "boolean",
1892
+ "gnType": "Boolean",
1893
+ "defaultValue": "true",
1894
+ "conditions": {}
1895
+ },
1896
+ {
1897
+ "code": "Version",
1898
+ "description": "",
1899
+ "optional": true,
1900
+ "type": "string",
1901
+ "gnType": "String",
1902
+ "conditions": {
1903
+ "mustNonNull": true,
1904
+ "minLength": 2,
1905
+ "maxLength": 32
1906
+ }
1907
+ },
1908
+ {
1909
+ "code": "CatalogId",
1910
+ "description": "",
1911
+ "optional": true,
1912
+ "type": "string",
1913
+ "gnType": "String",
1914
+ "conditions": {
1915
+ "mustNonNull": true,
1916
+ "minLength": 2,
1917
+ "maxLength": 32
1918
+ }
1919
+ }
1920
+ ]
1921
+ }
1922
+ ],
1923
+ "responseData": [
1924
+ {
1925
+ "code": "ErrorCode",
1926
+ "value": [
1927
+ "KeyNotFound",
1928
+ "VersionInvalid",
1929
+ "Ok"
1930
+ ]
1931
+ },
1932
+ {
1933
+ "code": "Results"
1934
+ },
1935
+ {
1936
+ "code": "TsCreate"
1937
+ }
1938
+ ],
1939
+ "description": ""
1940
+ },
1941
+ {
1942
+ "operationCode": "GetStatisticsLog",
1943
+ "details": [
1944
+ {
1945
+ "role": "Client",
1946
+ "requestData": [
1947
+ {
1948
+ "code": "Keys",
1949
+ "description": "",
1950
+ "optional": true,
1951
+ "type": "string",
1952
+ "gnType": "GNArray",
1953
+ "conditions": {
1954
+ "mustNonNull": true,
1955
+ "minLength": 1,
1956
+ "maxLength": 32
1957
+ }
1958
+ },
1959
+ {
1960
+ "code": "CharacterId",
1961
+ "description": "",
1962
+ "optional": true,
1963
+ "type": "string",
1964
+ "gnType": "String",
1965
+ "conditions": {
1966
+ "mustNonNull": true,
1967
+ "minLength": 11,
1968
+ "maxLength": 11
1969
+ }
1970
+ },
1971
+ {
1972
+ "code": "Limit",
1973
+ "description": "",
1974
+ "optional": true,
1975
+ "type": "number",
1976
+ "gnType": "Number",
1977
+ "defaultValue": "10",
1978
+ "conditions": {
1979
+ "mustInt": true,
1980
+ "minValue": 1,
1981
+ "maxValue": 100
1982
+ }
1983
+ },
1984
+ {
1985
+ "code": "Token",
1986
+ "description": "",
1987
+ "optional": true,
1988
+ "type": "string",
1989
+ "gnType": "String",
1990
+ "conditions": {
1991
+ "mustNonNull": true,
1992
+ "minLength": 24,
1993
+ "maxLength": 24
1994
+ }
1995
+ }
1996
+ ]
1997
+ }
1998
+ ],
1999
+ "responseData": [
2000
+ {
2001
+ "code": "ErrorCode",
2002
+ "value": [
2003
+ "Ok"
2004
+ ]
2005
+ },
2006
+ {
2007
+ "code": "Results"
2008
+ },
2009
+ {
2010
+ "code": "Token"
2011
+ }
2012
+ ],
2013
+ "description": ""
2014
+ },
2015
+ {
2016
+ "operationCode": "GetTag",
2017
+ "details": [
2018
+ {
2019
+ "role": "Client",
2020
+ "requestData": [
2021
+ {
2022
+ "code": "CharacterId",
2023
+ "description": "",
2024
+ "optional": false,
2025
+ "type": "string",
2026
+ "gnType": "String",
2027
+ "conditions": {
2028
+ "mustNonNull": true,
2029
+ "minLength": 11,
2030
+ "maxLength": 11
2031
+ }
2032
+ },
2033
+ {
2034
+ "code": "TagKeys",
2035
+ "description": "",
2036
+ "optional": false,
2037
+ "type": "string",
2038
+ "gnType": "GNArray",
2039
+ "conditions": {}
2040
+ }
2041
+ ]
2042
+ }
2043
+ ],
2044
+ "responseData": [
2045
+ {
2046
+ "code": "ErrorCode",
2047
+ "value": [
2048
+ "CharacterPlayerNotFound",
2049
+ "Ok"
2050
+ ]
2051
+ },
2052
+ {
2053
+ "code": "InfoResponseParameters"
2054
+ }
2055
+ ],
2056
+ "description": ""
2057
+ },
2058
+ {
2059
+ "operationCode": "GetTsCreate",
2060
+ "details": [
2061
+ {
2062
+ "role": "Client",
2063
+ "requestData": [
2064
+ {
2065
+ "code": "CharacterId",
2066
+ "description": "",
2067
+ "optional": false,
2068
+ "type": "string",
2069
+ "gnType": "String",
2070
+ "conditions": {
2071
+ "mustNonNull": true,
2072
+ "minLength": 11,
2073
+ "maxLength": 11
2074
+ }
2075
+ }
2076
+ ]
2077
+ }
2078
+ ],
2079
+ "responseData": [
2080
+ {
2081
+ "code": "ErrorCode",
2082
+ "value": [
2083
+ "CharacterPlayerNotFound",
2084
+ "Ok"
2085
+ ]
2086
+ },
2087
+ {
2088
+ "code": "InfoResponseParameters"
2089
+ }
2090
+ ],
2091
+ "description": ""
2092
+ },
2093
+ {
2094
+ "operationCode": "GetTsLastLogin",
2095
+ "details": [
2096
+ {
2097
+ "role": "Client",
2098
+ "requestData": [
2099
+ {
2100
+ "code": "CharacterId",
2101
+ "description": "",
2102
+ "optional": false,
2103
+ "type": "string",
2104
+ "gnType": "String",
2105
+ "conditions": {
2106
+ "mustNonNull": true,
2107
+ "minLength": 11,
2108
+ "maxLength": 11
2109
+ }
2110
+ }
2111
+ ]
2112
+ }
2113
+ ],
2114
+ "responseData": [
2115
+ {
2116
+ "code": "ErrorCode",
2117
+ "value": [
2118
+ "CharacterPlayerNotFound",
2119
+ "Ok"
2120
+ ]
2121
+ },
2122
+ {
2123
+ "code": "InfoResponseParameters"
2124
+ }
2125
+ ],
2126
+ "description": ""
2127
+ },
2128
+ {
2129
+ "operationCode": "JoinGroup",
2130
+ "details": [
2131
+ {
2132
+ "role": "Client",
2133
+ "requestData": [
2134
+ {
2135
+ "code": "CharacterId",
2136
+ "description": "",
2137
+ "optional": false,
2138
+ "type": "string",
2139
+ "gnType": "String",
2140
+ "conditions": {
2141
+ "mustNonNull": true,
2142
+ "minLength": 11,
2143
+ "maxLength": 11
2144
+ }
2145
+ },
2146
+ {
2147
+ "code": "GroupId",
2148
+ "description": "",
2149
+ "optional": false,
2150
+ "type": "string",
2151
+ "gnType": "String",
2152
+ "conditions": {
2153
+ "mustNonNull": true,
2154
+ "minLength": 10,
2155
+ "maxLength": 10
2156
+ }
2157
+ }
2158
+ ]
2159
+ }
2160
+ ],
2161
+ "responseData": [
2162
+ {
2163
+ "code": "ErrorCode",
2164
+ "value": [
2165
+ "GroupNotFound",
2166
+ "CharacterPlayerNotFound",
2167
+ "Ok"
2168
+ ]
2169
+ }
2170
+ ],
2171
+ "description": ""
2172
+ },
2173
+ {
2174
+ "operationCode": "LeaveGroup",
2175
+ "details": [
2176
+ {
2177
+ "role": "Client",
2178
+ "requestData": [
2179
+ {
2180
+ "code": "CharacterId",
2181
+ "description": "",
2182
+ "optional": false,
2183
+ "type": "string",
2184
+ "gnType": "String",
2185
+ "conditions": {
2186
+ "mustNonNull": true,
2187
+ "minLength": 11,
2188
+ "maxLength": 11
2189
+ }
2190
+ },
2191
+ {
2192
+ "code": "GroupId",
2193
+ "description": "",
2194
+ "optional": false,
2195
+ "type": "string",
2196
+ "gnType": "String",
2197
+ "conditions": {
2198
+ "mustNonNull": true,
2199
+ "minLength": 10,
2200
+ "maxLength": 10
2201
+ }
2202
+ }
2203
+ ]
2204
+ }
2205
+ ],
2206
+ "responseData": [
2207
+ {
2208
+ "code": "ErrorCode",
2209
+ "value": [
2210
+ "GroupNotFound",
2211
+ "CharacterPlayerNotFound",
2212
+ "Ok"
2213
+ ]
2214
+ }
2215
+ ],
2216
+ "description": ""
2217
+ },
2218
+ {
2219
+ "operationCode": "RemovePlayerFriend",
2220
+ "details": [
2221
+ {
2222
+ "role": "Client",
2223
+ "requestData": [
2224
+ {
2225
+ "code": "CharacterId",
2226
+ "description": "",
2227
+ "optional": false,
2228
+ "type": "string",
2229
+ "gnType": "String",
2230
+ "conditions": {
2231
+ "mustNonNull": true,
2232
+ "minLength": 11,
2233
+ "maxLength": 11
2234
+ }
2235
+ },
2236
+ {
2237
+ "code": "FriendId",
2238
+ "description": "",
2239
+ "optional": false,
2240
+ "type": "string",
2241
+ "gnType": "String",
2242
+ "conditions": {
2243
+ "mustNonNull": true,
2244
+ "minLength": 11,
2245
+ "maxLength": 11
2246
+ }
2247
+ }
2248
+ ]
2249
+ }
2250
+ ],
2251
+ "responseData": [
2252
+ {
2253
+ "code": "ErrorCode",
2254
+ "value": [
2255
+ "CharacterPlayerNotFound",
2256
+ "Ok"
2257
+ ]
2258
+ }
2259
+ ],
2260
+ "description": ""
2261
+ },
2262
+ {
2263
+ "operationCode": "RemovePlayerItem",
2264
+ "details": [
2265
+ {
2266
+ "role": "Client",
2267
+ "requestData": [
2268
+ {
2269
+ "code": "CharacterId",
2270
+ "description": "",
2271
+ "optional": false,
2272
+ "type": "string",
2273
+ "gnType": "String",
2274
+ "conditions": {
2275
+ "mustNonNull": true,
2276
+ "minLength": 11,
2277
+ "maxLength": 11
2278
+ }
2279
+ },
2280
+ {
2281
+ "code": "ItemId",
2282
+ "description": "",
2283
+ "optional": false,
2284
+ "type": "string",
2285
+ "gnType": "String",
2286
+ "conditions": {
2287
+ "mustNonNull": true,
2288
+ "minLength": 12,
2289
+ "maxLength": 12
2290
+ }
2291
+ }
2292
+ ]
2293
+ }
2294
+ ],
2295
+ "responseData": [
2296
+ {
2297
+ "code": "ErrorCode",
2298
+ "value": [
2299
+ "CharacterPlayerNotFound",
2300
+ "ItemNotFound",
2301
+ "Ok"
2302
+ ]
2303
+ }
2304
+ ],
2305
+ "description": ""
2306
+ },
2307
+ {
2308
+ "operationCode": "RemoveSegment",
2309
+ "details": [
2310
+ {
2311
+ "role": "Client",
2312
+ "requestData": [
2313
+ {
2314
+ "code": "CharacterId",
2315
+ "description": "",
2316
+ "optional": false,
2317
+ "type": "string",
2318
+ "gnType": "String",
2319
+ "conditions": {
2320
+ "mustNonNull": true,
2321
+ "minLength": 11,
2322
+ "maxLength": 11
2323
+ }
2324
+ },
2325
+ {
2326
+ "code": "Value",
2327
+ "description": "",
2328
+ "optional": false,
2329
+ "type": "string",
2330
+ "gnType": "String",
2331
+ "conditions": {
2332
+ "mustNonNull": true,
2333
+ "minLength": 2,
2334
+ "maxLength": 32
2335
+ }
2336
+ }
2337
+ ]
2338
+ }
2339
+ ],
2340
+ "responseData": [
2341
+ {
2342
+ "code": "ErrorCode",
2343
+ "value": [
2344
+ "CharacterPlayerNotFound",
2345
+ "Ok"
2346
+ ]
2347
+ }
2348
+ ],
2349
+ "description": ""
2350
+ },
2351
+ {
2352
+ "operationCode": "RemoveTag",
2353
+ "details": [
2354
+ {
2355
+ "role": "Client",
2356
+ "requestData": [
2357
+ {
2358
+ "code": "CharacterId",
2359
+ "description": "",
2360
+ "optional": false,
2361
+ "type": "string",
2362
+ "gnType": "String",
2363
+ "conditions": {
2364
+ "mustNonNull": true,
2365
+ "minLength": 11,
2366
+ "maxLength": 11
2367
+ }
2368
+ },
2369
+ {
2370
+ "code": "Key",
2371
+ "description": "",
2372
+ "optional": false,
2373
+ "type": "string",
2374
+ "gnType": "String",
2375
+ "conditions": {
2376
+ "mustNonNull": true,
2377
+ "minLength": 2,
2378
+ "maxLength": 32
2379
+ }
2380
+ }
2381
+ ]
2382
+ }
2383
+ ],
2384
+ "responseData": [
2385
+ {
2386
+ "code": "ErrorCode",
2387
+ "value": [
2388
+ "CharacterPlayerNotFound",
2389
+ "Ok"
2390
+ ]
2391
+ }
2392
+ ],
2393
+ "description": ""
2394
+ },
2395
+ {
2396
+ "operationCode": "SetAvatar",
2397
+ "details": [
2398
+ {
2399
+ "role": "Client",
2400
+ "requestData": [
2401
+ {
2402
+ "code": "CharacterId",
2403
+ "description": "",
2404
+ "optional": false,
2405
+ "type": "string",
2406
+ "gnType": "String",
2407
+ "conditions": {
2408
+ "mustNonNull": true,
2409
+ "minLength": 11,
2410
+ "maxLength": 11
2411
+ }
2412
+ },
2413
+ {
2414
+ "code": "Type",
2415
+ "description": "",
2416
+ "optional": false,
2417
+ "type": "number",
2418
+ "gnType": "Number",
2419
+ "conditions": {
2420
+ "mustInt": true
2421
+ }
2422
+ },
2423
+ {
2424
+ "code": "Value",
2425
+ "description": "",
2426
+ "optional": false,
2427
+ "type": "string",
2428
+ "gnType": "String",
2429
+ "conditions": {
2430
+ "mustNonNull": true,
2431
+ "minLength": 1,
2432
+ "maxLength": 128
2433
+ }
2434
+ }
2435
+ ]
2436
+ }
2437
+ ],
2438
+ "responseData": [
2439
+ {
2440
+ "code": "ErrorCode",
2441
+ "value": [
2442
+ "CharacterPlayerNotFound",
2443
+ "Ok"
2444
+ ]
2445
+ }
2446
+ ],
2447
+ "description": ""
2448
+ },
2449
+ {
2450
+ "operationCode": "SetCountryCode",
2451
+ "details": [
2452
+ {
2453
+ "role": "Client",
2454
+ "requestData": [
2455
+ {
2456
+ "code": "CharacterId",
2457
+ "description": "",
2458
+ "optional": false,
2459
+ "type": "string",
2460
+ "gnType": "String",
2461
+ "conditions": {
2462
+ "mustNonNull": true,
2463
+ "minLength": 11,
2464
+ "maxLength": 11
2465
+ }
2466
+ },
2467
+ {
2468
+ "code": "CountryCode",
2469
+ "description": "",
2470
+ "optional": false,
2471
+ "type": "string",
2472
+ "gnType": "String",
2473
+ "conditions": {
2474
+ "minLength": 2,
2475
+ "maxLength": 32
2476
+ }
2477
+ }
2478
+ ]
2479
+ }
2480
+ ],
2481
+ "responseData": [
2482
+ {
2483
+ "code": "ErrorCode",
2484
+ "value": [
2485
+ "CharacterPlayerNotFound",
2486
+ "Ok"
2487
+ ]
2488
+ }
2489
+ ],
2490
+ "description": ""
2491
+ },
2492
+ {
2493
+ "operationCode": "SetCustomData",
2494
+ "details": [
2495
+ {
2496
+ "role": "Client",
2497
+ "requestData": [
2498
+ {
2499
+ "code": "CharacterId",
2500
+ "description": "",
2501
+ "optional": false,
2502
+ "type": "string",
2503
+ "gnType": "String",
2504
+ "conditions": {
2505
+ "mustNonNull": true,
2506
+ "minLength": 11,
2507
+ "maxLength": 11
2508
+ }
2509
+ },
2510
+ {
2511
+ "code": "CustomDatas",
2512
+ "description": "",
2513
+ "optional": false,
2514
+ "type": "CustomDataParam",
2515
+ "gnType": "GNArray",
2516
+ "conditions": {
2517
+ "mustNonNull": true,
2518
+ "minLength": 1,
2519
+ "maxLength": 32
2520
+ }
2521
+ }
2522
+ ]
2523
+ }
2524
+ ],
2525
+ "responseData": [
2526
+ {
2527
+ "code": "ErrorCode",
2528
+ "value": [
2529
+ "CharacterPlayerNotFound",
2530
+ "Ok"
2531
+ ]
2532
+ },
2533
+ {
2534
+ "code": "InfoResponseParameters"
2535
+ }
2536
+ ],
2537
+ "description": ""
2538
+ },
2539
+ {
2540
+ "operationCode": "SetDisplayName",
2541
+ "details": [
2542
+ {
2543
+ "role": "Client",
2544
+ "requestData": [
2545
+ {
2546
+ "code": "CharacterId",
2547
+ "description": "",
2548
+ "optional": false,
2549
+ "type": "string",
2550
+ "gnType": "String",
2551
+ "conditions": {
2552
+ "mustNonNull": true,
2553
+ "minLength": 11,
2554
+ "maxLength": 11
2555
+ }
2556
+ },
2557
+ {
2558
+ "code": "DisplayName",
2559
+ "description": "",
2560
+ "optional": false,
2561
+ "type": "string",
2562
+ "gnType": "String",
2563
+ "conditions": {
2564
+ "mustNonNull": true,
2565
+ "minLength": 5,
2566
+ "maxLength": 32
2567
+ }
2568
+ },
2569
+ {
2570
+ "code": "UniqueDisplayName",
2571
+ "description": "",
2572
+ "optional": true,
2573
+ "type": "boolean",
2574
+ "gnType": "Boolean",
2575
+ "defaultValue": "false",
2576
+ "conditions": {}
2577
+ }
2578
+ ]
2579
+ }
2580
+ ],
2581
+ "responseData": [
2582
+ {
2583
+ "code": "ErrorCode",
2584
+ "value": [
2585
+ "DisplayNameHasUse",
2586
+ "CharacterPlayerNotFound",
2587
+ "Ok"
2588
+ ]
2589
+ }
2590
+ ],
2591
+ "description": ""
2592
+ },
2593
+ {
2594
+ "operationCode": "SetOwner",
2595
+ "details": [
2596
+ {
2597
+ "role": "Client",
2598
+ "requestData": [
2599
+ {
2600
+ "code": "CharacterId",
2601
+ "description": "",
2602
+ "optional": false,
2603
+ "type": "string",
2604
+ "gnType": "String",
2605
+ "conditions": {
2606
+ "mustNonNull": true,
2607
+ "minLength": 11,
2608
+ "maxLength": 11
2609
+ }
2610
+ },
2611
+ {
2612
+ "code": "NewOwnerId",
2613
+ "description": "",
2614
+ "optional": false,
2615
+ "type": "string",
2616
+ "gnType": "String",
2617
+ "conditions": {
2618
+ "mustNonNull": true,
2619
+ "minLength": 10,
2620
+ "maxLength": 10
2621
+ }
2622
+ }
2623
+ ]
2624
+ }
2625
+ ],
2626
+ "responseData": [
2627
+ {
2628
+ "code": "ErrorCode",
2629
+ "value": [
2630
+ "CharacterPlayerNotFound",
2631
+ "OwnerNotFound",
2632
+ "Ok"
2633
+ ]
2634
+ }
2635
+ ],
2636
+ "description": ""
2637
+ },
2638
+ {
2639
+ "operationCode": "SetPlayerBan",
2640
+ "details": [
2641
+ {
2642
+ "role": "Client",
2643
+ "requestData": [
2644
+ {
2645
+ "code": "CharacterId",
2646
+ "description": "",
2647
+ "optional": false,
2648
+ "type": "string",
2649
+ "gnType": "String",
2650
+ "conditions": {
2651
+ "mustNonNull": true,
2652
+ "minLength": 11,
2653
+ "maxLength": 11
2654
+ }
2655
+ },
2656
+ {
2657
+ "code": "TsExpire",
2658
+ "description": "",
2659
+ "optional": false,
2660
+ "type": "number",
2661
+ "gnType": "Number",
2662
+ "conditions": {}
2663
+ },
2664
+ {
2665
+ "code": "Reason",
2666
+ "description": "",
2667
+ "optional": false,
2668
+ "type": "string",
2669
+ "gnType": "String",
2670
+ "conditions": {}
2671
+ }
2672
+ ]
2673
+ }
2674
+ ],
2675
+ "responseData": [
2676
+ {
2677
+ "code": "ErrorCode",
2678
+ "value": [
2679
+ "CharacterPlayerNotFound",
2680
+ "Ok"
2681
+ ]
2682
+ }
2683
+ ],
2684
+ "description": ""
2685
+ },
2686
+ {
2687
+ "operationCode": "SetPlayerData",
2688
+ "details": [
2689
+ {
2690
+ "role": "Client",
2691
+ "requestData": [
2692
+ {
2693
+ "code": "CharacterId",
2694
+ "description": "",
2695
+ "optional": false,
2696
+ "type": "string",
2697
+ "gnType": "String",
2698
+ "conditions": {
2699
+ "mustNonNull": true,
2700
+ "minLength": 11,
2701
+ "maxLength": 11
2702
+ }
2703
+ },
2704
+ {
2705
+ "code": "PlayerDatas",
2706
+ "description": "",
2707
+ "optional": false,
2708
+ "type": "PlayerDataParam",
2709
+ "gnType": "GNArray",
2710
+ "conditions": {
2711
+ "mustNonNull": true,
2712
+ "minLength": 1,
2713
+ "maxLength": 32
2714
+ }
2715
+ }
2716
+ ]
2717
+ }
2718
+ ],
2719
+ "responseData": [
2720
+ {
2721
+ "code": "ErrorCode",
2722
+ "value": [
2723
+ "CharacterPlayerNotFound",
2724
+ "Ok"
2725
+ ]
2726
+ },
2727
+ {
2728
+ "code": "InfoResponseParameters"
2729
+ }
2730
+ ],
2731
+ "description": ""
2732
+ },
2733
+ {
2734
+ "operationCode": "SetRemoveStatus",
2735
+ "details": [
2736
+ {
2737
+ "role": "Client",
2738
+ "requestData": [
2739
+ {
2740
+ "code": "CharacterId",
2741
+ "description": "",
2742
+ "optional": false,
2743
+ "type": "string",
2744
+ "gnType": "String",
2745
+ "conditions": {
2746
+ "mustNonNull": true,
2747
+ "minLength": 11,
2748
+ "maxLength": 11
2749
+ }
2750
+ },
2751
+ {
2752
+ "code": "Reason",
2753
+ "description": "",
2754
+ "optional": true,
2755
+ "type": "string",
2756
+ "gnType": "String",
2757
+ "defaultValue": "\"\"",
2758
+ "conditions": {}
2759
+ }
2760
+ ]
2761
+ }
2762
+ ],
2763
+ "responseData": [
2764
+ {
2765
+ "code": "ErrorCode",
2766
+ "value": [
2767
+ "CharacterPlayerNotFound",
2768
+ "Ok"
2769
+ ]
2770
+ }
2771
+ ],
2772
+ "description": ""
2773
+ },
2774
+ {
2775
+ "operationCode": "SetTag",
2776
+ "details": [
2777
+ {
2778
+ "role": "Client",
2779
+ "requestData": [
2780
+ {
2781
+ "code": "CharacterId",
2782
+ "description": "",
2783
+ "optional": false,
2784
+ "type": "string",
2785
+ "gnType": "String",
2786
+ "conditions": {
2787
+ "mustNonNull": true,
2788
+ "minLength": 11,
2789
+ "maxLength": 11
2790
+ }
2791
+ },
2792
+ {
2793
+ "code": "Key",
2794
+ "description": "",
2795
+ "optional": false,
2796
+ "type": "string",
2797
+ "gnType": "String",
2798
+ "conditions": {
2799
+ "mustNonNull": true,
2800
+ "minLength": 2,
2801
+ "maxLength": 32
2802
+ }
2803
+ },
2804
+ {
2805
+ "code": "Value",
2806
+ "description": "",
2807
+ "optional": false,
2808
+ "type": "string",
2809
+ "gnType": "String",
2810
+ "conditions": {
2811
+ "mustNonNull": true,
2812
+ "minLength": 2,
2813
+ "maxLength": 32
2814
+ }
2815
+ }
2816
+ ]
2817
+ }
2818
+ ],
2819
+ "responseData": [
2820
+ {
2821
+ "code": "ErrorCode",
2822
+ "value": [
2823
+ "KeyNotFound",
2824
+ "CharacterPlayerNotFound",
2825
+ "Ok"
2826
+ ]
2827
+ }
2828
+ ],
2829
+ "description": ""
2830
+ }
2831
+ ],
2832
+ "models": [
2833
+ {
2834
+ "name": "CustomDataParam",
2835
+ "details": [
2836
+ {
2837
+ "code": "Key",
2838
+ "description": "",
2839
+ "optional": false,
2840
+ "type": "string",
2841
+ "gnType": "String",
2842
+ "conditions": {
2843
+ "mustNonNull": true,
2844
+ "minLength": 2,
2845
+ "maxLength": 32
2846
+ }
2847
+ },
2848
+ {
2849
+ "code": "Value",
2850
+ "description": "",
2851
+ "optional": false,
2852
+ "type": "any",
2853
+ "gnType": "DataMember",
2854
+ "conditions": {}
2855
+ }
2856
+ ]
2857
+ },
2858
+ {
2859
+ "name": "GroupMemberParam",
2860
+ "details": [
2861
+ {
2862
+ "code": "UserId",
2863
+ "description": "",
2864
+ "optional": false,
2865
+ "type": "string",
2866
+ "gnType": "String",
2867
+ "conditions": {
2868
+ "mustNonNull": true,
2869
+ "minLength": 11,
2870
+ "maxLength": 11
2871
+ }
2872
+ }
2873
+ ]
2874
+ },
2875
+ {
2876
+ "name": "InfoRequestParam",
2877
+ "details": [
2878
+ {
2879
+ "code": "CatalogId",
2880
+ "description": "",
2881
+ "optional": true,
2882
+ "type": "boolean",
2883
+ "gnType": "Boolean",
2884
+ "defaultValue": "false",
2885
+ "conditions": {}
2886
+ },
2887
+ {
2888
+ "code": "Owner",
2889
+ "description": "",
2890
+ "optional": true,
2891
+ "type": "boolean",
2892
+ "gnType": "Boolean",
2893
+ "defaultValue": "false",
2894
+ "conditions": {}
2895
+ },
2896
+ {
2897
+ "code": "RemoveStatus",
2898
+ "description": "",
2899
+ "optional": true,
2900
+ "type": "boolean",
2901
+ "gnType": "Boolean",
2902
+ "defaultValue": "false",
2903
+ "conditions": {}
2904
+ },
2905
+ {
2906
+ "code": "Segments",
2907
+ "description": "",
2908
+ "optional": true,
2909
+ "type": "boolean",
2910
+ "gnType": "Boolean",
2911
+ "defaultValue": "false",
2912
+ "conditions": {}
2913
+ },
2914
+ {
2915
+ "code": "CustomDatas",
2916
+ "description": "",
2917
+ "optional": true,
2918
+ "type": "boolean",
2919
+ "gnType": "Boolean",
2920
+ "defaultValue": "false",
2921
+ "conditions": {}
2922
+ },
2923
+ {
2924
+ "code": "DisplayName",
2925
+ "description": "",
2926
+ "optional": true,
2927
+ "type": "boolean",
2928
+ "gnType": "Boolean",
2929
+ "defaultValue": "false",
2930
+ "conditions": {}
2931
+ },
2932
+ {
2933
+ "code": "Avatar",
2934
+ "description": "",
2935
+ "optional": true,
2936
+ "type": "boolean",
2937
+ "gnType": "Boolean",
2938
+ "defaultValue": "false",
2939
+ "conditions": {}
2940
+ },
2941
+ {
2942
+ "code": "TsCreate",
2943
+ "description": "",
2944
+ "optional": true,
2945
+ "type": "boolean",
2946
+ "gnType": "Boolean",
2947
+ "defaultValue": "false",
2948
+ "conditions": {}
2949
+ },
2950
+ {
2951
+ "code": "Tags",
2952
+ "description": "",
2953
+ "optional": true,
2954
+ "type": "boolean",
2955
+ "gnType": "Boolean",
2956
+ "defaultValue": "false",
2957
+ "conditions": {}
2958
+ },
2959
+ {
2960
+ "code": "PlayerBan",
2961
+ "description": "",
2962
+ "optional": true,
2963
+ "type": "boolean",
2964
+ "gnType": "Boolean",
2965
+ "defaultValue": "false",
2966
+ "conditions": {}
2967
+ },
2968
+ {
2969
+ "code": "PlayerCurrencies",
2970
+ "description": "",
2971
+ "optional": true,
2972
+ "type": "boolean",
2973
+ "gnType": "Boolean",
2974
+ "defaultValue": "false",
2975
+ "conditions": {}
2976
+ },
2977
+ {
2978
+ "code": "PlayerStatistics",
2979
+ "description": "",
2980
+ "optional": true,
2981
+ "type": "boolean",
2982
+ "gnType": "Boolean",
2983
+ "defaultValue": "false",
2984
+ "conditions": {}
2985
+ },
2986
+ {
2987
+ "code": "PlayerDatas",
2988
+ "description": "",
2989
+ "optional": true,
2990
+ "type": "boolean",
2991
+ "gnType": "Boolean",
2992
+ "defaultValue": "false",
2993
+ "conditions": {}
2994
+ },
2995
+ {
2996
+ "code": "IpAddressCreate",
2997
+ "description": "",
2998
+ "optional": true,
2999
+ "type": "boolean",
3000
+ "gnType": "Boolean",
3001
+ "defaultValue": "false",
3002
+ "conditions": {}
3003
+ },
3004
+ {
3005
+ "code": "CountryCode",
3006
+ "description": "",
3007
+ "optional": true,
3008
+ "type": "boolean",
3009
+ "gnType": "Boolean",
3010
+ "defaultValue": "false",
3011
+ "conditions": {}
3012
+ },
3013
+ {
3014
+ "code": "TsLastLogin",
3015
+ "description": "",
3016
+ "optional": true,
3017
+ "type": "boolean",
3018
+ "gnType": "Boolean",
3019
+ "defaultValue": "false",
3020
+ "conditions": {}
3021
+ },
3022
+ {
3023
+ "code": "PlayerInventories",
3024
+ "description": "",
3025
+ "optional": true,
3026
+ "type": "boolean",
3027
+ "gnType": "Boolean",
3028
+ "defaultValue": "false",
3029
+ "conditions": {}
3030
+ },
3031
+ {
3032
+ "code": "PlayerGroups",
3033
+ "description": "",
3034
+ "optional": true,
3035
+ "type": "boolean",
3036
+ "gnType": "Boolean",
3037
+ "defaultValue": "false",
3038
+ "conditions": {}
3039
+ },
3040
+ {
3041
+ "code": "PlayerFriends",
3042
+ "description": "",
3043
+ "optional": true,
3044
+ "type": "boolean",
3045
+ "gnType": "Boolean",
3046
+ "defaultValue": "false",
3047
+ "conditions": {}
3048
+ },
3049
+ {
3050
+ "code": "PlayerDataKeys",
3051
+ "description": "",
3052
+ "optional": true,
3053
+ "type": "string",
3054
+ "gnType": "GNArray",
3055
+ "conditions": {}
3056
+ },
3057
+ {
3058
+ "code": "PlayerCurrencyKeys",
3059
+ "description": "",
3060
+ "optional": true,
3061
+ "type": "string",
3062
+ "gnType": "GNArray",
3063
+ "conditions": {}
3064
+ },
3065
+ {
3066
+ "code": "PlayerStatisticsKeys",
3067
+ "description": "",
3068
+ "optional": true,
3069
+ "type": "string",
3070
+ "gnType": "GNArray",
3071
+ "conditions": {}
3072
+ },
3073
+ {
3074
+ "code": "CustomDataKeys",
3075
+ "description": "",
3076
+ "optional": true,
3077
+ "type": "string",
3078
+ "gnType": "GNArray",
3079
+ "conditions": {}
3080
+ },
3081
+ {
3082
+ "code": "TagKeys",
3083
+ "description": "",
3084
+ "optional": true,
3085
+ "type": "string",
3086
+ "gnType": "GNArray",
3087
+ "conditions": {}
3088
+ },
3089
+ {
3090
+ "code": "CharacterCatalogIds",
3091
+ "description": "",
3092
+ "optional": true,
3093
+ "type": "string",
3094
+ "gnType": "GNArray",
3095
+ "conditions": {}
3096
+ },
3097
+ {
3098
+ "code": "ItemCatalogIds",
3099
+ "description": "",
3100
+ "optional": true,
3101
+ "type": "string",
3102
+ "gnType": "GNArray",
3103
+ "conditions": {}
3104
+ },
3105
+ {
3106
+ "code": "GroupCatalogIds",
3107
+ "description": "",
3108
+ "optional": true,
3109
+ "type": "string",
3110
+ "gnType": "GNArray",
3111
+ "conditions": {}
3112
+ },
3113
+ {
3114
+ "code": "FriendCatalogIds",
3115
+ "description": "",
3116
+ "optional": true,
3117
+ "type": "string",
3118
+ "gnType": "GNArray",
3119
+ "conditions": {}
3120
+ }
3121
+ ]
3122
+ },
3123
+ {
3124
+ "name": "PlayerCurrencyParam",
3125
+ "details": [
3126
+ {
3127
+ "code": "Key",
3128
+ "description": "",
3129
+ "optional": false,
3130
+ "type": "string",
3131
+ "gnType": "String",
3132
+ "conditions": {
3133
+ "mustNonNull": true,
3134
+ "minLength": 2,
3135
+ "maxLength": 32
3136
+ }
3137
+ },
3138
+ {
3139
+ "code": "Amount",
3140
+ "description": "",
3141
+ "optional": false,
3142
+ "type": "number",
3143
+ "gnType": "Number",
3144
+ "conditions": {}
3145
+ }
3146
+ ]
3147
+ },
3148
+ {
3149
+ "name": "PlayerDataParam",
3150
+ "details": [
3151
+ {
3152
+ "code": "Key",
3153
+ "description": "",
3154
+ "optional": false,
3155
+ "type": "string",
3156
+ "gnType": "String",
3157
+ "conditions": {
3158
+ "mustNonNull": true,
3159
+ "minLength": 2,
3160
+ "maxLength": 32
3161
+ }
3162
+ },
3163
+ {
3164
+ "code": "Value",
3165
+ "description": "",
3166
+ "optional": false,
3167
+ "type": "any",
3168
+ "gnType": "DataMember",
3169
+ "conditions": {}
3170
+ }
3171
+ ]
3172
+ },
3173
+ {
3174
+ "name": "PlayerStatisticsParam",
3175
+ "details": [
3176
+ {
3177
+ "code": "Key",
3178
+ "description": "",
3179
+ "optional": false,
3180
+ "type": "string",
3181
+ "gnType": "String",
3182
+ "conditions": {
3183
+ "mustNonNull": true,
3184
+ "minLength": 2,
3185
+ "maxLength": 32
3186
+ }
3187
+ },
3188
+ {
3189
+ "code": "Value",
3190
+ "description": "",
3191
+ "optional": false,
3192
+ "type": "number",
3193
+ "gnType": "Number",
3194
+ "conditions": {}
3195
+ }
3196
+ ]
3197
+ }
3198
+ ]
3199
+ }