@xmobitea/gn-typescript-client 2.3.3 → 2.4.1-esnext

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 (111) hide show
  1. package/dist/index.js +320 -35529
  2. package/dist/runtime/GNNetwork.d.ts +1 -0
  3. package/dist/runtime/GNNetwork.js +241 -0
  4. package/dist/runtime/GNNetworkAuthenticateApi.js +167 -0
  5. package/dist/runtime/GNNetworkCharacterPlayerApi.js +1271 -0
  6. package/dist/runtime/GNNetworkCloudScriptApi.js +143 -0
  7. package/dist/runtime/GNNetworkContentApi.js +191 -0
  8. package/dist/runtime/GNNetworkDashboardApi.js +223 -0
  9. package/dist/runtime/GNNetworkGamePlayerApi.js +1247 -0
  10. package/dist/runtime/GNNetworkGroupApi.js +983 -0
  11. package/dist/runtime/GNNetworkInventoryApi.js +839 -0
  12. package/dist/runtime/GNNetworkMasterPlayerApi.js +2071 -0
  13. package/dist/runtime/GNNetworkMultiplayerApi.js +263 -0
  14. package/dist/runtime/GNNetworkStoreInventoryApi.js +311 -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 +127 -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 +218 -0
  25. package/dist/runtime/constant/ReturnCode.js +14 -0
  26. package/dist/runtime/constant/enumType/FriendStatus.js +7 -0
  27. package/dist/runtime/constant/enumType/GoogleLoginType.js +5 -0
  28. package/dist/runtime/constant/enumType/GroupStatus.js +7 -0
  29. package/dist/runtime/constant/enumType/InvalidMemberType.js +18 -0
  30. package/dist/runtime/constant/enumType/ItemType.js +5 -0
  31. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +6 -0
  32. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +8 -0
  33. package/dist/runtime/constant/enumType/OwnerType.js +8 -0
  34. package/dist/runtime/constant/enumType/PermissionDataItem.js +5 -0
  35. package/dist/runtime/constant/enumType/PushPlatformType.js +5 -0
  36. package/dist/runtime/constant/enumType/RequestRole.js +6 -0
  37. package/dist/runtime/constant/enumType/RequestType.js +15 -0
  38. package/dist/runtime/constant/enumType/StoreReceiveType.js +8 -0
  39. package/dist/runtime/constant/errorCode/GNErrorCode.js +50 -0
  40. package/dist/runtime/constant/parameterCode/GNParameterCode.js +565 -0
  41. package/dist/runtime/constant/parameterCode/ParameterCode.js +6 -0
  42. package/dist/runtime/entity/DataMember.js +208 -0
  43. package/dist/runtime/entity/GNMetadata.js +11 -0
  44. package/dist/runtime/entity/InvalidMember.js +1 -0
  45. package/dist/runtime/entity/OperationEvent.js +32 -0
  46. package/dist/runtime/entity/OperationHelper.js +23 -0
  47. package/dist/runtime/entity/OperationRequest.js +50 -0
  48. package/dist/runtime/entity/OperationResponse.js +81 -0
  49. package/dist/runtime/entity/models/AuthenticateModels.js +420 -0
  50. package/dist/runtime/entity/models/AuthenticateRequestModels.js +206 -0
  51. package/dist/runtime/entity/models/AuthenticateResponseModels.js +131 -0
  52. package/dist/runtime/entity/models/CharacterPlayerModels.js +1377 -0
  53. package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +1412 -0
  54. package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +369 -0
  55. package/dist/runtime/entity/models/CloudScriptModels.js +197 -0
  56. package/dist/runtime/entity/models/CloudScriptRequestModels.js +143 -0
  57. package/dist/runtime/entity/models/CloudScriptResponseModels.js +40 -0
  58. package/dist/runtime/entity/models/ContentModels.js +211 -0
  59. package/dist/runtime/entity/models/ContentRequestModels.js +197 -0
  60. package/dist/runtime/entity/models/ContentResponseModels.js +54 -0
  61. package/dist/runtime/entity/models/DashboardModels.js +2759 -0
  62. package/dist/runtime/entity/models/DashboardRequestModels.js +283 -0
  63. package/dist/runtime/entity/models/DashboardResponseModels.js +180 -0
  64. package/dist/runtime/entity/models/GamePlayerModels.js +1543 -0
  65. package/dist/runtime/entity/models/GamePlayerRequestModels.js +1385 -0
  66. package/dist/runtime/entity/models/GamePlayerResponseModels.js +362 -0
  67. package/dist/runtime/entity/models/GenericModels.js +177 -0
  68. package/dist/runtime/entity/models/GroupModels.js +1123 -0
  69. package/dist/runtime/entity/models/GroupRequestModels.js +1088 -0
  70. package/dist/runtime/entity/models/GroupResponseModels.js +285 -0
  71. package/dist/runtime/entity/models/InventoryModels.js +903 -0
  72. package/dist/runtime/entity/models/InventoryRequestModels.js +926 -0
  73. package/dist/runtime/entity/models/InventoryResponseModels.js +243 -0
  74. package/dist/runtime/entity/models/MasterPlayerModels.js +2566 -0
  75. package/dist/runtime/entity/models/MasterPlayerRequestModels.js +2314 -0
  76. package/dist/runtime/entity/models/MasterPlayerResponseModels.js +607 -0
  77. package/dist/runtime/entity/models/MultiplayerModels.js +404 -0
  78. package/dist/runtime/entity/models/MultiplayerRequestModels.js +278 -0
  79. package/dist/runtime/entity/models/MultiplayerResponseModels.js +75 -0
  80. package/dist/runtime/entity/models/StoreInventoryModels.js +733 -0
  81. package/dist/runtime/entity/models/StoreInventoryRequestModels.js +332 -0
  82. package/dist/runtime/entity/models/StoreInventoryResponseModels.js +89 -0
  83. package/dist/runtime/entity/request/CustomOperationRequest.js +24 -0
  84. package/dist/runtime/entity/response/CustomOperationResponse.js +29 -0
  85. package/dist/runtime/helper/CodeHelper.js +61 -0
  86. package/dist/runtime/helper/ConverterService.js +275 -0
  87. package/dist/runtime/helper/GNSupport.js +8 -0
  88. package/dist/runtime/logger/GNDebug.js +29 -0
  89. package/dist/runtime/networking/AuthenticateStatus.js +14 -0
  90. package/dist/runtime/networking/IPeer.js +1 -0
  91. package/dist/runtime/networking/NetworkingPeer.js +129 -0
  92. package/dist/runtime/networking/OperationPending.js +53 -0
  93. package/dist/runtime/networking/PeerBase.js +168 -0
  94. package/dist/runtime/networking/handler/IServerEventHandler.js +13 -0
  95. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +39 -0
  96. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +39 -0
  97. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +39 -0
  98. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +39 -0
  99. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +35 -0
  100. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +35 -0
  101. package/dist/runtime/networking/http/HttpPeer.js +121 -0
  102. package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +6 -0
  103. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +146 -0
  104. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +126 -0
  105. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +176 -0
  106. package/dist/runtime/networking/socket/SocketPeer.js +105 -0
  107. package/dist/runtime/typescript/ServiceUpdate.js +12 -0
  108. package/package.json +1 -1
  109. package/dist/gn.js.client.js +0 -48240
  110. package/dist/gn.js.client.min.js +0 -2
  111. package/dist/gn.js.client.min.js.LICENSE.txt +0 -14
