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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (203) hide show
  1. package/LICENSE +198 -5
  2. package/dist/index.js +337 -34170
  3. package/dist/runtime/GNNetwork.js +250 -0
  4. package/dist/runtime/GNNetworkAuthenticateApi.js +122 -0
  5. package/dist/runtime/GNNetworkCharacterPlayerApi.js +968 -0
  6. package/dist/runtime/GNNetworkCloudScriptApi.js +104 -0
  7. package/dist/runtime/GNNetworkContentApi.js +140 -0
  8. package/dist/runtime/GNNetworkDashboardApi.js +170 -0
  9. package/dist/runtime/GNNetworkGamePlayerApi.js +950 -0
  10. package/dist/runtime/GNNetworkGroupApi.js +734 -0
  11. package/dist/runtime/GNNetworkInventoryApi.js +626 -0
  12. package/dist/runtime/GNNetworkMasterPlayerApi.js +1550 -0
  13. package/dist/runtime/GNNetworkMultiplayerApi.js +194 -0
  14. package/dist/runtime/GNNetworkStoreInventoryApi.js +266 -0
  15. package/dist/runtime/common/Action0.js +1 -0
  16. package/dist/runtime/common/Action1.js +1 -0
  17. package/dist/runtime/common/Action2.js +1 -0
  18. package/dist/runtime/common/Action3.js +1 -0
  19. package/dist/runtime/common/Action4.js +1 -0
  20. package/dist/runtime/common/GNData.js +211 -0
  21. package/dist/runtime/config/GNServerSettings.js +149 -0
  22. package/dist/runtime/constant/Commands.js +19 -0
  23. package/dist/runtime/constant/EventCode.js +8 -0
  24. package/dist/runtime/constant/OperationCode.js +221 -0
  25. package/dist/runtime/constant/ReturnCode.js +14 -0
  26. package/dist/runtime/constant/enumType/ExecuteResponseStatus.js +8 -0
  27. package/dist/runtime/constant/enumType/FriendStatus.js +7 -0
  28. package/dist/runtime/constant/enumType/GoogleLoginType.js +5 -0
  29. package/dist/runtime/constant/enumType/GroupStatus.js +7 -0
  30. package/dist/runtime/constant/enumType/InvalidMemberType.js +18 -0
  31. package/dist/runtime/constant/enumType/ItemType.js +5 -0
  32. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +6 -0
  33. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +8 -0
  34. package/dist/runtime/constant/enumType/OwnerType.js +9 -0
  35. package/dist/runtime/constant/enumType/PermissionDataItem.js +5 -0
  36. package/dist/runtime/constant/enumType/PushPlatformType.js +5 -0
  37. package/dist/runtime/constant/enumType/RequestRole.js +6 -0
  38. package/dist/runtime/constant/enumType/RequestType.js +15 -0
  39. package/dist/runtime/constant/enumType/StoreItemType.js +5 -0
  40. package/dist/runtime/constant/enumType/StoreReceiveType.js +8 -0
  41. package/dist/runtime/constant/errorCode/ErrorCode.js +52 -0
  42. package/dist/runtime/constant/parameterCode/ParameterCode.js +617 -0
  43. package/dist/runtime/entity/DataMember.js +208 -0
  44. package/dist/runtime/entity/GNMetadata.js +11 -0
  45. package/dist/runtime/entity/InvalidMember.js +1 -0
  46. package/dist/runtime/entity/OperationEvent.js +24 -0
  47. package/dist/runtime/entity/OperationHelper.js +24 -0
  48. package/dist/runtime/entity/OperationRequest.js +42 -0
  49. package/dist/runtime/entity/OperationResponse.js +73 -0
  50. package/dist/runtime/entity/models/AuthenticateModels.js +426 -0
  51. package/dist/runtime/entity/models/AuthenticateRequestModels.js +188 -0
  52. package/dist/runtime/entity/models/AuthenticateResponseModels.js +131 -0
  53. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +0 -1
  54. package/dist/runtime/entity/models/CharacterPlayerModels.js +1433 -0
  55. package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +1386 -0
  56. package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +376 -0
  57. package/dist/runtime/entity/models/CloudScriptModels.js +197 -0
  58. package/dist/runtime/entity/models/CloudScriptRequestModels.js +138 -0
  59. package/dist/runtime/entity/models/CloudScriptResponseModels.js +40 -0
  60. package/dist/runtime/entity/models/ContentModels.js +203 -0
  61. package/dist/runtime/entity/models/ContentRequestModels.js +190 -0
  62. package/dist/runtime/entity/models/ContentResponseModels.js +54 -0
  63. package/dist/runtime/entity/models/DashboardModels.d.ts +7 -7
  64. package/dist/runtime/entity/models/DashboardModels.js +3002 -0
  65. package/dist/runtime/entity/models/DashboardRequestModels.js +268 -0
  66. package/dist/runtime/entity/models/DashboardResponseModels.js +187 -0
  67. package/dist/runtime/entity/models/GamePlayerModels.js +1591 -0
  68. package/dist/runtime/entity/models/GamePlayerRequestModels.js +1360 -0
  69. package/dist/runtime/entity/models/GamePlayerResponseModels.js +369 -0
  70. package/dist/runtime/entity/models/GenericModels.js +177 -0
  71. package/dist/runtime/entity/models/GroupModels.d.ts +0 -1
  72. package/dist/runtime/entity/models/GroupModels.js +1135 -0
  73. package/dist/runtime/entity/models/GroupRequestModels.js +1048 -0
  74. package/dist/runtime/entity/models/GroupResponseModels.js +285 -0
  75. package/dist/runtime/entity/models/InventoryModels.js +915 -0
  76. package/dist/runtime/entity/models/InventoryRequestModels.js +892 -0
  77. package/dist/runtime/entity/models/InventoryResponseModels.js +243 -0
  78. package/dist/runtime/entity/models/MasterPlayerModels.js +2573 -0
  79. package/dist/runtime/entity/models/MasterPlayerRequestModels.js +2228 -0
  80. package/dist/runtime/entity/models/MasterPlayerResponseModels.js +607 -0
  81. package/dist/runtime/entity/models/MultiplayerModels.d.ts +1 -1
  82. package/dist/runtime/entity/models/MultiplayerModels.js +404 -0
  83. package/dist/runtime/entity/models/MultiplayerRequestModels.js +268 -0
  84. package/dist/runtime/entity/models/MultiplayerResponseModels.js +75 -0
  85. package/dist/runtime/entity/models/StoreInventoryModels.js +797 -0
  86. package/dist/runtime/entity/models/StoreInventoryRequestModels.js +372 -0
  87. package/dist/runtime/entity/models/StoreInventoryResponseModels.js +103 -0
  88. package/dist/runtime/entity/request/CustomOperationRequest.js +24 -0
  89. package/dist/runtime/entity/response/CustomOperationResponse.js +29 -0
  90. package/dist/runtime/entity/response/GetAuthInfoResponse.js +2 -0
  91. package/dist/runtime/entity/response/UploadFileResponse.js +2 -0
  92. package/dist/runtime/helper/CodeHelper.js +63 -0
  93. package/dist/runtime/helper/ConverterService.js +275 -0
  94. package/dist/runtime/helper/EnumUtility.js +33 -0
  95. package/dist/runtime/helper/GNSupport.js +8 -0
  96. package/dist/runtime/helper/GNUtils.js +72 -0
  97. package/dist/runtime/helper/MessagePackConverterService.js +9 -0
  98. package/dist/runtime/logger/GNDebug.js +29 -0
  99. package/dist/runtime/networking/AuthenticateStatus.js +14 -0
  100. package/dist/runtime/networking/IPeer.js +1 -0
  101. package/dist/runtime/networking/NetworkingPeer.js +178 -0
  102. package/dist/runtime/networking/OperationPending.js +53 -0
  103. package/dist/runtime/networking/PeerBase.js +161 -0
  104. package/dist/runtime/networking/handler/IServerEventHandler.js +13 -0
  105. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +39 -0
  106. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +39 -0
  107. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +39 -0
  108. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +39 -0
  109. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +35 -0
  110. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +43 -0
  111. package/dist/runtime/networking/http/HttpPeer.js +122 -0
  112. package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +6 -0
  113. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +164 -0
  114. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +130 -0
  115. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +165 -0
  116. package/dist/runtime/networking/socket/SocketPeer.js +115 -0
  117. package/dist/runtime/typescript/ServiceUpdate.js +12 -0
  118. package/package.json +2 -2
  119. package/responseModel/chatgpt/Authenticate.json +724 -0
  120. package/responseModel/chatgpt/CharacterPlayer.json +1890 -0
  121. package/responseModel/chatgpt/CloudScript.json +254 -0
  122. package/responseModel/chatgpt/Content.json +273 -0
  123. package/responseModel/chatgpt/Dashboard.json +4110 -0
  124. package/responseModel/chatgpt/GamePlayer.json +2306 -0
  125. package/responseModel/chatgpt/Generic.json +253 -0
  126. package/responseModel/chatgpt/Group.json +1509 -0
  127. package/responseModel/chatgpt/Inventory.json +1211 -0
  128. package/responseModel/chatgpt/MasterPlayer.json +3801 -0
  129. package/responseModel/chatgpt/Multiplayer.json +634 -0
  130. package/responseModel/chatgpt/StoreInventory.json +1099 -0
  131. package/responseModel/clients/AuthenticateModels.json +271 -0
  132. package/responseModel/clients/CharacterPlayerModels.json +792 -0
  133. package/responseModel/clients/CloudScriptModels.json +191 -0
  134. package/responseModel/clients/ContentModels.json +178 -0
  135. package/responseModel/clients/DashboardModels.json +5423 -0
  136. package/responseModel/clients/GamePlayerModels.json +781 -0
  137. package/responseModel/clients/GenericModels.json +344 -0
  138. package/responseModel/clients/GroupModels.json +705 -0
  139. package/responseModel/clients/InventoryModels.json +568 -0
  140. package/responseModel/clients/MasterPlayerModels.json +1281 -0
  141. package/responseModel/clients/MultiplayerModels.json +439 -0
  142. package/responseModel/clients/StoreInventoryModels.json +971 -0
  143. package/responseModel/finalChatgpt/Authenticate.json +1475 -0
  144. package/responseModel/finalChatgpt/CharacterPlayer.json +4104 -0
  145. package/responseModel/finalChatgpt/CloudScript.json +515 -0
  146. package/responseModel/finalChatgpt/Content.json +536 -0
  147. package/responseModel/finalChatgpt/Dashboard.json +6712 -0
  148. package/responseModel/finalChatgpt/GamePlayer.json +5142 -0
  149. package/responseModel/finalChatgpt/Generic.json +333 -0
  150. package/responseModel/finalChatgpt/Group.json +3232 -0
  151. package/responseModel/finalChatgpt/Inventory.json +2606 -0
  152. package/responseModel/finalChatgpt/MasterPlayer.json +8385 -0
  153. package/responseModel/finalChatgpt/Multiplayer.json +1196 -0
  154. package/responseModel/finalChatgpt/StoreInventory.json +2085 -0
  155. package/responseModel/finals/Authenticate.json +1460 -0
  156. package/responseModel/finals/CharacterPlayer.json +3639 -0
  157. package/responseModel/finals/CloudScript.json +465 -0
  158. package/responseModel/finals/Content.json +479 -0
  159. package/responseModel/finals/Dashboard.json +6718 -0
  160. package/responseModel/finals/GamePlayer.json +4291 -0
  161. package/responseModel/finals/Generic.json +345 -0
  162. package/responseModel/finals/Group.json +2885 -0
  163. package/responseModel/finals/Inventory.json +2309 -0
  164. package/responseModel/finals/MasterPlayer.json +7018 -0
  165. package/responseModel/finals/Multiplayer.json +1082 -0
  166. package/responseModel/finals/StoreInventory.json +1979 -0
  167. package/responseModel/finalsShort/Authenticate.json +723 -0
  168. package/responseModel/finalsShort/CharacterPlayer.json +1889 -0
  169. package/responseModel/finalsShort/CloudScript.json +253 -0
  170. package/responseModel/finalsShort/Content.json +272 -0
  171. package/responseModel/finalsShort/Dashboard.json +4109 -0
  172. package/responseModel/finalsShort/GamePlayer.json +2305 -0
  173. package/responseModel/finalsShort/Generic.json +252 -0
  174. package/responseModel/finalsShort/Group.json +1508 -0
  175. package/responseModel/finalsShort/Inventory.json +1210 -0
  176. package/responseModel/finalsShort/MasterPlayer.json +3800 -0
  177. package/responseModel/finalsShort/Multiplayer.json +633 -0
  178. package/responseModel/finalsShort/StoreInventory.json +1098 -0
  179. package/responseModel/operationResponse/AuthenticateResponseModels.json +77 -0
  180. package/responseModel/operationResponse/CharacterPlayerResponseModels.json +217 -0
  181. package/responseModel/operationResponse/CloudScriptResponseModels.json +25 -0
  182. package/responseModel/operationResponse/ContentResponseModels.json +33 -0
  183. package/responseModel/operationResponse/DashboardResponseModels.json +109 -0
  184. package/responseModel/operationResponse/GamePlayerResponseModels.json +213 -0
  185. package/responseModel/operationResponse/GroupResponseModels.json +165 -0
  186. package/responseModel/operationResponse/InventoryResponseModels.json +141 -0
  187. package/responseModel/operationResponse/MasterPlayerResponseModels.json +349 -0
  188. package/responseModel/operationResponse/MultiplayerResponseModels.json +45 -0
  189. package/responseModel/operationResponse/StoreInventoryResponseModels.json +61 -0
  190. package/responseModel/servers/Authenticate.json +1328 -0
  191. package/responseModel/servers/CharacterPlayer.json +3199 -0
  192. package/responseModel/servers/CloudScript.json +278 -0
  193. package/responseModel/servers/Content.json +324 -0
  194. package/responseModel/servers/GamePlayer.json +3844 -0
  195. package/responseModel/servers/Group.json +2454 -0
  196. package/responseModel/servers/Inventory.json +1964 -0
  197. package/responseModel/servers/MasterAdmin.json +5569 -0
  198. package/responseModel/servers/MasterPlayer.json +5924 -0
  199. package/responseModel/servers/Multiplayer.json +545 -0
  200. package/responseModel/servers/StoreInventory.json +1290 -0
  201. package/dist/gearn.js.client.js +0 -46892
  202. package/dist/gearn.js.client.min.js +0 -2
  203. package/dist/gearn.js.client.min.js.LICENSE.txt +0 -14
