@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,1979 @@
1
+ {
2
+ "requestType": "StoreInventory",
3
+ "operations": [
4
+ {
5
+ "operationCode": "BuyStoreItem",
6
+ "details": [
7
+ {
8
+ "role": "Client",
9
+ "requestData": [
10
+ {
11
+ "code": "StoreId",
12
+ "description": "",
13
+ "optional": false,
14
+ "type": "string",
15
+ "gnType": "String",
16
+ "conditions": {
17
+ "mustNonNull": true,
18
+ "minLength": 10,
19
+ "maxLength": 32
20
+ }
21
+ },
22
+ {
23
+ "code": "Id",
24
+ "description": "",
25
+ "optional": false,
26
+ "type": "string",
27
+ "gnType": "String",
28
+ "conditions": {
29
+ "mustNonNull": true,
30
+ "minLength": 10,
31
+ "maxLength": 11
32
+ }
33
+ },
34
+ {
35
+ "code": "Type",
36
+ "description": "",
37
+ "optional": false,
38
+ "type": "number",
39
+ "gnType": "Number",
40
+ "conditions": {
41
+ "mustInt": true
42
+ }
43
+ },
44
+ {
45
+ "code": "Log",
46
+ "description": "",
47
+ "optional": true,
48
+ "type": "string",
49
+ "gnType": "String",
50
+ "conditions": {
51
+ "mustNonNull": true,
52
+ "minLength": 1,
53
+ "maxLength": 256
54
+ }
55
+ }
56
+ ]
57
+ }
58
+ ],
59
+ "responseData": [
60
+ {
61
+ "code": "ErrorCode",
62
+ "value": [
63
+ "StoreItemNotFound",
64
+ "StoreItemHadBeenRemove",
65
+ "StoreItemHadPurchaseAndNonConsumable",
66
+ "CanNotBuyThisStoreItem",
67
+ "BuyerNotFound",
68
+ "NotEnoughCurrency",
69
+ "Ok"
70
+ ]
71
+ },
72
+ {
73
+ "code": "InfoResponseParameters"
74
+ },
75
+ {
76
+ "code": "StoreCurrencies"
77
+ },
78
+ {
79
+ "code": "StoreItems"
80
+ },
81
+ {
82
+ "code": "PriceCurrencies"
83
+ }
84
+ ],
85
+ "description": ""
86
+ },
87
+ {
88
+ "operationCode": "CreateStoreItem",
89
+ "details": [
90
+ {
91
+ "role": "Client",
92
+ "requestData": [
93
+ {
94
+ "code": "StoreId",
95
+ "description": "",
96
+ "optional": true,
97
+ "type": "string",
98
+ "gnType": "String",
99
+ "conditions": {
100
+ "mustNonNull": true,
101
+ "minLength": 10,
102
+ "maxLength": 32
103
+ }
104
+ },
105
+ {
106
+ "code": "DisplayName",
107
+ "description": "",
108
+ "optional": true,
109
+ "type": "string",
110
+ "gnType": "String",
111
+ "defaultValue": "\"\"",
112
+ "conditions": {}
113
+ }
114
+ ]
115
+ }
116
+ ],
117
+ "responseData": [
118
+ {
119
+ "code": "ErrorCode",
120
+ "value": [
121
+ "StoreItemHadExists",
122
+ "Ok"
123
+ ]
124
+ },
125
+ {
126
+ "code": "StoreId"
127
+ }
128
+ ],
129
+ "description": ""
130
+ },
131
+ {
132
+ "operationCode": "GetCreateLeaderboard",
133
+ "details": [
134
+ {
135
+ "role": "Client",
136
+ "requestData": [
137
+ {
138
+ "code": "InfoRequestParam",
139
+ "description": "",
140
+ "optional": false,
141
+ "type": "InfoRequestParam",
142
+ "gnType": "GNHashtable",
143
+ "conditions": {
144
+ "mustNonNull": true
145
+ }
146
+ },
147
+ {
148
+ "code": "Skip",
149
+ "description": "",
150
+ "optional": true,
151
+ "type": "number",
152
+ "gnType": "Number",
153
+ "defaultValue": "0",
154
+ "conditions": {
155
+ "mustInt": true,
156
+ "minValue": 0
157
+ }
158
+ },
159
+ {
160
+ "code": "Limit",
161
+ "description": "",
162
+ "optional": true,
163
+ "type": "number",
164
+ "gnType": "Number",
165
+ "defaultValue": "10",
166
+ "conditions": {
167
+ "mustInt": true,
168
+ "minValue": 1,
169
+ "maxValue": 100
170
+ }
171
+ },
172
+ {
173
+ "code": "LoadFromCache",
174
+ "description": "",
175
+ "optional": true,
176
+ "type": "boolean",
177
+ "gnType": "Boolean",
178
+ "defaultValue": "true",
179
+ "conditions": {}
180
+ }
181
+ ]
182
+ }
183
+ ],
184
+ "responseData": [
185
+ {
186
+ "code": "ErrorCode",
187
+ "value": [
188
+ "Ok"
189
+ ]
190
+ },
191
+ {
192
+ "code": "Results"
193
+ }
194
+ ],
195
+ "description": ""
196
+ },
197
+ {
198
+ "operationCode": "GetStoreItemInformation",
199
+ "details": [
200
+ {
201
+ "role": "Client",
202
+ "requestData": [
203
+ {
204
+ "code": "StoreId",
205
+ "description": "",
206
+ "optional": false,
207
+ "type": "string",
208
+ "gnType": "String",
209
+ "conditions": {
210
+ "mustNonNull": true,
211
+ "minLength": 10,
212
+ "maxLength": 32
213
+ }
214
+ },
215
+ {
216
+ "code": "InfoRequestParam",
217
+ "description": "",
218
+ "optional": false,
219
+ "type": "InfoRequestParam",
220
+ "gnType": "GNHashtable",
221
+ "conditions": {
222
+ "mustNonNull": true
223
+ }
224
+ }
225
+ ]
226
+ }
227
+ ],
228
+ "responseData": [
229
+ {
230
+ "code": "ErrorCode",
231
+ "value": [
232
+ "StoreItemNotFound",
233
+ "Ok"
234
+ ]
235
+ },
236
+ {
237
+ "code": "InfoResponseParameters"
238
+ }
239
+ ],
240
+ "description": ""
241
+ },
242
+ {
243
+ "operationCode": "GetStoreItemsWithTag",
244
+ "details": [
245
+ {
246
+ "role": "Client",
247
+ "requestData": [
248
+ {
249
+ "code": "Key",
250
+ "description": "",
251
+ "optional": false,
252
+ "type": "string",
253
+ "gnType": "String",
254
+ "conditions": {
255
+ "mustNonNull": true,
256
+ "minLength": 2,
257
+ "maxLength": 32
258
+ }
259
+ },
260
+ {
261
+ "code": "Value",
262
+ "description": "",
263
+ "optional": false,
264
+ "type": "string",
265
+ "gnType": "String",
266
+ "conditions": {
267
+ "mustNonNull": true,
268
+ "minLength": 2,
269
+ "maxLength": 32
270
+ }
271
+ },
272
+ {
273
+ "code": "InfoRequestParam",
274
+ "description": "",
275
+ "optional": false,
276
+ "type": "InfoRequestParam",
277
+ "gnType": "GNHashtable",
278
+ "conditions": {
279
+ "mustNonNull": true
280
+ }
281
+ },
282
+ {
283
+ "code": "Skip",
284
+ "description": "",
285
+ "optional": true,
286
+ "type": "number",
287
+ "gnType": "Number",
288
+ "defaultValue": "0",
289
+ "conditions": {
290
+ "mustInt": true,
291
+ "minValue": 0
292
+ }
293
+ },
294
+ {
295
+ "code": "Limit",
296
+ "description": "",
297
+ "optional": true,
298
+ "type": "number",
299
+ "gnType": "Number",
300
+ "defaultValue": "10",
301
+ "conditions": {
302
+ "mustInt": true,
303
+ "minValue": 1,
304
+ "maxValue": 100
305
+ }
306
+ }
307
+ ]
308
+ }
309
+ ],
310
+ "responseData": [
311
+ {
312
+ "code": "ErrorCode",
313
+ "value": [
314
+ "Ok"
315
+ ]
316
+ },
317
+ {
318
+ "code": "Results"
319
+ }
320
+ ],
321
+ "description": ""
322
+ },
323
+ {
324
+ "operationCode": "GetStoreLog",
325
+ "details": [
326
+ {
327
+ "role": "Client",
328
+ "requestData": [
329
+ {
330
+ "code": "StoreId",
331
+ "description": "",
332
+ "optional": true,
333
+ "type": "string",
334
+ "gnType": "String",
335
+ "conditions": {
336
+ "mustNonNull": true,
337
+ "minLength": 10,
338
+ "maxLength": 32
339
+ }
340
+ },
341
+ {
342
+ "code": "StoreReceiveTypes",
343
+ "description": "",
344
+ "optional": true,
345
+ "type": "number",
346
+ "gnType": "GNArray",
347
+ "conditions": {
348
+ "mustNonNull": true,
349
+ "minLength": 1,
350
+ "maxLength": 10
351
+ }
352
+ },
353
+ {
354
+ "code": "Id",
355
+ "description": "",
356
+ "optional": true,
357
+ "type": "string",
358
+ "gnType": "String",
359
+ "conditions": {
360
+ "mustNonNull": true,
361
+ "minLength": 10,
362
+ "maxLength": 11
363
+ }
364
+ },
365
+ {
366
+ "code": "Limit",
367
+ "description": "",
368
+ "optional": true,
369
+ "type": "number",
370
+ "gnType": "Number",
371
+ "defaultValue": "10",
372
+ "conditions": {
373
+ "mustInt": true,
374
+ "minValue": 1,
375
+ "maxValue": 100
376
+ }
377
+ },
378
+ {
379
+ "code": "Token",
380
+ "description": "",
381
+ "optional": true,
382
+ "type": "string",
383
+ "gnType": "String",
384
+ "conditions": {
385
+ "mustNonNull": true,
386
+ "minLength": 24,
387
+ "maxLength": 24
388
+ }
389
+ }
390
+ ]
391
+ }
392
+ ],
393
+ "responseData": [
394
+ {
395
+ "code": "ErrorCode",
396
+ "value": [
397
+ "Ok"
398
+ ]
399
+ },
400
+ {
401
+ "code": "Results"
402
+ },
403
+ {
404
+ "code": "Token"
405
+ }
406
+ ],
407
+ "description": ""
408
+ },
409
+ {
410
+ "operationCode": "GetStoreUsed",
411
+ "details": [
412
+ {
413
+ "role": "Client",
414
+ "requestData": [
415
+ {
416
+ "code": "StoreId",
417
+ "description": "",
418
+ "optional": false,
419
+ "type": "string",
420
+ "gnType": "String",
421
+ "conditions": {
422
+ "mustNonNull": true,
423
+ "minLength": 10,
424
+ "maxLength": 32
425
+ }
426
+ }
427
+ ]
428
+ }
429
+ ],
430
+ "responseData": [
431
+ {
432
+ "code": "ErrorCode",
433
+ "value": [
434
+ "Ok"
435
+ ]
436
+ },
437
+ {
438
+ "code": "Results"
439
+ }
440
+ ],
441
+ "description": ""
442
+ },
443
+ {
444
+ "operationCode": "PresentStoreItem",
445
+ "details": [
446
+ {
447
+ "role": "Client",
448
+ "requestData": [
449
+ {
450
+ "code": "StoreId",
451
+ "description": "",
452
+ "optional": false,
453
+ "type": "string",
454
+ "gnType": "String",
455
+ "conditions": {
456
+ "mustNonNull": true,
457
+ "minLength": 10,
458
+ "maxLength": 32
459
+ }
460
+ },
461
+ {
462
+ "code": "Id",
463
+ "description": "",
464
+ "optional": false,
465
+ "type": "string",
466
+ "gnType": "String",
467
+ "conditions": {
468
+ "mustNonNull": true,
469
+ "minLength": 10,
470
+ "maxLength": 11
471
+ }
472
+ },
473
+ {
474
+ "code": "Type",
475
+ "description": "",
476
+ "optional": false,
477
+ "type": "number",
478
+ "gnType": "Number",
479
+ "conditions": {
480
+ "mustInt": true
481
+ }
482
+ },
483
+ {
484
+ "code": "Log",
485
+ "description": "",
486
+ "optional": true,
487
+ "type": "string",
488
+ "gnType": "String",
489
+ "conditions": {
490
+ "mustNonNull": true,
491
+ "minLength": 1,
492
+ "maxLength": 256
493
+ }
494
+ }
495
+ ]
496
+ }
497
+ ],
498
+ "responseData": [
499
+ {
500
+ "code": "ErrorCode",
501
+ "value": [
502
+ "StoreItemNotFound",
503
+ "StoreItemHadBeenRemove",
504
+ "StoreItemHadPurchaseAndNonConsumable",
505
+ "BuyerNotFound",
506
+ "Ok"
507
+ ]
508
+ },
509
+ {
510
+ "code": "InfoResponseParameters"
511
+ },
512
+ {
513
+ "code": "StoreCurrencies"
514
+ },
515
+ {
516
+ "code": "StoreItems"
517
+ },
518
+ {
519
+ "code": "PriceCurrencies"
520
+ }
521
+ ],
522
+ "description": ""
523
+ },
524
+ {
525
+ "operationCode": "RemoveStoreUsed",
526
+ "details": [
527
+ {
528
+ "role": "Client",
529
+ "requestData": [
530
+ {
531
+ "code": "StoreId",
532
+ "description": "",
533
+ "optional": false,
534
+ "type": "string",
535
+ "gnType": "String",
536
+ "conditions": {
537
+ "mustNonNull": true,
538
+ "minLength": 10,
539
+ "maxLength": 32
540
+ }
541
+ },
542
+ {
543
+ "code": "OwnerIds",
544
+ "description": "",
545
+ "optional": true,
546
+ "type": "string",
547
+ "gnType": "GNArray",
548
+ "conditions": {}
549
+ }
550
+ ]
551
+ }
552
+ ],
553
+ "responseData": [
554
+ {
555
+ "code": "ErrorCode",
556
+ "value": [
557
+ "Ok"
558
+ ]
559
+ }
560
+ ],
561
+ "description": ""
562
+ },
563
+ {
564
+ "operationCode": "SetRemoveStatus",
565
+ "details": [
566
+ {
567
+ "role": "Client",
568
+ "requestData": [
569
+ {
570
+ "code": "StoreId",
571
+ "description": "",
572
+ "optional": false,
573
+ "type": "string",
574
+ "gnType": "String",
575
+ "conditions": {
576
+ "mustNonNull": true,
577
+ "minLength": 10,
578
+ "maxLength": 32
579
+ }
580
+ },
581
+ {
582
+ "code": "Reason",
583
+ "description": "",
584
+ "optional": true,
585
+ "type": "string",
586
+ "gnType": "String",
587
+ "defaultValue": "\"\"",
588
+ "conditions": {}
589
+ }
590
+ ]
591
+ }
592
+ ],
593
+ "responseData": [
594
+ {
595
+ "code": "ErrorCode",
596
+ "value": [
597
+ "StoreItemNotFound",
598
+ "Ok"
599
+ ]
600
+ }
601
+ ],
602
+ "description": ""
603
+ },
604
+ {
605
+ "operationCode": "SetStoreItemInformation",
606
+ "details": [
607
+ {
608
+ "role": "Client",
609
+ "requestData": [
610
+ {
611
+ "code": "StoreId",
612
+ "description": "",
613
+ "optional": false,
614
+ "type": "string",
615
+ "gnType": "String",
616
+ "conditions": {
617
+ "mustNonNull": true,
618
+ "minLength": 10,
619
+ "maxLength": 32
620
+ }
621
+ },
622
+ {
623
+ "code": "StoreItemType",
624
+ "description": "",
625
+ "optional": true,
626
+ "type": "number",
627
+ "gnType": "Number",
628
+ "conditions": {
629
+ "mustInt": true,
630
+ "minValue": 1,
631
+ "maxValue": 2
632
+ }
633
+ },
634
+ {
635
+ "code": "StoreDatas",
636
+ "description": "",
637
+ "optional": true,
638
+ "type": "StoreDataParam",
639
+ "gnType": "GNArray",
640
+ "conditions": {
641
+ "mustNonNull": true,
642
+ "minLength": 0,
643
+ "maxLength": 32
644
+ }
645
+ },
646
+ {
647
+ "code": "StoreItems",
648
+ "description": "",
649
+ "optional": true,
650
+ "type": "StoreItemParam",
651
+ "gnType": "GNArray",
652
+ "conditions": {
653
+ "mustNonNull": true,
654
+ "minLength": 0,
655
+ "maxLength": 32
656
+ }
657
+ },
658
+ {
659
+ "code": "StoreCurrencies",
660
+ "description": "",
661
+ "optional": true,
662
+ "type": "CurrencyParam",
663
+ "gnType": "GNArray",
664
+ "conditions": {
665
+ "mustNonNull": true,
666
+ "minLength": 0,
667
+ "maxLength": 32
668
+ }
669
+ },
670
+ {
671
+ "code": "PriceCurrencies",
672
+ "description": "",
673
+ "optional": true,
674
+ "type": "CurrencyParam",
675
+ "gnType": "GNArray",
676
+ "conditions": {
677
+ "mustNonNull": true,
678
+ "minLength": 0,
679
+ "maxLength": 32
680
+ }
681
+ },
682
+ {
683
+ "code": "InAppPurchase",
684
+ "description": "",
685
+ "optional": true,
686
+ "type": "InAppPurchaseParam",
687
+ "gnType": "GNHashtable",
688
+ "conditions": {
689
+ "mustNonNull": true
690
+ }
691
+ },
692
+ {
693
+ "code": "DisplayName",
694
+ "description": "",
695
+ "optional": true,
696
+ "type": "string",
697
+ "gnType": "String",
698
+ "conditions": {
699
+ "mustNonNull": true
700
+ }
701
+ },
702
+ {
703
+ "code": "Avatar",
704
+ "description": "",
705
+ "optional": true,
706
+ "type": "AvatarParam",
707
+ "gnType": "GNHashtable",
708
+ "conditions": {
709
+ "mustNonNull": true
710
+ }
711
+ },
712
+ {
713
+ "code": "Tags",
714
+ "description": "",
715
+ "optional": true,
716
+ "type": "TagParam",
717
+ "gnType": "GNArray",
718
+ "conditions": {
719
+ "mustNonNull": true,
720
+ "minLength": 0,
721
+ "maxLength": 32
722
+ }
723
+ }
724
+ ]
725
+ }
726
+ ],
727
+ "responseData": [
728
+ {
729
+ "code": "ErrorCode",
730
+ "value": [
731
+ "StoreItemNotFound",
732
+ "Ok"
733
+ ]
734
+ },
735
+ {
736
+ "code": "InfoResponseParameters"
737
+ }
738
+ ],
739
+ "description": ""
740
+ },
741
+ {
742
+ "operationCode": "ValidateAppleAppStoreReceipt",
743
+ "details": [
744
+ {
745
+ "role": "Client",
746
+ "requestData": [
747
+ {
748
+ "code": "Receipt",
749
+ "description": "",
750
+ "optional": false,
751
+ "type": "string",
752
+ "gnType": "String",
753
+ "conditions": {
754
+ "mustNonNull": true,
755
+ "minLength": 10,
756
+ "maxLength": 2048
757
+ }
758
+ },
759
+ {
760
+ "code": "Id",
761
+ "description": "",
762
+ "optional": false,
763
+ "type": "string",
764
+ "gnType": "String",
765
+ "conditions": {
766
+ "mustNonNull": true,
767
+ "minLength": 10,
768
+ "maxLength": 11
769
+ }
770
+ },
771
+ {
772
+ "code": "Type",
773
+ "description": "",
774
+ "optional": false,
775
+ "type": "number",
776
+ "gnType": "Number",
777
+ "conditions": {
778
+ "mustInt": true
779
+ }
780
+ },
781
+ {
782
+ "code": "Log",
783
+ "description": "",
784
+ "optional": true,
785
+ "type": "string",
786
+ "gnType": "String",
787
+ "conditions": {
788
+ "mustNonNull": true,
789
+ "minLength": 1,
790
+ "maxLength": 256
791
+ }
792
+ }
793
+ ]
794
+ }
795
+ ],
796
+ "responseData": [
797
+ {
798
+ "code": "ErrorCode",
799
+ "value": [
800
+ "StoreInvalid",
801
+ "ReceiptInvalid",
802
+ "ExceptionWhenValidateReceipt",
803
+ "StoreItemNotFound",
804
+ "StoreItemHadBeenRemove",
805
+ "StoreItemHadPurchaseAndNonConsumable",
806
+ "BuyerNotFound",
807
+ "Ok"
808
+ ]
809
+ },
810
+ {
811
+ "code": "InfoResponseParameters"
812
+ },
813
+ {
814
+ "code": "StoreCurrencies"
815
+ },
816
+ {
817
+ "code": "StoreItems"
818
+ },
819
+ {
820
+ "code": "PriceCurrencies"
821
+ }
822
+ ],
823
+ "description": ""
824
+ },
825
+ {
826
+ "operationCode": "ValidateFacebookStoreReceipt",
827
+ "details": [
828
+ {
829
+ "role": "Client",
830
+ "requestData": [
831
+ {
832
+ "code": "Receipt",
833
+ "description": "",
834
+ "optional": false,
835
+ "type": "string",
836
+ "gnType": "String",
837
+ "conditions": {
838
+ "mustNonNull": true,
839
+ "minLength": 10,
840
+ "maxLength": 2048
841
+ }
842
+ },
843
+ {
844
+ "code": "Id",
845
+ "description": "",
846
+ "optional": false,
847
+ "type": "string",
848
+ "gnType": "String",
849
+ "conditions": {
850
+ "mustNonNull": true,
851
+ "minLength": 10,
852
+ "maxLength": 11
853
+ }
854
+ },
855
+ {
856
+ "code": "Type",
857
+ "description": "",
858
+ "optional": false,
859
+ "type": "number",
860
+ "gnType": "Number",
861
+ "conditions": {
862
+ "mustInt": true
863
+ }
864
+ },
865
+ {
866
+ "code": "Log",
867
+ "description": "",
868
+ "optional": true,
869
+ "type": "string",
870
+ "gnType": "String",
871
+ "conditions": {
872
+ "mustNonNull": true,
873
+ "minLength": 1,
874
+ "maxLength": 256
875
+ }
876
+ }
877
+ ]
878
+ }
879
+ ],
880
+ "responseData": [
881
+ {
882
+ "code": "ErrorCode",
883
+ "value": [
884
+ "StoreInvalid",
885
+ "ReceiptInvalid",
886
+ "ExceptionWhenValidateReceipt",
887
+ "StoreItemNotFound",
888
+ "StoreItemHadBeenRemove",
889
+ "StoreItemHadPurchaseAndNonConsumable",
890
+ "BuyerNotFound",
891
+ "Ok"
892
+ ]
893
+ },
894
+ {
895
+ "code": "InfoResponseParameters"
896
+ },
897
+ {
898
+ "code": "StoreCurrencies"
899
+ },
900
+ {
901
+ "code": "StoreItems"
902
+ },
903
+ {
904
+ "code": "PriceCurrencies"
905
+ }
906
+ ],
907
+ "description": ""
908
+ },
909
+ {
910
+ "operationCode": "ValidateGooglePlayStoreReceipt",
911
+ "details": [
912
+ {
913
+ "role": "Client",
914
+ "requestData": [
915
+ {
916
+ "code": "Receipt",
917
+ "description": "",
918
+ "optional": false,
919
+ "type": "string",
920
+ "gnType": "String",
921
+ "conditions": {
922
+ "mustNonNull": true,
923
+ "minLength": 10,
924
+ "maxLength": 2048
925
+ }
926
+ },
927
+ {
928
+ "code": "Id",
929
+ "description": "",
930
+ "optional": false,
931
+ "type": "string",
932
+ "gnType": "String",
933
+ "conditions": {
934
+ "mustNonNull": true,
935
+ "minLength": 10,
936
+ "maxLength": 11
937
+ }
938
+ },
939
+ {
940
+ "code": "Type",
941
+ "description": "",
942
+ "optional": false,
943
+ "type": "number",
944
+ "gnType": "Number",
945
+ "conditions": {
946
+ "mustInt": true
947
+ }
948
+ },
949
+ {
950
+ "code": "Log",
951
+ "description": "",
952
+ "optional": true,
953
+ "type": "string",
954
+ "gnType": "String",
955
+ "conditions": {
956
+ "mustNonNull": true,
957
+ "minLength": 1,
958
+ "maxLength": 256
959
+ }
960
+ }
961
+ ]
962
+ }
963
+ ],
964
+ "responseData": [
965
+ {
966
+ "code": "ErrorCode",
967
+ "value": [
968
+ "StoreInvalid",
969
+ "ReceiptInvalid",
970
+ "ExceptionWhenValidateReceipt",
971
+ "StoreItemNotFound",
972
+ "StoreItemHadBeenRemove",
973
+ "StoreItemHadPurchaseAndNonConsumable",
974
+ "BuyerNotFound",
975
+ "Ok"
976
+ ]
977
+ },
978
+ {
979
+ "code": "InfoResponseParameters"
980
+ },
981
+ {
982
+ "code": "StoreCurrencies"
983
+ },
984
+ {
985
+ "code": "StoreItems"
986
+ },
987
+ {
988
+ "code": "PriceCurrencies"
989
+ }
990
+ ],
991
+ "description": ""
992
+ }
993
+ ],
994
+ "models": [
995
+ {
996
+ "name": "AvatarParam",
997
+ "details": [
998
+ {
999
+ "code": "Type",
1000
+ "description": "",
1001
+ "optional": false,
1002
+ "type": "number",
1003
+ "gnType": "Number",
1004
+ "conditions": {
1005
+ "mustInt": true
1006
+ }
1007
+ },
1008
+ {
1009
+ "code": "Value",
1010
+ "description": "",
1011
+ "optional": false,
1012
+ "type": "string",
1013
+ "gnType": "String",
1014
+ "conditions": {
1015
+ "mustNonNull": true,
1016
+ "minLength": 1,
1017
+ "maxLength": 128
1018
+ }
1019
+ }
1020
+ ],
1021
+ "description": ""
1022
+ },
1023
+ {
1024
+ "name": "CurrencyParam",
1025
+ "details": [
1026
+ {
1027
+ "code": "Key",
1028
+ "description": "",
1029
+ "optional": false,
1030
+ "type": "string",
1031
+ "gnType": "String",
1032
+ "conditions": {
1033
+ "mustNonNull": true,
1034
+ "minLength": 2,
1035
+ "maxLength": 32
1036
+ }
1037
+ },
1038
+ {
1039
+ "code": "Value",
1040
+ "description": "",
1041
+ "optional": false,
1042
+ "type": "number",
1043
+ "gnType": "Number",
1044
+ "conditions": {}
1045
+ }
1046
+ ],
1047
+ "description": ""
1048
+ },
1049
+ {
1050
+ "name": "InAppPurchaseParam",
1051
+ "details": [
1052
+ {
1053
+ "code": "FacebookStoreId",
1054
+ "description": "",
1055
+ "optional": true,
1056
+ "type": "string",
1057
+ "gnType": "String",
1058
+ "conditions": {
1059
+ "mustNonNull": true,
1060
+ "minLength": 1,
1061
+ "maxLength": 128
1062
+ }
1063
+ },
1064
+ {
1065
+ "code": "GooglePlayStoreId",
1066
+ "description": "",
1067
+ "optional": true,
1068
+ "type": "string",
1069
+ "gnType": "String",
1070
+ "conditions": {
1071
+ "mustNonNull": true,
1072
+ "minLength": 1,
1073
+ "maxLength": 128
1074
+ }
1075
+ },
1076
+ {
1077
+ "code": "AppleAppStoreId",
1078
+ "description": "",
1079
+ "optional": true,
1080
+ "type": "string",
1081
+ "gnType": "String",
1082
+ "conditions": {
1083
+ "mustNonNull": true,
1084
+ "minLength": 1,
1085
+ "maxLength": 128
1086
+ }
1087
+ },
1088
+ {
1089
+ "code": "AnalyticsPrice",
1090
+ "description": "",
1091
+ "optional": true,
1092
+ "type": "number",
1093
+ "gnType": "Number",
1094
+ "conditions": {}
1095
+ }
1096
+ ],
1097
+ "description": ""
1098
+ },
1099
+ {
1100
+ "name": "InfoRequestParam",
1101
+ "details": [
1102
+ {
1103
+ "code": "StoreItems",
1104
+ "description": "",
1105
+ "optional": true,
1106
+ "type": "boolean",
1107
+ "gnType": "Boolean",
1108
+ "defaultValue": "false",
1109
+ "conditions": {}
1110
+ },
1111
+ {
1112
+ "code": "StoreItemType",
1113
+ "description": "",
1114
+ "optional": true,
1115
+ "type": "boolean",
1116
+ "gnType": "Boolean",
1117
+ "defaultValue": "false",
1118
+ "conditions": {}
1119
+ },
1120
+ {
1121
+ "code": "StoreCurrencies",
1122
+ "description": "",
1123
+ "optional": true,
1124
+ "type": "boolean",
1125
+ "gnType": "Boolean",
1126
+ "defaultValue": "false",
1127
+ "conditions": {}
1128
+ },
1129
+ {
1130
+ "code": "PriceCurrencies",
1131
+ "description": "",
1132
+ "optional": true,
1133
+ "type": "boolean",
1134
+ "gnType": "Boolean",
1135
+ "defaultValue": "false",
1136
+ "conditions": {}
1137
+ },
1138
+ {
1139
+ "code": "InAppPurchase",
1140
+ "description": "",
1141
+ "optional": true,
1142
+ "type": "boolean",
1143
+ "gnType": "Boolean",
1144
+ "defaultValue": "false",
1145
+ "conditions": {}
1146
+ },
1147
+ {
1148
+ "code": "RemoveStatus",
1149
+ "description": "",
1150
+ "optional": true,
1151
+ "type": "boolean",
1152
+ "gnType": "Boolean",
1153
+ "defaultValue": "false",
1154
+ "conditions": {}
1155
+ },
1156
+ {
1157
+ "code": "DisplayName",
1158
+ "description": "",
1159
+ "optional": true,
1160
+ "type": "boolean",
1161
+ "gnType": "Boolean",
1162
+ "defaultValue": "false",
1163
+ "conditions": {}
1164
+ },
1165
+ {
1166
+ "code": "Avatar",
1167
+ "description": "",
1168
+ "optional": true,
1169
+ "type": "boolean",
1170
+ "gnType": "Boolean",
1171
+ "defaultValue": "false",
1172
+ "conditions": {}
1173
+ },
1174
+ {
1175
+ "code": "TsCreate",
1176
+ "description": "",
1177
+ "optional": true,
1178
+ "type": "boolean",
1179
+ "gnType": "Boolean",
1180
+ "defaultValue": "false",
1181
+ "conditions": {}
1182
+ },
1183
+ {
1184
+ "code": "Tags",
1185
+ "description": "",
1186
+ "optional": true,
1187
+ "type": "boolean",
1188
+ "gnType": "Boolean",
1189
+ "defaultValue": "false",
1190
+ "conditions": {}
1191
+ },
1192
+ {
1193
+ "code": "StoreDatas",
1194
+ "description": "",
1195
+ "optional": true,
1196
+ "type": "boolean",
1197
+ "gnType": "Boolean",
1198
+ "defaultValue": "false",
1199
+ "conditions": {}
1200
+ }
1201
+ ],
1202
+ "description": ""
1203
+ },
1204
+ {
1205
+ "name": "StoreDataParam",
1206
+ "details": [
1207
+ {
1208
+ "code": "Key",
1209
+ "description": "",
1210
+ "optional": false,
1211
+ "type": "string",
1212
+ "gnType": "String",
1213
+ "conditions": {
1214
+ "mustNonNull": true,
1215
+ "minLength": 2,
1216
+ "maxLength": 32
1217
+ }
1218
+ },
1219
+ {
1220
+ "code": "Value",
1221
+ "description": "",
1222
+ "optional": false,
1223
+ "type": "any",
1224
+ "gnType": "DataMember",
1225
+ "conditions": {}
1226
+ }
1227
+ ],
1228
+ "description": ""
1229
+ },
1230
+ {
1231
+ "name": "StoreItemParam",
1232
+ "details": [
1233
+ {
1234
+ "code": "CatalogId",
1235
+ "description": "",
1236
+ "optional": false,
1237
+ "type": "string",
1238
+ "gnType": "String",
1239
+ "conditions": {
1240
+ "minLength": 2,
1241
+ "maxLength": 32
1242
+ }
1243
+ },
1244
+ {
1245
+ "code": "ClassId",
1246
+ "description": "",
1247
+ "optional": false,
1248
+ "type": "string",
1249
+ "gnType": "String",
1250
+ "conditions": {
1251
+ "minLength": 2,
1252
+ "maxLength": 32
1253
+ }
1254
+ },
1255
+ {
1256
+ "code": "Amount",
1257
+ "description": "",
1258
+ "optional": false,
1259
+ "type": "number",
1260
+ "gnType": "Number",
1261
+ "conditions": {}
1262
+ }
1263
+ ],
1264
+ "description": ""
1265
+ },
1266
+ {
1267
+ "name": "TagParam",
1268
+ "details": [
1269
+ {
1270
+ "code": "Key",
1271
+ "description": "",
1272
+ "optional": false,
1273
+ "type": "string",
1274
+ "gnType": "String",
1275
+ "conditions": {
1276
+ "mustNonNull": true,
1277
+ "minLength": 2,
1278
+ "maxLength": 32
1279
+ }
1280
+ },
1281
+ {
1282
+ "code": "Value",
1283
+ "description": "",
1284
+ "optional": false,
1285
+ "type": "string",
1286
+ "gnType": "String",
1287
+ "conditions": {
1288
+ "mustNonNull": true,
1289
+ "minLength": 2,
1290
+ "maxLength": 32
1291
+ }
1292
+ }
1293
+ ],
1294
+ "description": ""
1295
+ },
1296
+ {
1297
+ "name": "InAppPurchaseItem",
1298
+ "details": [
1299
+ {
1300
+ "code": "FacebookStoreId",
1301
+ "description": "",
1302
+ "optional": false,
1303
+ "type": "string",
1304
+ "gnType": "String",
1305
+ "conditions": {}
1306
+ },
1307
+ {
1308
+ "code": "AppleAppStoreId",
1309
+ "description": "",
1310
+ "optional": false,
1311
+ "type": "string",
1312
+ "gnType": "String",
1313
+ "conditions": {}
1314
+ },
1315
+ {
1316
+ "code": "GooglePlayStoreId",
1317
+ "description": "",
1318
+ "optional": false,
1319
+ "type": "string",
1320
+ "gnType": "String",
1321
+ "conditions": {}
1322
+ },
1323
+ {
1324
+ "code": "AnalyticsPrice",
1325
+ "description": "",
1326
+ "optional": false,
1327
+ "type": "number",
1328
+ "gnType": "Number",
1329
+ "conditions": {}
1330
+ }
1331
+ ],
1332
+ "extends": null,
1333
+ "description": ""
1334
+ },
1335
+ {
1336
+ "name": "PriceCurrencyItem",
1337
+ "details": [
1338
+ {
1339
+ "code": "Key",
1340
+ "description": "",
1341
+ "optional": false,
1342
+ "type": "string",
1343
+ "gnType": "String",
1344
+ "conditions": {}
1345
+ },
1346
+ {
1347
+ "code": "Value",
1348
+ "description": "",
1349
+ "optional": false,
1350
+ "type": "number",
1351
+ "gnType": "Number",
1352
+ "conditions": {}
1353
+ }
1354
+ ],
1355
+ "extends": null,
1356
+ "description": ""
1357
+ },
1358
+ {
1359
+ "name": "OwnerStoreInventoryItem",
1360
+ "details": [
1361
+ {
1362
+ "code": "ItemId",
1363
+ "description": "",
1364
+ "optional": false,
1365
+ "type": "string",
1366
+ "gnType": "String",
1367
+ "conditions": {}
1368
+ },
1369
+ {
1370
+ "code": "CatalogId",
1371
+ "description": "",
1372
+ "optional": false,
1373
+ "type": "string",
1374
+ "gnType": "String",
1375
+ "conditions": {}
1376
+ },
1377
+ {
1378
+ "code": "ClassId",
1379
+ "description": "",
1380
+ "optional": false,
1381
+ "type": "string",
1382
+ "gnType": "String",
1383
+ "conditions": {}
1384
+ }
1385
+ ],
1386
+ "extends": null,
1387
+ "description": ""
1388
+ },
1389
+ {
1390
+ "name": "StoreInventoryItem",
1391
+ "details": [
1392
+ {
1393
+ "code": "CatalogId",
1394
+ "description": "",
1395
+ "optional": false,
1396
+ "type": "string",
1397
+ "gnType": "String",
1398
+ "conditions": {}
1399
+ },
1400
+ {
1401
+ "code": "ClassId",
1402
+ "description": "",
1403
+ "optional": false,
1404
+ "type": "string",
1405
+ "gnType": "String",
1406
+ "conditions": {}
1407
+ },
1408
+ {
1409
+ "code": "Amount",
1410
+ "description": "",
1411
+ "optional": false,
1412
+ "type": "number",
1413
+ "gnType": "Number",
1414
+ "conditions": {}
1415
+ }
1416
+ ],
1417
+ "extends": null,
1418
+ "description": ""
1419
+ },
1420
+ {
1421
+ "name": "InfoResponseParameters",
1422
+ "details": [
1423
+ {
1424
+ "code": "StoreItems",
1425
+ "description": "",
1426
+ "optional": true,
1427
+ "type": "StoreInventoryItem",
1428
+ "gnType": "GNArray",
1429
+ "conditions": {}
1430
+ },
1431
+ {
1432
+ "code": "StoreItemType",
1433
+ "description": "",
1434
+ "optional": true,
1435
+ "type": "number",
1436
+ "gnType": "Number",
1437
+ "conditions": {}
1438
+ },
1439
+ {
1440
+ "code": "StoreCurrencies",
1441
+ "description": "",
1442
+ "optional": true,
1443
+ "type": "PriceCurrencyItem",
1444
+ "gnType": "GNArray",
1445
+ "conditions": {}
1446
+ },
1447
+ {
1448
+ "code": "PriceCurrencies",
1449
+ "description": "",
1450
+ "optional": true,
1451
+ "type": "PriceCurrencyItem",
1452
+ "gnType": "GNArray",
1453
+ "conditions": {}
1454
+ },
1455
+ {
1456
+ "code": "InAppPurchase",
1457
+ "description": "",
1458
+ "optional": true,
1459
+ "type": "InAppPurchaseItem",
1460
+ "gnType": "GNHashtable",
1461
+ "conditions": {}
1462
+ },
1463
+ {
1464
+ "code": "RemoveStatus",
1465
+ "description": "",
1466
+ "optional": true,
1467
+ "type": "GenericModels.RemoveStatusItem",
1468
+ "gnType": "GNHashtable",
1469
+ "conditions": {}
1470
+ },
1471
+ {
1472
+ "code": "DisplayName",
1473
+ "description": "",
1474
+ "optional": true,
1475
+ "type": "string",
1476
+ "gnType": "String",
1477
+ "conditions": {}
1478
+ },
1479
+ {
1480
+ "code": "Avatar",
1481
+ "description": "",
1482
+ "optional": true,
1483
+ "type": "GenericModels.AvatarItem",
1484
+ "gnType": "GNHashtable",
1485
+ "conditions": {}
1486
+ },
1487
+ {
1488
+ "code": "TsCreate",
1489
+ "description": "",
1490
+ "optional": true,
1491
+ "type": "number",
1492
+ "gnType": "Number",
1493
+ "conditions": {}
1494
+ },
1495
+ {
1496
+ "code": "Tags",
1497
+ "description": "",
1498
+ "optional": true,
1499
+ "type": "GenericModels.TagItem",
1500
+ "gnType": "GNArray",
1501
+ "conditions": {}
1502
+ },
1503
+ {
1504
+ "code": "StoreDatas",
1505
+ "description": "",
1506
+ "optional": true,
1507
+ "type": "GenericModels.DataItem",
1508
+ "gnType": "GNArray",
1509
+ "conditions": {}
1510
+ }
1511
+ ],
1512
+ "extends": null,
1513
+ "description": ""
1514
+ },
1515
+ {
1516
+ "name": "StoreInventoryResponseData",
1517
+ "details": [
1518
+ {
1519
+ "code": "InfoResponseParameters",
1520
+ "description": "",
1521
+ "optional": false,
1522
+ "type": "InfoResponseParameters",
1523
+ "gnType": "GNHashtable",
1524
+ "conditions": {}
1525
+ }
1526
+ ],
1527
+ "extends": null,
1528
+ "description": ""
1529
+ },
1530
+ {
1531
+ "name": "StoreInventoryWithStoreIdResponseData",
1532
+ "details": [
1533
+ {
1534
+ "code": "StoreId",
1535
+ "description": "",
1536
+ "optional": false,
1537
+ "type": "string",
1538
+ "gnType": "String",
1539
+ "conditions": {}
1540
+ },
1541
+ {
1542
+ "code": "InfoResponseParameters",
1543
+ "description": "",
1544
+ "optional": false,
1545
+ "type": "InfoResponseParameters",
1546
+ "gnType": "GNHashtable",
1547
+ "conditions": {}
1548
+ }
1549
+ ],
1550
+ "extends": null,
1551
+ "description": ""
1552
+ },
1553
+ {
1554
+ "name": "StoreInventoryLeaderboardResponseData",
1555
+ "details": [
1556
+ {
1557
+ "code": "Position",
1558
+ "description": "",
1559
+ "optional": false,
1560
+ "type": "number",
1561
+ "gnType": "Number",
1562
+ "conditions": {}
1563
+ },
1564
+ {
1565
+ "code": "StoreId",
1566
+ "description": "",
1567
+ "optional": false,
1568
+ "type": "string",
1569
+ "gnType": "String",
1570
+ "conditions": {}
1571
+ },
1572
+ {
1573
+ "code": "InfoResponseParameters",
1574
+ "description": "",
1575
+ "optional": false,
1576
+ "type": "InfoResponseParameters",
1577
+ "gnType": "GNHashtable",
1578
+ "conditions": {}
1579
+ }
1580
+ ],
1581
+ "extends": null,
1582
+ "description": ""
1583
+ },
1584
+ {
1585
+ "name": "StoreInventoriesWithStoreIdResponseData",
1586
+ "details": [
1587
+ {
1588
+ "code": "Results",
1589
+ "description": "",
1590
+ "optional": false,
1591
+ "type": "StoreInventoryWithStoreIdResponseData",
1592
+ "gnType": "GNArray",
1593
+ "conditions": {}
1594
+ }
1595
+ ],
1596
+ "extends": null,
1597
+ "description": ""
1598
+ },
1599
+ {
1600
+ "name": "CreateStoreItemResponseData",
1601
+ "details": [
1602
+ {
1603
+ "code": "StoreId",
1604
+ "description": "",
1605
+ "optional": false,
1606
+ "type": "string",
1607
+ "gnType": "String",
1608
+ "conditions": {}
1609
+ }
1610
+ ],
1611
+ "extends": null,
1612
+ "description": ""
1613
+ },
1614
+ {
1615
+ "name": "OwnerInfoResponseParameters",
1616
+ "details": [
1617
+ {
1618
+ "code": "Currencies",
1619
+ "description": "",
1620
+ "optional": true,
1621
+ "type": "PriceCurrencyItem",
1622
+ "gnType": "GNArray",
1623
+ "conditions": {}
1624
+ },
1625
+ {
1626
+ "code": "Inventories",
1627
+ "description": "",
1628
+ "optional": true,
1629
+ "type": "OwnerStoreInventoryItem",
1630
+ "gnType": "GNArray",
1631
+ "conditions": {}
1632
+ }
1633
+ ],
1634
+ "extends": null,
1635
+ "description": ""
1636
+ },
1637
+ {
1638
+ "name": "BuyStoreInventoryResponseData",
1639
+ "details": [
1640
+ {
1641
+ "code": "StoreCurrencies",
1642
+ "description": "",
1643
+ "optional": true,
1644
+ "type": "PriceCurrencyItem",
1645
+ "gnType": "GNArray",
1646
+ "conditions": {}
1647
+ },
1648
+ {
1649
+ "code": "StoreCurrencies",
1650
+ "description": "",
1651
+ "optional": true,
1652
+ "type": "PriceCurrencyItem",
1653
+ "gnType": "GNArray",
1654
+ "conditions": {}
1655
+ },
1656
+ {
1657
+ "code": "PriceCurrencies",
1658
+ "description": "",
1659
+ "optional": true,
1660
+ "type": "PriceCurrencyItem",
1661
+ "gnType": "GNArray",
1662
+ "conditions": {}
1663
+ },
1664
+ {
1665
+ "code": "InfoResponseParameters",
1666
+ "description": "",
1667
+ "optional": true,
1668
+ "type": "OwnerInfoResponseParameters",
1669
+ "gnType": "GNHashtable",
1670
+ "conditions": {}
1671
+ }
1672
+ ],
1673
+ "extends": null,
1674
+ "description": ""
1675
+ },
1676
+ {
1677
+ "name": "PresentStoreInventoryResponseData",
1678
+ "details": [
1679
+ {
1680
+ "code": "StoreCurrencies",
1681
+ "description": "",
1682
+ "optional": true,
1683
+ "type": "PriceCurrencyItem",
1684
+ "gnType": "GNArray",
1685
+ "conditions": {}
1686
+ },
1687
+ {
1688
+ "code": "StoreCurrencies",
1689
+ "description": "",
1690
+ "optional": true,
1691
+ "type": "PriceCurrencyItem",
1692
+ "gnType": "GNArray",
1693
+ "conditions": {}
1694
+ },
1695
+ {
1696
+ "code": "PriceCurrencies",
1697
+ "description": "",
1698
+ "optional": true,
1699
+ "type": "PriceCurrencyItem",
1700
+ "gnType": "GNArray",
1701
+ "conditions": {}
1702
+ },
1703
+ {
1704
+ "code": "InfoResponseParameters",
1705
+ "description": "",
1706
+ "optional": true,
1707
+ "type": "OwnerInfoResponseParameters",
1708
+ "gnType": "GNHashtable",
1709
+ "conditions": {}
1710
+ }
1711
+ ],
1712
+ "extends": null,
1713
+ "description": ""
1714
+ },
1715
+ {
1716
+ "name": "CurrencyResponseData",
1717
+ "details": [
1718
+ {
1719
+ "code": "Key",
1720
+ "description": "",
1721
+ "optional": false,
1722
+ "type": "string",
1723
+ "gnType": "String",
1724
+ "conditions": {}
1725
+ },
1726
+ {
1727
+ "code": "Value",
1728
+ "description": "",
1729
+ "optional": false,
1730
+ "type": "number",
1731
+ "gnType": "Number",
1732
+ "conditions": {}
1733
+ }
1734
+ ],
1735
+ "extends": null,
1736
+ "description": ""
1737
+ },
1738
+ {
1739
+ "name": "StoreItemResponseData",
1740
+ "details": [
1741
+ {
1742
+ "code": "CatalogId",
1743
+ "description": "",
1744
+ "optional": false,
1745
+ "type": "string",
1746
+ "gnType": "String",
1747
+ "conditions": {}
1748
+ },
1749
+ {
1750
+ "code": "ClassId",
1751
+ "description": "",
1752
+ "optional": false,
1753
+ "type": "string",
1754
+ "gnType": "String",
1755
+ "conditions": {}
1756
+ },
1757
+ {
1758
+ "code": "ItemId",
1759
+ "description": "",
1760
+ "optional": false,
1761
+ "type": "string",
1762
+ "gnType": "String",
1763
+ "conditions": {}
1764
+ }
1765
+ ],
1766
+ "extends": null,
1767
+ "description": ""
1768
+ },
1769
+ {
1770
+ "name": "StoreLogResponseData",
1771
+ "details": [
1772
+ {
1773
+ "code": "StoreId",
1774
+ "description": "",
1775
+ "optional": false,
1776
+ "type": "string",
1777
+ "gnType": "String",
1778
+ "conditions": {}
1779
+ },
1780
+ {
1781
+ "code": "OwnerId",
1782
+ "description": "",
1783
+ "optional": false,
1784
+ "type": "string",
1785
+ "gnType": "String",
1786
+ "conditions": {}
1787
+ },
1788
+ {
1789
+ "code": "OwnerType",
1790
+ "description": "",
1791
+ "optional": false,
1792
+ "type": "number",
1793
+ "gnType": "Number",
1794
+ "conditions": {}
1795
+ },
1796
+ {
1797
+ "code": "TransactionId",
1798
+ "description": "",
1799
+ "optional": true,
1800
+ "type": "string",
1801
+ "gnType": "String",
1802
+ "conditions": {}
1803
+ },
1804
+ {
1805
+ "code": "StoreReceiveType",
1806
+ "description": "",
1807
+ "optional": false,
1808
+ "type": "number",
1809
+ "gnType": "Number",
1810
+ "conditions": {}
1811
+ },
1812
+ {
1813
+ "code": "PriceCurrencyStartValues",
1814
+ "description": "",
1815
+ "optional": false,
1816
+ "type": "CurrencyResponseData",
1817
+ "gnType": "GNArray",
1818
+ "conditions": {}
1819
+ },
1820
+ {
1821
+ "code": "PriceCurrencyAmountValues",
1822
+ "description": "",
1823
+ "optional": false,
1824
+ "type": "CurrencyResponseData",
1825
+ "gnType": "GNArray",
1826
+ "conditions": {}
1827
+ },
1828
+ {
1829
+ "code": "PriceCurrencyFinalValues",
1830
+ "description": "",
1831
+ "optional": false,
1832
+ "type": "CurrencyResponseData",
1833
+ "gnType": "GNArray",
1834
+ "conditions": {}
1835
+ },
1836
+ {
1837
+ "code": "StoreCurrencyStartValues",
1838
+ "description": "",
1839
+ "optional": false,
1840
+ "type": "CurrencyResponseData",
1841
+ "gnType": "GNArray",
1842
+ "conditions": {}
1843
+ },
1844
+ {
1845
+ "code": "StoreCurrencyAmountValues",
1846
+ "description": "",
1847
+ "optional": false,
1848
+ "type": "CurrencyResponseData",
1849
+ "gnType": "GNArray",
1850
+ "conditions": {}
1851
+ },
1852
+ {
1853
+ "code": "StoreCurrencyFinalValues",
1854
+ "description": "",
1855
+ "optional": false,
1856
+ "type": "CurrencyResponseData",
1857
+ "gnType": "GNArray",
1858
+ "conditions": {}
1859
+ },
1860
+ {
1861
+ "code": "StoreItemFinalValues",
1862
+ "description": "",
1863
+ "optional": false,
1864
+ "type": "StoreItemResponseData",
1865
+ "gnType": "GNArray",
1866
+ "conditions": {}
1867
+ },
1868
+ {
1869
+ "code": "TsCreate",
1870
+ "description": "",
1871
+ "optional": false,
1872
+ "type": "number",
1873
+ "gnType": "Number",
1874
+ "conditions": {}
1875
+ },
1876
+ {
1877
+ "code": "Log",
1878
+ "description": "",
1879
+ "optional": false,
1880
+ "type": "string",
1881
+ "gnType": "String",
1882
+ "conditions": {}
1883
+ }
1884
+ ],
1885
+ "extends": null,
1886
+ "description": ""
1887
+ },
1888
+ {
1889
+ "name": "StoreUsedResponseData",
1890
+ "details": [
1891
+ {
1892
+ "code": "OwnerId",
1893
+ "description": "",
1894
+ "optional": false,
1895
+ "type": "string",
1896
+ "gnType": "String",
1897
+ "conditions": {}
1898
+ },
1899
+ {
1900
+ "code": "OwnerType",
1901
+ "description": "",
1902
+ "optional": false,
1903
+ "type": "number",
1904
+ "gnType": "Number",
1905
+ "conditions": {}
1906
+ },
1907
+ {
1908
+ "code": "TsCreate",
1909
+ "description": "",
1910
+ "optional": false,
1911
+ "type": "number",
1912
+ "gnType": "Number",
1913
+ "conditions": {}
1914
+ }
1915
+ ],
1916
+ "extends": null,
1917
+ "description": ""
1918
+ },
1919
+ {
1920
+ "name": "GetCreateLeaderboardResponseData",
1921
+ "details": [
1922
+ {
1923
+ "code": "Results",
1924
+ "description": "",
1925
+ "optional": false,
1926
+ "type": "StoreInventoryLeaderboardResponseData",
1927
+ "gnType": "GNArray",
1928
+ "conditions": {}
1929
+ }
1930
+ ],
1931
+ "extends": null,
1932
+ "description": ""
1933
+ },
1934
+ {
1935
+ "name": "GetStoreLogResponseData",
1936
+ "details": [
1937
+ {
1938
+ "code": "Results",
1939
+ "description": "",
1940
+ "optional": false,
1941
+ "type": "StoreLogResponseData",
1942
+ "gnType": "GNArray",
1943
+ "conditions": {}
1944
+ },
1945
+ {
1946
+ "code": "Token",
1947
+ "description": "",
1948
+ "optional": true,
1949
+ "type": "string",
1950
+ "gnType": "String",
1951
+ "conditions": {}
1952
+ }
1953
+ ],
1954
+ "extends": null,
1955
+ "description": ""
1956
+ },
1957
+ {
1958
+ "name": "GetStoreUsedResponseData",
1959
+ "details": [
1960
+ {
1961
+ "code": "Results",
1962
+ "description": "",
1963
+ "optional": false,
1964
+ "type": "StoreUsedResponseData",
1965
+ "gnType": "GNArray",
1966
+ "conditions": {}
1967
+ }
1968
+ ],
1969
+ "extends": null,
1970
+ "description": ""
1971
+ },
1972
+ {
1973
+ "name": "EmptyResponseData",
1974
+ "details": [],
1975
+ "extends": null,
1976
+ "description": ""
1977
+ }
1978
+ ]
1979
+ }