@@ -0,0 +1,2759 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { GNParameterCode } from "./../../constant/parameterCode/GNParameterCode";
11
+ import { ParameterCode } from "./../../constant/parameterCode/ParameterCode";
12
+ import { GNHashtableDataMember, StringDataMember, BooleanDataMember, DataMember, GNArrayDataMember, NumberDataMember } from "./../DataMember";
13
+ export var DashboardModels;
14
+ (function (DashboardModels) {
15
+ class PermissionRulesParam {
16
+ }
17
+ __decorate([
18
+ BooleanDataMember({ code: GNParameterCode.SelfEnable, isOptional: true }),
19
+ __metadata("design:type", Boolean)
20
+ ], PermissionRulesParam.prototype, "selfEnable", void 0);
21
+ __decorate([
22
+ BooleanDataMember({ code: GNParameterCode.OtherSelfEnable, isOptional: true }),
23
+ __metadata("design:type", Boolean)
24
+ ], PermissionRulesParam.prototype, "otherSelfEnable", void 0);
25
+ __decorate([
26
+ BooleanDataMember({ code: GNParameterCode.AdminSelfEnable, isOptional: true }),
27
+ __metadata("design:type", Boolean)
28
+ ], PermissionRulesParam.prototype, "adminSelfEnable", void 0);
29
+ __decorate([
30
+ BooleanDataMember({ code: GNParameterCode.ServerSelfEnable, isOptional: true }),
31
+ __metadata("design:type", Boolean)
32
+ ], PermissionRulesParam.prototype, "serverSelfEnable", void 0);
33
+ DashboardModels.PermissionRulesParam = PermissionRulesParam;
34
+ class FriendCatalogSettingsParam {
35
+ }
36
+ __decorate([
37
+ StringDataMember({ code: GNParameterCode.CatalogId, minLength: 2, maxLength: 32 }),
38
+ __metadata("design:type", String)
39
+ ], FriendCatalogSettingsParam.prototype, "catalogId", void 0);
40
+ __decorate([
41
+ BooleanDataMember({ code: GNParameterCode.ForceAcceptFriend }),
42
+ __metadata("design:type", Boolean)
43
+ ], FriendCatalogSettingsParam.prototype, "forceAcceptFriend", void 0);
44
+ DashboardModels.FriendCatalogSettingsParam = FriendCatalogSettingsParam;
45
+ class ItemClassSettingsParam {
46
+ }
47
+ __decorate([
48
+ StringDataMember({ code: GNParameterCode.ClassId, minLength: 2, maxLength: 32 }),
49
+ __metadata("design:type", String)
50
+ ], ItemClassSettingsParam.prototype, "classId", void 0);
51
+ __decorate([
52
+ StringDataMember({ code: GNParameterCode.DisplayName, isOptional: true }),
53
+ __metadata("design:type", String)
54
+ ], ItemClassSettingsParam.prototype, "displayName", void 0);
55
+ DashboardModels.ItemClassSettingsParam = ItemClassSettingsParam;
56
+ class ItemCatalogSettingsParam {
57
+ }
58
+ __decorate([
59
+ StringDataMember({ code: GNParameterCode.CatalogId, minLength: 2, maxLength: 32 }),
60
+ __metadata("design:type", String)
61
+ ], ItemCatalogSettingsParam.prototype, "catalogId", void 0);
62
+ __decorate([
63
+ NumberDataMember({ code: GNParameterCode.ItemType, mustInt: true }),
64
+ __metadata("design:type", Number)
65
+ ], ItemCatalogSettingsParam.prototype, "itemType", void 0);
66
+ __decorate([
67
+ GNArrayDataMember({ code: GNParameterCode.ItemClassSettings, elementCls: ItemClassSettingsParam }),
68
+ __metadata("design:type", Array)
69
+ ], ItemCatalogSettingsParam.prototype, "itemClassSettings", void 0);
70
+ DashboardModels.ItemCatalogSettingsParam = ItemCatalogSettingsParam;
71
+ class GroupCatalogSettingsParam {
72
+ }
73
+ __decorate([
74
+ StringDataMember({ code: GNParameterCode.CatalogId, minLength: 2, maxLength: 32 }),
75
+ __metadata("design:type", String)
76
+ ], GroupCatalogSettingsParam.prototype, "catalogId", void 0);
77
+ __decorate([
78
+ StringDataMember({ code: GNParameterCode.DisplayName, isOptional: true }),
79
+ __metadata("design:type", String)
80
+ ], GroupCatalogSettingsParam.prototype, "displayName", void 0);
81
+ __decorate([
82
+ BooleanDataMember({ code: GNParameterCode.ForceAcceptMember }),
83
+ __metadata("design:type", Boolean)
84
+ ], GroupCatalogSettingsParam.prototype, "forceAcceptMember", void 0);
85
+ DashboardModels.GroupCatalogSettingsParam = GroupCatalogSettingsParam;
86
+ class TagSettingsParam {
87
+ }
88
+ __decorate([
89
+ StringDataMember({ code: GNParameterCode.Key, minLength: 2, maxLength: 32 }),
90
+ __metadata("design:type", String)
91
+ ], TagSettingsParam.prototype, "key", void 0);
92
+ __decorate([
93
+ StringDataMember({ code: GNParameterCode.DisplayName, isOptional: true }),
94
+ __metadata("design:type", String)
95
+ ], TagSettingsParam.prototype, "displayName", void 0);
96
+ __decorate([
97
+ BooleanDataMember({ code: GNParameterCode.Index }),
98
+ __metadata("design:type", Boolean)
99
+ ], TagSettingsParam.prototype, "index", void 0);
100
+ DashboardModels.TagSettingsParam = TagSettingsParam;
101
+ class DataSettingsParam {
102
+ }
103
+ __decorate([
104
+ StringDataMember({ code: GNParameterCode.Key, minLength: 2, maxLength: 32 }),
105
+ __metadata("design:type", String)
106
+ ], DataSettingsParam.prototype, "key", void 0);
107
+ __decorate([
108
+ NumberDataMember({ code: GNParameterCode.Permission, mustInt: true }),
109
+ __metadata("design:type", Number)
110
+ ], DataSettingsParam.prototype, "permission", void 0);
111
+ DashboardModels.DataSettingsParam = DataSettingsParam;
112
+ class StatisticsSettingsParam {
113
+ }
114
+ __decorate([
115
+ StringDataMember({ code: GNParameterCode.Key, minLength: 2, maxLength: 32 }),
116
+ __metadata("design:type", String)
117
+ ], StatisticsSettingsParam.prototype, "key", void 0);
118
+ __decorate([
119
+ NumberDataMember({ code: GNParameterCode.StatisticsAggregationMethod, mustInt: true }),
120
+ __metadata("design:type", Number)
121
+ ], StatisticsSettingsParam.prototype, "statisticsAggregationMethod", void 0);
122
+ __decorate([
123
+ NumberDataMember({ code: GNParameterCode.MaximumValue, isOptional: true, defaultValue: 0 }),
124
+ __metadata("design:type", Number)
125
+ ], StatisticsSettingsParam.prototype, "maximumValue", void 0);
126
+ __decorate([
127
+ NumberDataMember({ code: GNParameterCode.MinimumValue, isOptional: true, defaultValue: 0 }),
128
+ __metadata("design:type", Number)
129
+ ], StatisticsSettingsParam.prototype, "minimumValue", void 0);
130
+ __decorate([
131
+ NumberDataMember({ code: GNParameterCode.InitialValue }),
132
+ __metadata("design:type", Number)
133
+ ], StatisticsSettingsParam.prototype, "initialValue", void 0);
134
+ __decorate([
135
+ StringDataMember({ code: GNParameterCode.DisplayName, minLength: 2, maxLength: 64 }),
136
+ __metadata("design:type", String)
137
+ ], StatisticsSettingsParam.prototype, "displayName", void 0);
138
+ __decorate([
139
+ BooleanDataMember({ code: GNParameterCode.Index }),
140
+ __metadata("design:type", Boolean)
141
+ ], StatisticsSettingsParam.prototype, "index", void 0);
142
+ DashboardModels.StatisticsSettingsParam = StatisticsSettingsParam;
143
+ class CurrencySettingsParam {
144
+ }
145
+ __decorate([
146
+ StringDataMember({ code: GNParameterCode.Key, minLength: 2, maxLength: 32 }),
147
+ __metadata("design:type", String)
148
+ ], CurrencySettingsParam.prototype, "key", void 0);
149
+ __decorate([
150
+ NumberDataMember({ code: GNParameterCode.InitialValue }),
151
+ __metadata("design:type", Number)
152
+ ], CurrencySettingsParam.prototype, "initialValue", void 0);
153
+ __decorate([
154
+ StringDataMember({ code: GNParameterCode.DisplayName, minLength: 2, maxLength: 64 }),
155
+ __metadata("design:type", String)
156
+ ], CurrencySettingsParam.prototype, "displayName", void 0);
157
+ __decorate([
158
+ BooleanDataMember({ code: GNParameterCode.Index }),
159
+ __metadata("design:type", Boolean)
160
+ ], CurrencySettingsParam.prototype, "index", void 0);
161
+ DashboardModels.CurrencySettingsParam = CurrencySettingsParam;
162
+ class CharacterCatalogSettingsParam {
163
+ }
164
+ __decorate([
165
+ StringDataMember({ code: GNParameterCode.CatalogId, minLength: 2, maxLength: 32 }),
166
+ __metadata("design:type", String)
167
+ ], CharacterCatalogSettingsParam.prototype, "catalogId", void 0);
168
+ __decorate([
169
+ StringDataMember({ code: GNParameterCode.DisplayName, isOptional: true }),
170
+ __metadata("design:type", String)
171
+ ], CharacterCatalogSettingsParam.prototype, "displayName", void 0);
172
+ DashboardModels.CharacterCatalogSettingsParam = CharacterCatalogSettingsParam;
173
+ class CharacterPlayerPermissionRulesParam {
174
+ }
175
+ __decorate([
176
+ GNHashtableDataMember({ code: GNParameterCode.AddSegment, isOptional: true }),
177
+ __metadata("design:type", PermissionRulesParam)
178
+ ], CharacterPlayerPermissionRulesParam.prototype, "addSegment", void 0);
179
+ __decorate([
180
+ GNHashtableDataMember({ code: GNParameterCode.RemoveSegment, isOptional: true }),
181
+ __metadata("design:type", PermissionRulesParam)
182
+ ], CharacterPlayerPermissionRulesParam.prototype, "removeSegment", void 0);
183
+ __decorate([
184
+ GNHashtableDataMember({ code: GNParameterCode.GetSegment, isOptional: true }),
185
+ __metadata("design:type", PermissionRulesParam)
186
+ ], CharacterPlayerPermissionRulesParam.prototype, "getSegment", void 0);
187
+ __decorate([
188
+ GNHashtableDataMember({ code: GNParameterCode.SetTag, isOptional: true }),
189
+ __metadata("design:type", PermissionRulesParam)
190
+ ], CharacterPlayerPermissionRulesParam.prototype, "setTag", void 0);
191
+ __decorate([
192
+ GNHashtableDataMember({ code: GNParameterCode.RemoveTag, isOptional: true }),
193
+ __metadata("design:type", PermissionRulesParam)
194
+ ], CharacterPlayerPermissionRulesParam.prototype, "removeTag", void 0);
195
+ __decorate([
196
+ GNHashtableDataMember({ code: GNParameterCode.GetTag, isOptional: true }),
197
+ __metadata("design:type", PermissionRulesParam)
198
+ ], CharacterPlayerPermissionRulesParam.prototype, "getTag", void 0);
199
+ __decorate([
200
+ GNHashtableDataMember({ code: GNParameterCode.GetDisplayName, isOptional: true }),
201
+ __metadata("design:type", PermissionRulesParam)
202
+ ], CharacterPlayerPermissionRulesParam.prototype, "getDisplayName", void 0);
203
+ __decorate([
204
+ GNHashtableDataMember({ code: GNParameterCode.SetDisplayName, isOptional: true }),
205
+ __metadata("design:type", PermissionRulesParam)
206
+ ], CharacterPlayerPermissionRulesParam.prototype, "setDisplayName", void 0);
207
+ __decorate([
208
+ GNHashtableDataMember({ code: GNParameterCode.GetTsCreate, isOptional: true }),
209
+ __metadata("design:type", PermissionRulesParam)
210
+ ], CharacterPlayerPermissionRulesParam.prototype, "getTsCreate", void 0);
211
+ __decorate([
212
+ GNHashtableDataMember({ code: GNParameterCode.GetIpAddressCreate, isOptional: true }),
213
+ __metadata("design:type", PermissionRulesParam)
214
+ ], CharacterPlayerPermissionRulesParam.prototype, "getIpAddressCreate", void 0);
215
+ __decorate([
216
+ GNHashtableDataMember({ code: GNParameterCode.GetTsLastLogin, isOptional: true }),
217
+ __metadata("design:type", PermissionRulesParam)
218
+ ], CharacterPlayerPermissionRulesParam.prototype, "getTsLastLogin", void 0);
219
+ __decorate([
220
+ GNHashtableDataMember({ code: GNParameterCode.SetPlayerBan, isOptional: true }),
221
+ __metadata("design:type", PermissionRulesParam)
222
+ ], CharacterPlayerPermissionRulesParam.prototype, "setPlayerBan", void 0);
223
+ __decorate([
224
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerBan, isOptional: true }),
225
+ __metadata("design:type", PermissionRulesParam)
226
+ ], CharacterPlayerPermissionRulesParam.prototype, "getPlayerBan", void 0);
227
+ __decorate([
228
+ GNHashtableDataMember({ code: GNParameterCode.SetCountryCode, isOptional: true }),
229
+ __metadata("design:type", PermissionRulesParam)
230
+ ], CharacterPlayerPermissionRulesParam.prototype, "setCountryCode", void 0);
231
+ __decorate([
232
+ GNHashtableDataMember({ code: GNParameterCode.GetCountryCode, isOptional: true }),
233
+ __metadata("design:type", PermissionRulesParam)
234
+ ], CharacterPlayerPermissionRulesParam.prototype, "getCountryCode", void 0);
235
+ __decorate([
236
+ GNHashtableDataMember({ code: GNParameterCode.SetAvatar, isOptional: true }),
237
+ __metadata("design:type", PermissionRulesParam)
238
+ ], CharacterPlayerPermissionRulesParam.prototype, "setAvatar", void 0);
239
+ __decorate([
240
+ GNHashtableDataMember({ code: GNParameterCode.GetAvatar, isOptional: true }),
241
+ __metadata("design:type", PermissionRulesParam)
242
+ ], CharacterPlayerPermissionRulesParam.prototype, "getAvatar", void 0);
243
+ __decorate([
244
+ GNHashtableDataMember({ code: GNParameterCode.SetPlayerCurrency, isOptional: true }),
245
+ __metadata("design:type", PermissionRulesParam)
246
+ ], CharacterPlayerPermissionRulesParam.prototype, "setPlayerCurrency", void 0);
247
+ __decorate([
248
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerCurrency, isOptional: true }),
249
+ __metadata("design:type", PermissionRulesParam)
250
+ ], CharacterPlayerPermissionRulesParam.prototype, "getPlayerCurrency", void 0);
251
+ __decorate([
252
+ GNHashtableDataMember({ code: GNParameterCode.SetPlayerStatistics, isOptional: true }),
253
+ __metadata("design:type", PermissionRulesParam)
254
+ ], CharacterPlayerPermissionRulesParam.prototype, "setPlayerStatistics", void 0);
255
+ __decorate([
256
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerStatistics, isOptional: true }),
257
+ __metadata("design:type", PermissionRulesParam)
258
+ ], CharacterPlayerPermissionRulesParam.prototype, "getPlayerStatistics", void 0);
259
+ __decorate([
260
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLeaderboard, isOptional: true }),
261
+ __metadata("design:type", PermissionRulesParam)
262
+ ], CharacterPlayerPermissionRulesParam.prototype, "getStatisticsLeaderboard", void 0);
263
+ __decorate([
264
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLeaderboardAroundPlayer, isOptional: true }),
265
+ __metadata("design:type", PermissionRulesParam)
266
+ ], CharacterPlayerPermissionRulesParam.prototype, "getStatisticsLeaderboardAroundPlayer", void 0);
267
+ __decorate([
268
+ GNHashtableDataMember({ code: GNParameterCode.GetCustomData, isOptional: true }),
269
+ __metadata("design:type", PermissionRulesParam)
270
+ ], CharacterPlayerPermissionRulesParam.prototype, "getCustomData", void 0);
271
+ __decorate([
272
+ GNHashtableDataMember({ code: GNParameterCode.SetCustomData, isOptional: true }),
273
+ __metadata("design:type", PermissionRulesParam)
274
+ ], CharacterPlayerPermissionRulesParam.prototype, "setCustomData", void 0);
275
+ __decorate([
276
+ GNHashtableDataMember({ code: GNParameterCode.SetPlayerData, isOptional: true }),
277
+ __metadata("design:type", PermissionRulesParam)
278
+ ], CharacterPlayerPermissionRulesParam.prototype, "setPlayerData", void 0);
279
+ __decorate([
280
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerData, isOptional: true }),
281
+ __metadata("design:type", PermissionRulesParam)
282
+ ], CharacterPlayerPermissionRulesParam.prototype, "getPlayerData", void 0);
283
+ __decorate([
284
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerInformation, isOptional: true }),
285
+ __metadata("design:type", PermissionRulesParam)
286
+ ], CharacterPlayerPermissionRulesParam.prototype, "getPlayerInformation", void 0);
287
+ __decorate([
288
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithSegment, isOptional: true }),
289
+ __metadata("design:type", PermissionRulesParam)
290
+ ], CharacterPlayerPermissionRulesParam.prototype, "getPlayersWithSegment", void 0);
291
+ __decorate([
292
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithTag, isOptional: true }),
293
+ __metadata("design:type", PermissionRulesParam)
294
+ ], CharacterPlayerPermissionRulesParam.prototype, "getPlayersWithTag", void 0);
295
+ __decorate([
296
+ GNHashtableDataMember({ code: GNParameterCode.GetCatalogId, isOptional: true }),
297
+ __metadata("design:type", PermissionRulesParam)
298
+ ], CharacterPlayerPermissionRulesParam.prototype, "getCatalogId", void 0);
299
+ __decorate([
300
+ GNHashtableDataMember({ code: GNParameterCode.GetOwner, isOptional: true }),
301
+ __metadata("design:type", PermissionRulesParam)
302
+ ], CharacterPlayerPermissionRulesParam.prototype, "getOwner", void 0);
303
+ __decorate([
304
+ GNHashtableDataMember({ code: GNParameterCode.GetRemoveStatus, isOptional: true }),
305
+ __metadata("design:type", PermissionRulesParam)
306
+ ], CharacterPlayerPermissionRulesParam.prototype, "getRemoveStatus", void 0);
307
+ __decorate([
308
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerFriend, isOptional: true }),
309
+ __metadata("design:type", PermissionRulesParam)
310
+ ], CharacterPlayerPermissionRulesParam.prototype, "getPlayerFriend", void 0);
311
+ __decorate([
312
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerGroup, isOptional: true }),
313
+ __metadata("design:type", PermissionRulesParam)
314
+ ], CharacterPlayerPermissionRulesParam.prototype, "getPlayerGroup", void 0);
315
+ __decorate([
316
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerInventory, isOptional: true }),
317
+ __metadata("design:type", PermissionRulesParam)
318
+ ], CharacterPlayerPermissionRulesParam.prototype, "getPlayerInventory", void 0);
319
+ __decorate([
320
+ GNHashtableDataMember({ code: GNParameterCode.RemovePlayerItem, isOptional: true }),
321
+ __metadata("design:type", PermissionRulesParam)
322
+ ], CharacterPlayerPermissionRulesParam.prototype, "removePlayerItem", void 0);
323
+ __decorate([
324
+ GNHashtableDataMember({ code: GNParameterCode.GrantPlayerItem, isOptional: true }),
325
+ __metadata("design:type", PermissionRulesParam)
326
+ ], CharacterPlayerPermissionRulesParam.prototype, "grantPlayerItem", void 0);
327
+ __decorate([
328
+ GNHashtableDataMember({ code: GNParameterCode.GrantGroup, isOptional: true }),
329
+ __metadata("design:type", PermissionRulesParam)
330
+ ], CharacterPlayerPermissionRulesParam.prototype, "grantGroup", void 0);
331
+ __decorate([
332
+ GNHashtableDataMember({ code: GNParameterCode.JoinGroup, isOptional: true }),
333
+ __metadata("design:type", PermissionRulesParam)
334
+ ], CharacterPlayerPermissionRulesParam.prototype, "joinGroup", void 0);
335
+ __decorate([
336
+ GNHashtableDataMember({ code: GNParameterCode.LeaveGroup, isOptional: true }),
337
+ __metadata("design:type", PermissionRulesParam)
338
+ ], CharacterPlayerPermissionRulesParam.prototype, "leaveGroup", void 0);
339
+ __decorate([
340
+ GNHashtableDataMember({ code: GNParameterCode.SetOwner, isOptional: true }),
341
+ __metadata("design:type", PermissionRulesParam)
342
+ ], CharacterPlayerPermissionRulesParam.prototype, "setOwner", void 0);
343
+ __decorate([
344
+ GNHashtableDataMember({ code: GNParameterCode.AddPlayerFriend, isOptional: true }),
345
+ __metadata("design:type", PermissionRulesParam)
346
+ ], CharacterPlayerPermissionRulesParam.prototype, "addPlayerFriend", void 0);
347
+ __decorate([
348
+ GNHashtableDataMember({ code: GNParameterCode.RemovePlayerFriend, isOptional: true }),
349
+ __metadata("design:type", PermissionRulesParam)
350
+ ], CharacterPlayerPermissionRulesParam.prototype, "removePlayerFriend", void 0);
351
+ __decorate([
352
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithDisplayName, isOptional: true }),
353
+ __metadata("design:type", PermissionRulesParam)
354
+ ], CharacterPlayerPermissionRulesParam.prototype, "getPlayersWithDisplayName", void 0);
355
+ __decorate([
356
+ GNHashtableDataMember({ code: GNParameterCode.SetRemoveStatus, isOptional: true }),
357
+ __metadata("design:type", PermissionRulesParam)
358
+ ], CharacterPlayerPermissionRulesParam.prototype, "setRemoveStatus", void 0);
359
+ __decorate([
360
+ GNHashtableDataMember({ code: GNParameterCode.GetFriendStatisticsLeaderboardAroundPlayer, isOptional: true }),
361
+ __metadata("design:type", PermissionRulesParam)
362
+ ], CharacterPlayerPermissionRulesParam.prototype, "getFriendStatisticsLeaderboardAroundPlayer", void 0);
363
+ __decorate([
364
+ GNHashtableDataMember({ code: GNParameterCode.GetFriendStatisticsLeaderboard, isOptional: true }),
365
+ __metadata("design:type", PermissionRulesParam)
366
+ ], CharacterPlayerPermissionRulesParam.prototype, "getFriendStatisticsLeaderboard", void 0);
367
+ __decorate([
368
+ GNHashtableDataMember({ code: GNParameterCode.GetCurrencyLeaderboard, isOptional: true }),
369
+ __metadata("design:type", PermissionRulesParam)
370
+ ], CharacterPlayerPermissionRulesParam.prototype, "getCurrencyLeaderboard", void 0);
371
+ __decorate([
372
+ GNHashtableDataMember({ code: GNParameterCode.GetCreateLeaderboard, isOptional: true }),
373
+ __metadata("design:type", PermissionRulesParam)
374
+ ], CharacterPlayerPermissionRulesParam.prototype, "getCreateLeaderboard", void 0);
375
+ __decorate([
376
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLog, isOptional: true }),
377
+ __metadata("design:type", PermissionRulesParam)
378
+ ], CharacterPlayerPermissionRulesParam.prototype, "getStatisticsLog", void 0);
379
+ __decorate([
380
+ GNHashtableDataMember({ code: GNParameterCode.GetCurrencyLog, isOptional: true }),
381
+ __metadata("design:type", PermissionRulesParam)
382
+ ], CharacterPlayerPermissionRulesParam.prototype, "getCurrencyLog", void 0);
383
+ DashboardModels.CharacterPlayerPermissionRulesParam = CharacterPlayerPermissionRulesParam;
384
+ class CharacterPlayerSettingsParam {
385
+ }
386
+ __decorate([
387
+ GNArrayDataMember({ code: GNParameterCode.CurrencySettings, elementCls: CurrencySettingsParam, isOptional: true }),
388
+ __metadata("design:type", Array)
389
+ ], CharacterPlayerSettingsParam.prototype, "playerCurrencySettings", void 0);
390
+ __decorate([
391
+ GNArrayDataMember({ code: GNParameterCode.StatisticsSettings, elementCls: StatisticsSettingsParam, isOptional: true }),
392
+ __metadata("design:type", Array)
393
+ ], CharacterPlayerSettingsParam.prototype, "playerStatisticsSettings", void 0);
394
+ __decorate([
395
+ GNArrayDataMember({ code: GNParameterCode.DatasSettings, elementCls: DataSettingsParam, isOptional: true }),
396
+ __metadata("design:type", Array)
397
+ ], CharacterPlayerSettingsParam.prototype, "playerDatasSettings", void 0);
398
+ __decorate([
399
+ GNArrayDataMember({ code: GNParameterCode.CustomDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
400
+ __metadata("design:type", Array)
401
+ ], CharacterPlayerSettingsParam.prototype, "customDatasSettings", void 0);
402
+ __decorate([
403
+ GNArrayDataMember({ code: GNParameterCode.TagsSettings, elementCls: TagSettingsParam, isOptional: true }),
404
+ __metadata("design:type", Array)
405
+ ], CharacterPlayerSettingsParam.prototype, "tagsSettings", void 0);
406
+ __decorate([
407
+ GNArrayDataMember({ code: GNParameterCode.GroupCatalogSettings, elementCls: GroupCatalogSettingsParam, isOptional: true }),
408
+ __metadata("design:type", Array)
409
+ ], CharacterPlayerSettingsParam.prototype, "playerGroupCatalogSettings", void 0);
410
+ __decorate([
411
+ GNArrayDataMember({ code: GNParameterCode.ItemCatalogSettings, elementCls: ItemCatalogSettingsParam, isOptional: true }),
412
+ __metadata("design:type", Array)
413
+ ], CharacterPlayerSettingsParam.prototype, "playerItemCatalogSettings", void 0);
414
+ __decorate([
415
+ GNArrayDataMember({ code: GNParameterCode.FriendCatalogSettings, elementCls: FriendCatalogSettingsParam, isOptional: true }),
416
+ __metadata("design:type", Array)
417
+ ], CharacterPlayerSettingsParam.prototype, "playerFriendCatalogSettings", void 0);
418
+ DashboardModels.CharacterPlayerSettingsParam = CharacterPlayerSettingsParam;
419
+ class ContentPermissionRulesParam {
420
+ }
421
+ __decorate([
422
+ GNHashtableDataMember({ code: GNParameterCode.GetContentData, isOptional: true }),
423
+ __metadata("design:type", PermissionRulesParam)
424
+ ], ContentPermissionRulesParam.prototype, "getContentData", void 0);
425
+ __decorate([
426
+ GNHashtableDataMember({ code: GNParameterCode.SetContentData, isOptional: true }),
427
+ __metadata("design:type", PermissionRulesParam)
428
+ ], ContentPermissionRulesParam.prototype, "setContentData", void 0);
429
+ __decorate([
430
+ GNHashtableDataMember({ code: GNParameterCode.CreateNewFileUploadInfo, isOptional: true }),
431
+ __metadata("design:type", PermissionRulesParam)
432
+ ], ContentPermissionRulesParam.prototype, "createNewFileUploadInfo", void 0);
433
+ __decorate([
434
+ GNHashtableDataMember({ code: GNParameterCode.GetFileUploadInfoList, isOptional: true }),
435
+ __metadata("design:type", PermissionRulesParam)
436
+ ], ContentPermissionRulesParam.prototype, "getFileUploadInfoList", void 0);
437
+ __decorate([
438
+ GNHashtableDataMember({ code: GNParameterCode.GetFileUploadInfo, isOptional: true }),
439
+ __metadata("design:type", PermissionRulesParam)
440
+ ], ContentPermissionRulesParam.prototype, "getFileUploadInfo", void 0);
441
+ __decorate([
442
+ GNHashtableDataMember({ code: GNParameterCode.RemoveFileUploadInfo, isOptional: true }),
443
+ __metadata("design:type", PermissionRulesParam)
444
+ ], ContentPermissionRulesParam.prototype, "removeFileUploadInfo", void 0);
445
+ __decorate([
446
+ GNHashtableDataMember({ code: GNParameterCode.RequestDownloadFileUploadInfo, isOptional: true }),
447
+ __metadata("design:type", PermissionRulesParam)
448
+ ], ContentPermissionRulesParam.prototype, "requestDownloadFileUploadInfo", void 0);
449
+ DashboardModels.ContentPermissionRulesParam = ContentPermissionRulesParam;
450
+ class ThirtPartyAppleSettingsParam {
451
+ }
452
+ __decorate([
453
+ StringDataMember({ code: GNParameterCode.AppleClientId }),
454
+ __metadata("design:type", String)
455
+ ], ThirtPartyAppleSettingsParam.prototype, "appleClientId", void 0);
456
+ __decorate([
457
+ BooleanDataMember({ code: GNParameterCode.SandboxEnable }),
458
+ __metadata("design:type", Boolean)
459
+ ], ThirtPartyAppleSettingsParam.prototype, "sandboxEnable", void 0);
460
+ __decorate([
461
+ StringDataMember({ code: GNParameterCode.IssuerId }),
462
+ __metadata("design:type", String)
463
+ ], ThirtPartyAppleSettingsParam.prototype, "issuerId", void 0);
464
+ __decorate([
465
+ StringDataMember({ code: GNParameterCode.KeyId }),
466
+ __metadata("design:type", String)
467
+ ], ThirtPartyAppleSettingsParam.prototype, "keyId", void 0);
468
+ __decorate([
469
+ StringDataMember({ code: GNParameterCode.P8Content }),
470
+ __metadata("design:type", String)
471
+ ], ThirtPartyAppleSettingsParam.prototype, "p8Content", void 0);
472
+ DashboardModels.ThirtPartyAppleSettingsParam = ThirtPartyAppleSettingsParam;
473
+ class ThirtPartyFacebookSettingsParam {
474
+ }
475
+ __decorate([
476
+ StringDataMember({ code: GNParameterCode.FacebookAppId }),
477
+ __metadata("design:type", String)
478
+ ], ThirtPartyFacebookSettingsParam.prototype, "facebookAppId", void 0);
479
+ __decorate([
480
+ StringDataMember({ code: GNParameterCode.FacebookAppToken }),
481
+ __metadata("design:type", String)
482
+ ], ThirtPartyFacebookSettingsParam.prototype, "facebookAppToken", void 0);
483
+ __decorate([
484
+ StringDataMember({ code: GNParameterCode.FacebookInappSecret }),
485
+ __metadata("design:type", String)
486
+ ], ThirtPartyFacebookSettingsParam.prototype, "facebookInappSecret", void 0);
487
+ DashboardModels.ThirtPartyFacebookSettingsParam = ThirtPartyFacebookSettingsParam;
488
+ class ThirtPartyGoogleSettingsParam {
489
+ }
490
+ __decorate([
491
+ StringDataMember({ code: GNParameterCode.GoogleClientId }),
492
+ __metadata("design:type", String)
493
+ ], ThirtPartyGoogleSettingsParam.prototype, "googleClientId", void 0);
494
+ __decorate([
495
+ StringDataMember({ code: GNParameterCode.PackageId }),
496
+ __metadata("design:type", String)
497
+ ], ThirtPartyGoogleSettingsParam.prototype, "packageId", void 0);
498
+ __decorate([
499
+ StringDataMember({ code: GNParameterCode.PublicRSAKey }),
500
+ __metadata("design:type", String)
501
+ ], ThirtPartyGoogleSettingsParam.prototype, "publicRSAKey", void 0);
502
+ DashboardModels.ThirtPartyGoogleSettingsParam = ThirtPartyGoogleSettingsParam;
503
+ class ThirtPartyGameCenterSettingsParam {
504
+ }
505
+ __decorate([
506
+ StringDataMember({ code: GNParameterCode.PackageId }),
507
+ __metadata("design:type", String)
508
+ ], ThirtPartyGameCenterSettingsParam.prototype, "packageId", void 0);
509
+ DashboardModels.ThirtPartyGameCenterSettingsParam = ThirtPartyGameCenterSettingsParam;
510
+ class ThirtPartyGooglePlayGameSettingsParam {
511
+ }
512
+ __decorate([
513
+ StringDataMember({ code: GNParameterCode.RedirectUri }),
514
+ __metadata("design:type", String)
515
+ ], ThirtPartyGooglePlayGameSettingsParam.prototype, "redirectUri", void 0);
516
+ __decorate([
517
+ StringDataMember({ code: GNParameterCode.ClientId }),
518
+ __metadata("design:type", String)
519
+ ], ThirtPartyGooglePlayGameSettingsParam.prototype, "clientId", void 0);
520
+ __decorate([
521
+ StringDataMember({ code: GNParameterCode.ClientSecret }),
522
+ __metadata("design:type", String)
523
+ ], ThirtPartyGooglePlayGameSettingsParam.prototype, "clientSecret", void 0);
524
+ __decorate([
525
+ StringDataMember({ code: GNParameterCode.ApplicationId }),
526
+ __metadata("design:type", String)
527
+ ], ThirtPartyGooglePlayGameSettingsParam.prototype, "applicationId", void 0);
528
+ DashboardModels.ThirtPartyGooglePlayGameSettingsParam = ThirtPartyGooglePlayGameSettingsParam;
529
+ class ThirtPartyParam {
530
+ }
531
+ __decorate([
532
+ GNHashtableDataMember({ code: GNParameterCode.GoogleSettings, isOptional: true }),
533
+ __metadata("design:type", ThirtPartyGoogleSettingsParam)
534
+ ], ThirtPartyParam.prototype, "googleSettings", void 0);
535
+ __decorate([
536
+ GNHashtableDataMember({ code: GNParameterCode.FacebookSettings, isOptional: true }),
537
+ __metadata("design:type", ThirtPartyFacebookSettingsParam)
538
+ ], ThirtPartyParam.prototype, "facebookSettings", void 0);
539
+ __decorate([
540
+ GNHashtableDataMember({ code: GNParameterCode.AppleSettings, isOptional: true }),
541
+ __metadata("design:type", ThirtPartyAppleSettingsParam)
542
+ ], ThirtPartyParam.prototype, "appleSettings", void 0);
543
+ __decorate([
544
+ GNHashtableDataMember({ code: GNParameterCode.GooglePlayGameService, isOptional: true }),
545
+ __metadata("design:type", ThirtPartyGooglePlayGameSettingsParam)
546
+ ], ThirtPartyParam.prototype, "googlePlayGameSettings", void 0);
547
+ __decorate([
548
+ GNHashtableDataMember({ code: GNParameterCode.GameCenterSettings, isOptional: true }),
549
+ __metadata("design:type", ThirtPartyGameCenterSettingsParam)
550
+ ], ThirtPartyParam.prototype, "gameCenterSettings", void 0);
551
+ DashboardModels.ThirtPartyParam = ThirtPartyParam;
552
+ class EmailSettingsParam {
553
+ }
554
+ __decorate([
555
+ StringDataMember({ code: GNParameterCode.SendFrom }),
556
+ __metadata("design:type", String)
557
+ ], EmailSettingsParam.prototype, "sendFrom", void 0);
558
+ __decorate([
559
+ StringDataMember({ code: GNParameterCode.SendGridApiKey }),
560
+ __metadata("design:type", String)
561
+ ], EmailSettingsParam.prototype, "sendGridApiKey", void 0);
562
+ DashboardModels.EmailSettingsParam = EmailSettingsParam;
563
+ class PushNotificationSettingsParam {
564
+ }
565
+ __decorate([
566
+ StringDataMember({ code: GNParameterCode.ProjectId }),
567
+ __metadata("design:type", String)
568
+ ], PushNotificationSettingsParam.prototype, "projectId", void 0);
569
+ __decorate([
570
+ StringDataMember({ code: GNParameterCode.ClientEmail }),
571
+ __metadata("design:type", String)
572
+ ], PushNotificationSettingsParam.prototype, "clientEmail", void 0);
573
+ __decorate([
574
+ StringDataMember({ code: GNParameterCode.PrivateKey }),
575
+ __metadata("design:type", String)
576
+ ], PushNotificationSettingsParam.prototype, "privateKey", void 0);
577
+ DashboardModels.PushNotificationSettingsParam = PushNotificationSettingsParam;
578
+ class GamePlayerPermissionRulesParam {
579
+ }
580
+ __decorate([
581
+ GNHashtableDataMember({ code: GNParameterCode.AddSegment, isOptional: true }),
582
+ __metadata("design:type", PermissionRulesParam)
583
+ ], GamePlayerPermissionRulesParam.prototype, "addSegment", void 0);
584
+ __decorate([
585
+ GNHashtableDataMember({ code: GNParameterCode.RemoveSegment, isOptional: true }),
586
+ __metadata("design:type", PermissionRulesParam)
587
+ ], GamePlayerPermissionRulesParam.prototype, "removeSegment", void 0);
588
+ __decorate([
589
+ GNHashtableDataMember({ code: GNParameterCode.GetSegment, isOptional: true }),
590
+ __metadata("design:type", PermissionRulesParam)
591
+ ], GamePlayerPermissionRulesParam.prototype, "getSegment", void 0);
592
+ __decorate([
593
+ GNHashtableDataMember({ code: GNParameterCode.SetTag, isOptional: true }),
594
+ __metadata("design:type", PermissionRulesParam)
595
+ ], GamePlayerPermissionRulesParam.prototype, "setTag", void 0);
596
+ __decorate([
597
+ GNHashtableDataMember({ code: GNParameterCode.RemoveTag, isOptional: true }),
598
+ __metadata("design:type", PermissionRulesParam)
599
+ ], GamePlayerPermissionRulesParam.prototype, "removeTag", void 0);
600
+ __decorate([
601
+ GNHashtableDataMember({ code: GNParameterCode.GetTag, isOptional: true }),
602
+ __metadata("design:type", PermissionRulesParam)
603
+ ], GamePlayerPermissionRulesParam.prototype, "getTag", void 0);
604
+ __decorate([
605
+ GNHashtableDataMember({ code: GNParameterCode.GetDisplayName, isOptional: true }),
606
+ __metadata("design:type", PermissionRulesParam)
607
+ ], GamePlayerPermissionRulesParam.prototype, "getDisplayName", void 0);
608
+ __decorate([
609
+ GNHashtableDataMember({ code: GNParameterCode.SetDisplayName, isOptional: true }),
610
+ __metadata("design:type", PermissionRulesParam)
611
+ ], GamePlayerPermissionRulesParam.prototype, "setDisplayName", void 0);
612
+ __decorate([
613
+ GNHashtableDataMember({ code: GNParameterCode.GetTsCreate, isOptional: true }),
614
+ __metadata("design:type", PermissionRulesParam)
615
+ ], GamePlayerPermissionRulesParam.prototype, "getTsCreate", void 0);
616
+ __decorate([
617
+ GNHashtableDataMember({ code: GNParameterCode.GetIpAddressCreate, isOptional: true }),
618
+ __metadata("design:type", PermissionRulesParam)
619
+ ], GamePlayerPermissionRulesParam.prototype, "getIpAddressCreate", void 0);
620
+ __decorate([
621
+ GNHashtableDataMember({ code: GNParameterCode.GetTsLastLogin, isOptional: true }),
622
+ __metadata("design:type", PermissionRulesParam)
623
+ ], GamePlayerPermissionRulesParam.prototype, "getTsLastLogin", void 0);
624
+ __decorate([
625
+ GNHashtableDataMember({ code: GNParameterCode.SetPlayerBan, isOptional: true }),
626
+ __metadata("design:type", PermissionRulesParam)
627
+ ], GamePlayerPermissionRulesParam.prototype, "setPlayerBan", void 0);
628
+ __decorate([
629
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerBan, isOptional: true }),
630
+ __metadata("design:type", PermissionRulesParam)
631
+ ], GamePlayerPermissionRulesParam.prototype, "getPlayerBan", void 0);
632
+ __decorate([
633
+ GNHashtableDataMember({ code: GNParameterCode.SetCountryCode, isOptional: true }),
634
+ __metadata("design:type", PermissionRulesParam)
635
+ ], GamePlayerPermissionRulesParam.prototype, "setCountryCode", void 0);
636
+ __decorate([
637
+ GNHashtableDataMember({ code: GNParameterCode.GetCountryCode, isOptional: true }),
638
+ __metadata("design:type", PermissionRulesParam)
639
+ ], GamePlayerPermissionRulesParam.prototype, "getCountryCode", void 0);
640
+ __decorate([
641
+ GNHashtableDataMember({ code: GNParameterCode.SetAvatar, isOptional: true }),
642
+ __metadata("design:type", PermissionRulesParam)
643
+ ], GamePlayerPermissionRulesParam.prototype, "setAvatar", void 0);
644
+ __decorate([
645
+ GNHashtableDataMember({ code: GNParameterCode.GetAvatar, isOptional: true }),
646
+ __metadata("design:type", PermissionRulesParam)
647
+ ], GamePlayerPermissionRulesParam.prototype, "getAvatar", void 0);
648
+ __decorate([
649
+ GNHashtableDataMember({ code: GNParameterCode.SetPlayerCurrency, isOptional: true }),
650
+ __metadata("design:type", PermissionRulesParam)
651
+ ], GamePlayerPermissionRulesParam.prototype, "setPlayerCurrency", void 0);
652
+ __decorate([
653
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerCurrency, isOptional: true }),
654
+ __metadata("design:type", PermissionRulesParam)
655
+ ], GamePlayerPermissionRulesParam.prototype, "getPlayerCurrency", void 0);
656
+ __decorate([
657
+ GNHashtableDataMember({ code: GNParameterCode.SetPlayerStatistics, isOptional: true }),
658
+ __metadata("design:type", PermissionRulesParam)
659
+ ], GamePlayerPermissionRulesParam.prototype, "setPlayerStatistics", void 0);
660
+ __decorate([
661
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerStatistics, isOptional: true }),
662
+ __metadata("design:type", PermissionRulesParam)
663
+ ], GamePlayerPermissionRulesParam.prototype, "getPlayerStatistics", void 0);
664
+ __decorate([
665
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLeaderboard, isOptional: true }),
666
+ __metadata("design:type", PermissionRulesParam)
667
+ ], GamePlayerPermissionRulesParam.prototype, "getStatisticsLeaderboard", void 0);
668
+ __decorate([
669
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLeaderboardAroundPlayer, isOptional: true }),
670
+ __metadata("design:type", PermissionRulesParam)
671
+ ], GamePlayerPermissionRulesParam.prototype, "getStatisticsLeaderboardAroundPlayer", void 0);
672
+ __decorate([
673
+ GNHashtableDataMember({ code: GNParameterCode.GetCustomData, isOptional: true }),
674
+ __metadata("design:type", PermissionRulesParam)
675
+ ], GamePlayerPermissionRulesParam.prototype, "getCustomData", void 0);
676
+ __decorate([
677
+ GNHashtableDataMember({ code: GNParameterCode.SetCustomData, isOptional: true }),
678
+ __metadata("design:type", PermissionRulesParam)
679
+ ], GamePlayerPermissionRulesParam.prototype, "setCustomData", void 0);
680
+ __decorate([
681
+ GNHashtableDataMember({ code: GNParameterCode.SetPlayerData, isOptional: true }),
682
+ __metadata("design:type", PermissionRulesParam)
683
+ ], GamePlayerPermissionRulesParam.prototype, "setPlayerData", void 0);
684
+ __decorate([
685
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerData, isOptional: true }),
686
+ __metadata("design:type", PermissionRulesParam)
687
+ ], GamePlayerPermissionRulesParam.prototype, "getPlayerData", void 0);
688
+ __decorate([
689
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerInformation, isOptional: true }),
690
+ __metadata("design:type", PermissionRulesParam)
691
+ ], GamePlayerPermissionRulesParam.prototype, "getPlayerInformation", void 0);
692
+ __decorate([
693
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithSegment, isOptional: true }),
694
+ __metadata("design:type", PermissionRulesParam)
695
+ ], GamePlayerPermissionRulesParam.prototype, "getPlayersWithSegment", void 0);
696
+ __decorate([
697
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithTag, isOptional: true }),
698
+ __metadata("design:type", PermissionRulesParam)
699
+ ], GamePlayerPermissionRulesParam.prototype, "getPlayersWithTag", void 0);
700
+ __decorate([
701
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerCharacter, isOptional: true }),
702
+ __metadata("design:type", PermissionRulesParam)
703
+ ], GamePlayerPermissionRulesParam.prototype, "getPlayerCharacter", void 0);
704
+ __decorate([
705
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerInventory, isOptional: true }),
706
+ __metadata("design:type", PermissionRulesParam)
707
+ ], GamePlayerPermissionRulesParam.prototype, "getPlayerInventory", void 0);
708
+ __decorate([
709
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerGroup, isOptional: true }),
710
+ __metadata("design:type", PermissionRulesParam)
711
+ ], GamePlayerPermissionRulesParam.prototype, "getPlayerGroup", void 0);
712
+ __decorate([
713
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerFriend, isOptional: true }),
714
+ __metadata("design:type", PermissionRulesParam)
715
+ ], GamePlayerPermissionRulesParam.prototype, "getPlayerFriend", void 0);
716
+ __decorate([
717
+ GNHashtableDataMember({ code: GNParameterCode.RemovePlayerItem, isOptional: true }),
718
+ __metadata("design:type", PermissionRulesParam)
719
+ ], GamePlayerPermissionRulesParam.prototype, "removePlayerItem", void 0);
720
+ __decorate([
721
+ GNHashtableDataMember({ code: GNParameterCode.GetOnlineStatus, isOptional: true }),
722
+ __metadata("design:type", PermissionRulesParam)
723
+ ], GamePlayerPermissionRulesParam.prototype, "getOnlineStatus", void 0);
724
+ __decorate([
725
+ GNHashtableDataMember({ code: GNParameterCode.GrantGroup, isOptional: true }),
726
+ __metadata("design:type", PermissionRulesParam)
727
+ ], GamePlayerPermissionRulesParam.prototype, "grantGroup", void 0);
728
+ __decorate([
729
+ GNHashtableDataMember({ code: GNParameterCode.GrantPlayerItem, isOptional: true }),
730
+ __metadata("design:type", PermissionRulesParam)
731
+ ], GamePlayerPermissionRulesParam.prototype, "grantPlayerItem", void 0);
732
+ __decorate([
733
+ GNHashtableDataMember({ code: GNParameterCode.GrantPlayerCharacter, isOptional: true }),
734
+ __metadata("design:type", PermissionRulesParam)
735
+ ], GamePlayerPermissionRulesParam.prototype, "grantPlayerCharacter", void 0);
736
+ __decorate([
737
+ GNHashtableDataMember({ code: GNParameterCode.AddPlayerFriend, isOptional: true }),
738
+ __metadata("design:type", PermissionRulesParam)
739
+ ], GamePlayerPermissionRulesParam.prototype, "addPlayerFriend", void 0);
740
+ __decorate([
741
+ GNHashtableDataMember({ code: GNParameterCode.RemovePlayerFriend, isOptional: true }),
742
+ __metadata("design:type", PermissionRulesParam)
743
+ ], GamePlayerPermissionRulesParam.prototype, "removePlayerFriend", void 0);
744
+ __decorate([
745
+ GNHashtableDataMember({ code: GNParameterCode.RemovePlayerCharacter, isOptional: true }),
746
+ __metadata("design:type", PermissionRulesParam)
747
+ ], GamePlayerPermissionRulesParam.prototype, "removePlayerCharacter", void 0);
748
+ __decorate([
749
+ GNHashtableDataMember({ code: GNParameterCode.JoinGroup, isOptional: true }),
750
+ __metadata("design:type", PermissionRulesParam)
751
+ ], GamePlayerPermissionRulesParam.prototype, "joinGroup", void 0);
752
+ __decorate([
753
+ GNHashtableDataMember({ code: GNParameterCode.LeaveGroup, isOptional: true }),
754
+ __metadata("design:type", PermissionRulesParam)
755
+ ], GamePlayerPermissionRulesParam.prototype, "leaveGroup", void 0);
756
+ __decorate([
757
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithDisplayName, isOptional: true }),
758
+ __metadata("design:type", PermissionRulesParam)
759
+ ], GamePlayerPermissionRulesParam.prototype, "getPlayersWithDisplayName", void 0);
760
+ __decorate([
761
+ GNHashtableDataMember({ code: GNParameterCode.GetFriendStatisticsLeaderboardAroundPlayer, isOptional: true }),
762
+ __metadata("design:type", PermissionRulesParam)
763
+ ], GamePlayerPermissionRulesParam.prototype, "getFriendStatisticsLeaderboardAroundPlayer", void 0);
764
+ __decorate([
765
+ GNHashtableDataMember({ code: GNParameterCode.GetFriendStatisticsLeaderboard, isOptional: true }),
766
+ __metadata("design:type", PermissionRulesParam)
767
+ ], GamePlayerPermissionRulesParam.prototype, "getFriendStatisticsLeaderboard", void 0);
768
+ __decorate([
769
+ GNHashtableDataMember({ code: GNParameterCode.GetCurrencyLeaderboard, isOptional: true }),
770
+ __metadata("design:type", PermissionRulesParam)
771
+ ], GamePlayerPermissionRulesParam.prototype, "getCurrencyLeaderboard", void 0);
772
+ __decorate([
773
+ GNHashtableDataMember({ code: GNParameterCode.GetCreateLeaderboard, isOptional: true }),
774
+ __metadata("design:type", PermissionRulesParam)
775
+ ], GamePlayerPermissionRulesParam.prototype, "getCreateLeaderboard", void 0);
776
+ __decorate([
777
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLog, isOptional: true }),
778
+ __metadata("design:type", PermissionRulesParam)
779
+ ], GamePlayerPermissionRulesParam.prototype, "getStatisticsLog", void 0);
780
+ __decorate([
781
+ GNHashtableDataMember({ code: GNParameterCode.GetCurrencyLog, isOptional: true }),
782
+ __metadata("design:type", PermissionRulesParam)
783
+ ], GamePlayerPermissionRulesParam.prototype, "getCurrencyLog", void 0);
784
+ DashboardModels.GamePlayerPermissionRulesParam = GamePlayerPermissionRulesParam;
785
+ class GamePlayerSettingsParam {
786
+ }
787
+ __decorate([
788
+ GNArrayDataMember({ code: GNParameterCode.CurrencySettings, elementCls: CurrencySettingsParam, isOptional: true }),
789
+ __metadata("design:type", Array)
790
+ ], GamePlayerSettingsParam.prototype, "playerCurrencySettings", void 0);
791
+ __decorate([
792
+ GNArrayDataMember({ code: GNParameterCode.StatisticsSettings, elementCls: StatisticsSettingsParam, isOptional: true }),
793
+ __metadata("design:type", Array)
794
+ ], GamePlayerSettingsParam.prototype, "playerStatisticsSettings", void 0);
795
+ __decorate([
796
+ GNArrayDataMember({ code: GNParameterCode.DatasSettings, elementCls: DataSettingsParam, isOptional: true }),
797
+ __metadata("design:type", Array)
798
+ ], GamePlayerSettingsParam.prototype, "playerDatasSettings", void 0);
799
+ __decorate([
800
+ GNArrayDataMember({ code: GNParameterCode.CustomDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
801
+ __metadata("design:type", Array)
802
+ ], GamePlayerSettingsParam.prototype, "customDatasSettings", void 0);
803
+ __decorate([
804
+ GNArrayDataMember({ code: GNParameterCode.TagsSettings, elementCls: TagSettingsParam, isOptional: true }),
805
+ __metadata("design:type", Array)
806
+ ], GamePlayerSettingsParam.prototype, "tagsSettings", void 0);
807
+ __decorate([
808
+ GNArrayDataMember({ code: GNParameterCode.CharacterCatalogSettings, elementCls: CharacterCatalogSettingsParam, isOptional: true }),
809
+ __metadata("design:type", Array)
810
+ ], GamePlayerSettingsParam.prototype, "playerCharacterCatalogSettings", void 0);
811
+ __decorate([
812
+ GNArrayDataMember({ code: GNParameterCode.GroupCatalogSettings, elementCls: GroupCatalogSettingsParam, isOptional: true }),
813
+ __metadata("design:type", Array)
814
+ ], GamePlayerSettingsParam.prototype, "playerGroupCatalogSettings", void 0);
815
+ __decorate([
816
+ GNArrayDataMember({ code: GNParameterCode.ItemCatalogSettings, elementCls: ItemCatalogSettingsParam, isOptional: true }),
817
+ __metadata("design:type", Array)
818
+ ], GamePlayerSettingsParam.prototype, "playerItemCatalogSettings", void 0);
819
+ __decorate([
820
+ GNArrayDataMember({ code: GNParameterCode.FriendCatalogSettings, elementCls: FriendCatalogSettingsParam, isOptional: true }),
821
+ __metadata("design:type", Array)
822
+ ], GamePlayerSettingsParam.prototype, "playerFriendCatalogSettings", void 0);
823
+ DashboardModels.GamePlayerSettingsParam = GamePlayerSettingsParam;
824
+ class GroupSettingsParam {
825
+ }
826
+ __decorate([
827
+ GNArrayDataMember({ code: GNParameterCode.CurrencySettings, elementCls: CurrencySettingsParam, isOptional: true }),
828
+ __metadata("design:type", Array)
829
+ ], GroupSettingsParam.prototype, "groupCurrencySettings", void 0);
830
+ __decorate([
831
+ GNArrayDataMember({ code: GNParameterCode.StatisticsSettings, elementCls: StatisticsSettingsParam, isOptional: true }),
832
+ __metadata("design:type", Array)
833
+ ], GroupSettingsParam.prototype, "groupStatisticsSettings", void 0);
834
+ __decorate([
835
+ GNArrayDataMember({ code: GNParameterCode.DatasSettings, elementCls: DataSettingsParam, isOptional: true }),
836
+ __metadata("design:type", Array)
837
+ ], GroupSettingsParam.prototype, "groupDatasSettings", void 0);
838
+ __decorate([
839
+ GNArrayDataMember({ code: GNParameterCode.CustomDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
840
+ __metadata("design:type", Array)
841
+ ], GroupSettingsParam.prototype, "customDatasSettings", void 0);
842
+ __decorate([
843
+ GNArrayDataMember({ code: GNParameterCode.TagsSettings, elementCls: TagSettingsParam, isOptional: true }),
844
+ __metadata("design:type", Array)
845
+ ], GroupSettingsParam.prototype, "tagsSettings", void 0);
846
+ __decorate([
847
+ GNArrayDataMember({ code: GNParameterCode.ItemCatalogSettings, elementCls: ItemCatalogSettingsParam, isOptional: true }),
848
+ __metadata("design:type", Array)
849
+ ], GroupSettingsParam.prototype, "groupItemCatalogSettings", void 0);
850
+ DashboardModels.GroupSettingsParam = GroupSettingsParam;
851
+ class InventorySettingsParam {
852
+ }
853
+ __decorate([
854
+ GNArrayDataMember({ code: GNParameterCode.StatisticsSettings, elementCls: StatisticsSettingsParam, isOptional: true }),
855
+ __metadata("design:type", Array)
856
+ ], InventorySettingsParam.prototype, "inventoryStatisticsSettings", void 0);
857
+ __decorate([
858
+ GNArrayDataMember({ code: GNParameterCode.DatasSettings, elementCls: DataSettingsParam, isOptional: true }),
859
+ __metadata("design:type", Array)
860
+ ], InventorySettingsParam.prototype, "inventoryDatasSettings", void 0);
861
+ __decorate([
862
+ GNArrayDataMember({ code: GNParameterCode.CustomDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
863
+ __metadata("design:type", Array)
864
+ ], InventorySettingsParam.prototype, "customDatasSettings", void 0);
865
+ __decorate([
866
+ GNArrayDataMember({ code: GNParameterCode.TagsSettings, elementCls: TagSettingsParam, isOptional: true }),
867
+ __metadata("design:type", Array)
868
+ ], InventorySettingsParam.prototype, "tagsSettings", void 0);
869
+ DashboardModels.InventorySettingsParam = InventorySettingsParam;
870
+ class GameSettingsParam {
871
+ }
872
+ __decorate([
873
+ GNHashtableDataMember({ code: GNParameterCode.GamePlayerSettings, isOptional: true }),
874
+ __metadata("design:type", GamePlayerSettingsParam)
875
+ ], GameSettingsParam.prototype, "gamePlayerSettings", void 0);
876
+ __decorate([
877
+ GNHashtableDataMember({ code: GNParameterCode.CharacterPlayerSettings, isOptional: true }),
878
+ __metadata("design:type", CharacterPlayerSettingsParam)
879
+ ], GameSettingsParam.prototype, "characterPlayerSettings", void 0);
880
+ __decorate([
881
+ GNHashtableDataMember({ code: GNParameterCode.GroupSettings, isOptional: true }),
882
+ __metadata("design:type", GroupSettingsParam)
883
+ ], GameSettingsParam.prototype, "groupSettings", void 0);
884
+ __decorate([
885
+ GNHashtableDataMember({ code: GNParameterCode.InventorySettings, isOptional: true }),
886
+ __metadata("design:type", InventorySettingsParam)
887
+ ], GameSettingsParam.prototype, "inventorySettings", void 0);
888
+ DashboardModels.GameSettingsParam = GameSettingsParam;
889
+ class GenericServiceSettingsParam {
890
+ }
891
+ __decorate([
892
+ StringDataMember({ code: GNParameterCode.ServiceName, minLength: 2, maxLength: 32 }),
893
+ __metadata("design:type", String)
894
+ ], GenericServiceSettingsParam.prototype, "serviceName", void 0);
895
+ DashboardModels.GenericServiceSettingsParam = GenericServiceSettingsParam;
896
+ class GroupPermissionRulesParam {
897
+ }
898
+ __decorate([
899
+ GNHashtableDataMember({ code: GNParameterCode.AddSegment, isOptional: true }),
900
+ __metadata("design:type", PermissionRulesParam)
901
+ ], GroupPermissionRulesParam.prototype, "addSegment", void 0);
902
+ __decorate([
903
+ GNHashtableDataMember({ code: GNParameterCode.RemoveSegment, isOptional: true }),
904
+ __metadata("design:type", PermissionRulesParam)
905
+ ], GroupPermissionRulesParam.prototype, "removeSegment", void 0);
906
+ __decorate([
907
+ GNHashtableDataMember({ code: GNParameterCode.GetSegment, isOptional: true }),
908
+ __metadata("design:type", PermissionRulesParam)
909
+ ], GroupPermissionRulesParam.prototype, "getSegment", void 0);
910
+ __decorate([
911
+ GNHashtableDataMember({ code: GNParameterCode.SetTag, isOptional: true }),
912
+ __metadata("design:type", PermissionRulesParam)
913
+ ], GroupPermissionRulesParam.prototype, "setTag", void 0);
914
+ __decorate([
915
+ GNHashtableDataMember({ code: GNParameterCode.RemoveTag, isOptional: true }),
916
+ __metadata("design:type", PermissionRulesParam)
917
+ ], GroupPermissionRulesParam.prototype, "removeTag", void 0);
918
+ __decorate([
919
+ GNHashtableDataMember({ code: GNParameterCode.GetTag, isOptional: true }),
920
+ __metadata("design:type", PermissionRulesParam)
921
+ ], GroupPermissionRulesParam.prototype, "getTag", void 0);
922
+ __decorate([
923
+ GNHashtableDataMember({ code: GNParameterCode.GetDisplayName, isOptional: true }),
924
+ __metadata("design:type", PermissionRulesParam)
925
+ ], GroupPermissionRulesParam.prototype, "getDisplayName", void 0);
926
+ __decorate([
927
+ GNHashtableDataMember({ code: GNParameterCode.SetDisplayName, isOptional: true }),
928
+ __metadata("design:type", PermissionRulesParam)
929
+ ], GroupPermissionRulesParam.prototype, "setDisplayName", void 0);
930
+ __decorate([
931
+ GNHashtableDataMember({ code: GNParameterCode.GetTsCreate, isOptional: true }),
932
+ __metadata("design:type", PermissionRulesParam)
933
+ ], GroupPermissionRulesParam.prototype, "getTsCreate", void 0);
934
+ __decorate([
935
+ GNHashtableDataMember({ code: GNParameterCode.SetAvatar, isOptional: true }),
936
+ __metadata("design:type", PermissionRulesParam)
937
+ ], GroupPermissionRulesParam.prototype, "setAvatar", void 0);
938
+ __decorate([
939
+ GNHashtableDataMember({ code: GNParameterCode.GetAvatar, isOptional: true }),
940
+ __metadata("design:type", PermissionRulesParam)
941
+ ], GroupPermissionRulesParam.prototype, "getAvatar", void 0);
942
+ __decorate([
943
+ GNHashtableDataMember({ code: GNParameterCode.SetGroupCurrency, isOptional: true }),
944
+ __metadata("design:type", PermissionRulesParam)
945
+ ], GroupPermissionRulesParam.prototype, "setGroupCurrency", void 0);
946
+ __decorate([
947
+ GNHashtableDataMember({ code: GNParameterCode.GetGroupCurrency, isOptional: true }),
948
+ __metadata("design:type", PermissionRulesParam)
949
+ ], GroupPermissionRulesParam.prototype, "getGroupCurrency", void 0);
950
+ __decorate([
951
+ GNHashtableDataMember({ code: GNParameterCode.SetGroupStatistics, isOptional: true }),
952
+ __metadata("design:type", PermissionRulesParam)
953
+ ], GroupPermissionRulesParam.prototype, "setGroupStatistics", void 0);
954
+ __decorate([
955
+ GNHashtableDataMember({ code: GNParameterCode.GetGroupStatistics, isOptional: true }),
956
+ __metadata("design:type", PermissionRulesParam)
957
+ ], GroupPermissionRulesParam.prototype, "getGroupStatistics", void 0);
958
+ __decorate([
959
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLeaderboard, isOptional: true }),
960
+ __metadata("design:type", PermissionRulesParam)
961
+ ], GroupPermissionRulesParam.prototype, "getStatisticsLeaderboard", void 0);
962
+ __decorate([
963
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLeaderboardAroundGroup, isOptional: true }),
964
+ __metadata("design:type", PermissionRulesParam)
965
+ ], GroupPermissionRulesParam.prototype, "getStatisticsLeaderboardAroundGroup", void 0);
966
+ __decorate([
967
+ GNHashtableDataMember({ code: GNParameterCode.GetCustomData, isOptional: true }),
968
+ __metadata("design:type", PermissionRulesParam)
969
+ ], GroupPermissionRulesParam.prototype, "getCustomData", void 0);
970
+ __decorate([
971
+ GNHashtableDataMember({ code: GNParameterCode.SetCustomData, isOptional: true }),
972
+ __metadata("design:type", PermissionRulesParam)
973
+ ], GroupPermissionRulesParam.prototype, "setCustomData", void 0);
974
+ __decorate([
975
+ GNHashtableDataMember({ code: GNParameterCode.SetGroupData, isOptional: true }),
976
+ __metadata("design:type", PermissionRulesParam)
977
+ ], GroupPermissionRulesParam.prototype, "setGroupData", void 0);
978
+ __decorate([
979
+ GNHashtableDataMember({ code: GNParameterCode.GetGroupData, isOptional: true }),
980
+ __metadata("design:type", PermissionRulesParam)
981
+ ], GroupPermissionRulesParam.prototype, "getGroupData", void 0);
982
+ __decorate([
983
+ GNHashtableDataMember({ code: GNParameterCode.GetGroupInformation, isOptional: true }),
984
+ __metadata("design:type", PermissionRulesParam)
985
+ ], GroupPermissionRulesParam.prototype, "getGroupInformation", void 0);
986
+ __decorate([
987
+ GNHashtableDataMember({ code: GNParameterCode.GetGroupsWithSegment, isOptional: true }),
988
+ __metadata("design:type", PermissionRulesParam)
989
+ ], GroupPermissionRulesParam.prototype, "getGroupsWithSegment", void 0);
990
+ __decorate([
991
+ GNHashtableDataMember({ code: GNParameterCode.GetGroupsWithTag, isOptional: true }),
992
+ __metadata("design:type", PermissionRulesParam)
993
+ ], GroupPermissionRulesParam.prototype, "getGroupsWithTag", void 0);
994
+ __decorate([
995
+ GNHashtableDataMember({ code: GNParameterCode.GetCatalogId, isOptional: true }),
996
+ __metadata("design:type", PermissionRulesParam)
997
+ ], GroupPermissionRulesParam.prototype, "getCatalogId", void 0);
998
+ __decorate([
999
+ GNHashtableDataMember({ code: GNParameterCode.GetRemoveStatus, isOptional: true }),
1000
+ __metadata("design:type", PermissionRulesParam)
1001
+ ], GroupPermissionRulesParam.prototype, "getRemoveStatus", void 0);
1002
+ __decorate([
1003
+ GNHashtableDataMember({ code: GNParameterCode.GetGroupInventory, isOptional: true }),
1004
+ __metadata("design:type", PermissionRulesParam)
1005
+ ], GroupPermissionRulesParam.prototype, "getGroupInventory", void 0);
1006
+ __decorate([
1007
+ GNHashtableDataMember({ code: GNParameterCode.RemoveGroupItem, isOptional: true }),
1008
+ __metadata("design:type", PermissionRulesParam)
1009
+ ], GroupPermissionRulesParam.prototype, "removeGroupItem", void 0);
1010
+ __decorate([
1011
+ GNHashtableDataMember({ code: GNParameterCode.GrantGroupItem, isOptional: true }),
1012
+ __metadata("design:type", PermissionRulesParam)
1013
+ ], GroupPermissionRulesParam.prototype, "grantGroupItem", void 0);
1014
+ __decorate([
1015
+ GNHashtableDataMember({ code: GNParameterCode.GetMembers, isOptional: true }),
1016
+ __metadata("design:type", PermissionRulesParam)
1017
+ ], GroupPermissionRulesParam.prototype, "getMembers", void 0);
1018
+ __decorate([
1019
+ GNHashtableDataMember({ code: GNParameterCode.AddMember, isOptional: true }),
1020
+ __metadata("design:type", PermissionRulesParam)
1021
+ ], GroupPermissionRulesParam.prototype, "addMember", void 0);
1022
+ __decorate([
1023
+ GNHashtableDataMember({ code: GNParameterCode.RemoveMember, isOptional: true }),
1024
+ __metadata("design:type", PermissionRulesParam)
1025
+ ], GroupPermissionRulesParam.prototype, "removeMember", void 0);
1026
+ __decorate([
1027
+ GNHashtableDataMember({ code: GNParameterCode.SendGroupMessage, isOptional: true }),
1028
+ __metadata("design:type", PermissionRulesParam)
1029
+ ], GroupPermissionRulesParam.prototype, "sendGroupMessage", void 0);
1030
+ __decorate([
1031
+ GNHashtableDataMember({ code: GNParameterCode.GetGroupMessage, isOptional: true }),
1032
+ __metadata("design:type", PermissionRulesParam)
1033
+ ], GroupPermissionRulesParam.prototype, "getGroupMessage", void 0);
1034
+ __decorate([
1035
+ GNHashtableDataMember({ code: GNParameterCode.SetRemoveStatus, isOptional: true }),
1036
+ __metadata("design:type", PermissionRulesParam)
1037
+ ], GroupPermissionRulesParam.prototype, "setRemoveStatus", void 0);
1038
+ __decorate([
1039
+ GNHashtableDataMember({ code: GNParameterCode.GetGroupsWithDisplayName, isOptional: true }),
1040
+ __metadata("design:type", PermissionRulesParam)
1041
+ ], GroupPermissionRulesParam.prototype, "getGroupsWithDisplayName", void 0);
1042
+ __decorate([
1043
+ GNHashtableDataMember({ code: GNParameterCode.GetCurrencyLeaderboard, isOptional: true }),
1044
+ __metadata("design:type", PermissionRulesParam)
1045
+ ], GroupPermissionRulesParam.prototype, "getCurrencyLeaderboard", void 0);
1046
+ __decorate([
1047
+ GNHashtableDataMember({ code: GNParameterCode.GetCreateLeaderboard, isOptional: true }),
1048
+ __metadata("design:type", PermissionRulesParam)
1049
+ ], GroupPermissionRulesParam.prototype, "getCreateLeaderboard", void 0);
1050
+ __decorate([
1051
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLog, isOptional: true }),
1052
+ __metadata("design:type", PermissionRulesParam)
1053
+ ], GroupPermissionRulesParam.prototype, "getStatisticsLog", void 0);
1054
+ __decorate([
1055
+ GNHashtableDataMember({ code: GNParameterCode.GetCurrencyLog, isOptional: true }),
1056
+ __metadata("design:type", PermissionRulesParam)
1057
+ ], GroupPermissionRulesParam.prototype, "getCurrencyLog", void 0);
1058
+ DashboardModels.GroupPermissionRulesParam = GroupPermissionRulesParam;
1059
+ class InventoryPermissionRulesParam {
1060
+ }
1061
+ __decorate([
1062
+ GNHashtableDataMember({ code: GNParameterCode.AddSegment, isOptional: true }),
1063
+ __metadata("design:type", PermissionRulesParam)
1064
+ ], InventoryPermissionRulesParam.prototype, "addSegment", void 0);
1065
+ __decorate([
1066
+ GNHashtableDataMember({ code: GNParameterCode.RemoveSegment, isOptional: true }),
1067
+ __metadata("design:type", PermissionRulesParam)
1068
+ ], InventoryPermissionRulesParam.prototype, "removeSegment", void 0);
1069
+ __decorate([
1070
+ GNHashtableDataMember({ code: GNParameterCode.GetSegment, isOptional: true }),
1071
+ __metadata("design:type", PermissionRulesParam)
1072
+ ], InventoryPermissionRulesParam.prototype, "getSegment", void 0);
1073
+ __decorate([
1074
+ GNHashtableDataMember({ code: GNParameterCode.SetTag, isOptional: true }),
1075
+ __metadata("design:type", PermissionRulesParam)
1076
+ ], InventoryPermissionRulesParam.prototype, "setTag", void 0);
1077
+ __decorate([
1078
+ GNHashtableDataMember({ code: GNParameterCode.RemoveTag, isOptional: true }),
1079
+ __metadata("design:type", PermissionRulesParam)
1080
+ ], InventoryPermissionRulesParam.prototype, "removeTag", void 0);
1081
+ __decorate([
1082
+ GNHashtableDataMember({ code: GNParameterCode.GetTag, isOptional: true }),
1083
+ __metadata("design:type", PermissionRulesParam)
1084
+ ], InventoryPermissionRulesParam.prototype, "getTag", void 0);
1085
+ __decorate([
1086
+ GNHashtableDataMember({ code: GNParameterCode.GetDisplayName, isOptional: true }),
1087
+ __metadata("design:type", PermissionRulesParam)
1088
+ ], InventoryPermissionRulesParam.prototype, "getDisplayName", void 0);
1089
+ __decorate([
1090
+ GNHashtableDataMember({ code: GNParameterCode.SetDisplayName, isOptional: true }),
1091
+ __metadata("design:type", PermissionRulesParam)
1092
+ ], InventoryPermissionRulesParam.prototype, "setDisplayName", void 0);
1093
+ __decorate([
1094
+ GNHashtableDataMember({ code: GNParameterCode.GetTsCreate, isOptional: true }),
1095
+ __metadata("design:type", PermissionRulesParam)
1096
+ ], InventoryPermissionRulesParam.prototype, "getTsCreate", void 0);
1097
+ __decorate([
1098
+ GNHashtableDataMember({ code: GNParameterCode.SetAvatar, isOptional: true }),
1099
+ __metadata("design:type", PermissionRulesParam)
1100
+ ], InventoryPermissionRulesParam.prototype, "setAvatar", void 0);
1101
+ __decorate([
1102
+ GNHashtableDataMember({ code: GNParameterCode.GetAvatar, isOptional: true }),
1103
+ __metadata("design:type", PermissionRulesParam)
1104
+ ], InventoryPermissionRulesParam.prototype, "getAvatar", void 0);
1105
+ __decorate([
1106
+ GNHashtableDataMember({ code: GNParameterCode.SetItemStatistics, isOptional: true }),
1107
+ __metadata("design:type", PermissionRulesParam)
1108
+ ], InventoryPermissionRulesParam.prototype, "setItemStatistics", void 0);
1109
+ __decorate([
1110
+ GNHashtableDataMember({ code: GNParameterCode.GetItemStatistics, isOptional: true }),
1111
+ __metadata("design:type", PermissionRulesParam)
1112
+ ], InventoryPermissionRulesParam.prototype, "getItemStatistics", void 0);
1113
+ __decorate([
1114
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLeaderboard, isOptional: true }),
1115
+ __metadata("design:type", PermissionRulesParam)
1116
+ ], InventoryPermissionRulesParam.prototype, "getStatisticsLeaderboard", void 0);
1117
+ __decorate([
1118
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLeaderboardAroundItem, isOptional: true }),
1119
+ __metadata("design:type", PermissionRulesParam)
1120
+ ], InventoryPermissionRulesParam.prototype, "getStatisticsLeaderboardAroundItem", void 0);
1121
+ __decorate([
1122
+ GNHashtableDataMember({ code: GNParameterCode.GetCustomData, isOptional: true }),
1123
+ __metadata("design:type", PermissionRulesParam)
1124
+ ], InventoryPermissionRulesParam.prototype, "getCustomData", void 0);
1125
+ __decorate([
1126
+ GNHashtableDataMember({ code: GNParameterCode.SetCustomData, isOptional: true }),
1127
+ __metadata("design:type", PermissionRulesParam)
1128
+ ], InventoryPermissionRulesParam.prototype, "setCustomData", void 0);
1129
+ __decorate([
1130
+ GNHashtableDataMember({ code: GNParameterCode.SetItemData, isOptional: true }),
1131
+ __metadata("design:type", PermissionRulesParam)
1132
+ ], InventoryPermissionRulesParam.prototype, "setItemData", void 0);
1133
+ __decorate([
1134
+ GNHashtableDataMember({ code: GNParameterCode.GetItemData, isOptional: true }),
1135
+ __metadata("design:type", PermissionRulesParam)
1136
+ ], InventoryPermissionRulesParam.prototype, "getItemData", void 0);
1137
+ __decorate([
1138
+ GNHashtableDataMember({ code: GNParameterCode.GetItemInformation, isOptional: true }),
1139
+ __metadata("design:type", PermissionRulesParam)
1140
+ ], InventoryPermissionRulesParam.prototype, "getItemInformation", void 0);
1141
+ __decorate([
1142
+ GNHashtableDataMember({ code: GNParameterCode.GetItemsWithSegment, isOptional: true }),
1143
+ __metadata("design:type", PermissionRulesParam)
1144
+ ], InventoryPermissionRulesParam.prototype, "getItemsWithSegment", void 0);
1145
+ __decorate([
1146
+ GNHashtableDataMember({ code: GNParameterCode.GetItemsWithTag, isOptional: true }),
1147
+ __metadata("design:type", PermissionRulesParam)
1148
+ ], InventoryPermissionRulesParam.prototype, "getItemsWithTag", void 0);
1149
+ __decorate([
1150
+ GNHashtableDataMember({ code: GNParameterCode.GetCatalogId, isOptional: true }),
1151
+ __metadata("design:type", PermissionRulesParam)
1152
+ ], InventoryPermissionRulesParam.prototype, "getCatalogId", void 0);
1153
+ __decorate([
1154
+ GNHashtableDataMember({ code: GNParameterCode.GetClassId, isOptional: true }),
1155
+ __metadata("design:type", PermissionRulesParam)
1156
+ ], InventoryPermissionRulesParam.prototype, "getClassId", void 0);
1157
+ __decorate([
1158
+ GNHashtableDataMember({ code: GNParameterCode.GetItemType, isOptional: true }),
1159
+ __metadata("design:type", PermissionRulesParam)
1160
+ ], InventoryPermissionRulesParam.prototype, "getItemType", void 0);
1161
+ __decorate([
1162
+ GNHashtableDataMember({ code: GNParameterCode.GetAmount, isOptional: true }),
1163
+ __metadata("design:type", PermissionRulesParam)
1164
+ ], InventoryPermissionRulesParam.prototype, "getAmount", void 0);
1165
+ __decorate([
1166
+ GNHashtableDataMember({ code: GNParameterCode.GetOwner, isOptional: true }),
1167
+ __metadata("design:type", PermissionRulesParam)
1168
+ ], InventoryPermissionRulesParam.prototype, "getOwner", void 0);
1169
+ __decorate([
1170
+ GNHashtableDataMember({ code: GNParameterCode.GetRemoveStatus, isOptional: true }),
1171
+ __metadata("design:type", PermissionRulesParam)
1172
+ ], InventoryPermissionRulesParam.prototype, "getRemoveStatus", void 0);
1173
+ __decorate([
1174
+ GNHashtableDataMember({ code: GNParameterCode.SetAmount, isOptional: true }),
1175
+ __metadata("design:type", PermissionRulesParam)
1176
+ ], InventoryPermissionRulesParam.prototype, "setAmount", void 0);
1177
+ __decorate([
1178
+ GNHashtableDataMember({ code: GNParameterCode.SetOwner, isOptional: true }),
1179
+ __metadata("design:type", PermissionRulesParam)
1180
+ ], InventoryPermissionRulesParam.prototype, "setOwner", void 0);
1181
+ __decorate([
1182
+ GNHashtableDataMember({ code: GNParameterCode.SetRemoveStatus, isOptional: true }),
1183
+ __metadata("design:type", PermissionRulesParam)
1184
+ ], InventoryPermissionRulesParam.prototype, "setRemoveStatus", void 0);
1185
+ __decorate([
1186
+ GNHashtableDataMember({ code: GNParameterCode.GetItemsWithDisplayName, isOptional: true }),
1187
+ __metadata("design:type", PermissionRulesParam)
1188
+ ], InventoryPermissionRulesParam.prototype, "getItemsWithDisplayName", void 0);
1189
+ __decorate([
1190
+ GNHashtableDataMember({ code: GNParameterCode.GetCreateLeaderboard, isOptional: true }),
1191
+ __metadata("design:type", PermissionRulesParam)
1192
+ ], InventoryPermissionRulesParam.prototype, "getCreateLeaderboard", void 0);
1193
+ __decorate([
1194
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLog, isOptional: true }),
1195
+ __metadata("design:type", PermissionRulesParam)
1196
+ ], InventoryPermissionRulesParam.prototype, "getStatisticsLog", void 0);
1197
+ DashboardModels.InventoryPermissionRulesParam = InventoryPermissionRulesParam;
1198
+ class MasterAdminPermissionRulesParam {
1199
+ }
1200
+ __decorate([
1201
+ GNHashtableDataMember({ code: GNParameterCode.SetMasterGameSettings, isOptional: true }),
1202
+ __metadata("design:type", PermissionRulesParam)
1203
+ ], MasterAdminPermissionRulesParam.prototype, "setMasterGameSettings", void 0);
1204
+ __decorate([
1205
+ GNHashtableDataMember({ code: GNParameterCode.GrantAdminAccount, isOptional: true }),
1206
+ __metadata("design:type", PermissionRulesParam)
1207
+ ], MasterAdminPermissionRulesParam.prototype, "grantAdminAccount", void 0);
1208
+ __decorate([
1209
+ GNHashtableDataMember({ code: GNParameterCode.RemoveAdminAccount, isOptional: true }),
1210
+ __metadata("design:type", PermissionRulesParam)
1211
+ ], MasterAdminPermissionRulesParam.prototype, "removeAdminAccount", void 0);
1212
+ __decorate([
1213
+ GNHashtableDataMember({ code: GNParameterCode.SetPasswordAdminAccount, isOptional: true }),
1214
+ __metadata("design:type", PermissionRulesParam)
1215
+ ], MasterAdminPermissionRulesParam.prototype, "setPasswordAdminAccount", void 0);
1216
+ __decorate([
1217
+ GNHashtableDataMember({ code: GNParameterCode.SetSecretKeyAdminAccount, isOptional: true }),
1218
+ __metadata("design:type", PermissionRulesParam)
1219
+ ], MasterAdminPermissionRulesParam.prototype, "setSecretKeyAdminAccount", void 0);
1220
+ __decorate([
1221
+ GNHashtableDataMember({ code: GNParameterCode.SetGameInformation, isOptional: true }),
1222
+ __metadata("design:type", PermissionRulesParam)
1223
+ ], MasterAdminPermissionRulesParam.prototype, "setGameInformation", void 0);
1224
+ __decorate([
1225
+ GNHashtableDataMember({ code: GNParameterCode.GrantGame, isOptional: true }),
1226
+ __metadata("design:type", PermissionRulesParam)
1227
+ ], MasterAdminPermissionRulesParam.prototype, "grantGame", void 0);
1228
+ __decorate([
1229
+ GNHashtableDataMember({ code: GNParameterCode.ChangePasswordAdminAccount, isOptional: true }),
1230
+ __metadata("design:type", PermissionRulesParam)
1231
+ ], MasterAdminPermissionRulesParam.prototype, "changePasswordAdminAccount", void 0);
1232
+ __decorate([
1233
+ GNHashtableDataMember({ code: GNParameterCode.GetAdminAccountList, isOptional: true }),
1234
+ __metadata("design:type", PermissionRulesParam)
1235
+ ], MasterAdminPermissionRulesParam.prototype, "getAdminAccountList", void 0);
1236
+ __decorate([
1237
+ GNHashtableDataMember({ code: GNParameterCode.GetGameInformation, isOptional: true }),
1238
+ __metadata("design:type", PermissionRulesParam)
1239
+ ], MasterAdminPermissionRulesParam.prototype, "getGameInformation", void 0);
1240
+ __decorate([
1241
+ GNHashtableDataMember({ code: GNParameterCode.GetGameList, isOptional: true }),
1242
+ __metadata("design:type", PermissionRulesParam)
1243
+ ], MasterAdminPermissionRulesParam.prototype, "getGameList", void 0);
1244
+ __decorate([
1245
+ GNHashtableDataMember({ code: GNParameterCode.GetMasterGameSettings, isOptional: true }),
1246
+ __metadata("design:type", PermissionRulesParam)
1247
+ ], MasterAdminPermissionRulesParam.prototype, "getMasterGameSettings", void 0);
1248
+ __decorate([
1249
+ GNHashtableDataMember({ code: GNParameterCode.GetServerLog, isOptional: true }),
1250
+ __metadata("design:type", PermissionRulesParam)
1251
+ ], MasterAdminPermissionRulesParam.prototype, "getServerLog", void 0);
1252
+ __decorate([
1253
+ GNHashtableDataMember({ code: GNParameterCode.GetSecretInfoInformation, isOptional: true }),
1254
+ __metadata("design:type", PermissionRulesParam)
1255
+ ], MasterAdminPermissionRulesParam.prototype, "getSecretInfoInformation", void 0);
1256
+ __decorate([
1257
+ GNHashtableDataMember({ code: GNParameterCode.GetSecretInfoList, isOptional: true }),
1258
+ __metadata("design:type", PermissionRulesParam)
1259
+ ], MasterAdminPermissionRulesParam.prototype, "getSecretInfoList", void 0);
1260
+ __decorate([
1261
+ GNHashtableDataMember({ code: GNParameterCode.GrantSecretInfo, isOptional: true }),
1262
+ __metadata("design:type", PermissionRulesParam)
1263
+ ], MasterAdminPermissionRulesParam.prototype, "grantSecretInfo", void 0);
1264
+ __decorate([
1265
+ GNHashtableDataMember({ code: GNParameterCode.SetSecretInfoInformation, isOptional: true }),
1266
+ __metadata("design:type", PermissionRulesParam)
1267
+ ], MasterAdminPermissionRulesParam.prototype, "setSecretInfoInformation", void 0);
1268
+ __decorate([
1269
+ GNHashtableDataMember({ code: GNParameterCode.GetUsernameAdminAccount, isOptional: true }),
1270
+ __metadata("design:type", PermissionRulesParam)
1271
+ ], MasterAdminPermissionRulesParam.prototype, "getUsernameAdminAccount", void 0);
1272
+ __decorate([
1273
+ GNHashtableDataMember({ code: GNParameterCode.GetAnalytics, isOptional: true }),
1274
+ __metadata("design:type", PermissionRulesParam)
1275
+ ], MasterAdminPermissionRulesParam.prototype, "getAnalytics", void 0);
1276
+ __decorate([
1277
+ GNHashtableDataMember({ code: GNParameterCode.GetEventCallbackCloudScript, isOptional: true }),
1278
+ __metadata("design:type", PermissionRulesParam)
1279
+ ], MasterAdminPermissionRulesParam.prototype, "getEventCallbackCloudScript", void 0);
1280
+ __decorate([
1281
+ GNHashtableDataMember({ code: GNParameterCode.SetEventCallbackCloudScript, isOptional: true }),
1282
+ __metadata("design:type", PermissionRulesParam)
1283
+ ], MasterAdminPermissionRulesParam.prototype, "setEventCallbackCloudScript", void 0);
1284
+ __decorate([
1285
+ GNHashtableDataMember({ code: GNParameterCode.ResetStatisticsLeaderboard, isOptional: true }),
1286
+ __metadata("design:type", PermissionRulesParam)
1287
+ ], MasterAdminPermissionRulesParam.prototype, "resetStatisticsLeaderboard", void 0);
1288
+ __decorate([
1289
+ GNHashtableDataMember({ code: GNParameterCode.GetBackupStatisticsLeaderboardVersion, isOptional: true }),
1290
+ __metadata("design:type", PermissionRulesParam)
1291
+ ], MasterAdminPermissionRulesParam.prototype, "getBackupStatisticsLeaderboardVersion", void 0);
1292
+ __decorate([
1293
+ GNHashtableDataMember({ code: GNParameterCode.GetServerGameData, isOptional: true }),
1294
+ __metadata("design:type", PermissionRulesParam)
1295
+ ], MasterAdminPermissionRulesParam.prototype, "getServerGameData", void 0);
1296
+ DashboardModels.MasterAdminPermissionRulesParam = MasterAdminPermissionRulesParam;
1297
+ class MultiplayerPermissionRulesParam {
1298
+ }
1299
+ __decorate([
1300
+ GNHashtableDataMember({ code: GNParameterCode.CancelAllMatchmakingTicket, isOptional: true }),
1301
+ __metadata("design:type", PermissionRulesParam)
1302
+ ], MultiplayerPermissionRulesParam.prototype, "cancelAllMatchmakingTicket", void 0);
1303
+ __decorate([
1304
+ GNHashtableDataMember({ code: GNParameterCode.CancelMatchmakingTicket, isOptional: true }),
1305
+ __metadata("design:type", PermissionRulesParam)
1306
+ ], MultiplayerPermissionRulesParam.prototype, "cancelMatchmakingTicket", void 0);
1307
+ __decorate([
1308
+ GNHashtableDataMember({ code: GNParameterCode.CreateMatchmakingTicket, isOptional: true }),
1309
+ __metadata("design:type", PermissionRulesParam)
1310
+ ], MultiplayerPermissionRulesParam.prototype, "createMatchmakingTicket", void 0);
1311
+ __decorate([
1312
+ GNHashtableDataMember({ code: GNParameterCode.GetMatchmakingTicket, isOptional: true }),
1313
+ __metadata("design:type", PermissionRulesParam)
1314
+ ], MultiplayerPermissionRulesParam.prototype, "getMatchmakingTicket", void 0);
1315
+ __decorate([
1316
+ GNHashtableDataMember({ code: GNParameterCode.GetMatch, isOptional: true }),
1317
+ __metadata("design:type", PermissionRulesParam)
1318
+ ], MultiplayerPermissionRulesParam.prototype, "getMatch", void 0);
1319
+ __decorate([
1320
+ GNHashtableDataMember({ code: GNParameterCode.GetQueueStatistics, isOptional: true }),
1321
+ __metadata("design:type", PermissionRulesParam)
1322
+ ], MultiplayerPermissionRulesParam.prototype, "getQueueStatistics", void 0);
1323
+ __decorate([
1324
+ GNHashtableDataMember({ code: GNParameterCode.JoinMatchmakingTicket, isOptional: true }),
1325
+ __metadata("design:type", PermissionRulesParam)
1326
+ ], MultiplayerPermissionRulesParam.prototype, "joinMatchmakingTicket", void 0);
1327
+ __decorate([
1328
+ GNHashtableDataMember({ code: GNParameterCode.ListMatchmakingTicketsForPlayer, isOptional: true }),
1329
+ __metadata("design:type", PermissionRulesParam)
1330
+ ], MultiplayerPermissionRulesParam.prototype, "listMatchmakingTicketsForPlayer", void 0);
1331
+ __decorate([
1332
+ GNHashtableDataMember({ code: GNParameterCode.GetAllMatchmakingTicket, isOptional: true }),
1333
+ __metadata("design:type", PermissionRulesParam)
1334
+ ], MultiplayerPermissionRulesParam.prototype, "getAllMatchmakingTicket", void 0);
1335
+ __decorate([
1336
+ GNHashtableDataMember({ code: GNParameterCode.GetAllMatch, isOptional: true }),
1337
+ __metadata("design:type", PermissionRulesParam)
1338
+ ], MultiplayerPermissionRulesParam.prototype, "getAllMatch", void 0);
1339
+ DashboardModels.MultiplayerPermissionRulesParam = MultiplayerPermissionRulesParam;
1340
+ class MasterPlayerPermissionRulesParam {
1341
+ }
1342
+ __decorate([
1343
+ GNHashtableDataMember({ code: GNParameterCode.LinkAccount, isOptional: true }),
1344
+ __metadata("design:type", PermissionRulesParam)
1345
+ ], MasterPlayerPermissionRulesParam.prototype, "linkAccount", void 0);
1346
+ __decorate([
1347
+ GNHashtableDataMember({ code: GNParameterCode.LinkAndroidDeviceId, isOptional: true }),
1348
+ __metadata("design:type", PermissionRulesParam)
1349
+ ], MasterPlayerPermissionRulesParam.prototype, "linkAndroidDeviceId", void 0);
1350
+ __decorate([
1351
+ GNHashtableDataMember({ code: GNParameterCode.LinkApple, isOptional: true }),
1352
+ __metadata("design:type", PermissionRulesParam)
1353
+ ], MasterPlayerPermissionRulesParam.prototype, "linkApple", void 0);
1354
+ __decorate([
1355
+ GNHashtableDataMember({ code: GNParameterCode.LinkCustomDeviceId, isOptional: true }),
1356
+ __metadata("design:type", PermissionRulesParam)
1357
+ ], MasterPlayerPermissionRulesParam.prototype, "linkCustomDeviceId", void 0);
1358
+ __decorate([
1359
+ GNHashtableDataMember({ code: GNParameterCode.LinkCustomId, isOptional: true }),
1360
+ __metadata("design:type", PermissionRulesParam)
1361
+ ], MasterPlayerPermissionRulesParam.prototype, "linkCustomId", void 0);
1362
+ __decorate([
1363
+ GNHashtableDataMember({ code: GNParameterCode.LinkEditorDeviceId, isOptional: true }),
1364
+ __metadata("design:type", PermissionRulesParam)
1365
+ ], MasterPlayerPermissionRulesParam.prototype, "linkEditorDeviceId", void 0);
1366
+ __decorate([
1367
+ GNHashtableDataMember({ code: GNParameterCode.LinkFacebook, isOptional: true }),
1368
+ __metadata("design:type", PermissionRulesParam)
1369
+ ], MasterPlayerPermissionRulesParam.prototype, "linkFacebook", void 0);
1370
+ __decorate([
1371
+ GNHashtableDataMember({ code: GNParameterCode.LinkGenericService, isOptional: true }),
1372
+ __metadata("design:type", PermissionRulesParam)
1373
+ ], MasterPlayerPermissionRulesParam.prototype, "linkGenericService", void 0);
1374
+ __decorate([
1375
+ GNHashtableDataMember({ code: GNParameterCode.LinkGoogle, isOptional: true }),
1376
+ __metadata("design:type", PermissionRulesParam)
1377
+ ], MasterPlayerPermissionRulesParam.prototype, "linkGoogle", void 0);
1378
+ __decorate([
1379
+ GNHashtableDataMember({ code: GNParameterCode.LinkGooglePlayGameService, isOptional: true }),
1380
+ __metadata("design:type", PermissionRulesParam)
1381
+ ], MasterPlayerPermissionRulesParam.prototype, "linkGooglePlayGameService", void 0);
1382
+ __decorate([
1383
+ GNHashtableDataMember({ code: GNParameterCode.LinkGameCenter, isOptional: true }),
1384
+ __metadata("design:type", PermissionRulesParam)
1385
+ ], MasterPlayerPermissionRulesParam.prototype, "linkGameCenter", void 0);
1386
+ __decorate([
1387
+ GNHashtableDataMember({ code: GNParameterCode.LinkiOSDeviceId, isOptional: true }),
1388
+ __metadata("design:type", PermissionRulesParam)
1389
+ ], MasterPlayerPermissionRulesParam.prototype, "linkiOSDeviceId", void 0);
1390
+ __decorate([
1391
+ GNHashtableDataMember({ code: GNParameterCode.LinkLinuxDeviceId, isOptional: true }),
1392
+ __metadata("design:type", PermissionRulesParam)
1393
+ ], MasterPlayerPermissionRulesParam.prototype, "linkLinuxDeviceId", void 0);
1394
+ __decorate([
1395
+ GNHashtableDataMember({ code: GNParameterCode.LinkMacOSDeviceId, isOptional: true }),
1396
+ __metadata("design:type", PermissionRulesParam)
1397
+ ], MasterPlayerPermissionRulesParam.prototype, "linkMacOSDeviceId", void 0);
1398
+ __decorate([
1399
+ GNHashtableDataMember({ code: GNParameterCode.LinkWindowsDeviceId, isOptional: true }),
1400
+ __metadata("design:type", PermissionRulesParam)
1401
+ ], MasterPlayerPermissionRulesParam.prototype, "linkWindowsDeviceId", void 0);
1402
+ __decorate([
1403
+ GNHashtableDataMember({ code: GNParameterCode.LinkWindowsPhoneDeviceId, isOptional: true }),
1404
+ __metadata("design:type", PermissionRulesParam)
1405
+ ], MasterPlayerPermissionRulesParam.prototype, "linkWindowsPhoneDeviceId", void 0);
1406
+ __decorate([
1407
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkAccount, isOptional: true }),
1408
+ __metadata("design:type", PermissionRulesParam)
1409
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkAccount", void 0);
1410
+ __decorate([
1411
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkAndroidDeviceId, isOptional: true }),
1412
+ __metadata("design:type", PermissionRulesParam)
1413
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkAndroidDeviceId", void 0);
1414
+ __decorate([
1415
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkApple, isOptional: true }),
1416
+ __metadata("design:type", PermissionRulesParam)
1417
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkApple", void 0);
1418
+ __decorate([
1419
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkCustomDeviceId, isOptional: true }),
1420
+ __metadata("design:type", PermissionRulesParam)
1421
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkCustomDeviceId", void 0);
1422
+ __decorate([
1423
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkCustomId, isOptional: true }),
1424
+ __metadata("design:type", PermissionRulesParam)
1425
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkCustomId", void 0);
1426
+ __decorate([
1427
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkEditorDeviceId, isOptional: true }),
1428
+ __metadata("design:type", PermissionRulesParam)
1429
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkEditorDeviceId", void 0);
1430
+ __decorate([
1431
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkFacebook, isOptional: true }),
1432
+ __metadata("design:type", PermissionRulesParam)
1433
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkFacebook", void 0);
1434
+ __decorate([
1435
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkGenericService, isOptional: true }),
1436
+ __metadata("design:type", PermissionRulesParam)
1437
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkGenericService", void 0);
1438
+ __decorate([
1439
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkGoogle, isOptional: true }),
1440
+ __metadata("design:type", PermissionRulesParam)
1441
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkGoogle", void 0);
1442
+ __decorate([
1443
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkGooglePlayGameService, isOptional: true }),
1444
+ __metadata("design:type", PermissionRulesParam)
1445
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkGooglePlayGameService", void 0);
1446
+ __decorate([
1447
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkGameCenter, isOptional: true }),
1448
+ __metadata("design:type", PermissionRulesParam)
1449
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkGameCenter", void 0);
1450
+ __decorate([
1451
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkiOSDeviceId, isOptional: true }),
1452
+ __metadata("design:type", PermissionRulesParam)
1453
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkiOSDeviceId", void 0);
1454
+ __decorate([
1455
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkLinuxDeviceId, isOptional: true }),
1456
+ __metadata("design:type", PermissionRulesParam)
1457
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkLinuxDeviceId", void 0);
1458
+ __decorate([
1459
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkMacOSDeviceId, isOptional: true }),
1460
+ __metadata("design:type", PermissionRulesParam)
1461
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkMacOSDeviceId", void 0);
1462
+ __decorate([
1463
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkWindowsDeviceId, isOptional: true }),
1464
+ __metadata("design:type", PermissionRulesParam)
1465
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkWindowsDeviceId", void 0);
1466
+ __decorate([
1467
+ GNHashtableDataMember({ code: GNParameterCode.UnlinkWindowsPhoneDeviceId, isOptional: true }),
1468
+ __metadata("design:type", PermissionRulesParam)
1469
+ ], MasterPlayerPermissionRulesParam.prototype, "unlinkWindowsPhoneDeviceId", void 0);
1470
+ __decorate([
1471
+ GNHashtableDataMember({ code: GNParameterCode.AddSegment, isOptional: true }),
1472
+ __metadata("design:type", PermissionRulesParam)
1473
+ ], MasterPlayerPermissionRulesParam.prototype, "addSegment", void 0);
1474
+ __decorate([
1475
+ GNHashtableDataMember({ code: GNParameterCode.RemoveSegment, isOptional: true }),
1476
+ __metadata("design:type", PermissionRulesParam)
1477
+ ], MasterPlayerPermissionRulesParam.prototype, "removeSegment", void 0);
1478
+ __decorate([
1479
+ GNHashtableDataMember({ code: GNParameterCode.GetSegment, isOptional: true }),
1480
+ __metadata("design:type", PermissionRulesParam)
1481
+ ], MasterPlayerPermissionRulesParam.prototype, "getSegment", void 0);
1482
+ __decorate([
1483
+ GNHashtableDataMember({ code: GNParameterCode.SetTag, isOptional: true }),
1484
+ __metadata("design:type", PermissionRulesParam)
1485
+ ], MasterPlayerPermissionRulesParam.prototype, "setTag", void 0);
1486
+ __decorate([
1487
+ GNHashtableDataMember({ code: GNParameterCode.RemoveTag, isOptional: true }),
1488
+ __metadata("design:type", PermissionRulesParam)
1489
+ ], MasterPlayerPermissionRulesParam.prototype, "removeTag", void 0);
1490
+ __decorate([
1491
+ GNHashtableDataMember({ code: GNParameterCode.GetTag, isOptional: true }),
1492
+ __metadata("design:type", PermissionRulesParam)
1493
+ ], MasterPlayerPermissionRulesParam.prototype, "getTag", void 0);
1494
+ __decorate([
1495
+ GNHashtableDataMember({ code: GNParameterCode.GetDisplayName, isOptional: true }),
1496
+ __metadata("design:type", PermissionRulesParam)
1497
+ ], MasterPlayerPermissionRulesParam.prototype, "getDisplayName", void 0);
1498
+ __decorate([
1499
+ GNHashtableDataMember({ code: GNParameterCode.SetDisplayName, isOptional: true }),
1500
+ __metadata("design:type", PermissionRulesParam)
1501
+ ], MasterPlayerPermissionRulesParam.prototype, "setDisplayName", void 0);
1502
+ __decorate([
1503
+ GNHashtableDataMember({ code: GNParameterCode.GetTsCreate, isOptional: true }),
1504
+ __metadata("design:type", PermissionRulesParam)
1505
+ ], MasterPlayerPermissionRulesParam.prototype, "getTsCreate", void 0);
1506
+ __decorate([
1507
+ GNHashtableDataMember({ code: GNParameterCode.GetIpAddressCreate, isOptional: true }),
1508
+ __metadata("design:type", PermissionRulesParam)
1509
+ ], MasterPlayerPermissionRulesParam.prototype, "getIpAddressCreate", void 0);
1510
+ __decorate([
1511
+ GNHashtableDataMember({ code: GNParameterCode.SetTsLastLogin, isOptional: true }),
1512
+ __metadata("design:type", PermissionRulesParam)
1513
+ ], MasterPlayerPermissionRulesParam.prototype, "setTsLastLogin", void 0);
1514
+ __decorate([
1515
+ GNHashtableDataMember({ code: GNParameterCode.GetTsLastLogin, isOptional: true }),
1516
+ __metadata("design:type", PermissionRulesParam)
1517
+ ], MasterPlayerPermissionRulesParam.prototype, "getTsLastLogin", void 0);
1518
+ __decorate([
1519
+ GNHashtableDataMember({ code: GNParameterCode.SetPlayerBan, isOptional: true }),
1520
+ __metadata("design:type", PermissionRulesParam)
1521
+ ], MasterPlayerPermissionRulesParam.prototype, "setPlayerBan", void 0);
1522
+ __decorate([
1523
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerBan, isOptional: true }),
1524
+ __metadata("design:type", PermissionRulesParam)
1525
+ ], MasterPlayerPermissionRulesParam.prototype, "getPlayerBan", void 0);
1526
+ __decorate([
1527
+ GNHashtableDataMember({ code: GNParameterCode.SetCountryCode, isOptional: true }),
1528
+ __metadata("design:type", PermissionRulesParam)
1529
+ ], MasterPlayerPermissionRulesParam.prototype, "setCountryCode", void 0);
1530
+ __decorate([
1531
+ GNHashtableDataMember({ code: GNParameterCode.GetCountryCode, isOptional: true }),
1532
+ __metadata("design:type", PermissionRulesParam)
1533
+ ], MasterPlayerPermissionRulesParam.prototype, "getCountryCode", void 0);
1534
+ __decorate([
1535
+ GNHashtableDataMember({ code: GNParameterCode.ChangeAccountPassword, isOptional: true }),
1536
+ __metadata("design:type", PermissionRulesParam)
1537
+ ], MasterPlayerPermissionRulesParam.prototype, "changeAccountPassword", void 0);
1538
+ __decorate([
1539
+ GNHashtableDataMember({ code: GNParameterCode.ResetAccountPassword, isOptional: true }),
1540
+ __metadata("design:type", PermissionRulesParam)
1541
+ ], MasterPlayerPermissionRulesParam.prototype, "resetAccountPassword", void 0);
1542
+ __decorate([
1543
+ GNHashtableDataMember({ code: GNParameterCode.SetAvatar, isOptional: true }),
1544
+ __metadata("design:type", PermissionRulesParam)
1545
+ ], MasterPlayerPermissionRulesParam.prototype, "setAvatar", void 0);
1546
+ __decorate([
1547
+ GNHashtableDataMember({ code: GNParameterCode.GetAvatar, isOptional: true }),
1548
+ __metadata("design:type", PermissionRulesParam)
1549
+ ], MasterPlayerPermissionRulesParam.prototype, "getAvatar", void 0);
1550
+ __decorate([
1551
+ GNHashtableDataMember({ code: GNParameterCode.SetPlayerCurrency, isOptional: true }),
1552
+ __metadata("design:type", PermissionRulesParam)
1553
+ ], MasterPlayerPermissionRulesParam.prototype, "setPlayerCurrency", void 0);
1554
+ __decorate([
1555
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerCurrency, isOptional: true }),
1556
+ __metadata("design:type", PermissionRulesParam)
1557
+ ], MasterPlayerPermissionRulesParam.prototype, "getPlayerCurrency", void 0);
1558
+ __decorate([
1559
+ GNHashtableDataMember({ code: GNParameterCode.SetPlayerStatistics, isOptional: true }),
1560
+ __metadata("design:type", PermissionRulesParam)
1561
+ ], MasterPlayerPermissionRulesParam.prototype, "setPlayerStatistics", void 0);
1562
+ __decorate([
1563
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerStatistics, isOptional: true }),
1564
+ __metadata("design:type", PermissionRulesParam)
1565
+ ], MasterPlayerPermissionRulesParam.prototype, "getPlayerStatistics", void 0);
1566
+ __decorate([
1567
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLeaderboard, isOptional: true }),
1568
+ __metadata("design:type", PermissionRulesParam)
1569
+ ], MasterPlayerPermissionRulesParam.prototype, "getStatisticsLeaderboard", void 0);
1570
+ __decorate([
1571
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLeaderboardAroundPlayer, isOptional: true }),
1572
+ __metadata("design:type", PermissionRulesParam)
1573
+ ], MasterPlayerPermissionRulesParam.prototype, "getStatisticsLeaderboardAroundPlayer", void 0);
1574
+ __decorate([
1575
+ GNHashtableDataMember({ code: GNParameterCode.GetCustomData, isOptional: true }),
1576
+ __metadata("design:type", PermissionRulesParam)
1577
+ ], MasterPlayerPermissionRulesParam.prototype, "getCustomData", void 0);
1578
+ __decorate([
1579
+ GNHashtableDataMember({ code: GNParameterCode.SetCustomData, isOptional: true }),
1580
+ __metadata("design:type", PermissionRulesParam)
1581
+ ], MasterPlayerPermissionRulesParam.prototype, "setCustomData", void 0);
1582
+ __decorate([
1583
+ GNHashtableDataMember({ code: GNParameterCode.SetPlayerData, isOptional: true }),
1584
+ __metadata("design:type", PermissionRulesParam)
1585
+ ], MasterPlayerPermissionRulesParam.prototype, "setPlayerData", void 0);
1586
+ __decorate([
1587
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerData, isOptional: true }),
1588
+ __metadata("design:type", PermissionRulesParam)
1589
+ ], MasterPlayerPermissionRulesParam.prototype, "getPlayerData", void 0);
1590
+ __decorate([
1591
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayerInformation, isOptional: true }),
1592
+ __metadata("design:type", PermissionRulesParam)
1593
+ ], MasterPlayerPermissionRulesParam.prototype, "getPlayerInformation", void 0);
1594
+ __decorate([
1595
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithApple, isOptional: true }),
1596
+ __metadata("design:type", PermissionRulesParam)
1597
+ ], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithApple", void 0);
1598
+ __decorate([
1599
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithFacebook, isOptional: true }),
1600
+ __metadata("design:type", PermissionRulesParam)
1601
+ ], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithFacebook", void 0);
1602
+ __decorate([
1603
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithGoogle, isOptional: true }),
1604
+ __metadata("design:type", PermissionRulesParam)
1605
+ ], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithGoogle", void 0);
1606
+ __decorate([
1607
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithGenericService, isOptional: true }),
1608
+ __metadata("design:type", PermissionRulesParam)
1609
+ ], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithGenericService", void 0);
1610
+ __decorate([
1611
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithSegment, isOptional: true }),
1612
+ __metadata("design:type", PermissionRulesParam)
1613
+ ], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithSegment", void 0);
1614
+ __decorate([
1615
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithTag, isOptional: true }),
1616
+ __metadata("design:type", PermissionRulesParam)
1617
+ ], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithTag", void 0);
1618
+ __decorate([
1619
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithGooglePlayGameService, isOptional: true }),
1620
+ __metadata("design:type", PermissionRulesParam)
1621
+ ], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithGooglePlayGameService", void 0);
1622
+ __decorate([
1623
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithGameCenter, isOptional: true }),
1624
+ __metadata("design:type", PermissionRulesParam)
1625
+ ], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithGameCenter", void 0);
1626
+ __decorate([
1627
+ GNHashtableDataMember({ code: GNParameterCode.GetExternal, isOptional: true }),
1628
+ __metadata("design:type", PermissionRulesParam)
1629
+ ], MasterPlayerPermissionRulesParam.prototype, "getExternal", void 0);
1630
+ __decorate([
1631
+ GNHashtableDataMember({ code: GNParameterCode.GetPlayersWithDisplayName, isOptional: true }),
1632
+ __metadata("design:type", PermissionRulesParam)
1633
+ ], MasterPlayerPermissionRulesParam.prototype, "getPlayersWithDisplayName", void 0);
1634
+ __decorate([
1635
+ GNHashtableDataMember({ code: GNParameterCode.GetEmail, isOptional: true }),
1636
+ __metadata("design:type", PermissionRulesParam)
1637
+ ], MasterPlayerPermissionRulesParam.prototype, "getEmail", void 0);
1638
+ __decorate([
1639
+ GNHashtableDataMember({ code: GNParameterCode.SetEmail, isOptional: true }),
1640
+ __metadata("design:type", PermissionRulesParam)
1641
+ ], MasterPlayerPermissionRulesParam.prototype, "setEmail", void 0);
1642
+ __decorate([
1643
+ GNHashtableDataMember({ code: GNParameterCode.GetCurrencyLeaderboard, isOptional: true }),
1644
+ __metadata("design:type", PermissionRulesParam)
1645
+ ], MasterPlayerPermissionRulesParam.prototype, "getCurrencyLeaderboard", void 0);
1646
+ __decorate([
1647
+ GNHashtableDataMember({ code: GNParameterCode.GetLastLoginLeaderboard, isOptional: true }),
1648
+ __metadata("design:type", PermissionRulesParam)
1649
+ ], MasterPlayerPermissionRulesParam.prototype, "getLastLoginLeaderboard", void 0);
1650
+ __decorate([
1651
+ GNHashtableDataMember({ code: GNParameterCode.GetCreateLeaderboard, isOptional: true }),
1652
+ __metadata("design:type", PermissionRulesParam)
1653
+ ], MasterPlayerPermissionRulesParam.prototype, "getCreateLeaderboard", void 0);
1654
+ __decorate([
1655
+ GNHashtableDataMember({ code: GNParameterCode.GetStatisticsLog, isOptional: true }),
1656
+ __metadata("design:type", PermissionRulesParam)
1657
+ ], MasterPlayerPermissionRulesParam.prototype, "getStatisticsLog", void 0);
1658
+ __decorate([
1659
+ GNHashtableDataMember({ code: GNParameterCode.GetCurrencyLog, isOptional: true }),
1660
+ __metadata("design:type", PermissionRulesParam)
1661
+ ], MasterPlayerPermissionRulesParam.prototype, "getCurrencyLog", void 0);
1662
+ __decorate([
1663
+ GNHashtableDataMember({ code: GNParameterCode.SendSocketOperationEvent, isOptional: true }),
1664
+ __metadata("design:type", PermissionRulesParam)
1665
+ ], MasterPlayerPermissionRulesParam.prototype, "sendSocketOperationEvent", void 0);
1666
+ __decorate([
1667
+ GNHashtableDataMember({ code: GNParameterCode.SendEmail, isOptional: true }),
1668
+ __metadata("design:type", PermissionRulesParam)
1669
+ ], MasterPlayerPermissionRulesParam.prototype, "sendEmail", void 0);
1670
+ __decorate([
1671
+ GNHashtableDataMember({ code: GNParameterCode.SendPushNotification, isOptional: true }),
1672
+ __metadata("design:type", PermissionRulesParam)
1673
+ ], MasterPlayerPermissionRulesParam.prototype, "sendPushNotification", void 0);
1674
+ __decorate([
1675
+ GNHashtableDataMember({ code: GNParameterCode.AddPushNotification, isOptional: true }),
1676
+ __metadata("design:type", PermissionRulesParam)
1677
+ ], MasterPlayerPermissionRulesParam.prototype, "addPushNotification", void 0);
1678
+ __decorate([
1679
+ GNHashtableDataMember({ code: GNParameterCode.RemovePushNotification, isOptional: true }),
1680
+ __metadata("design:type", PermissionRulesParam)
1681
+ ], MasterPlayerPermissionRulesParam.prototype, "removePushNotification", void 0);
1682
+ __decorate([
1683
+ GNHashtableDataMember({ code: GNParameterCode.GetPushNotification, isOptional: true }),
1684
+ __metadata("design:type", PermissionRulesParam)
1685
+ ], MasterPlayerPermissionRulesParam.prototype, "getPushNotification", void 0);
1686
+ DashboardModels.MasterPlayerPermissionRulesParam = MasterPlayerPermissionRulesParam;
1687
+ class MasterPlayerSettingsParam {
1688
+ }
1689
+ __decorate([
1690
+ GNArrayDataMember({ code: GNParameterCode.GenericServiceSettings, elementCls: GenericServiceSettingsParam, isOptional: true }),
1691
+ __metadata("design:type", Array)
1692
+ ], MasterPlayerSettingsParam.prototype, "genericServiceSettings", void 0);
1693
+ __decorate([
1694
+ GNArrayDataMember({ code: GNParameterCode.CurrencySettings, elementCls: CurrencySettingsParam, isOptional: true }),
1695
+ __metadata("design:type", Array)
1696
+ ], MasterPlayerSettingsParam.prototype, "playerCurrencySettings", void 0);
1697
+ __decorate([
1698
+ GNArrayDataMember({ code: GNParameterCode.StatisticsSettings, elementCls: StatisticsSettingsParam, isOptional: true }),
1699
+ __metadata("design:type", Array)
1700
+ ], MasterPlayerSettingsParam.prototype, "playerStatisticsSettings", void 0);
1701
+ __decorate([
1702
+ GNArrayDataMember({ code: GNParameterCode.DatasSettings, elementCls: DataSettingsParam, isOptional: true }),
1703
+ __metadata("design:type", Array)
1704
+ ], MasterPlayerSettingsParam.prototype, "playerDatasSettings", void 0);
1705
+ __decorate([
1706
+ GNArrayDataMember({ code: GNParameterCode.CustomDatasSettings, elementCls: DataSettingsParam, isOptional: true }),
1707
+ __metadata("design:type", Array)
1708
+ ], MasterPlayerSettingsParam.prototype, "customDatasSettings", void 0);
1709
+ __decorate([
1710
+ GNArrayDataMember({ code: GNParameterCode.TagsSettings, elementCls: TagSettingsParam, isOptional: true }),
1711
+ __metadata("design:type", Array)
1712
+ ], MasterPlayerSettingsParam.prototype, "tagsSettings", void 0);
1713
+ DashboardModels.MasterPlayerSettingsParam = MasterPlayerSettingsParam;
1714
+ class SizeParam {
1715
+ }
1716
+ __decorate([
1717
+ NumberDataMember({ code: GNParameterCode.Min, minValue: 1, mustInt: true }),
1718
+ __metadata("design:type", Number)
1719
+ ], SizeParam.prototype, "min", void 0);
1720
+ __decorate([
1721
+ NumberDataMember({ code: GNParameterCode.Max, minValue: 1, mustInt: true }),
1722
+ __metadata("design:type", Number)
1723
+ ], SizeParam.prototype, "max", void 0);
1724
+ DashboardModels.SizeParam = SizeParam;
1725
+ class TeamParam {
1726
+ }
1727
+ __decorate([
1728
+ StringDataMember({ code: GNParameterCode.TeamId, minLength: 1, maxLength: 32 }),
1729
+ __metadata("design:type", String)
1730
+ ], TeamParam.prototype, "teamId", void 0);
1731
+ __decorate([
1732
+ GNHashtableDataMember({ code: GNParameterCode.TeamSize }),
1733
+ __metadata("design:type", SizeParam)
1734
+ ], TeamParam.prototype, "teamSize", void 0);
1735
+ DashboardModels.TeamParam = TeamParam;
1736
+ class LinearExpansionsParam {
1737
+ }
1738
+ __decorate([
1739
+ NumberDataMember({ code: GNParameterCode.SecondsBetweenExpansions, minValue: 1 }),
1740
+ __metadata("design:type", Number)
1741
+ ], LinearExpansionsParam.prototype, "secondsBetweenExpansions", void 0);
1742
+ __decorate([
1743
+ NumberDataMember({ code: GNParameterCode.Delta, isOptional: true }),
1744
+ __metadata("design:type", Number)
1745
+ ], LinearExpansionsParam.prototype, "delta", void 0);
1746
+ __decorate([
1747
+ NumberDataMember({ code: GNParameterCode.Limit, isOptional: true }),
1748
+ __metadata("design:type", Number)
1749
+ ], LinearExpansionsParam.prototype, "limit", void 0);
1750
+ DashboardModels.LinearExpansionsParam = LinearExpansionsParam;
1751
+ class CustomExpansionsParam {
1752
+ }
1753
+ __decorate([
1754
+ NumberDataMember({ code: GNParameterCode.SecondsBetweenExpansions, minValue: 1 }),
1755
+ __metadata("design:type", Number)
1756
+ ], CustomExpansionsParam.prototype, "secondsBetweenExpansions", void 0);
1757
+ __decorate([
1758
+ GNArrayDataMember({ code: GNParameterCode.OverrideValue, isOptional: true, elementCls: Object }),
1759
+ __metadata("design:type", Array)
1760
+ ], CustomExpansionsParam.prototype, "overrideValue", void 0);
1761
+ __decorate([
1762
+ GNArrayDataMember({ code: GNParameterCode.OverrideMin, isOptional: true, elementCls: Object }),
1763
+ __metadata("design:type", Array)
1764
+ ], CustomExpansionsParam.prototype, "overrideMin", void 0);
1765
+ __decorate([
1766
+ GNArrayDataMember({ code: GNParameterCode.OverrideMax, isOptional: true, elementCls: Object }),
1767
+ __metadata("design:type", Array)
1768
+ ], CustomExpansionsParam.prototype, "overrideMax", void 0);
1769
+ DashboardModels.CustomExpansionsParam = CustomExpansionsParam;
1770
+ class AdvancedSettingsParam {
1771
+ }
1772
+ __decorate([
1773
+ NumberDataMember({ code: GNParameterCode.SecondsUntilOptional, minValue: 1 }),
1774
+ __metadata("design:type", Number)
1775
+ ], AdvancedSettingsParam.prototype, "secondsUntilOptional", void 0);
1776
+ __decorate([
1777
+ NumberDataMember({ code: GNParameterCode.ExpansionType, minValue: 1, maxValue: 3, isOptional: true, mustInt: true }),
1778
+ __metadata("design:type", Number)
1779
+ ], AdvancedSettingsParam.prototype, "expansionType", void 0);
1780
+ __decorate([
1781
+ GNHashtableDataMember({ code: GNParameterCode.LinearExpansions, isOptional: true }),
1782
+ __metadata("design:type", LinearExpansionsParam)
1783
+ ], AdvancedSettingsParam.prototype, "linearExpansions", void 0);
1784
+ __decorate([
1785
+ GNHashtableDataMember({ code: GNParameterCode.CustomExpansions, isOptional: true }),
1786
+ __metadata("design:type", CustomExpansionsParam)
1787
+ ], AdvancedSettingsParam.prototype, "customExpansions", void 0);
1788
+ DashboardModels.AdvancedSettingsParam = AdvancedSettingsParam;
1789
+ class RuleParam {
1790
+ }
1791
+ __decorate([
1792
+ StringDataMember({ code: GNParameterCode.Name, minLength: 1, maxLength: 32 }),
1793
+ __metadata("design:type", String)
1794
+ ], RuleParam.prototype, "name", void 0);
1795
+ __decorate([
1796
+ NumberDataMember({ code: GNParameterCode.Type, minValue: 1, maxValue: 8, mustInt: true }),
1797
+ __metadata("design:type", Number)
1798
+ ], RuleParam.prototype, "type", void 0);
1799
+ __decorate([
1800
+ NumberDataMember({ code: GNParameterCode.AttributeSource, minValue: 1, maxValue: 2, isOptional: true }),
1801
+ __metadata("design:type", Number)
1802
+ ], RuleParam.prototype, "attributeSource", void 0);
1803
+ __decorate([
1804
+ StringDataMember({ code: GNParameterCode.AttributePath, minLength: 1, maxLength: 32, isOptional: true }),
1805
+ __metadata("design:type", String)
1806
+ ], RuleParam.prototype, "attributePath", void 0);
1807
+ __decorate([
1808
+ DataMember({ code: GNParameterCode.DefaultValue, isOptional: true }),
1809
+ __metadata("design:type", Object)
1810
+ ], RuleParam.prototype, "defaultValue", void 0);
1811
+ __decorate([
1812
+ NumberDataMember({ code: GNParameterCode.CompairType, minValue: 1, maxValue: 2, isOptional: true, mustInt: true }),
1813
+ __metadata("design:type", Number)
1814
+ ], RuleParam.prototype, "compairType", void 0);
1815
+ __decorate([
1816
+ NumberDataMember({ code: GNParameterCode.AllowedDifference, minValue: 0, isOptional: true }),
1817
+ __metadata("design:type", Number)
1818
+ ], RuleParam.prototype, "allowedDifference", void 0);
1819
+ __decorate([
1820
+ NumberDataMember({ code: GNParameterCode.Min, isOptional: true }),
1821
+ __metadata("design:type", Number)
1822
+ ], RuleParam.prototype, "min", void 0);
1823
+ __decorate([
1824
+ NumberDataMember({ code: GNParameterCode.Max, isOptional: true }),
1825
+ __metadata("design:type", Number)
1826
+ ], RuleParam.prototype, "max", void 0);
1827
+ __decorate([
1828
+ GNHashtableDataMember({ code: GNParameterCode.AdvancedSettings, isOptional: true }),
1829
+ __metadata("design:type", AdvancedSettingsParam)
1830
+ ], RuleParam.prototype, "advancedSettings", void 0);
1831
+ DashboardModels.RuleParam = RuleParam;
1832
+ class ServerAllocationParam {
1833
+ }
1834
+ __decorate([
1835
+ BooleanDataMember({ code: GNParameterCode.Enable }),
1836
+ __metadata("design:type", Boolean)
1837
+ ], ServerAllocationParam.prototype, "enable", void 0);
1838
+ DashboardModels.ServerAllocationParam = ServerAllocationParam;
1839
+ class MatchmakingQueueSettingsParam {
1840
+ }
1841
+ __decorate([
1842
+ StringDataMember({ code: GNParameterCode.QueueName, minLength: 6, maxLength: 32 }),
1843
+ __metadata("design:type", String)
1844
+ ], MatchmakingQueueSettingsParam.prototype, "queueName", void 0);
1845
+ __decorate([
1846
+ GNHashtableDataMember({ code: GNParameterCode.MatchSize }),
1847
+ __metadata("design:type", SizeParam)
1848
+ ], MatchmakingQueueSettingsParam.prototype, "matchSize", void 0);
1849
+ __decorate([
1850
+ GNHashtableDataMember({ code: GNParameterCode.TicketSize }),
1851
+ __metadata("design:type", SizeParam)
1852
+ ], MatchmakingQueueSettingsParam.prototype, "ticketSize", void 0);
1853
+ __decorate([
1854
+ GNHashtableDataMember({ code: GNParameterCode.ServerAllocation }),
1855
+ __metadata("design:type", ServerAllocationParam)
1856
+ ], MatchmakingQueueSettingsParam.prototype, "serverAllocation", void 0);
1857
+ __decorate([
1858
+ GNArrayDataMember({ code: GNParameterCode.Teams, isOptional: true, elementCls: TeamParam }),
1859
+ __metadata("design:type", Array)
1860
+ ], MatchmakingQueueSettingsParam.prototype, "teams", void 0);
1861
+ __decorate([
1862
+ GNArrayDataMember({ code: GNParameterCode.Rules, isOptional: true, elementCls: RuleParam }),
1863
+ __metadata("design:type", Array)
1864
+ ], MatchmakingQueueSettingsParam.prototype, "rules", void 0);
1865
+ __decorate([
1866
+ BooleanDataMember({ code: GNParameterCode.Remove, isOptional: true }),
1867
+ __metadata("design:type", Boolean)
1868
+ ], MatchmakingQueueSettingsParam.prototype, "remove", void 0);
1869
+ DashboardModels.MatchmakingQueueSettingsParam = MatchmakingQueueSettingsParam;
1870
+ class AuthenticatePermissionRulesParam {
1871
+ }
1872
+ __decorate([
1873
+ GNHashtableDataMember({ code: GNParameterCode.LoginByAccount, isOptional: true }),
1874
+ __metadata("design:type", PermissionRulesParam)
1875
+ ], AuthenticatePermissionRulesParam.prototype, "loginByAccount", void 0);
1876
+ __decorate([
1877
+ GNHashtableDataMember({ code: GNParameterCode.LoginByAndroidDeviceId, isOptional: true }),
1878
+ __metadata("design:type", PermissionRulesParam)
1879
+ ], AuthenticatePermissionRulesParam.prototype, "loginByAndroidDeviceId", void 0);
1880
+ __decorate([
1881
+ GNHashtableDataMember({ code: GNParameterCode.LoginByApple, isOptional: true }),
1882
+ __metadata("design:type", PermissionRulesParam)
1883
+ ], AuthenticatePermissionRulesParam.prototype, "loginByApple", void 0);
1884
+ __decorate([
1885
+ GNHashtableDataMember({ code: GNParameterCode.LoginByCustomDeviceId, isOptional: true }),
1886
+ __metadata("design:type", PermissionRulesParam)
1887
+ ], AuthenticatePermissionRulesParam.prototype, "loginByCustomDeviceId", void 0);
1888
+ __decorate([
1889
+ GNHashtableDataMember({ code: GNParameterCode.LoginByCustomId, isOptional: true }),
1890
+ __metadata("design:type", PermissionRulesParam)
1891
+ ], AuthenticatePermissionRulesParam.prototype, "loginByCustomId", void 0);
1892
+ __decorate([
1893
+ GNHashtableDataMember({ code: GNParameterCode.LoginByFacebook, isOptional: true }),
1894
+ __metadata("design:type", PermissionRulesParam)
1895
+ ], AuthenticatePermissionRulesParam.prototype, "loginByFacebook", void 0);
1896
+ __decorate([
1897
+ GNHashtableDataMember({ code: GNParameterCode.LoginByGenericService, isOptional: true }),
1898
+ __metadata("design:type", PermissionRulesParam)
1899
+ ], AuthenticatePermissionRulesParam.prototype, "loginByGenericService", void 0);
1900
+ __decorate([
1901
+ GNHashtableDataMember({ code: GNParameterCode.LoginByGoogle, isOptional: true }),
1902
+ __metadata("design:type", PermissionRulesParam)
1903
+ ], AuthenticatePermissionRulesParam.prototype, "loginByGoogle", void 0);
1904
+ __decorate([
1905
+ GNHashtableDataMember({ code: GNParameterCode.LoginByGooglePlayGameService, isOptional: true }),
1906
+ __metadata("design:type", PermissionRulesParam)
1907
+ ], AuthenticatePermissionRulesParam.prototype, "loginByGooglePlayGameService", void 0);
1908
+ __decorate([
1909
+ GNHashtableDataMember({ code: GNParameterCode.LoginByGameCenter, isOptional: true }),
1910
+ __metadata("design:type", PermissionRulesParam)
1911
+ ], AuthenticatePermissionRulesParam.prototype, "loginByGameCenter", void 0);
1912
+ __decorate([
1913
+ GNHashtableDataMember({ code: GNParameterCode.LoginByiOSDeviceId, isOptional: true }),
1914
+ __metadata("design:type", PermissionRulesParam)
1915
+ ], AuthenticatePermissionRulesParam.prototype, "loginByiOSDeviceId", void 0);
1916
+ __decorate([
1917
+ GNHashtableDataMember({ code: GNParameterCode.LoginByWindowsPhoneDeviceId, isOptional: true }),
1918
+ __metadata("design:type", PermissionRulesParam)
1919
+ ], AuthenticatePermissionRulesParam.prototype, "loginByWindowsPhoneDeviceId", void 0);
1920
+ __decorate([
1921
+ GNHashtableDataMember({ code: GNParameterCode.RegisterAccount, isOptional: true }),
1922
+ __metadata("design:type", PermissionRulesParam)
1923
+ ], AuthenticatePermissionRulesParam.prototype, "registerAccount", void 0);
1924
+ __decorate([
1925
+ GNHashtableDataMember({ code: GNParameterCode.LoginByEditorDeviceId, isOptional: true }),
1926
+ __metadata("design:type", PermissionRulesParam)
1927
+ ], AuthenticatePermissionRulesParam.prototype, "loginByEditorDeviceId", void 0);
1928
+ __decorate([
1929
+ GNHashtableDataMember({ code: GNParameterCode.LoginByLinuxDeviceId, isOptional: true }),
1930
+ __metadata("design:type", PermissionRulesParam)
1931
+ ], AuthenticatePermissionRulesParam.prototype, "loginByLinuxDeviceId", void 0);
1932
+ __decorate([
1933
+ GNHashtableDataMember({ code: GNParameterCode.LoginByMacOSDeviceId, isOptional: true }),
1934
+ __metadata("design:type", PermissionRulesParam)
1935
+ ], AuthenticatePermissionRulesParam.prototype, "loginByMacOSDeviceId", void 0);
1936
+ __decorate([
1937
+ GNHashtableDataMember({ code: GNParameterCode.LoginByWindowsDeviceId, isOptional: true }),
1938
+ __metadata("design:type", PermissionRulesParam)
1939
+ ], AuthenticatePermissionRulesParam.prototype, "loginByWindowsDeviceId", void 0);
1940
+ __decorate([
1941
+ GNHashtableDataMember({ code: GNParameterCode.RefreshAuthToken, isOptional: true }),
1942
+ __metadata("design:type", PermissionRulesParam)
1943
+ ], AuthenticatePermissionRulesParam.prototype, "refreshAuthToken", void 0);
1944
+ DashboardModels.AuthenticatePermissionRulesParam = AuthenticatePermissionRulesParam;
1945
+ class StoreInventoryPermissionRulesParam {
1946
+ }
1947
+ __decorate([
1948
+ GNHashtableDataMember({ code: GNParameterCode.BuyStoreItem, isOptional: true }),
1949
+ __metadata("design:type", PermissionRulesParam)
1950
+ ], StoreInventoryPermissionRulesParam.prototype, "buyStoreItem", void 0);
1951
+ __decorate([
1952
+ GNHashtableDataMember({ code: GNParameterCode.GetStoreItemInformation, isOptional: true }),
1953
+ __metadata("design:type", PermissionRulesParam)
1954
+ ], StoreInventoryPermissionRulesParam.prototype, "getStoreItemInformation", void 0);
1955
+ __decorate([
1956
+ GNHashtableDataMember({ code: GNParameterCode.GetStoreItemsWithTag, isOptional: true }),
1957
+ __metadata("design:type", PermissionRulesParam)
1958
+ ], StoreInventoryPermissionRulesParam.prototype, "getStoreItemsWithTag", void 0);
1959
+ __decorate([
1960
+ GNHashtableDataMember({ code: GNParameterCode.GrantStoreItem, isOptional: true }),
1961
+ __metadata("design:type", PermissionRulesParam)
1962
+ ], StoreInventoryPermissionRulesParam.prototype, "grantStoreItem", void 0);
1963
+ __decorate([
1964
+ GNHashtableDataMember({ code: GNParameterCode.SetRemoveStatus, isOptional: true }),
1965
+ __metadata("design:type", PermissionRulesParam)
1966
+ ], StoreInventoryPermissionRulesParam.prototype, "setRemoveStatus", void 0);
1967
+ __decorate([
1968
+ GNHashtableDataMember({ code: GNParameterCode.SetStoreItemInformation, isOptional: true }),
1969
+ __metadata("design:type", PermissionRulesParam)
1970
+ ], StoreInventoryPermissionRulesParam.prototype, "setStoreItemInformation", void 0);
1971
+ __decorate([
1972
+ GNHashtableDataMember({ code: GNParameterCode.ValidateAppleAppStoreReceipt, isOptional: true }),
1973
+ __metadata("design:type", PermissionRulesParam)
1974
+ ], StoreInventoryPermissionRulesParam.prototype, "validateAppleAppStoreReceipt", void 0);
1975
+ __decorate([
1976
+ GNHashtableDataMember({ code: GNParameterCode.ValidateGooglePlayStoreReceipt, isOptional: true }),
1977
+ __metadata("design:type", PermissionRulesParam)
1978
+ ], StoreInventoryPermissionRulesParam.prototype, "validateGooglePlayStoreReceipt", void 0);
1979
+ __decorate([
1980
+ GNHashtableDataMember({ code: GNParameterCode.ValidateFacebookStoreReceipt, isOptional: true }),
1981
+ __metadata("design:type", PermissionRulesParam)
1982
+ ], StoreInventoryPermissionRulesParam.prototype, "validateFacebookStoreReceipt", void 0);
1983
+ __decorate([
1984
+ GNHashtableDataMember({ code: GNParameterCode.GetCreateLeaderboard, isOptional: true }),
1985
+ __metadata("design:type", PermissionRulesParam)
1986
+ ], StoreInventoryPermissionRulesParam.prototype, "getCreateLeaderboard", void 0);
1987
+ __decorate([
1988
+ GNHashtableDataMember({ code: GNParameterCode.PresentStoreItem, isOptional: true }),
1989
+ __metadata("design:type", PermissionRulesParam)
1990
+ ], StoreInventoryPermissionRulesParam.prototype, "presentStoreItem", void 0);
1991
+ __decorate([
1992
+ GNHashtableDataMember({ code: GNParameterCode.GetStoreLog, isOptional: true }),
1993
+ __metadata("design:type", PermissionRulesParam)
1994
+ ], StoreInventoryPermissionRulesParam.prototype, "getStoreLog", void 0);
1995
+ DashboardModels.StoreInventoryPermissionRulesParam = StoreInventoryPermissionRulesParam;
1996
+ class CloudScriptPermissionRulesParam {
1997
+ }
1998
+ __decorate([
1999
+ GNHashtableDataMember({ code: GNParameterCode.ExecuteFunction, isOptional: true }),
2000
+ __metadata("design:type", PermissionRulesParam)
2001
+ ], CloudScriptPermissionRulesParam.prototype, "executeFunction", void 0);
2002
+ __decorate([
2003
+ GNHashtableDataMember({ code: GNParameterCode.AddFunction, isOptional: true }),
2004
+ __metadata("design:type", PermissionRulesParam)
2005
+ ], CloudScriptPermissionRulesParam.prototype, "addFunction", void 0);
2006
+ __decorate([
2007
+ GNHashtableDataMember({ code: GNParameterCode.GetFunctions, isOptional: true }),
2008
+ __metadata("design:type", PermissionRulesParam)
2009
+ ], CloudScriptPermissionRulesParam.prototype, "getFunctions", void 0);
2010
+ __decorate([
2011
+ GNHashtableDataMember({ code: GNParameterCode.GetFunction, isOptional: true }),
2012
+ __metadata("design:type", PermissionRulesParam)
2013
+ ], CloudScriptPermissionRulesParam.prototype, "getFunction", void 0);
2014
+ __decorate([
2015
+ GNHashtableDataMember({ code: GNParameterCode.EditFunction, isOptional: true }),
2016
+ __metadata("design:type", PermissionRulesParam)
2017
+ ], CloudScriptPermissionRulesParam.prototype, "editFunction", void 0);
2018
+ DashboardModels.CloudScriptPermissionRulesParam = CloudScriptPermissionRulesParam;
2019
+ class PermissionParam {
2020
+ }
2021
+ __decorate([
2022
+ GNHashtableDataMember({ code: GNParameterCode.Authenticate, isOptional: true }),
2023
+ __metadata("design:type", AuthenticatePermissionRulesParam)
2024
+ ], PermissionParam.prototype, "authenticate", void 0);
2025
+ __decorate([
2026
+ GNHashtableDataMember({ code: GNParameterCode.MasterPlayer, isOptional: true }),
2027
+ __metadata("design:type", MasterPlayerPermissionRulesParam)
2028
+ ], PermissionParam.prototype, "masterPlayer", void 0);
2029
+ __decorate([
2030
+ GNHashtableDataMember({ code: GNParameterCode.GamePlayer, isOptional: true }),
2031
+ __metadata("design:type", GamePlayerPermissionRulesParam)
2032
+ ], PermissionParam.prototype, "gamePlayer", void 0);
2033
+ __decorate([
2034
+ GNHashtableDataMember({ code: GNParameterCode.CharacterPlayer, isOptional: true }),
2035
+ __metadata("design:type", CharacterPlayerPermissionRulesParam)
2036
+ ], PermissionParam.prototype, "characterPlayer", void 0);
2037
+ __decorate([
2038
+ GNHashtableDataMember({ code: GNParameterCode.Content, isOptional: true }),
2039
+ __metadata("design:type", ContentPermissionRulesParam)
2040
+ ], PermissionParam.prototype, "content", void 0);
2041
+ __decorate([
2042
+ GNHashtableDataMember({ code: GNParameterCode.Group, isOptional: true }),
2043
+ __metadata("design:type", GroupPermissionRulesParam)
2044
+ ], PermissionParam.prototype, "group", void 0);
2045
+ __decorate([
2046
+ GNHashtableDataMember({ code: GNParameterCode.Inventory, isOptional: true }),
2047
+ __metadata("design:type", InventoryPermissionRulesParam)
2048
+ ], PermissionParam.prototype, "inventory", void 0);
2049
+ __decorate([
2050
+ GNHashtableDataMember({ code: GNParameterCode.StoreInventory, isOptional: true }),
2051
+ __metadata("design:type", StoreInventoryPermissionRulesParam)
2052
+ ], PermissionParam.prototype, "storeInventory", void 0);
2053
+ __decorate([
2054
+ GNHashtableDataMember({ code: GNParameterCode.MasterAdmin, isOptional: true }),
2055
+ __metadata("design:type", MasterAdminPermissionRulesParam)
2056
+ ], PermissionParam.prototype, "masterAdmin", void 0);
2057
+ __decorate([
2058
+ GNHashtableDataMember({ code: GNParameterCode.Multiplayer, isOptional: true }),
2059
+ __metadata("design:type", MultiplayerPermissionRulesParam)
2060
+ ], PermissionParam.prototype, "multiplayer", void 0);
2061
+ __decorate([
2062
+ GNHashtableDataMember({ code: GNParameterCode.CloudScript, isOptional: true }),
2063
+ __metadata("design:type", CloudScriptPermissionRulesParam)
2064
+ ], PermissionParam.prototype, "cloudScript", void 0);
2065
+ DashboardModels.PermissionParam = PermissionParam;
2066
+ class ChangePasswordAdminAccountRequestData {
2067
+ }
2068
+ __decorate([
2069
+ StringDataMember({ code: GNParameterCode.CurrentPassword, minLength: 6, maxLength: 64, mustNonNull: true }),
2070
+ __metadata("design:type", String)
2071
+ ], ChangePasswordAdminAccountRequestData.prototype, "currentPassword", void 0);
2072
+ __decorate([
2073
+ StringDataMember({ code: GNParameterCode.Password, minLength: 6, maxLength: 64, mustNonNull: true }),
2074
+ __metadata("design:type", String)
2075
+ ], ChangePasswordAdminAccountRequestData.prototype, "password", void 0);
2076
+ DashboardModels.ChangePasswordAdminAccountRequestData = ChangePasswordAdminAccountRequestData;
2077
+ class GetAdminAccountListRequestData {
2078
+ }
2079
+ DashboardModels.GetAdminAccountListRequestData = GetAdminAccountListRequestData;
2080
+ class GetGameInformationRequestData {
2081
+ }
2082
+ __decorate([
2083
+ StringDataMember({ code: GNParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true }),
2084
+ __metadata("design:type", String)
2085
+ ], GetGameInformationRequestData.prototype, "gameId", void 0);
2086
+ DashboardModels.GetGameInformationRequestData = GetGameInformationRequestData;
2087
+ class GetGameListRequestData {
2088
+ }
2089
+ DashboardModels.GetGameListRequestData = GetGameListRequestData;
2090
+ class GetMasterGameSettingsRequestData {
2091
+ }
2092
+ DashboardModels.GetMasterGameSettingsRequestData = GetMasterGameSettingsRequestData;
2093
+ class GetSecretInfoInformationRequestData {
2094
+ }
2095
+ __decorate([
2096
+ StringDataMember({ code: GNParameterCode.SecretKey, minLength: 6, maxLength: 64, mustNonNull: true }),
2097
+ __metadata("design:type", String)
2098
+ ], GetSecretInfoInformationRequestData.prototype, "secretKey", void 0);
2099
+ DashboardModels.GetSecretInfoInformationRequestData = GetSecretInfoInformationRequestData;
2100
+ class GetSecretInfoListRequestData {
2101
+ }
2102
+ DashboardModels.GetSecretInfoListRequestData = GetSecretInfoListRequestData;
2103
+ class GetServerLogRequestData {
2104
+ }
2105
+ __decorate([
2106
+ NumberDataMember({ code: GNParameterCode.Skip, defaultValue: 0, minValue: 0, mustInt: true, isOptional: true }),
2107
+ __metadata("design:type", Number)
2108
+ ], GetServerLogRequestData.prototype, "skip", void 0);
2109
+ __decorate([
2110
+ NumberDataMember({ code: GNParameterCode.Limit, defaultValue: 50, minValue: 5, maxValue: 200, mustInt: true, isOptional: true }),
2111
+ __metadata("design:type", Number)
2112
+ ], GetServerLogRequestData.prototype, "limit", void 0);
2113
+ DashboardModels.GetServerLogRequestData = GetServerLogRequestData;
2114
+ class GrantAdminAccountRequestData {
2115
+ }
2116
+ __decorate([
2117
+ StringDataMember({ code: GNParameterCode.Username, minLength: 6, maxLength: 32, mustNonNull: true }),
2118
+ __metadata("design:type", String)
2119
+ ], GrantAdminAccountRequestData.prototype, "username", void 0);
2120
+ __decorate([
2121
+ StringDataMember({ code: GNParameterCode.Password, minLength: 6, maxLength: 64, mustNonNull: true }),
2122
+ __metadata("design:type", String)
2123
+ ], GrantAdminAccountRequestData.prototype, "password", void 0);
2124
+ __decorate([
2125
+ StringDataMember({ code: GNParameterCode.SecretKey, minLength: 6, maxLength: 64, mustNonNull: true }),
2126
+ __metadata("design:type", String)
2127
+ ], GrantAdminAccountRequestData.prototype, "secretKey", void 0);
2128
+ DashboardModels.GrantAdminAccountRequestData = GrantAdminAccountRequestData;
2129
+ class GrantGameRequestData {
2130
+ }
2131
+ __decorate([
2132
+ StringDataMember({ code: GNParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true }),
2133
+ __metadata("design:type", String)
2134
+ ], GrantGameRequestData.prototype, "gameId", void 0);
2135
+ DashboardModels.GrantGameRequestData = GrantGameRequestData;
2136
+ class GrantSecretInfoRequestData {
2137
+ }
2138
+ __decorate([
2139
+ StringDataMember({ code: GNParameterCode.SecretKey, minLength: 6, maxLength: 64, mustNonNull: true, isOptional: true }),
2140
+ __metadata("design:type", String)
2141
+ ], GrantSecretInfoRequestData.prototype, "secretKey", void 0);
2142
+ __decorate([
2143
+ StringDataMember({ code: GNParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true, isOptional: true }),
2144
+ __metadata("design:type", String)
2145
+ ], GrantSecretInfoRequestData.prototype, "gameId", void 0);
2146
+ __decorate([
2147
+ NumberDataMember({ code: GNParameterCode.Role, mustInt: true }),
2148
+ __metadata("design:type", Number)
2149
+ ], GrantSecretInfoRequestData.prototype, "role", void 0);
2150
+ __decorate([
2151
+ GNHashtableDataMember({ code: GNParameterCode.Permission, isOptional: true }),
2152
+ __metadata("design:type", PermissionParam)
2153
+ ], GrantSecretInfoRequestData.prototype, "permissionParam", void 0);
2154
+ DashboardModels.GrantSecretInfoRequestData = GrantSecretInfoRequestData;
2155
+ class LoginByAdminAccountRequestData {
2156
+ }
2157
+ __decorate([
2158
+ StringDataMember({ code: GNParameterCode.Username, minLength: 6, maxLength: 32, mustNonNull: true }),
2159
+ __metadata("design:type", String)
2160
+ ], LoginByAdminAccountRequestData.prototype, "username", void 0);
2161
+ __decorate([
2162
+ StringDataMember({ code: GNParameterCode.Password, minLength: 6, maxLength: 64, mustNonNull: true }),
2163
+ __metadata("design:type", String)
2164
+ ], LoginByAdminAccountRequestData.prototype, "password", void 0);
2165
+ DashboardModels.LoginByAdminAccountRequestData = LoginByAdminAccountRequestData;
2166
+ class RemoveAdminAccountRequestData {
2167
+ }
2168
+ __decorate([
2169
+ StringDataMember({ code: GNParameterCode.UserId, minLength: 10, maxLength: 10, mustNonNull: true }),
2170
+ __metadata("design:type", String)
2171
+ ], RemoveAdminAccountRequestData.prototype, "userId", void 0);
2172
+ DashboardModels.RemoveAdminAccountRequestData = RemoveAdminAccountRequestData;
2173
+ class SetGameInformationRequestData {
2174
+ }
2175
+ __decorate([
2176
+ StringDataMember({ code: GNParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true }),
2177
+ __metadata("design:type", String)
2178
+ ], SetGameInformationRequestData.prototype, "gameId", void 0);
2179
+ __decorate([
2180
+ StringDataMember({ code: GNParameterCode.GameName, isOptional: true }),
2181
+ __metadata("design:type", String)
2182
+ ], SetGameInformationRequestData.prototype, "gameName", void 0);
2183
+ __decorate([
2184
+ StringDataMember({ code: GNParameterCode.GameDescription, isOptional: true }),
2185
+ __metadata("design:type", String)
2186
+ ], SetGameInformationRequestData.prototype, "gameDescription", void 0);
2187
+ __decorate([
2188
+ StringDataMember({ code: GNParameterCode.GameIconUrl, isOptional: true }),
2189
+ __metadata("design:type", String)
2190
+ ], SetGameInformationRequestData.prototype, "gameIconUrl", void 0);
2191
+ __decorate([
2192
+ GNHashtableDataMember({ code: GNParameterCode.GameSettings, isOptional: true }),
2193
+ __metadata("design:type", GameSettingsParam)
2194
+ ], SetGameInformationRequestData.prototype, "gameSettings", void 0);
2195
+ __decorate([
2196
+ GNArrayDataMember({ code: GNParameterCode.MatchmakingQueueSettings, isOptional: true, elementCls: MatchmakingQueueSettingsParam }),
2197
+ __metadata("design:type", Array)
2198
+ ], SetGameInformationRequestData.prototype, "matchmakingQueueSettings", void 0);
2199
+ DashboardModels.SetGameInformationRequestData = SetGameInformationRequestData;
2200
+ class SetMasterGameSettingsRequestData {
2201
+ }
2202
+ __decorate([
2203
+ GNHashtableDataMember({ code: GNParameterCode.ThirtPartySettings, isOptional: true }),
2204
+ __metadata("design:type", ThirtPartyParam)
2205
+ ], SetMasterGameSettingsRequestData.prototype, "thirtPartySettings", void 0);
2206
+ __decorate([
2207
+ GNHashtableDataMember({ code: GNParameterCode.MasterPlayerSettings, isOptional: true }),
2208
+ __metadata("design:type", MasterPlayerSettingsParam)
2209
+ ], SetMasterGameSettingsRequestData.prototype, "masterPlayerSettings", void 0);
2210
+ __decorate([
2211
+ GNHashtableDataMember({ code: GNParameterCode.EmailSettings, isOptional: true }),
2212
+ __metadata("design:type", EmailSettingsParam)
2213
+ ], SetMasterGameSettingsRequestData.prototype, "emailSettings", void 0);
2214
+ __decorate([
2215
+ GNHashtableDataMember({ code: GNParameterCode.PushNotificationSettings, isOptional: true }),
2216
+ __metadata("design:type", PushNotificationSettingsParam)
2217
+ ], SetMasterGameSettingsRequestData.prototype, "pushNotificationSettings", void 0);
2218
+ DashboardModels.SetMasterGameSettingsRequestData = SetMasterGameSettingsRequestData;
2219
+ class SetPasswordAdminAccountRequestData {
2220
+ }
2221
+ __decorate([
2222
+ StringDataMember({ code: GNParameterCode.UserId, minLength: 10, maxLength: 10, mustNonNull: true }),
2223
+ __metadata("design:type", String)
2224
+ ], SetPasswordAdminAccountRequestData.prototype, "userId", void 0);
2225
+ __decorate([
2226
+ StringDataMember({ code: GNParameterCode.Password, minLength: 6, maxLength: 64, mustNonNull: true }),
2227
+ __metadata("design:type", String)
2228
+ ], SetPasswordAdminAccountRequestData.prototype, "password", void 0);
2229
+ DashboardModels.SetPasswordAdminAccountRequestData = SetPasswordAdminAccountRequestData;
2230
+ class SetSecretInfoInformationRequestData {
2231
+ }
2232
+ __decorate([
2233
+ StringDataMember({ code: GNParameterCode.SecretKey, minLength: 6, maxLength: 64, mustNonNull: true }),
2234
+ __metadata("design:type", String)
2235
+ ], SetSecretInfoInformationRequestData.prototype, "secretKey", void 0);
2236
+ __decorate([
2237
+ BooleanDataMember({ code: GNParameterCode.Remove, isOptional: true }),
2238
+ __metadata("design:type", Boolean)
2239
+ ], SetSecretInfoInformationRequestData.prototype, "remove", void 0);
2240
+ __decorate([
2241
+ NumberDataMember({ code: GNParameterCode.TsExpire, isOptional: true }),
2242
+ __metadata("design:type", Number)
2243
+ ], SetSecretInfoInformationRequestData.prototype, "tsExpire", void 0);
2244
+ __decorate([
2245
+ GNHashtableDataMember({ code: GNParameterCode.Permission, isOptional: true }),
2246
+ __metadata("design:type", PermissionParam)
2247
+ ], SetSecretInfoInformationRequestData.prototype, "permissionParam", void 0);
2248
+ DashboardModels.SetSecretInfoInformationRequestData = SetSecretInfoInformationRequestData;
2249
+ class SetSecretKeyAdminAccountRequestData {
2250
+ }
2251
+ __decorate([
2252
+ StringDataMember({ code: GNParameterCode.UserId, minLength: 10, maxLength: 10, mustNonNull: true }),
2253
+ __metadata("design:type", String)
2254
+ ], SetSecretKeyAdminAccountRequestData.prototype, "userId", void 0);
2255
+ __decorate([
2256
+ StringDataMember({ code: GNParameterCode.SecretKey, minLength: 6, maxLength: 64, mustNonNull: true }),
2257
+ __metadata("design:type", String)
2258
+ ], SetSecretKeyAdminAccountRequestData.prototype, "secretKey", void 0);
2259
+ DashboardModels.SetSecretKeyAdminAccountRequestData = SetSecretKeyAdminAccountRequestData;
2260
+ class GetAnalyticsRequestData {
2261
+ }
2262
+ __decorate([
2263
+ NumberDataMember({ code: GNParameterCode.Timestamp, minValue: 0, isOptional: true }),
2264
+ __metadata("design:type", Number)
2265
+ ], GetAnalyticsRequestData.prototype, "timestamp", void 0);
2266
+ __decorate([
2267
+ BooleanDataMember({ code: GNParameterCode.AnalyticsItem, isOptional: true }),
2268
+ __metadata("design:type", Boolean)
2269
+ ], GetAnalyticsRequestData.prototype, "analyticsItem", void 0);
2270
+ __decorate([
2271
+ BooleanDataMember({ code: GNParameterCode.Country, isOptional: true }),
2272
+ __metadata("design:type", Boolean)
2273
+ ], GetAnalyticsRequestData.prototype, "country", void 0);
2274
+ DashboardModels.GetAnalyticsRequestData = GetAnalyticsRequestData;
2275
+ class GetUsernameAdminAccountRequestData {
2276
+ }
2277
+ __decorate([
2278
+ StringDataMember({ code: GNParameterCode.UserId, minLength: 10, maxLength: 10, mustNonNull: true }),
2279
+ __metadata("design:type", String)
2280
+ ], GetUsernameAdminAccountRequestData.prototype, "userId", void 0);
2281
+ DashboardModels.GetUsernameAdminAccountRequestData = GetUsernameAdminAccountRequestData;
2282
+ class GetEventCallbackCloudScriptRequestData {
2283
+ }
2284
+ DashboardModels.GetEventCallbackCloudScriptRequestData = GetEventCallbackCloudScriptRequestData;
2285
+ class SetEventCallbackCloudScriptRequestData {
2286
+ }
2287
+ __decorate([
2288
+ StringDataMember({ code: GNParameterCode.EventName, minLength: 6, maxLength: 128, mustNonNull: true }),
2289
+ __metadata("design:type", String)
2290
+ ], SetEventCallbackCloudScriptRequestData.prototype, "eventName", void 0);
2291
+ __decorate([
2292
+ StringDataMember({ code: GNParameterCode.Script, minLength: 6, maxLength: 4096, mustNonNull: true }),
2293
+ __metadata("design:type", String)
2294
+ ], SetEventCallbackCloudScriptRequestData.prototype, "script", void 0);
2295
+ DashboardModels.SetEventCallbackCloudScriptRequestData = SetEventCallbackCloudScriptRequestData;
2296
+ class ResetStatisticsLeaderboardRequestData {
2297
+ }
2298
+ __decorate([
2299
+ NumberDataMember({ code: GNParameterCode.OwnerType, mustInt: true }),
2300
+ __metadata("design:type", Number)
2301
+ ], ResetStatisticsLeaderboardRequestData.prototype, "type", void 0);
2302
+ __decorate([
2303
+ StringDataMember({ code: GNParameterCode.Key, minLength: 2, maxLength: 32 }),
2304
+ __metadata("design:type", String)
2305
+ ], ResetStatisticsLeaderboardRequestData.prototype, "key", void 0);
2306
+ __decorate([
2307
+ StringDataMember({ code: GNParameterCode.Version, minLength: 2, maxLength: 32 }),
2308
+ __metadata("design:type", String)
2309
+ ], ResetStatisticsLeaderboardRequestData.prototype, "version", void 0);
2310
+ __decorate([
2311
+ StringDataMember({ code: GNParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true }),
2312
+ __metadata("design:type", String)
2313
+ ], ResetStatisticsLeaderboardRequestData.prototype, "gameId", void 0);
2314
+ __decorate([
2315
+ StringDataMember({ code: GNParameterCode.Log, minLength: 1, maxLength: 256, mustNonNull: true, isOptional: true }),
2316
+ __metadata("design:type", String)
2317
+ ], ResetStatisticsLeaderboardRequestData.prototype, "log", void 0);
2318
+ DashboardModels.ResetStatisticsLeaderboardRequestData = ResetStatisticsLeaderboardRequestData;
2319
+ class GetBackupStatisticsLeaderboardVersionRequestData {
2320
+ }
2321
+ __decorate([
2322
+ StringDataMember({ code: GNParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true }),
2323
+ __metadata("design:type", String)
2324
+ ], GetBackupStatisticsLeaderboardVersionRequestData.prototype, "gameId", void 0);
2325
+ __decorate([
2326
+ NumberDataMember({ code: GNParameterCode.OwnerType, mustInt: true }),
2327
+ __metadata("design:type", Number)
2328
+ ], GetBackupStatisticsLeaderboardVersionRequestData.prototype, "type", void 0);
2329
+ __decorate([
2330
+ StringDataMember({ code: GNParameterCode.Key, minLength: 2, maxLength: 32 }),
2331
+ __metadata("design:type", String)
2332
+ ], GetBackupStatisticsLeaderboardVersionRequestData.prototype, "key", void 0);
2333
+ DashboardModels.GetBackupStatisticsLeaderboardVersionRequestData = GetBackupStatisticsLeaderboardVersionRequestData;
2334
+ class GetServerGameDataRequestData {
2335
+ }
2336
+ __decorate([
2337
+ StringDataMember({ code: GNParameterCode.GameId, minLength: 2, maxLength: 32, mustNonNull: true }),
2338
+ __metadata("design:type", String)
2339
+ ], GetServerGameDataRequestData.prototype, "gameId", void 0);
2340
+ __decorate([
2341
+ BooleanDataMember({ code: GNParameterCode.MasterPlayerCount, isOptional: true }),
2342
+ __metadata("design:type", Boolean)
2343
+ ], GetServerGameDataRequestData.prototype, "masterPlayerCount", void 0);
2344
+ __decorate([
2345
+ BooleanDataMember({ code: GNParameterCode.GamePlayerCount, isOptional: true }),
2346
+ __metadata("design:type", Boolean)
2347
+ ], GetServerGameDataRequestData.prototype, "gamePlayerCount", void 0);
2348
+ __decorate([
2349
+ BooleanDataMember({ code: GNParameterCode.CharacterPlayerCount, isOptional: true }),
2350
+ __metadata("design:type", Boolean)
2351
+ ], GetServerGameDataRequestData.prototype, "characterPlayerCount", void 0);
2352
+ __decorate([
2353
+ BooleanDataMember({ code: GNParameterCode.InventoryCount, isOptional: true }),
2354
+ __metadata("design:type", Boolean)
2355
+ ], GetServerGameDataRequestData.prototype, "inventoryCount", void 0);
2356
+ __decorate([
2357
+ BooleanDataMember({ code: GNParameterCode.StoreInventoryCount, isOptional: true }),
2358
+ __metadata("design:type", Boolean)
2359
+ ], GetServerGameDataRequestData.prototype, "storeInventoryCount", void 0);
2360
+ __decorate([
2361
+ BooleanDataMember({ code: GNParameterCode.GroupCount, isOptional: true }),
2362
+ __metadata("design:type", Boolean)
2363
+ ], GetServerGameDataRequestData.prototype, "groupCount", void 0);
2364
+ __decorate([
2365
+ BooleanDataMember({ code: GNParameterCode.Country, isOptional: true }),
2366
+ __metadata("design:type", Boolean)
2367
+ ], GetServerGameDataRequestData.prototype, "country", void 0);
2368
+ __decorate([
2369
+ BooleanDataMember({ code: GNParameterCode.Version, isOptional: true }),
2370
+ __metadata("design:type", Boolean)
2371
+ ], GetServerGameDataRequestData.prototype, "version", void 0);
2372
+ DashboardModels.GetServerGameDataRequestData = GetServerGameDataRequestData;
2373
+ class AdminAccountResponseData {
2374
+ }
2375
+ __decorate([
2376
+ StringDataMember({ code: GNParameterCode.UserId }),
2377
+ __metadata("design:type", String)
2378
+ ], AdminAccountResponseData.prototype, "userId", void 0);
2379
+ __decorate([
2380
+ StringDataMember({ code: GNParameterCode.Username }),
2381
+ __metadata("design:type", String)
2382
+ ], AdminAccountResponseData.prototype, "username", void 0);
2383
+ __decorate([
2384
+ StringDataMember({ code: GNParameterCode.SecretKey }),
2385
+ __metadata("design:type", String)
2386
+ ], AdminAccountResponseData.prototype, "secretKey", void 0);
2387
+ DashboardModels.AdminAccountResponseData = AdminAccountResponseData;
2388
+ class GetAdminAccountListResponseData {
2389
+ }
2390
+ __decorate([
2391
+ GNArrayDataMember({ code: GNParameterCode.Results, elementCls: AdminAccountResponseData }),
2392
+ __metadata("design:type", Array)
2393
+ ], GetAdminAccountListResponseData.prototype, "results", void 0);
2394
+ DashboardModels.GetAdminAccountListResponseData = GetAdminAccountListResponseData;
2395
+ class GetGameInformationResponseData {
2396
+ }
2397
+ __decorate([
2398
+ StringDataMember({ code: GNParameterCode.GameId }),
2399
+ __metadata("design:type", String)
2400
+ ], GetGameInformationResponseData.prototype, "gameId", void 0);
2401
+ __decorate([
2402
+ NumberDataMember({ code: GNParameterCode.TsCreate }),
2403
+ __metadata("design:type", Number)
2404
+ ], GetGameInformationResponseData.prototype, "tsCreate", void 0);
2405
+ __decorate([
2406
+ StringDataMember({ code: GNParameterCode.GameName }),
2407
+ __metadata("design:type", String)
2408
+ ], GetGameInformationResponseData.prototype, "gameName", void 0);
2409
+ __decorate([
2410
+ StringDataMember({ code: GNParameterCode.CreatorId }),
2411
+ __metadata("design:type", String)
2412
+ ], GetGameInformationResponseData.prototype, "creatorId", void 0);
2413
+ __decorate([
2414
+ StringDataMember({ code: GNParameterCode.GameDescription }),
2415
+ __metadata("design:type", String)
2416
+ ], GetGameInformationResponseData.prototype, "gameDescription", void 0);
2417
+ __decorate([
2418
+ StringDataMember({ code: GNParameterCode.GameIconUrl }),
2419
+ __metadata("design:type", String)
2420
+ ], GetGameInformationResponseData.prototype, "gameIconUrl", void 0);
2421
+ __decorate([
2422
+ GNHashtableDataMember({ code: GNParameterCode.GameSettings }),
2423
+ __metadata("design:type", GameSettingsParam)
2424
+ ], GetGameInformationResponseData.prototype, "gameSettings", void 0);
2425
+ __decorate([
2426
+ GNArrayDataMember({ code: GNParameterCode.MatchmakingQueueSettings, elementCls: MatchmakingQueueSettingsParam }),
2427
+ __metadata("design:type", Array)
2428
+ ], GetGameInformationResponseData.prototype, "matchmakingQueueSettings", void 0);
2429
+ DashboardModels.GetGameInformationResponseData = GetGameInformationResponseData;
2430
+ class GameWithGameIdResponseData {
2431
+ }
2432
+ __decorate([
2433
+ StringDataMember({ code: GNParameterCode.GameId }),
2434
+ __metadata("design:type", String)
2435
+ ], GameWithGameIdResponseData.prototype, "gameId", void 0);
2436
+ DashboardModels.GameWithGameIdResponseData = GameWithGameIdResponseData;
2437
+ class GetGameListResponseData {
2438
+ }
2439
+ __decorate([
2440
+ GNArrayDataMember({ code: GNParameterCode.Results, elementCls: GameWithGameIdResponseData }),
2441
+ __metadata("design:type", Array)
2442
+ ], GetGameListResponseData.prototype, "results", void 0);
2443
+ DashboardModels.GetGameListResponseData = GetGameListResponseData;
2444
+ class GetMasterGameSettingsResponseData {
2445
+ }
2446
+ __decorate([
2447
+ GNHashtableDataMember({ code: GNParameterCode.ThirtPartySettings }),
2448
+ __metadata("design:type", ThirtPartyParam)
2449
+ ], GetMasterGameSettingsResponseData.prototype, "thirtPartySettings", void 0);
2450
+ __decorate([
2451
+ GNHashtableDataMember({ code: GNParameterCode.MasterPlayerSettings }),
2452
+ __metadata("design:type", MasterPlayerSettingsParam)
2453
+ ], GetMasterGameSettingsResponseData.prototype, "masterPlayerSettings", void 0);
2454
+ __decorate([
2455
+ GNHashtableDataMember({ code: GNParameterCode.EmailSettings }),
2456
+ __metadata("design:type", EmailSettingsParam)
2457
+ ], GetMasterGameSettingsResponseData.prototype, "emailSettings", void 0);
2458
+ __decorate([
2459
+ GNHashtableDataMember({ code: GNParameterCode.PushNotificationSettings }),
2460
+ __metadata("design:type", PushNotificationSettingsParam)
2461
+ ], GetMasterGameSettingsResponseData.prototype, "pushNotificationSettings", void 0);
2462
+ DashboardModels.GetMasterGameSettingsResponseData = GetMasterGameSettingsResponseData;
2463
+ class GetSecretInfoInformationResponseData {
2464
+ }
2465
+ __decorate([
2466
+ StringDataMember({ code: GNParameterCode.SecretKey }),
2467
+ __metadata("design:type", String)
2468
+ ], GetSecretInfoInformationResponseData.prototype, "secretKey", void 0);
2469
+ __decorate([
2470
+ StringDataMember({ code: GNParameterCode.GameId }),
2471
+ __metadata("design:type", String)
2472
+ ], GetSecretInfoInformationResponseData.prototype, "gameId", void 0);
2473
+ __decorate([
2474
+ NumberDataMember({ code: GNParameterCode.Role }),
2475
+ __metadata("design:type", Number)
2476
+ ], GetSecretInfoInformationResponseData.prototype, "role", void 0);
2477
+ __decorate([
2478
+ NumberDataMember({ code: GNParameterCode.TsCreate }),
2479
+ __metadata("design:type", Number)
2480
+ ], GetSecretInfoInformationResponseData.prototype, "tsCreate", void 0);
2481
+ __decorate([
2482
+ StringDataMember({ code: GNParameterCode.CreatorId }),
2483
+ __metadata("design:type", String)
2484
+ ], GetSecretInfoInformationResponseData.prototype, "creatorId", void 0);
2485
+ __decorate([
2486
+ BooleanDataMember({ code: GNParameterCode.Remove }),
2487
+ __metadata("design:type", Boolean)
2488
+ ], GetSecretInfoInformationResponseData.prototype, "remove", void 0);
2489
+ __decorate([
2490
+ NumberDataMember({ code: GNParameterCode.TsExpire }),
2491
+ __metadata("design:type", Number)
2492
+ ], GetSecretInfoInformationResponseData.prototype, "tsExpire", void 0);
2493
+ __decorate([
2494
+ GNHashtableDataMember({ code: GNParameterCode.Permission }),
2495
+ __metadata("design:type", PermissionParam)
2496
+ ], GetSecretInfoInformationResponseData.prototype, "permission", void 0);
2497
+ DashboardModels.GetSecretInfoInformationResponseData = GetSecretInfoInformationResponseData;
2498
+ class SecretInfoWithSecretKeyResponseData {
2499
+ }
2500
+ __decorate([
2501
+ StringDataMember({ code: GNParameterCode.SecretKey }),
2502
+ __metadata("design:type", String)
2503
+ ], SecretInfoWithSecretKeyResponseData.prototype, "secretKey", void 0);
2504
+ DashboardModels.SecretInfoWithSecretKeyResponseData = SecretInfoWithSecretKeyResponseData;
2505
+ class GetSecretInfoListResponseData {
2506
+ }
2507
+ __decorate([
2508
+ GNArrayDataMember({ code: GNParameterCode.Results, elementCls: SecretInfoWithSecretKeyResponseData }),
2509
+ __metadata("design:type", Array)
2510
+ ], GetSecretInfoListResponseData.prototype, "results", void 0);
2511
+ DashboardModels.GetSecretInfoListResponseData = GetSecretInfoListResponseData;
2512
+ class AdminAccountWithUserIdResponseData {
2513
+ }
2514
+ __decorate([
2515
+ StringDataMember({ code: GNParameterCode.UserId }),
2516
+ __metadata("design:type", String)
2517
+ ], AdminAccountWithUserIdResponseData.prototype, "userId", void 0);
2518
+ DashboardModels.AdminAccountWithUserIdResponseData = AdminAccountWithUserIdResponseData;
2519
+ class GrantAdminAccountResponseData {
2520
+ }
2521
+ __decorate([
2522
+ GNArrayDataMember({ code: GNParameterCode.Results, elementCls: AdminAccountWithUserIdResponseData }),
2523
+ __metadata("design:type", Array)
2524
+ ], GrantAdminAccountResponseData.prototype, "results", void 0);
2525
+ DashboardModels.GrantAdminAccountResponseData = GrantAdminAccountResponseData;
2526
+ class LoginByAdminAccountResponseData {
2527
+ }
2528
+ __decorate([
2529
+ StringDataMember({ code: ParameterCode.AuthToken }),
2530
+ __metadata("design:type", String)
2531
+ ], LoginByAdminAccountResponseData.prototype, "authToken", void 0);
2532
+ DashboardModels.LoginByAdminAccountResponseData = LoginByAdminAccountResponseData;
2533
+ class GetServerLogResponseData {
2534
+ }
2535
+ __decorate([
2536
+ GNArrayDataMember({ code: GNParameterCode.Results, elementCls: String }),
2537
+ __metadata("design:type", Array)
2538
+ ], GetServerLogResponseData.prototype, "results", void 0);
2539
+ DashboardModels.GetServerLogResponseData = GetServerLogResponseData;
2540
+ class CountryRegionResponseData {
2541
+ }
2542
+ __decorate([
2543
+ StringDataMember({ code: GNParameterCode.RegionCode }),
2544
+ __metadata("design:type", String)
2545
+ ], CountryRegionResponseData.prototype, "regionCode", void 0);
2546
+ __decorate([
2547
+ StringDataMember({ code: GNParameterCode.RegionName }),
2548
+ __metadata("design:type", String)
2549
+ ], CountryRegionResponseData.prototype, "regionName", void 0);
2550
+ __decorate([
2551
+ NumberDataMember({ code: GNParameterCode.CCU }),
2552
+ __metadata("design:type", Number)
2553
+ ], CountryRegionResponseData.prototype, "ccu", void 0);
2554
+ __decorate([
2555
+ NumberDataMember({ code: GNParameterCode.Latitude, isOptional: true, defaultValue: 0 }),
2556
+ __metadata("design:type", Number)
2557
+ ], CountryRegionResponseData.prototype, "latitude", void 0);
2558
+ __decorate([
2559
+ NumberDataMember({ code: GNParameterCode.Longitude, isOptional: true, defaultValue: 0 }),
2560
+ __metadata("design:type", Number)
2561
+ ], CountryRegionResponseData.prototype, "longitude", void 0);
2562
+ DashboardModels.CountryRegionResponseData = CountryRegionResponseData;
2563
+ class CountryResponseData {
2564
+ }
2565
+ __decorate([
2566
+ StringDataMember({ code: GNParameterCode.CountryCode }),
2567
+ __metadata("design:type", String)
2568
+ ], CountryResponseData.prototype, "countryCode", void 0);
2569
+ __decorate([
2570
+ GNArrayDataMember({ code: GNParameterCode.Regions, elementCls: CountryRegionResponseData }),
2571
+ __metadata("design:type", Array)
2572
+ ], CountryResponseData.prototype, "regions", void 0);
2573
+ DashboardModels.CountryResponseData = CountryResponseData;
2574
+ class AnalyticsItemResponseData {
2575
+ }
2576
+ __decorate([
2577
+ NumberDataMember({ code: GNParameterCode.CCU }),
2578
+ __metadata("design:type", Number)
2579
+ ], AnalyticsItemResponseData.prototype, "ccu", void 0);
2580
+ __decorate([
2581
+ NumberDataMember({ code: GNParameterCode.DAU }),
2582
+ __metadata("design:type", Number)
2583
+ ], AnalyticsItemResponseData.prototype, "dau", void 0);
2584
+ __decorate([
2585
+ NumberDataMember({ code: GNParameterCode.DAUSince0h }),
2586
+ __metadata("design:type", Number)
2587
+ ], AnalyticsItemResponseData.prototype, "dauSince0h", void 0);
2588
+ __decorate([
2589
+ NumberDataMember({ code: GNParameterCode.DNU }),
2590
+ __metadata("design:type", Number)
2591
+ ], AnalyticsItemResponseData.prototype, "dnu", void 0);
2592
+ __decorate([
2593
+ NumberDataMember({ code: GNParameterCode.DNUSince0h }),
2594
+ __metadata("design:type", Number)
2595
+ ], AnalyticsItemResponseData.prototype, "dnuSince0h", void 0);
2596
+ __decorate([
2597
+ NumberDataMember({ code: GNParameterCode.DRT }),
2598
+ __metadata("design:type", Number)
2599
+ ], AnalyticsItemResponseData.prototype, "drt", void 0);
2600
+ __decorate([
2601
+ NumberDataMember({ code: GNParameterCode.DRTSince0h }),
2602
+ __metadata("design:type", Number)
2603
+ ], AnalyticsItemResponseData.prototype, "drtSince0h", void 0);
2604
+ __decorate([
2605
+ NumberDataMember({ code: GNParameterCode.MAU }),
2606
+ __metadata("design:type", Number)
2607
+ ], AnalyticsItemResponseData.prototype, "mau", void 0);
2608
+ __decorate([
2609
+ NumberDataMember({ code: GNParameterCode.MAUSince0h1 }),
2610
+ __metadata("design:type", Number)
2611
+ ], AnalyticsItemResponseData.prototype, "mauSince0h1", void 0);
2612
+ __decorate([
2613
+ NumberDataMember({ code: GNParameterCode.MNU }),
2614
+ __metadata("design:type", Number)
2615
+ ], AnalyticsItemResponseData.prototype, "mnu", void 0);
2616
+ __decorate([
2617
+ NumberDataMember({ code: GNParameterCode.MNUSince0h1 }),
2618
+ __metadata("design:type", Number)
2619
+ ], AnalyticsItemResponseData.prototype, "mnuSince0h1", void 0);
2620
+ __decorate([
2621
+ NumberDataMember({ code: GNParameterCode.MRT }),
2622
+ __metadata("design:type", Number)
2623
+ ], AnalyticsItemResponseData.prototype, "mrt", void 0);
2624
+ __decorate([
2625
+ NumberDataMember({ code: GNParameterCode.MRTSince0h1 }),
2626
+ __metadata("design:type", Number)
2627
+ ], AnalyticsItemResponseData.prototype, "mrtSince0h1", void 0);
2628
+ __decorate([
2629
+ NumberDataMember({ code: GNParameterCode.AnalyticsPrice }),
2630
+ __metadata("design:type", Number)
2631
+ ], AnalyticsItemResponseData.prototype, "analyticsPrice", void 0);
2632
+ DashboardModels.AnalyticsItemResponseData = AnalyticsItemResponseData;
2633
+ class GetAnalyticsResponseData {
2634
+ }
2635
+ __decorate([
2636
+ GNHashtableDataMember({ code: GNParameterCode.AnalyticsItem, isOptional: true }),
2637
+ __metadata("design:type", AnalyticsItemResponseData)
2638
+ ], GetAnalyticsResponseData.prototype, "analyticsItem", void 0);
2639
+ __decorate([
2640
+ GNArrayDataMember({ code: GNParameterCode.Country, elementCls: CountryResponseData, isOptional: true }),
2641
+ __metadata("design:type", Array)
2642
+ ], GetAnalyticsResponseData.prototype, "country", void 0);
2643
+ DashboardModels.GetAnalyticsResponseData = GetAnalyticsResponseData;
2644
+ class GetUsernameAdminAccountResponseData {
2645
+ }
2646
+ __decorate([
2647
+ StringDataMember({ code: GNParameterCode.Username }),
2648
+ __metadata("design:type", String)
2649
+ ], GetUsernameAdminAccountResponseData.prototype, "username", void 0);
2650
+ DashboardModels.GetUsernameAdminAccountResponseData = GetUsernameAdminAccountResponseData;
2651
+ class ChildScriptResponseData {
2652
+ }
2653
+ __decorate([
2654
+ StringDataMember({ code: GNParameterCode.EventName }),
2655
+ __metadata("design:type", String)
2656
+ ], ChildScriptResponseData.prototype, "eventName", void 0);
2657
+ __decorate([
2658
+ StringDataMember({ code: GNParameterCode.Script }),
2659
+ __metadata("design:type", String)
2660
+ ], ChildScriptResponseData.prototype, "script", void 0);
2661
+ __decorate([
2662
+ BooleanDataMember({ code: GNParameterCode.HasEdit }),
2663
+ __metadata("design:type", Boolean)
2664
+ ], ChildScriptResponseData.prototype, "hasEdit", void 0);
2665
+ DashboardModels.ChildScriptResponseData = ChildScriptResponseData;
2666
+ class EventCallbackCloudScriptResponseData {
2667
+ }
2668
+ __decorate([
2669
+ StringDataMember({ code: GNParameterCode.Type }),
2670
+ __metadata("design:type", String)
2671
+ ], EventCallbackCloudScriptResponseData.prototype, "type", void 0);
2672
+ __decorate([
2673
+ NumberDataMember({ code: GNParameterCode.TsCreate }),
2674
+ __metadata("design:type", Number)
2675
+ ], EventCallbackCloudScriptResponseData.prototype, "tsCreate", void 0);
2676
+ __decorate([
2677
+ StringDataMember({ code: GNParameterCode.Version }),
2678
+ __metadata("design:type", String)
2679
+ ], EventCallbackCloudScriptResponseData.prototype, "version", void 0);
2680
+ __decorate([
2681
+ GNArrayDataMember({ code: GNParameterCode.ChildScripts, elementCls: ChildScriptResponseData }),
2682
+ __metadata("design:type", Array)
2683
+ ], EventCallbackCloudScriptResponseData.prototype, "childScripts", void 0);
2684
+ DashboardModels.EventCallbackCloudScriptResponseData = EventCallbackCloudScriptResponseData;
2685
+ class GetEventCallbackCloudScriptResponseData {
2686
+ }
2687
+ __decorate([
2688
+ GNArrayDataMember({ code: GNParameterCode.Results, elementCls: EventCallbackCloudScriptResponseData }),
2689
+ __metadata("design:type", Array)
2690
+ ], GetEventCallbackCloudScriptResponseData.prototype, "results", void 0);
2691
+ DashboardModels.GetEventCallbackCloudScriptResponseData = GetEventCallbackCloudScriptResponseData;
2692
+ class SetEventCallbackCloudScriptResponseData {
2693
+ }
2694
+ __decorate([
2695
+ StringDataMember({ code: GNParameterCode.Message }),
2696
+ __metadata("design:type", String)
2697
+ ], SetEventCallbackCloudScriptResponseData.prototype, "errorMessage", void 0);
2698
+ DashboardModels.SetEventCallbackCloudScriptResponseData = SetEventCallbackCloudScriptResponseData;
2699
+ class BackupStatisticsLeaderboardVersionResponseData {
2700
+ }
2701
+ __decorate([
2702
+ StringDataMember({ code: GNParameterCode.Version }),
2703
+ __metadata("design:type", String)
2704
+ ], BackupStatisticsLeaderboardVersionResponseData.prototype, "version", void 0);
2705
+ __decorate([
2706
+ StringDataMember({ code: GNParameterCode.Log }),
2707
+ __metadata("design:type", String)
2708
+ ], BackupStatisticsLeaderboardVersionResponseData.prototype, "log", void 0);
2709
+ __decorate([
2710
+ NumberDataMember({ code: GNParameterCode.TsCreate }),
2711
+ __metadata("design:type", Number)
2712
+ ], BackupStatisticsLeaderboardVersionResponseData.prototype, "tsCreate", void 0);
2713
+ DashboardModels.BackupStatisticsLeaderboardVersionResponseData = BackupStatisticsLeaderboardVersionResponseData;
2714
+ class GetBackupStatisticsLeaderboardVersionResponseData {
2715
+ }
2716
+ __decorate([
2717
+ GNArrayDataMember({ code: GNParameterCode.Results, elementCls: BackupStatisticsLeaderboardVersionResponseData }),
2718
+ __metadata("design:type", Array)
2719
+ ], GetBackupStatisticsLeaderboardVersionResponseData.prototype, "results", void 0);
2720
+ DashboardModels.GetBackupStatisticsLeaderboardVersionResponseData = GetBackupStatisticsLeaderboardVersionResponseData;
2721
+ class GetServerGameDataResponseData {
2722
+ }
2723
+ __decorate([
2724
+ NumberDataMember({ code: GNParameterCode.MasterPlayerCount, isOptional: true }),
2725
+ __metadata("design:type", Number)
2726
+ ], GetServerGameDataResponseData.prototype, "masterPlayerCount", void 0);
2727
+ __decorate([
2728
+ NumberDataMember({ code: GNParameterCode.GamePlayerCount, isOptional: true }),
2729
+ __metadata("design:type", Number)
2730
+ ], GetServerGameDataResponseData.prototype, "gamePlayerCount", void 0);
2731
+ __decorate([
2732
+ NumberDataMember({ code: GNParameterCode.CharacterPlayerCount, isOptional: true }),
2733
+ __metadata("design:type", Number)
2734
+ ], GetServerGameDataResponseData.prototype, "characterPlayerCount", void 0);
2735
+ __decorate([
2736
+ NumberDataMember({ code: GNParameterCode.InventoryCount, isOptional: true }),
2737
+ __metadata("design:type", Number)
2738
+ ], GetServerGameDataResponseData.prototype, "inventoryCount", void 0);
2739
+ __decorate([
2740
+ NumberDataMember({ code: GNParameterCode.StoreInventoryCount, isOptional: true }),
2741
+ __metadata("design:type", Number)
2742
+ ], GetServerGameDataResponseData.prototype, "storeInventoryCount", void 0);
2743
+ __decorate([
2744
+ NumberDataMember({ code: GNParameterCode.GroupCount, isOptional: true }),
2745
+ __metadata("design:type", Number)
2746
+ ], GetServerGameDataResponseData.prototype, "groupCount", void 0);
2747
+ __decorate([
2748
+ GNArrayDataMember({ code: GNParameterCode.Country, elementCls: CountryResponseData, isOptional: true }),
2749
+ __metadata("design:type", Array)
2750
+ ], GetServerGameDataResponseData.prototype, "country", void 0);
2751
+ __decorate([
2752
+ StringDataMember({ code: GNParameterCode.Version, isOptional: true }),
2753
+ __metadata("design:type", String)
2754
+ ], GetServerGameDataResponseData.prototype, "version", void 0);
2755
+ DashboardModels.GetServerGameDataResponseData = GetServerGameDataResponseData;
2756
+ class EmptyResponseData {
2757
+ }
2758
+ DashboardModels.EmptyResponseData = EmptyResponseData;
2759
+ })(DashboardModels || (DashboardModels = {}));