@@ -0,0 +1,1281 @@
1
+ {
2
+ "path": "MasterPlayerModels",
3
+ "models": [
4
+ {
5
+ "name": "CustomDataParam",
6
+ "details": [
7
+ {
8
+ "code": "Key",
9
+ "description": "",
10
+ "optional": false,
11
+ "type": "string",
12
+ "gnType": "String",
13
+ "conditions": {
14
+ "mustNonNull": true,
15
+ "minLength": 2,
16
+ "maxLength": 32
17
+ }
18
+ },
19
+ {
20
+ "code": "Value",
21
+ "description": "",
22
+ "optional": false,
23
+ "type": "any",
24
+ "gnType": "DataMember",
25
+ "conditions": {}
26
+ }
27
+ ],
28
+ "extends": null,
29
+ "description": ""
30
+ },
31
+ {
32
+ "name": "InfoRequestParam",
33
+ "details": [
34
+ {
35
+ "code": "External",
36
+ "description": "",
37
+ "optional": true,
38
+ "type": "boolean",
39
+ "gnType": "Boolean",
40
+ "defaultValue": "false",
41
+ "conditions": {}
42
+ },
43
+ {
44
+ "code": "Segments",
45
+ "description": "",
46
+ "optional": true,
47
+ "type": "boolean",
48
+ "gnType": "Boolean",
49
+ "defaultValue": "false",
50
+ "conditions": {}
51
+ },
52
+ {
53
+ "code": "CustomDatas",
54
+ "description": "",
55
+ "optional": true,
56
+ "type": "boolean",
57
+ "gnType": "Boolean",
58
+ "defaultValue": "false",
59
+ "conditions": {}
60
+ },
61
+ {
62
+ "code": "DisplayName",
63
+ "description": "",
64
+ "optional": true,
65
+ "type": "boolean",
66
+ "gnType": "Boolean",
67
+ "defaultValue": "false",
68
+ "conditions": {}
69
+ },
70
+ {
71
+ "code": "Avatar",
72
+ "description": "",
73
+ "optional": true,
74
+ "type": "boolean",
75
+ "gnType": "Boolean",
76
+ "defaultValue": "false",
77
+ "conditions": {}
78
+ },
79
+ {
80
+ "code": "TsCreate",
81
+ "description": "",
82
+ "optional": true,
83
+ "type": "boolean",
84
+ "gnType": "Boolean",
85
+ "defaultValue": "false",
86
+ "conditions": {}
87
+ },
88
+ {
89
+ "code": "Tags",
90
+ "description": "",
91
+ "optional": true,
92
+ "type": "boolean",
93
+ "gnType": "Boolean",
94
+ "defaultValue": "false",
95
+ "conditions": {}
96
+ },
97
+ {
98
+ "code": "PlayerBan",
99
+ "description": "",
100
+ "optional": true,
101
+ "type": "boolean",
102
+ "gnType": "Boolean",
103
+ "defaultValue": "false",
104
+ "conditions": {}
105
+ },
106
+ {
107
+ "code": "PlayerCurrencies",
108
+ "description": "",
109
+ "optional": true,
110
+ "type": "boolean",
111
+ "gnType": "Boolean",
112
+ "defaultValue": "false",
113
+ "conditions": {}
114
+ },
115
+ {
116
+ "code": "PlayerStatistics",
117
+ "description": "",
118
+ "optional": true,
119
+ "type": "boolean",
120
+ "gnType": "Boolean",
121
+ "defaultValue": "false",
122
+ "conditions": {}
123
+ },
124
+ {
125
+ "code": "PlayerDatas",
126
+ "description": "",
127
+ "optional": true,
128
+ "type": "boolean",
129
+ "gnType": "Boolean",
130
+ "defaultValue": "false",
131
+ "conditions": {}
132
+ },
133
+ {
134
+ "code": "IpAddressCreate",
135
+ "description": "",
136
+ "optional": true,
137
+ "type": "boolean",
138
+ "gnType": "Boolean",
139
+ "defaultValue": "false",
140
+ "conditions": {}
141
+ },
142
+ {
143
+ "code": "CountryCode",
144
+ "description": "",
145
+ "optional": true,
146
+ "type": "boolean",
147
+ "gnType": "Boolean",
148
+ "defaultValue": "false",
149
+ "conditions": {}
150
+ },
151
+ {
152
+ "code": "Email",
153
+ "description": "",
154
+ "optional": true,
155
+ "type": "boolean",
156
+ "gnType": "Boolean",
157
+ "defaultValue": "false",
158
+ "conditions": {}
159
+ },
160
+ {
161
+ "code": "TsLastLogin",
162
+ "description": "",
163
+ "optional": true,
164
+ "type": "boolean",
165
+ "gnType": "Boolean",
166
+ "defaultValue": "false",
167
+ "conditions": {}
168
+ },
169
+ {
170
+ "code": "PushNotifications",
171
+ "description": "",
172
+ "optional": true,
173
+ "type": "boolean",
174
+ "gnType": "Boolean",
175
+ "defaultValue": "false",
176
+ "conditions": {}
177
+ },
178
+ {
179
+ "code": "PlayerDataKeys",
180
+ "description": "",
181
+ "optional": true,
182
+ "type": "string",
183
+ "gnType": "GNArray",
184
+ "conditions": {}
185
+ },
186
+ {
187
+ "code": "PlayerCurrencyKeys",
188
+ "description": "",
189
+ "optional": true,
190
+ "type": "string",
191
+ "gnType": "GNArray",
192
+ "conditions": {}
193
+ },
194
+ {
195
+ "code": "PlayerStatisticsKeys",
196
+ "description": "",
197
+ "optional": true,
198
+ "type": "string",
199
+ "gnType": "GNArray",
200
+ "conditions": {}
201
+ },
202
+ {
203
+ "code": "CustomDataKeys",
204
+ "description": "",
205
+ "optional": true,
206
+ "type": "string",
207
+ "gnType": "GNArray",
208
+ "conditions": {}
209
+ },
210
+ {
211
+ "code": "TagKeys",
212
+ "description": "",
213
+ "optional": true,
214
+ "type": "string",
215
+ "gnType": "GNArray",
216
+ "conditions": {}
217
+ }
218
+ ],
219
+ "extends": null,
220
+ "description": ""
221
+ },
222
+ {
223
+ "name": "PlayerCurrencyParam",
224
+ "details": [
225
+ {
226
+ "code": "Key",
227
+ "description": "",
228
+ "optional": false,
229
+ "type": "string",
230
+ "gnType": "String",
231
+ "conditions": {
232
+ "mustNonNull": true,
233
+ "minLength": 2,
234
+ "maxLength": 32
235
+ }
236
+ },
237
+ {
238
+ "code": "Amount",
239
+ "description": "",
240
+ "optional": false,
241
+ "type": "number",
242
+ "gnType": "Number",
243
+ "conditions": {}
244
+ }
245
+ ],
246
+ "extends": null,
247
+ "description": ""
248
+ },
249
+ {
250
+ "name": "PlayerDataParam",
251
+ "details": [
252
+ {
253
+ "code": "Key",
254
+ "description": "",
255
+ "optional": false,
256
+ "type": "string",
257
+ "gnType": "String",
258
+ "conditions": {
259
+ "mustNonNull": true,
260
+ "minLength": 2,
261
+ "maxLength": 32
262
+ }
263
+ },
264
+ {
265
+ "code": "Value",
266
+ "description": "",
267
+ "optional": false,
268
+ "type": "any",
269
+ "gnType": "DataMember",
270
+ "conditions": {}
271
+ }
272
+ ],
273
+ "extends": null,
274
+ "description": ""
275
+ },
276
+ {
277
+ "name": "PlayerStatisticsParam",
278
+ "details": [
279
+ {
280
+ "code": "Key",
281
+ "description": "",
282
+ "optional": false,
283
+ "type": "string",
284
+ "gnType": "String",
285
+ "conditions": {
286
+ "mustNonNull": true,
287
+ "minLength": 2,
288
+ "maxLength": 32
289
+ }
290
+ },
291
+ {
292
+ "code": "Value",
293
+ "description": "",
294
+ "optional": false,
295
+ "type": "number",
296
+ "gnType": "Number",
297
+ "conditions": {}
298
+ }
299
+ ],
300
+ "extends": null,
301
+ "description": ""
302
+ },
303
+ {
304
+ "name": "GenericService",
305
+ "details": [
306
+ {
307
+ "code": "ServiceName",
308
+ "description": "",
309
+ "optional": false,
310
+ "type": "string",
311
+ "gnType": "String",
312
+ "conditions": {}
313
+ },
314
+ {
315
+ "code": "ServiceId",
316
+ "description": "",
317
+ "optional": false,
318
+ "type": "string",
319
+ "gnType": "String",
320
+ "conditions": {}
321
+ }
322
+ ],
323
+ "extends": null,
324
+ "description": ""
325
+ },
326
+ {
327
+ "name": "Device",
328
+ "details": [
329
+ {
330
+ "code": "CustomDeviceId",
331
+ "description": "",
332
+ "optional": true,
333
+ "type": "string",
334
+ "gnType": "String",
335
+ "conditions": {}
336
+ },
337
+ {
338
+ "code": "AndroidDeviceId",
339
+ "description": "",
340
+ "optional": true,
341
+ "type": "string",
342
+ "gnType": "String",
343
+ "conditions": {}
344
+ },
345
+ {
346
+ "code": "iOSDeviceId",
347
+ "description": "",
348
+ "optional": true,
349
+ "type": "string",
350
+ "gnType": "String",
351
+ "conditions": {}
352
+ },
353
+ {
354
+ "code": "WindowsPhoneDeviceId",
355
+ "description": "",
356
+ "optional": true,
357
+ "type": "string",
358
+ "gnType": "String",
359
+ "conditions": {}
360
+ },
361
+ {
362
+ "code": "WindowsDeviceId",
363
+ "description": "",
364
+ "optional": true,
365
+ "type": "string",
366
+ "gnType": "String",
367
+ "conditions": {}
368
+ },
369
+ {
370
+ "code": "LinuxDeviceId",
371
+ "description": "",
372
+ "optional": true,
373
+ "type": "string",
374
+ "gnType": "String",
375
+ "conditions": {}
376
+ },
377
+ {
378
+ "code": "MacOSDeviceId",
379
+ "description": "",
380
+ "optional": true,
381
+ "type": "string",
382
+ "gnType": "String",
383
+ "conditions": {}
384
+ },
385
+ {
386
+ "code": "EditorDeviceId",
387
+ "description": "",
388
+ "optional": true,
389
+ "type": "string",
390
+ "gnType": "String",
391
+ "conditions": {}
392
+ }
393
+ ],
394
+ "extends": null,
395
+ "description": ""
396
+ },
397
+ {
398
+ "name": "Account",
399
+ "details": [
400
+ {
401
+ "code": "Username",
402
+ "description": "",
403
+ "optional": true,
404
+ "type": "string",
405
+ "gnType": "String",
406
+ "conditions": {}
407
+ }
408
+ ],
409
+ "extends": null,
410
+ "description": ""
411
+ },
412
+ {
413
+ "name": "Custom",
414
+ "details": [
415
+ {
416
+ "code": "CustomId",
417
+ "description": "",
418
+ "optional": true,
419
+ "type": "string",
420
+ "gnType": "String",
421
+ "conditions": {}
422
+ }
423
+ ],
424
+ "extends": null,
425
+ "description": ""
426
+ },
427
+ {
428
+ "name": "Apple",
429
+ "details": [
430
+ {
431
+ "code": "AppleId",
432
+ "description": "",
433
+ "optional": false,
434
+ "type": "string",
435
+ "gnType": "String",
436
+ "conditions": {}
437
+ },
438
+ {
439
+ "code": "Email",
440
+ "description": "",
441
+ "optional": false,
442
+ "type": "string",
443
+ "gnType": "String",
444
+ "conditions": {}
445
+ }
446
+ ],
447
+ "extends": null,
448
+ "description": ""
449
+ },
450
+ {
451
+ "name": "Google",
452
+ "details": [
453
+ {
454
+ "code": "GoogleId",
455
+ "description": "",
456
+ "optional": false,
457
+ "type": "string",
458
+ "gnType": "String",
459
+ "conditions": {}
460
+ },
461
+ {
462
+ "code": "DisplayName",
463
+ "description": "",
464
+ "optional": false,
465
+ "type": "string",
466
+ "gnType": "String",
467
+ "conditions": {}
468
+ },
469
+ {
470
+ "code": "Email",
471
+ "description": "",
472
+ "optional": false,
473
+ "type": "string",
474
+ "gnType": "String",
475
+ "conditions": {}
476
+ }
477
+ ],
478
+ "extends": null,
479
+ "description": ""
480
+ },
481
+ {
482
+ "name": "Facebook",
483
+ "details": [
484
+ {
485
+ "code": "FacebookId",
486
+ "description": "",
487
+ "optional": false,
488
+ "type": "string",
489
+ "gnType": "String",
490
+ "conditions": {}
491
+ },
492
+ {
493
+ "code": "DisplayName",
494
+ "description": "",
495
+ "optional": false,
496
+ "type": "string",
497
+ "gnType": "String",
498
+ "conditions": {}
499
+ },
500
+ {
501
+ "code": "Email",
502
+ "description": "",
503
+ "optional": false,
504
+ "type": "string",
505
+ "gnType": "String",
506
+ "conditions": {}
507
+ }
508
+ ],
509
+ "extends": null,
510
+ "description": ""
511
+ },
512
+ {
513
+ "name": "GooglePlayGameService",
514
+ "details": [
515
+ {
516
+ "code": "PlayerId",
517
+ "description": "",
518
+ "optional": false,
519
+ "type": "string",
520
+ "gnType": "String",
521
+ "conditions": {}
522
+ },
523
+ {
524
+ "code": "DisplayName",
525
+ "description": "",
526
+ "optional": false,
527
+ "type": "string",
528
+ "gnType": "String",
529
+ "conditions": {}
530
+ },
531
+ {
532
+ "code": "Email",
533
+ "description": "",
534
+ "optional": false,
535
+ "type": "string",
536
+ "gnType": "String",
537
+ "conditions": {}
538
+ }
539
+ ],
540
+ "extends": null,
541
+ "description": ""
542
+ },
543
+ {
544
+ "name": "GameCenter",
545
+ "details": [
546
+ {
547
+ "code": "PlayerId",
548
+ "description": "",
549
+ "optional": false,
550
+ "type": "string",
551
+ "gnType": "String",
552
+ "conditions": {}
553
+ },
554
+ {
555
+ "code": "DisplayName",
556
+ "description": "",
557
+ "optional": false,
558
+ "type": "string",
559
+ "gnType": "String",
560
+ "conditions": {}
561
+ },
562
+ {
563
+ "code": "Email",
564
+ "description": "",
565
+ "optional": false,
566
+ "type": "string",
567
+ "gnType": "String",
568
+ "conditions": {}
569
+ }
570
+ ],
571
+ "extends": null,
572
+ "description": ""
573
+ },
574
+ {
575
+ "name": "ExternalItem",
576
+ "details": [
577
+ {
578
+ "code": "Device",
579
+ "description": "",
580
+ "optional": true,
581
+ "type": "Device",
582
+ "gnType": "GNHashtable",
583
+ "conditions": {}
584
+ },
585
+ {
586
+ "code": "Account",
587
+ "description": "",
588
+ "optional": true,
589
+ "type": "Account",
590
+ "gnType": "GNHashtable",
591
+ "conditions": {}
592
+ },
593
+ {
594
+ "code": "Custom",
595
+ "description": "",
596
+ "optional": true,
597
+ "type": "Custom",
598
+ "gnType": "GNHashtable",
599
+ "conditions": {}
600
+ },
601
+ {
602
+ "code": "Apple",
603
+ "description": "",
604
+ "optional": true,
605
+ "type": "Apple",
606
+ "gnType": "GNHashtable",
607
+ "conditions": {}
608
+ },
609
+ {
610
+ "code": "Google",
611
+ "description": "",
612
+ "optional": true,
613
+ "type": "Google",
614
+ "gnType": "GNHashtable",
615
+ "conditions": {}
616
+ },
617
+ {
618
+ "code": "Facebook",
619
+ "description": "",
620
+ "optional": true,
621
+ "type": "Facebook",
622
+ "gnType": "GNHashtable",
623
+ "conditions": {}
624
+ },
625
+ {
626
+ "code": "GenericService",
627
+ "description": "",
628
+ "optional": true,
629
+ "type": "GenericService",
630
+ "gnType": "GNArray",
631
+ "conditions": {}
632
+ },
633
+ {
634
+ "code": "GooglePlayGameService",
635
+ "description": "",
636
+ "optional": true,
637
+ "type": "GooglePlayGameService",
638
+ "gnType": "GNHashtable",
639
+ "conditions": {}
640
+ },
641
+ {
642
+ "code": "GameCenter",
643
+ "description": "",
644
+ "optional": true,
645
+ "type": "GameCenter",
646
+ "gnType": "GNHashtable",
647
+ "conditions": {}
648
+ }
649
+ ],
650
+ "extends": null,
651
+ "description": ""
652
+ },
653
+ {
654
+ "name": "PushNotificationItem",
655
+ "details": [
656
+ {
657
+ "code": "Token",
658
+ "description": "",
659
+ "optional": false,
660
+ "type": "string",
661
+ "gnType": "String",
662
+ "conditions": {}
663
+ },
664
+ {
665
+ "code": "PushId",
666
+ "description": "",
667
+ "optional": false,
668
+ "type": "string",
669
+ "gnType": "String",
670
+ "conditions": {}
671
+ },
672
+ {
673
+ "code": "PlatformType",
674
+ "description": "",
675
+ "optional": false,
676
+ "type": "number",
677
+ "gnType": "Number",
678
+ "conditions": {}
679
+ }
680
+ ],
681
+ "extends": null,
682
+ "description": ""
683
+ },
684
+ {
685
+ "name": "InfoResponseParameters",
686
+ "details": [
687
+ {
688
+ "code": "External",
689
+ "description": "",
690
+ "optional": true,
691
+ "type": "ExternalItem",
692
+ "gnType": "GNHashtable",
693
+ "conditions": {}
694
+ },
695
+ {
696
+ "code": "Segments",
697
+ "description": "",
698
+ "optional": true,
699
+ "type": "string",
700
+ "gnType": "GNArray",
701
+ "conditions": {}
702
+ },
703
+ {
704
+ "code": "CustomDatas",
705
+ "description": "",
706
+ "optional": true,
707
+ "type": "GenericModels.DataItem",
708
+ "gnType": "GNArray",
709
+ "conditions": {}
710
+ },
711
+ {
712
+ "code": "DisplayName",
713
+ "description": "",
714
+ "optional": true,
715
+ "type": "string",
716
+ "gnType": "String",
717
+ "conditions": {}
718
+ },
719
+ {
720
+ "code": "Avatar",
721
+ "description": "",
722
+ "optional": true,
723
+ "type": "GenericModels.AvatarItem",
724
+ "gnType": "GNHashtable",
725
+ "conditions": {}
726
+ },
727
+ {
728
+ "code": "TsCreate",
729
+ "description": "",
730
+ "optional": true,
731
+ "type": "number",
732
+ "gnType": "Number",
733
+ "conditions": {}
734
+ },
735
+ {
736
+ "code": "Tags",
737
+ "description": "",
738
+ "optional": true,
739
+ "type": "GenericModels.TagItem",
740
+ "gnType": "GNArray",
741
+ "conditions": {}
742
+ },
743
+ {
744
+ "code": "PlayerBan",
745
+ "description": "",
746
+ "optional": true,
747
+ "type": "GenericModels.BanItem",
748
+ "gnType": "GNHashtable",
749
+ "conditions": {}
750
+ },
751
+ {
752
+ "code": "PlayerDatas",
753
+ "description": "",
754
+ "optional": true,
755
+ "type": "GenericModels.DataItem",
756
+ "gnType": "GNArray",
757
+ "conditions": {}
758
+ },
759
+ {
760
+ "code": "PlayerCurrencies",
761
+ "description": "",
762
+ "optional": true,
763
+ "type": "GenericModels.CurrencyItem",
764
+ "gnType": "GNArray",
765
+ "conditions": {}
766
+ },
767
+ {
768
+ "code": "PlayerStatistics",
769
+ "description": "",
770
+ "optional": true,
771
+ "type": "GenericModels.StatisticsItem",
772
+ "gnType": "GNArray",
773
+ "conditions": {}
774
+ },
775
+ {
776
+ "code": "TsLastLogin",
777
+ "description": "",
778
+ "optional": true,
779
+ "type": "number",
780
+ "gnType": "Number",
781
+ "conditions": {}
782
+ },
783
+ {
784
+ "code": "IpAddressCreate",
785
+ "description": "",
786
+ "optional": true,
787
+ "type": "string",
788
+ "gnType": "String",
789
+ "conditions": {}
790
+ },
791
+ {
792
+ "code": "CountryCode",
793
+ "description": "",
794
+ "optional": true,
795
+ "type": "string",
796
+ "gnType": "String",
797
+ "conditions": {}
798
+ },
799
+ {
800
+ "code": "Email",
801
+ "description": "",
802
+ "optional": true,
803
+ "type": "string",
804
+ "gnType": "String",
805
+ "conditions": {}
806
+ },
807
+ {
808
+ "code": "PushNotifications",
809
+ "description": "",
810
+ "optional": true,
811
+ "type": "MasterPlayerModels.PushNotificationItem",
812
+ "gnType": "GNArray",
813
+ "conditions": {}
814
+ }
815
+ ],
816
+ "extends": null,
817
+ "description": ""
818
+ },
819
+ {
820
+ "name": "MasterPlayerResponseData",
821
+ "details": [
822
+ {
823
+ "code": "InfoResponseParameters",
824
+ "description": "",
825
+ "optional": false,
826
+ "type": "InfoResponseParameters",
827
+ "gnType": "GNHashtable",
828
+ "conditions": {}
829
+ }
830
+ ],
831
+ "extends": null,
832
+ "description": ""
833
+ },
834
+ {
835
+ "name": "GenericServiceMasterPlayerResponseData",
836
+ "details": [
837
+ {
838
+ "code": "ErrorMessage",
839
+ "description": "",
840
+ "optional": true,
841
+ "type": "string",
842
+ "gnType": "String",
843
+ "conditions": {}
844
+ }
845
+ ],
846
+ "extends": "MasterPlayerResponseData",
847
+ "description": ""
848
+ },
849
+ {
850
+ "name": "MasterPlayerWithUserIdResponseData",
851
+ "details": [
852
+ {
853
+ "code": "UserId",
854
+ "description": "",
855
+ "optional": false,
856
+ "type": "string",
857
+ "gnType": "String",
858
+ "conditions": {}
859
+ }
860
+ ],
861
+ "extends": "MasterPlayerResponseData",
862
+ "description": ""
863
+ },
864
+ {
865
+ "name": "MasterPlayerWithAppleIdResponseData",
866
+ "details": [
867
+ {
868
+ "code": "AppleId",
869
+ "description": "",
870
+ "optional": false,
871
+ "type": "string",
872
+ "gnType": "String",
873
+ "conditions": {}
874
+ }
875
+ ],
876
+ "extends": "MasterPlayerWithUserIdResponseData",
877
+ "description": ""
878
+ },
879
+ {
880
+ "name": "GetPlayersWithAppleResponseData",
881
+ "details": [
882
+ {
883
+ "code": "Results",
884
+ "description": "",
885
+ "optional": false,
886
+ "type": "MasterPlayerWithAppleIdResponseData",
887
+ "gnType": "GNArray",
888
+ "conditions": {}
889
+ }
890
+ ],
891
+ "extends": null,
892
+ "description": ""
893
+ },
894
+ {
895
+ "name": "MasterPlayersWithUserIdResponseData",
896
+ "details": [
897
+ {
898
+ "code": "Results",
899
+ "description": "",
900
+ "optional": false,
901
+ "type": "MasterPlayerWithUserIdResponseData",
902
+ "gnType": "GNArray",
903
+ "conditions": {}
904
+ }
905
+ ],
906
+ "extends": null,
907
+ "description": ""
908
+ },
909
+ {
910
+ "name": "MasterPlayerWithFacebookIdResponseData",
911
+ "details": [
912
+ {
913
+ "code": "FacebookId",
914
+ "description": "",
915
+ "optional": false,
916
+ "type": "string",
917
+ "gnType": "String",
918
+ "conditions": {}
919
+ }
920
+ ],
921
+ "extends": "MasterPlayerWithUserIdResponseData",
922
+ "description": ""
923
+ },
924
+ {
925
+ "name": "GetPlayersWithFacebookResponseData",
926
+ "details": [
927
+ {
928
+ "code": "Results",
929
+ "description": "",
930
+ "optional": false,
931
+ "type": "MasterPlayerWithFacebookIdResponseData",
932
+ "gnType": "GNArray",
933
+ "conditions": {}
934
+ }
935
+ ],
936
+ "extends": null,
937
+ "description": ""
938
+ },
939
+ {
940
+ "name": "MasterPlayerWithGenericServiceIdResponseData",
941
+ "details": [
942
+ {
943
+ "code": "ServiceId",
944
+ "description": "",
945
+ "optional": false,
946
+ "type": "string",
947
+ "gnType": "String",
948
+ "conditions": {}
949
+ }
950
+ ],
951
+ "extends": "MasterPlayerWithUserIdResponseData",
952
+ "description": ""
953
+ },
954
+ {
955
+ "name": "GetPlayersWithGenericServiceResponseData",
956
+ "details": [
957
+ {
958
+ "code": "Results",
959
+ "description": "",
960
+ "optional": false,
961
+ "type": "MasterPlayerWithGenericServiceIdResponseData",
962
+ "gnType": "GNArray",
963
+ "conditions": {}
964
+ }
965
+ ],
966
+ "extends": null,
967
+ "description": ""
968
+ },
969
+ {
970
+ "name": "MasterPlayerWithGoogleIdResponseData",
971
+ "details": [
972
+ {
973
+ "code": "GoogleId",
974
+ "description": "",
975
+ "optional": false,
976
+ "type": "string",
977
+ "gnType": "String",
978
+ "conditions": {}
979
+ }
980
+ ],
981
+ "extends": "MasterPlayerWithUserIdResponseData",
982
+ "description": ""
983
+ },
984
+ {
985
+ "name": "GetPlayersWithGoogleResponseData",
986
+ "details": [
987
+ {
988
+ "code": "Results",
989
+ "description": "",
990
+ "optional": false,
991
+ "type": "MasterPlayerWithGoogleIdResponseData",
992
+ "gnType": "GNArray",
993
+ "conditions": {}
994
+ }
995
+ ],
996
+ "extends": null,
997
+ "description": ""
998
+ },
999
+ {
1000
+ "name": "MasterPlayerWithPlayerIdResponseData",
1001
+ "details": [
1002
+ {
1003
+ "code": "PlayerId",
1004
+ "description": "",
1005
+ "optional": false,
1006
+ "type": "string",
1007
+ "gnType": "String",
1008
+ "conditions": {}
1009
+ }
1010
+ ],
1011
+ "extends": "MasterPlayerWithUserIdResponseData",
1012
+ "description": ""
1013
+ },
1014
+ {
1015
+ "name": "GetPlayersWithGooglePlayGameServiceResponseData",
1016
+ "details": [
1017
+ {
1018
+ "code": "Results",
1019
+ "description": "",
1020
+ "optional": false,
1021
+ "type": "MasterPlayerWithPlayerIdResponseData",
1022
+ "gnType": "GNArray",
1023
+ "conditions": {}
1024
+ }
1025
+ ],
1026
+ "extends": null,
1027
+ "description": ""
1028
+ },
1029
+ {
1030
+ "name": "GetPlayersWithGameCenterResponseData",
1031
+ "details": [
1032
+ {
1033
+ "code": "Results",
1034
+ "description": "",
1035
+ "optional": false,
1036
+ "type": "MasterPlayerWithPlayerIdResponseData",
1037
+ "gnType": "GNArray",
1038
+ "conditions": {}
1039
+ }
1040
+ ],
1041
+ "extends": null,
1042
+ "description": ""
1043
+ },
1044
+ {
1045
+ "name": "MasterPlayerLeaderboardResponseData",
1046
+ "details": [
1047
+ {
1048
+ "code": "Position",
1049
+ "description": "",
1050
+ "optional": false,
1051
+ "type": "number",
1052
+ "gnType": "Number",
1053
+ "conditions": {}
1054
+ },
1055
+ {
1056
+ "code": "BackupValue",
1057
+ "description": "",
1058
+ "optional": true,
1059
+ "type": "number",
1060
+ "gnType": "Number",
1061
+ "conditions": {}
1062
+ }
1063
+ ],
1064
+ "extends": "MasterPlayerWithUserIdResponseData",
1065
+ "description": ""
1066
+ },
1067
+ {
1068
+ "name": "MasterPlayerLogResponseData",
1069
+ "details": [
1070
+ {
1071
+ "code": "UserId",
1072
+ "description": "",
1073
+ "optional": false,
1074
+ "type": "string",
1075
+ "gnType": "String",
1076
+ "conditions": {}
1077
+ },
1078
+ {
1079
+ "code": "TsCreate",
1080
+ "description": "",
1081
+ "optional": false,
1082
+ "type": "number",
1083
+ "gnType": "Number",
1084
+ "conditions": {}
1085
+ },
1086
+ {
1087
+ "code": "Log",
1088
+ "description": "",
1089
+ "optional": false,
1090
+ "type": "string",
1091
+ "gnType": "String",
1092
+ "conditions": {}
1093
+ },
1094
+ {
1095
+ "code": "Key",
1096
+ "description": "",
1097
+ "optional": false,
1098
+ "type": "string",
1099
+ "gnType": "String",
1100
+ "conditions": {}
1101
+ },
1102
+ {
1103
+ "code": "Amount",
1104
+ "description": "",
1105
+ "optional": false,
1106
+ "type": "number",
1107
+ "gnType": "Number",
1108
+ "conditions": {}
1109
+ },
1110
+ {
1111
+ "code": "StartValue",
1112
+ "description": "",
1113
+ "optional": false,
1114
+ "type": "number",
1115
+ "gnType": "Number",
1116
+ "conditions": {}
1117
+ },
1118
+ {
1119
+ "code": "FinalValue",
1120
+ "description": "",
1121
+ "optional": false,
1122
+ "type": "number",
1123
+ "gnType": "Number",
1124
+ "conditions": {}
1125
+ }
1126
+ ],
1127
+ "extends": null,
1128
+ "description": ""
1129
+ },
1130
+ {
1131
+ "name": "GetStatisticsLeaderboardResponseData",
1132
+ "details": [
1133
+ {
1134
+ "code": "Results",
1135
+ "description": "",
1136
+ "optional": false,
1137
+ "type": "MasterPlayerLeaderboardResponseData",
1138
+ "gnType": "GNArray",
1139
+ "conditions": {}
1140
+ },
1141
+ {
1142
+ "code": "TsCreate",
1143
+ "description": "",
1144
+ "optional": true,
1145
+ "type": "number",
1146
+ "gnType": "Number",
1147
+ "conditions": {}
1148
+ }
1149
+ ],
1150
+ "extends": null,
1151
+ "description": ""
1152
+ },
1153
+ {
1154
+ "name": "GetCurrencyLeaderboardResponseData",
1155
+ "details": [
1156
+ {
1157
+ "code": "Results",
1158
+ "description": "",
1159
+ "optional": false,
1160
+ "type": "MasterPlayerLeaderboardResponseData",
1161
+ "gnType": "GNArray",
1162
+ "conditions": {}
1163
+ }
1164
+ ],
1165
+ "extends": null,
1166
+ "description": ""
1167
+ },
1168
+ {
1169
+ "name": "GetCreateLeaderboardResponseData",
1170
+ "details": [
1171
+ {
1172
+ "code": "Results",
1173
+ "description": "",
1174
+ "optional": false,
1175
+ "type": "MasterPlayerLeaderboardResponseData",
1176
+ "gnType": "GNArray",
1177
+ "conditions": {}
1178
+ }
1179
+ ],
1180
+ "extends": null,
1181
+ "description": ""
1182
+ },
1183
+ {
1184
+ "name": "GetLastLoginLeaderboardResponseData",
1185
+ "details": [
1186
+ {
1187
+ "code": "Results",
1188
+ "description": "",
1189
+ "optional": false,
1190
+ "type": "MasterPlayerLeaderboardResponseData",
1191
+ "gnType": "GNArray",
1192
+ "conditions": {}
1193
+ }
1194
+ ],
1195
+ "extends": null,
1196
+ "description": ""
1197
+ },
1198
+ {
1199
+ "name": "GetStatisticsLogResponseData",
1200
+ "details": [
1201
+ {
1202
+ "code": "Results",
1203
+ "description": "",
1204
+ "optional": false,
1205
+ "type": "MasterPlayerLogResponseData",
1206
+ "gnType": "GNArray",
1207
+ "conditions": {}
1208
+ },
1209
+ {
1210
+ "code": "Token",
1211
+ "description": "",
1212
+ "optional": true,
1213
+ "type": "string",
1214
+ "gnType": "String",
1215
+ "conditions": {}
1216
+ }
1217
+ ],
1218
+ "extends": null,
1219
+ "description": ""
1220
+ },
1221
+ {
1222
+ "name": "GetCurrencyLogResponseData",
1223
+ "details": [
1224
+ {
1225
+ "code": "Results",
1226
+ "description": "",
1227
+ "optional": false,
1228
+ "type": "MasterPlayerLogResponseData",
1229
+ "gnType": "GNArray",
1230
+ "conditions": {}
1231
+ },
1232
+ {
1233
+ "code": "Token",
1234
+ "description": "",
1235
+ "optional": true,
1236
+ "type": "string",
1237
+ "gnType": "String",
1238
+ "conditions": {}
1239
+ }
1240
+ ],
1241
+ "extends": null,
1242
+ "description": ""
1243
+ },
1244
+ {
1245
+ "name": "AddPushNotificationResponseData",
1246
+ "details": [
1247
+ {
1248
+ "code": "PushId",
1249
+ "description": "",
1250
+ "optional": false,
1251
+ "type": "string",
1252
+ "gnType": "String",
1253
+ "conditions": {}
1254
+ }
1255
+ ],
1256
+ "extends": null,
1257
+ "description": ""
1258
+ },
1259
+ {
1260
+ "name": "SendPushNotificationResponseData",
1261
+ "details": [
1262
+ {
1263
+ "code": "Message",
1264
+ "description": "",
1265
+ "optional": false,
1266
+ "type": "string",
1267
+ "gnType": "String",
1268
+ "conditions": {}
1269
+ }
1270
+ ],
1271
+ "extends": null,
1272
+ "description": ""
1273
+ },
1274
+ {
1275
+ "name": "EmptyResponseData",
1276
+ "details": [],
1277
+ "extends": null,
1278
+ "description": ""
1279
+ }
1280
+ ]
1281
+ }