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