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,1326 +1,1466 @@
|
|
|
1
1
|
namespace XmobiTea.GN.Entity.Models
|
|
2
2
|
{
|
|
3
3
|
using System.Collections.Generic;
|
|
4
|
+
using XmobiTea.GN.Common;
|
|
4
5
|
using XmobiTea.GN.Constant;
|
|
5
6
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
public partial class GamePlayerModels
|
|
8
|
+
{
|
|
9
|
+
public class AddPlayerFriendRequestData
|
|
10
|
+
{
|
|
11
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
12
|
+
public string? userId;
|
|
12
13
|
|
|
13
|
-
|
|
14
|
-
|
|
14
|
+
[StringDataMember(code = GNParameterCode.FriendId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
15
|
+
public string friendId;
|
|
15
16
|
|
|
16
|
-
|
|
17
|
-
|
|
17
|
+
[StringDataMember(code = GNParameterCode.CatalogId, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
18
|
+
public string catalogId;
|
|
18
19
|
|
|
19
|
-
|
|
20
|
+
}
|
|
20
21
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
public class ServerAddPlayerFriendRequestData : AddPlayerFriendRequestData
|
|
23
|
+
{
|
|
24
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
25
|
+
public new string userId;
|
|
25
26
|
|
|
26
|
-
|
|
27
|
+
}
|
|
27
28
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
public class AdminAddPlayerFriendRequestData : ServerAddPlayerFriendRequestData
|
|
30
|
+
{
|
|
31
|
+
}
|
|
31
32
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
public class AddSegmentRequestData
|
|
34
|
+
{
|
|
35
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
36
|
+
public string? userId;
|
|
36
37
|
|
|
37
|
-
|
|
38
|
-
|
|
38
|
+
[StringDataMember(code = GNParameterCode.Value, minLength = 6, maxLength = 32, mustNonNull = true)]
|
|
39
|
+
public string value;
|
|
39
40
|
|
|
40
|
-
|
|
41
|
+
}
|
|
41
42
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
public class ServerAddSegmentRequestData : AddSegmentRequestData
|
|
44
|
+
{
|
|
45
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
46
|
+
public new string userId;
|
|
46
47
|
|
|
47
|
-
|
|
48
|
+
}
|
|
48
49
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
50
|
+
public class AdminAddSegmentRequestData : ServerAddSegmentRequestData
|
|
51
|
+
{
|
|
52
|
+
}
|
|
52
53
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
54
|
+
public class GetAvatarRequestData
|
|
55
|
+
{
|
|
56
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
57
|
+
public string? userId;
|
|
57
58
|
|
|
58
|
-
|
|
59
|
+
}
|
|
59
60
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
public class ServerGetAvatarRequestData : GetAvatarRequestData
|
|
62
|
+
{
|
|
63
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
64
|
+
public new string userId;
|
|
64
65
|
|
|
65
|
-
|
|
66
|
+
}
|
|
66
67
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
68
|
+
public class AdminGetAvatarRequestData : ServerGetAvatarRequestData
|
|
69
|
+
{
|
|
70
|
+
}
|
|
70
71
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
72
|
+
public class GetCountryCodeRequestData
|
|
73
|
+
{
|
|
74
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
75
|
+
public string? userId;
|
|
75
76
|
|
|
76
|
-
|
|
77
|
+
}
|
|
77
78
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
79
|
+
public class ServerGetCountryCodeRequestData : GetCountryCodeRequestData
|
|
80
|
+
{
|
|
81
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
82
|
+
public new string userId;
|
|
82
83
|
|
|
83
|
-
|
|
84
|
+
}
|
|
84
85
|
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
86
|
+
public class AdminGetCountryCodeRequestData : ServerGetCountryCodeRequestData
|
|
87
|
+
{
|
|
88
|
+
}
|
|
88
89
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
90
|
+
public class GetCustomDataRequestData
|
|
91
|
+
{
|
|
92
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
93
|
+
public string? userId;
|
|
93
94
|
|
|
94
|
-
|
|
95
|
-
|
|
95
|
+
[GNArrayDataMember(code = GNParameterCode.CustomDataKeys, isOptional = true, elementCls = typeof(string))]
|
|
96
|
+
public List<string>? customDataKeys;
|
|
96
97
|
|
|
97
|
-
|
|
98
|
+
}
|
|
98
99
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
100
|
+
public class ServerGetCustomDataRequestData : GetCustomDataRequestData
|
|
101
|
+
{
|
|
102
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
103
|
+
public new string userId;
|
|
103
104
|
|
|
104
|
-
|
|
105
|
+
}
|
|
105
106
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
107
|
+
public class AdminGetCustomDataRequestData : ServerGetCustomDataRequestData
|
|
108
|
+
{
|
|
109
|
+
}
|
|
109
110
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
111
|
+
public class GetDisplayNameRequestData
|
|
112
|
+
{
|
|
113
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
114
|
+
public string? userId;
|
|
114
115
|
|
|
115
|
-
|
|
116
|
+
}
|
|
116
117
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
118
|
+
public class ServerGetDisplayNameRequestData : GetDisplayNameRequestData
|
|
119
|
+
{
|
|
120
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
121
|
+
public new string userId;
|
|
121
122
|
|
|
122
|
-
|
|
123
|
+
}
|
|
123
124
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
125
|
+
public class AdminGetDisplayNameRequestData : ServerGetDisplayNameRequestData
|
|
126
|
+
{
|
|
127
|
+
}
|
|
127
128
|
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
129
|
+
public class GetFriendStatisticsLeaderboardAroundPlayerRequestData
|
|
130
|
+
{
|
|
131
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
132
|
+
public string? userId;
|
|
132
133
|
|
|
133
|
-
|
|
134
|
-
|
|
134
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
135
|
+
public string key;
|
|
135
136
|
|
|
136
|
-
|
|
137
|
-
|
|
137
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
138
|
+
public InfoRequestParam infoRequestParam;
|
|
138
139
|
|
|
139
|
-
|
|
140
|
-
|
|
140
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
141
|
+
public int? skip;
|
|
141
142
|
|
|
142
|
-
|
|
143
|
-
|
|
143
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
144
|
+
public int? limit;
|
|
144
145
|
|
|
145
|
-
|
|
146
|
+
}
|
|
146
147
|
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
148
|
+
public class ServerGetFriendStatisticsLeaderboardAroundPlayerRequestData : GetFriendStatisticsLeaderboardAroundPlayerRequestData
|
|
149
|
+
{
|
|
150
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
151
|
+
public new string userId;
|
|
151
152
|
|
|
152
|
-
|
|
153
|
+
}
|
|
153
154
|
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
155
|
+
public class AdminGetFriendStatisticsLeaderboardAroundPlayerRequestData : ServerGetFriendStatisticsLeaderboardAroundPlayerRequestData
|
|
156
|
+
{
|
|
157
|
+
}
|
|
157
158
|
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
159
|
+
public class GetFriendStatisticsLeaderboardRequestData
|
|
160
|
+
{
|
|
161
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
162
|
+
public string? userId;
|
|
162
163
|
|
|
163
|
-
|
|
164
|
-
|
|
164
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
165
|
+
public string key;
|
|
165
166
|
|
|
166
|
-
|
|
167
|
-
|
|
167
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
168
|
+
public InfoRequestParam infoRequestParam;
|
|
168
169
|
|
|
169
|
-
|
|
170
|
-
|
|
170
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
171
|
+
public int? skip;
|
|
171
172
|
|
|
172
|
-
|
|
173
|
-
|
|
173
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
174
|
+
public int? limit;
|
|
174
175
|
|
|
175
|
-
|
|
176
|
+
}
|
|
176
177
|
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
178
|
+
public class ServerGetFriendStatisticsLeaderboardRequestData : GetFriendStatisticsLeaderboardRequestData
|
|
179
|
+
{
|
|
180
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
181
|
+
public new string userId;
|
|
181
182
|
|
|
182
|
-
|
|
183
|
+
}
|
|
183
184
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
185
|
+
public class AdminGetFriendStatisticsLeaderboardRequestData : ServerGetFriendStatisticsLeaderboardRequestData
|
|
186
|
+
{
|
|
187
|
+
}
|
|
187
188
|
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
189
|
+
public class GetIpAddressCreateRequestData
|
|
190
|
+
{
|
|
191
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
192
|
+
public string? userId;
|
|
192
193
|
|
|
193
|
-
|
|
194
|
+
}
|
|
194
195
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
196
|
+
public class ServerGetIpAddressCreateRequestData : GetIpAddressCreateRequestData
|
|
197
|
+
{
|
|
198
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
199
|
+
public new string userId;
|
|
199
200
|
|
|
200
|
-
|
|
201
|
+
}
|
|
201
202
|
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
203
|
+
public class AdminGetIpAddressCreateRequestData : ServerGetIpAddressCreateRequestData
|
|
204
|
+
{
|
|
205
|
+
}
|
|
205
206
|
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
207
|
+
public class GetOnlineStatusRequestData
|
|
208
|
+
{
|
|
209
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
210
|
+
public string? userId;
|
|
210
211
|
|
|
211
|
-
|
|
212
|
+
}
|
|
212
213
|
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
214
|
+
public class ServerGetOnlineStatusRequestData : GetOnlineStatusRequestData
|
|
215
|
+
{
|
|
216
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
217
|
+
public new string userId;
|
|
217
218
|
|
|
218
|
-
|
|
219
|
+
}
|
|
219
220
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
221
|
+
public class AdminGetOnlineStatusRequestData : ServerGetOnlineStatusRequestData
|
|
222
|
+
{
|
|
223
|
+
}
|
|
223
224
|
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
225
|
+
public class GetPlayerBanRequestData
|
|
226
|
+
{
|
|
227
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
228
|
+
public string? userId;
|
|
228
229
|
|
|
229
|
-
|
|
230
|
+
}
|
|
230
231
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
232
|
+
public class ServerGetPlayerBanRequestData : GetPlayerBanRequestData
|
|
233
|
+
{
|
|
234
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
235
|
+
public new string userId;
|
|
235
236
|
|
|
236
|
-
|
|
237
|
+
}
|
|
237
238
|
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
239
|
+
public class AdminGetPlayerBanRequestData : ServerGetPlayerBanRequestData
|
|
240
|
+
{
|
|
241
|
+
}
|
|
241
242
|
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
243
|
+
public class GetPlayerCharacterRequestData
|
|
244
|
+
{
|
|
245
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
246
|
+
public string? userId;
|
|
246
247
|
|
|
247
|
-
|
|
248
|
-
|
|
248
|
+
[GNArrayDataMember(code = GNParameterCode.CharacterCatalogIds, isOptional = true, elementCls = typeof(string))]
|
|
249
|
+
public List<string>? characterCatalogIds;
|
|
249
250
|
|
|
250
|
-
|
|
251
|
+
}
|
|
251
252
|
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
253
|
+
public class ServerGetPlayerCharacterRequestData : GetPlayerCharacterRequestData
|
|
254
|
+
{
|
|
255
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
256
|
+
public new string userId;
|
|
256
257
|
|
|
257
|
-
|
|
258
|
+
}
|
|
258
259
|
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
260
|
+
public class AdminGetPlayerCharacterRequestData : ServerGetPlayerCharacterRequestData
|
|
261
|
+
{
|
|
262
|
+
}
|
|
262
263
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
264
|
+
public class GetPlayerCurrencyRequestData
|
|
265
|
+
{
|
|
266
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
267
|
+
public string? userId;
|
|
267
268
|
|
|
268
|
-
|
|
269
|
-
|
|
269
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerCurrencyKeys, isOptional = true, elementCls = typeof(string))]
|
|
270
|
+
public List<string>? playerCurrencyKeys;
|
|
270
271
|
|
|
271
|
-
|
|
272
|
+
}
|
|
272
273
|
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
274
|
+
public class ServerGetPlayerCurrencyRequestData : GetPlayerCurrencyRequestData
|
|
275
|
+
{
|
|
276
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
277
|
+
public new string userId;
|
|
277
278
|
|
|
278
|
-
|
|
279
|
+
}
|
|
279
280
|
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
281
|
+
public class AdminGetPlayerCurrencyRequestData : ServerGetPlayerCurrencyRequestData
|
|
282
|
+
{
|
|
283
|
+
}
|
|
283
284
|
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
285
|
+
public class GetPlayerDataRequestData
|
|
286
|
+
{
|
|
287
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
288
|
+
public string? userId;
|
|
288
289
|
|
|
289
|
-
|
|
290
|
-
|
|
290
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerDataKeys, isOptional = true)]
|
|
291
|
+
public List<string>? playerDataKeys;
|
|
291
292
|
|
|
292
|
-
|
|
293
|
+
}
|
|
293
294
|
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
295
|
+
public class ServerGetPlayerDataRequestData : GetPlayerDataRequestData
|
|
296
|
+
{
|
|
297
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
298
|
+
public new string userId;
|
|
298
299
|
|
|
299
|
-
|
|
300
|
+
}
|
|
300
301
|
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
302
|
+
public class AdminGetPlayerDataRequestData : ServerGetPlayerDataRequestData
|
|
303
|
+
{
|
|
304
|
+
}
|
|
304
305
|
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
306
|
+
public class GetPlayerFriendRequestData
|
|
307
|
+
{
|
|
308
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
309
|
+
public string? userId;
|
|
309
310
|
|
|
310
|
-
|
|
311
|
-
|
|
311
|
+
[GNArrayDataMember(code = GNParameterCode.FriendCatalogIds, isOptional = true, elementCls = typeof(string))]
|
|
312
|
+
public List<string>? friendCatalogIds;
|
|
312
313
|
|
|
313
|
-
|
|
314
|
+
}
|
|
314
315
|
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
316
|
+
public class ServerGetPlayerFriendRequestData : GetPlayerFriendRequestData
|
|
317
|
+
{
|
|
318
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
319
|
+
public new string userId;
|
|
319
320
|
|
|
320
|
-
|
|
321
|
+
}
|
|
321
322
|
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
323
|
+
public class AdminGetPlayerFriendRequestData : ServerGetPlayerFriendRequestData
|
|
324
|
+
{
|
|
325
|
+
}
|
|
325
326
|
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
327
|
+
public class GetPlayerGroupRequestData
|
|
328
|
+
{
|
|
329
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
330
|
+
public string? userId;
|
|
330
331
|
|
|
331
|
-
|
|
332
|
-
|
|
332
|
+
[GNArrayDataMember(code = GNParameterCode.GroupCatalogIds, isOptional = true, elementCls = typeof(string))]
|
|
333
|
+
public List<string>? groupCatalogIds;
|
|
333
334
|
|
|
334
|
-
|
|
335
|
+
}
|
|
335
336
|
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
337
|
+
public class ServerGetPlayerGroupRequestData : GetPlayerGroupRequestData
|
|
338
|
+
{
|
|
339
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
340
|
+
public new string userId;
|
|
340
341
|
|
|
341
|
-
|
|
342
|
+
}
|
|
342
343
|
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
344
|
+
public class AdminGetPlayerGroupRequestData : ServerGetPlayerGroupRequestData
|
|
345
|
+
{
|
|
346
|
+
}
|
|
346
347
|
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
348
|
+
public class GetPlayerInformationRequestData
|
|
349
|
+
{
|
|
350
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
351
|
+
public string? userId;
|
|
351
352
|
|
|
352
|
-
|
|
353
|
-
|
|
353
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
354
|
+
public InfoRequestParam infoRequestParam;
|
|
354
355
|
|
|
355
|
-
|
|
356
|
+
}
|
|
356
357
|
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
358
|
+
public class ServerGetPlayerInformationRequestData : GetPlayerInformationRequestData
|
|
359
|
+
{
|
|
360
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
361
|
+
public new string userId;
|
|
361
362
|
|
|
362
|
-
|
|
363
|
+
[BooleanDataMember(code = GNParameterCode.CreatePlayerIfNotExists, isOptional = true, defaultValue = false)]
|
|
364
|
+
public bool? createPlayerIfNotExists;
|
|
363
365
|
|
|
364
|
-
|
|
365
|
-
{
|
|
366
|
-
}
|
|
366
|
+
}
|
|
367
367
|
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
public string? userId;
|
|
368
|
+
public class AdminGetPlayerInformationRequestData : ServerGetPlayerInformationRequestData
|
|
369
|
+
{
|
|
370
|
+
}
|
|
372
371
|
|
|
373
|
-
|
|
374
|
-
|
|
372
|
+
public class GetPlayerInventoryRequestData
|
|
373
|
+
{
|
|
374
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
375
|
+
public string? userId;
|
|
375
376
|
|
|
376
|
-
|
|
377
|
+
[GNArrayDataMember(code = GNParameterCode.ItemCatalogIds, isOptional = true, elementCls = typeof(string))]
|
|
378
|
+
public List<string>? itemCatalogIds;
|
|
377
379
|
|
|
378
|
-
|
|
379
|
-
{
|
|
380
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
381
|
-
public new string userId;
|
|
380
|
+
}
|
|
382
381
|
|
|
383
|
-
|
|
382
|
+
public class ServerGetPlayerInventoryRequestData : GetPlayerInventoryRequestData
|
|
383
|
+
{
|
|
384
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
385
|
+
public new string userId;
|
|
384
386
|
|
|
385
|
-
|
|
386
|
-
{
|
|
387
|
-
}
|
|
387
|
+
}
|
|
388
388
|
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
public string? userId;
|
|
389
|
+
public class AdminGetPlayerInventoryRequestData : ServerGetPlayerInventoryRequestData
|
|
390
|
+
{
|
|
391
|
+
}
|
|
393
392
|
|
|
394
|
-
|
|
395
|
-
|
|
393
|
+
public class GetPlayerStatisticsRequestData
|
|
394
|
+
{
|
|
395
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
396
|
+
public string? userId;
|
|
396
397
|
|
|
397
|
-
|
|
398
|
+
[GNArrayDataMember(code = GNParameterCode.StatisticsKeys, isOptional = true, elementCls = typeof(string))]
|
|
399
|
+
public List<string>? statisticsKeys;
|
|
398
400
|
|
|
399
|
-
|
|
400
|
-
{
|
|
401
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
402
|
-
public new string userId;
|
|
401
|
+
}
|
|
403
402
|
|
|
404
|
-
|
|
403
|
+
public class ServerGetPlayerStatisticsRequestData : GetPlayerStatisticsRequestData
|
|
404
|
+
{
|
|
405
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
406
|
+
public new string userId;
|
|
405
407
|
|
|
406
|
-
|
|
407
|
-
{
|
|
408
|
-
}
|
|
408
|
+
}
|
|
409
409
|
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
public string keyword;
|
|
410
|
+
public class AdminGetPlayerStatisticsRequestData : ServerGetPlayerStatisticsRequestData
|
|
411
|
+
{
|
|
412
|
+
}
|
|
414
413
|
|
|
415
|
-
|
|
416
|
-
|
|
414
|
+
public class GetPlayersWithDisplayNameRequestData
|
|
415
|
+
{
|
|
416
|
+
[StringDataMember(code = GNParameterCode.Keyword, minLength = 2, maxLength = 32)]
|
|
417
|
+
public string keyword;
|
|
417
418
|
|
|
418
|
-
|
|
419
|
-
|
|
419
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
420
|
+
public InfoRequestParam infoRequestParam;
|
|
420
421
|
|
|
421
|
-
|
|
422
|
-
|
|
422
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
423
|
+
public int? skip;
|
|
423
424
|
|
|
424
|
-
|
|
425
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
426
|
+
public int? limit;
|
|
425
427
|
|
|
426
|
-
|
|
427
|
-
{
|
|
428
|
-
}
|
|
428
|
+
}
|
|
429
429
|
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
430
|
+
public class ServerGetPlayersWithDisplayNameRequestData : GetPlayersWithDisplayNameRequestData
|
|
431
|
+
{
|
|
432
|
+
}
|
|
433
433
|
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
public string value;
|
|
434
|
+
public class AdminGetPlayersWithDisplayNameRequestData : ServerGetPlayersWithDisplayNameRequestData
|
|
435
|
+
{
|
|
436
|
+
}
|
|
438
437
|
|
|
439
|
-
|
|
440
|
-
|
|
438
|
+
public class GetPlayersWithSegmentRequestData
|
|
439
|
+
{
|
|
440
|
+
[StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
441
|
+
public string value;
|
|
441
442
|
|
|
442
|
-
|
|
443
|
-
|
|
443
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
444
|
+
public InfoRequestParam infoRequestParam;
|
|
444
445
|
|
|
445
|
-
|
|
446
|
-
|
|
446
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
447
|
+
public int? skip;
|
|
447
448
|
|
|
448
|
-
|
|
449
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
450
|
+
public int? limit;
|
|
449
451
|
|
|
450
|
-
|
|
451
|
-
{
|
|
452
|
-
}
|
|
452
|
+
}
|
|
453
453
|
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
454
|
+
public class ServerGetPlayersWithSegmentRequestData : GetPlayersWithSegmentRequestData
|
|
455
|
+
{
|
|
456
|
+
}
|
|
457
457
|
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
public string key;
|
|
458
|
+
public class AdminGetPlayersWithSegmentRequestData : ServerGetPlayersWithSegmentRequestData
|
|
459
|
+
{
|
|
460
|
+
}
|
|
462
461
|
|
|
463
|
-
|
|
464
|
-
|
|
462
|
+
public class GetPlayersWithTagRequestData
|
|
463
|
+
{
|
|
464
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
465
|
+
public string key;
|
|
465
466
|
|
|
466
|
-
|
|
467
|
-
|
|
467
|
+
[StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
468
|
+
public string value;
|
|
468
469
|
|
|
469
|
-
|
|
470
|
-
|
|
470
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
471
|
+
public InfoRequestParam infoRequestParam;
|
|
471
472
|
|
|
472
|
-
|
|
473
|
-
|
|
473
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
474
|
+
public int? skip;
|
|
474
475
|
|
|
475
|
-
|
|
476
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
477
|
+
public int? limit;
|
|
476
478
|
|
|
477
|
-
|
|
478
|
-
{
|
|
479
|
-
}
|
|
479
|
+
}
|
|
480
480
|
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
481
|
+
public class ServerGetPlayersWithTagRequestData : GetPlayersWithTagRequestData
|
|
482
|
+
{
|
|
483
|
+
}
|
|
484
484
|
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
public string? userId;
|
|
485
|
+
public class AdminGetPlayersWithTagRequestData : ServerGetPlayersWithTagRequestData
|
|
486
|
+
{
|
|
487
|
+
}
|
|
489
488
|
|
|
490
|
-
|
|
489
|
+
public class GetSegmentRequestData
|
|
490
|
+
{
|
|
491
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
492
|
+
public string? userId;
|
|
491
493
|
|
|
492
|
-
|
|
493
|
-
{
|
|
494
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
495
|
-
public new string userId;
|
|
494
|
+
}
|
|
496
495
|
|
|
497
|
-
|
|
496
|
+
public class ServerGetSegmentRequestData : GetSegmentRequestData
|
|
497
|
+
{
|
|
498
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
499
|
+
public new string userId;
|
|
498
500
|
|
|
499
|
-
|
|
500
|
-
{
|
|
501
|
-
}
|
|
501
|
+
}
|
|
502
502
|
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
public string? userId;
|
|
503
|
+
public class AdminGetSegmentRequestData : ServerGetSegmentRequestData
|
|
504
|
+
{
|
|
505
|
+
}
|
|
507
506
|
|
|
508
|
-
|
|
509
|
-
|
|
507
|
+
public class GetStatisticsLeaderboardAroundPlayerRequestData
|
|
508
|
+
{
|
|
509
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
510
|
+
public string? userId;
|
|
510
511
|
|
|
511
|
-
|
|
512
|
-
|
|
512
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
513
|
+
public string key;
|
|
513
514
|
|
|
514
|
-
|
|
515
|
-
|
|
515
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
516
|
+
public InfoRequestParam infoRequestParam;
|
|
516
517
|
|
|
517
|
-
|
|
518
|
-
|
|
518
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
519
|
+
public int? skip;
|
|
519
520
|
|
|
520
|
-
|
|
521
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
522
|
+
public int? limit;
|
|
521
523
|
|
|
522
|
-
|
|
523
|
-
{
|
|
524
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
525
|
-
public new string userId;
|
|
524
|
+
}
|
|
526
525
|
|
|
527
|
-
|
|
526
|
+
public class ServerGetStatisticsLeaderboardAroundPlayerRequestData : GetStatisticsLeaderboardAroundPlayerRequestData
|
|
527
|
+
{
|
|
528
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
529
|
+
public new string userId;
|
|
528
530
|
|
|
529
|
-
|
|
530
|
-
{
|
|
531
|
-
}
|
|
531
|
+
}
|
|
532
532
|
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
public string key;
|
|
533
|
+
public class AdminGetStatisticsLeaderboardAroundPlayerRequestData : ServerGetStatisticsLeaderboardAroundPlayerRequestData
|
|
534
|
+
{
|
|
535
|
+
}
|
|
537
536
|
|
|
538
|
-
|
|
539
|
-
|
|
537
|
+
public class GetStatisticsLeaderboardRequestData
|
|
538
|
+
{
|
|
539
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
540
|
+
public string key;
|
|
540
541
|
|
|
541
|
-
|
|
542
|
-
|
|
542
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
543
|
+
public InfoRequestParam infoRequestParam;
|
|
543
544
|
|
|
544
|
-
|
|
545
|
-
|
|
545
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
546
|
+
public int? skip;
|
|
546
547
|
|
|
547
|
-
|
|
548
|
-
|
|
548
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
549
|
+
public int? limit;
|
|
549
550
|
|
|
550
|
-
|
|
551
|
+
[BooleanDataMember(code = GNParameterCode.LoadFromCache, defaultValue = true, isOptional = true)]
|
|
552
|
+
public bool? loadFromCache;
|
|
551
553
|
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
}
|
|
554
|
+
[StringDataMember(code = GNParameterCode.Version, minLength = 2, maxLength = 32, mustNonNull = true, isOptional = true)]
|
|
555
|
+
public string? version;
|
|
555
556
|
|
|
556
|
-
|
|
557
|
-
{
|
|
558
|
-
}
|
|
557
|
+
}
|
|
559
558
|
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
public string? userId;
|
|
559
|
+
public class ServerGetStatisticsLeaderboardRequestData : GetStatisticsLeaderboardRequestData
|
|
560
|
+
{
|
|
561
|
+
}
|
|
564
562
|
|
|
565
|
-
|
|
566
|
-
|
|
563
|
+
public class AdminGetStatisticsLeaderboardRequestData : ServerGetStatisticsLeaderboardRequestData
|
|
564
|
+
{
|
|
565
|
+
}
|
|
567
566
|
|
|
568
|
-
|
|
567
|
+
public class GetTagRequestData
|
|
568
|
+
{
|
|
569
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
570
|
+
public string? userId;
|
|
569
571
|
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
573
|
-
public new string userId;
|
|
572
|
+
[GNArrayDataMember(code = GNParameterCode.TagKeys, elementCls = typeof(string))]
|
|
573
|
+
public List<string> tagKeys;
|
|
574
574
|
|
|
575
|
-
|
|
575
|
+
}
|
|
576
576
|
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
577
|
+
public class ServerGetTagRequestData : GetTagRequestData
|
|
578
|
+
{
|
|
579
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
580
|
+
public new string userId;
|
|
580
581
|
|
|
581
|
-
|
|
582
|
-
{
|
|
583
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
584
|
-
public string? userId;
|
|
582
|
+
}
|
|
585
583
|
|
|
586
|
-
|
|
584
|
+
public class AdminGetTagRequestData : ServerGetTagRequestData
|
|
585
|
+
{
|
|
586
|
+
}
|
|
587
587
|
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
588
|
+
public class GetTsCreateRequestData
|
|
589
|
+
{
|
|
590
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
591
|
+
public string? userId;
|
|
592
592
|
|
|
593
|
-
|
|
593
|
+
}
|
|
594
594
|
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
595
|
+
public class ServerGetTsCreateRequestData : GetTsCreateRequestData
|
|
596
|
+
{
|
|
597
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
598
|
+
public new string userId;
|
|
598
599
|
|
|
599
|
-
|
|
600
|
-
{
|
|
601
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
602
|
-
public string? userId;
|
|
600
|
+
}
|
|
603
601
|
|
|
604
|
-
|
|
602
|
+
public class AdminGetTsCreateRequestData : ServerGetTsCreateRequestData
|
|
603
|
+
{
|
|
604
|
+
}
|
|
605
605
|
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
606
|
+
public class GetTsLastLoginRequestData
|
|
607
|
+
{
|
|
608
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
609
|
+
public string? userId;
|
|
610
610
|
|
|
611
|
-
|
|
611
|
+
}
|
|
612
612
|
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
613
|
+
public class ServerGetTsLastLoginRequestData : GetTsLastLoginRequestData
|
|
614
|
+
{
|
|
615
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
616
|
+
public new string userId;
|
|
616
617
|
|
|
617
|
-
|
|
618
|
-
{
|
|
619
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
620
|
-
public string? userId;
|
|
618
|
+
}
|
|
621
619
|
|
|
622
|
-
|
|
623
|
-
|
|
620
|
+
public class AdminGetTsLastLoginRequestData : ServerGetTsLastLoginRequestData
|
|
621
|
+
{
|
|
622
|
+
}
|
|
624
623
|
|
|
625
|
-
|
|
626
|
-
|
|
624
|
+
public class GrantGroupRequestData
|
|
625
|
+
{
|
|
626
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
627
|
+
public string? userId;
|
|
627
628
|
|
|
628
|
-
|
|
629
|
-
|
|
629
|
+
[StringDataMember(code = GNParameterCode.CatalogId, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
630
|
+
public string catalogId;
|
|
630
631
|
|
|
631
|
-
|
|
632
|
+
[GNArrayDataMember(code = GNParameterCode.GroupMembers, isOptional = true, elementCls = typeof(GroupMemberParam))]
|
|
633
|
+
public List<GroupMemberParam>? groupMembers;
|
|
632
634
|
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
636
|
-
public new string userId;
|
|
635
|
+
[StringDataMember(code = GNParameterCode.DisplayName, defaultValue = "", isOptional = true)]
|
|
636
|
+
public string? displayName;
|
|
637
637
|
|
|
638
|
-
|
|
638
|
+
}
|
|
639
639
|
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
640
|
+
public class ServerGrantGroupRequestData : GrantGroupRequestData
|
|
641
|
+
{
|
|
642
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
643
|
+
public new string userId;
|
|
643
644
|
|
|
644
|
-
|
|
645
|
-
{
|
|
646
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
647
|
-
public string? userId;
|
|
645
|
+
}
|
|
648
646
|
|
|
649
|
-
|
|
650
|
-
|
|
647
|
+
public class AdminGrantGroupRequestData : ServerGrantGroupRequestData
|
|
648
|
+
{
|
|
649
|
+
}
|
|
651
650
|
|
|
652
|
-
|
|
653
|
-
|
|
651
|
+
public class GrantPlayerCharacterRequestData
|
|
652
|
+
{
|
|
653
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
654
|
+
public string? userId;
|
|
654
655
|
|
|
655
|
-
|
|
656
|
+
[StringDataMember(code = GNParameterCode.CatalogId, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
657
|
+
public string catalogId;
|
|
656
658
|
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
660
|
-
public new string userId;
|
|
659
|
+
[StringDataMember(code = GNParameterCode.DisplayName, defaultValue = "", isOptional = true, mustNonNull = true)]
|
|
660
|
+
public string? displayName;
|
|
661
661
|
|
|
662
|
-
|
|
662
|
+
}
|
|
663
663
|
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
664
|
+
public class ServerGrantPlayerCharacterRequestData : GrantPlayerCharacterRequestData
|
|
665
|
+
{
|
|
666
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
667
|
+
public new string userId;
|
|
667
668
|
|
|
668
|
-
|
|
669
|
-
{
|
|
670
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
671
|
-
public string? userId;
|
|
669
|
+
}
|
|
672
670
|
|
|
673
|
-
|
|
674
|
-
|
|
671
|
+
public class AdminGrantPlayerCharacterRequestData : ServerGrantPlayerCharacterRequestData
|
|
672
|
+
{
|
|
673
|
+
}
|
|
675
674
|
|
|
676
|
-
|
|
677
|
-
|
|
675
|
+
public class GrantPlayerItemRequestData
|
|
676
|
+
{
|
|
677
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
678
|
+
public string? userId;
|
|
678
679
|
|
|
679
|
-
|
|
680
|
-
|
|
680
|
+
[StringDataMember(code = GNParameterCode.CatalogId, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
681
|
+
public string catalogId;
|
|
681
682
|
|
|
682
|
-
|
|
683
|
-
|
|
683
|
+
[StringDataMember(code = GNParameterCode.ClassId, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
684
|
+
public string classId;
|
|
684
685
|
|
|
685
|
-
|
|
686
|
+
[StringDataMember(code = GNParameterCode.DisplayName, defaultValue = "", isOptional = true)]
|
|
687
|
+
public string? displayName;
|
|
686
688
|
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
690
|
-
public new string userId;
|
|
689
|
+
[NumberDataMember(code = GNParameterCode.Amount, defaultValue = 1, isOptional = true)]
|
|
690
|
+
public double? amount;
|
|
691
691
|
|
|
692
|
-
|
|
692
|
+
}
|
|
693
693
|
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
694
|
+
public class ServerGrantPlayerItemRequestData : GrantPlayerItemRequestData
|
|
695
|
+
{
|
|
696
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
697
|
+
public new string userId;
|
|
697
698
|
|
|
698
|
-
|
|
699
|
-
{
|
|
700
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
701
|
-
public string? userId;
|
|
699
|
+
}
|
|
702
700
|
|
|
703
|
-
|
|
704
|
-
|
|
701
|
+
public class AdminGrantPlayerItemRequestData : ServerGrantPlayerItemRequestData
|
|
702
|
+
{
|
|
703
|
+
}
|
|
705
704
|
|
|
706
|
-
|
|
705
|
+
public class JoinGroupRequestData
|
|
706
|
+
{
|
|
707
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
708
|
+
public string? userId;
|
|
707
709
|
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
711
|
-
public new string userId;
|
|
710
|
+
[StringDataMember(code = GNParameterCode.GroupId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
711
|
+
public string groupId;
|
|
712
712
|
|
|
713
|
-
|
|
713
|
+
}
|
|
714
714
|
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
715
|
+
public class ServerJoinGroupRequestData : JoinGroupRequestData
|
|
716
|
+
{
|
|
717
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
718
|
+
public new string userId;
|
|
718
719
|
|
|
719
|
-
|
|
720
|
-
{
|
|
721
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
722
|
-
public string? userId;
|
|
720
|
+
}
|
|
723
721
|
|
|
724
|
-
|
|
725
|
-
|
|
722
|
+
public class AdminJoinGroupRequestData : ServerJoinGroupRequestData
|
|
723
|
+
{
|
|
724
|
+
}
|
|
726
725
|
|
|
727
|
-
|
|
726
|
+
public class LeaveGroupRequestData
|
|
727
|
+
{
|
|
728
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
729
|
+
public string? userId;
|
|
728
730
|
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
732
|
-
public new string userId;
|
|
731
|
+
[StringDataMember(code = GNParameterCode.GroupId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
732
|
+
public string groupId;
|
|
733
733
|
|
|
734
|
-
|
|
734
|
+
}
|
|
735
735
|
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
736
|
+
public class ServerLeaveGroupRequestData : LeaveGroupRequestData
|
|
737
|
+
{
|
|
738
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
739
|
+
public new string userId;
|
|
739
740
|
|
|
740
|
-
|
|
741
|
-
{
|
|
742
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
743
|
-
public string? userId;
|
|
741
|
+
}
|
|
744
742
|
|
|
745
|
-
|
|
746
|
-
|
|
743
|
+
public class AdminLeaveGroupRequestData : ServerLeaveGroupRequestData
|
|
744
|
+
{
|
|
745
|
+
}
|
|
747
746
|
|
|
748
|
-
|
|
747
|
+
public class RemovePlayerCharacterRequestData
|
|
748
|
+
{
|
|
749
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
750
|
+
public string? userId;
|
|
749
751
|
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
753
|
-
public new string userId;
|
|
752
|
+
[StringDataMember(code = GNParameterCode.CharacterId, minLength = 11, maxLength = 11, mustNonNull = true)]
|
|
753
|
+
public string characterId;
|
|
754
754
|
|
|
755
|
-
|
|
755
|
+
}
|
|
756
756
|
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
757
|
+
public class ServerRemovePlayerCharacterRequestData : RemovePlayerCharacterRequestData
|
|
758
|
+
{
|
|
759
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
760
|
+
public new string userId;
|
|
760
761
|
|
|
761
|
-
|
|
762
|
-
{
|
|
763
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
764
|
-
public string? userId;
|
|
762
|
+
}
|
|
765
763
|
|
|
766
|
-
|
|
767
|
-
|
|
764
|
+
public class AdminRemovePlayerCharacterRequestData : ServerRemovePlayerCharacterRequestData
|
|
765
|
+
{
|
|
766
|
+
}
|
|
768
767
|
|
|
769
|
-
|
|
768
|
+
public class RemovePlayerFriendRequestData
|
|
769
|
+
{
|
|
770
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
771
|
+
public string? userId;
|
|
770
772
|
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
774
|
-
public new string userId;
|
|
773
|
+
[StringDataMember(code = GNParameterCode.FriendId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
774
|
+
public string friendId;
|
|
775
775
|
|
|
776
|
-
|
|
776
|
+
}
|
|
777
777
|
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
778
|
+
public class ServerRemovePlayerFriendRequestData : RemovePlayerFriendRequestData
|
|
779
|
+
{
|
|
780
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
781
|
+
public new string userId;
|
|
781
782
|
|
|
782
|
-
|
|
783
|
-
{
|
|
784
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
785
|
-
public string? userId;
|
|
783
|
+
}
|
|
786
784
|
|
|
787
|
-
|
|
788
|
-
|
|
785
|
+
public class AdminRemovePlayerFriendRequestData : ServerRemovePlayerFriendRequestData
|
|
786
|
+
{
|
|
787
|
+
}
|
|
789
788
|
|
|
790
|
-
|
|
789
|
+
public class RemovePlayerItemRequestData
|
|
790
|
+
{
|
|
791
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
792
|
+
public string? userId;
|
|
791
793
|
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
795
|
-
public new string userId;
|
|
794
|
+
[StringDataMember(code = GNParameterCode.ItemId, minLength = 12, maxLength = 12, mustNonNull = true)]
|
|
795
|
+
public string itemId;
|
|
796
796
|
|
|
797
|
-
|
|
797
|
+
}
|
|
798
798
|
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
799
|
+
public class ServerRemovePlayerItemRequestData : RemovePlayerItemRequestData
|
|
800
|
+
{
|
|
801
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
802
|
+
public new string userId;
|
|
802
803
|
|
|
803
|
-
|
|
804
|
-
{
|
|
805
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
806
|
-
public string? userId;
|
|
804
|
+
}
|
|
807
805
|
|
|
808
|
-
|
|
809
|
-
|
|
806
|
+
public class AdminRemovePlayerItemRequestData : ServerRemovePlayerItemRequestData
|
|
807
|
+
{
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
public class RemoveSegmentRequestData
|
|
811
|
+
{
|
|
812
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
813
|
+
public string? userId;
|
|
814
|
+
|
|
815
|
+
[StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
816
|
+
public string value;
|
|
817
|
+
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
public class ServerRemoveSegmentRequestData : RemoveSegmentRequestData
|
|
821
|
+
{
|
|
822
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
823
|
+
public new string userId;
|
|
824
|
+
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
public class AdminRemoveSegmentRequestData : ServerRemoveSegmentRequestData
|
|
828
|
+
{
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
public class RemoveTagRequestData
|
|
832
|
+
{
|
|
833
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
834
|
+
public string? userId;
|
|
835
|
+
|
|
836
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
837
|
+
public string key;
|
|
838
|
+
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
public class ServerRemoveTagRequestData : RemoveTagRequestData
|
|
842
|
+
{
|
|
843
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
844
|
+
public new string userId;
|
|
845
|
+
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
public class AdminRemoveTagRequestData : ServerRemoveTagRequestData
|
|
849
|
+
{
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
public class SetAvatarRequestData
|
|
853
|
+
{
|
|
854
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
855
|
+
public string? userId;
|
|
856
|
+
|
|
857
|
+
[NumberDataMember(code = GNParameterCode.Type, mustInt = true)]
|
|
858
|
+
public long type;
|
|
859
|
+
|
|
860
|
+
[StringDataMember(code = GNParameterCode.Value, minLength = 1, maxLength = 128, mustNonNull = true)]
|
|
861
|
+
public string value;
|
|
862
|
+
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
public class ServerSetAvatarRequestData : SetAvatarRequestData
|
|
866
|
+
{
|
|
867
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
868
|
+
public new string userId;
|
|
869
|
+
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
public class AdminSetAvatarRequestData : ServerSetAvatarRequestData
|
|
873
|
+
{
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
public class SetCountryCodeRequestData
|
|
877
|
+
{
|
|
878
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
879
|
+
public string? userId;
|
|
880
|
+
|
|
881
|
+
[StringDataMember(code = GNParameterCode.CountryCode, minLength = 2, maxLength = 32)]
|
|
882
|
+
public string countryCode;
|
|
883
|
+
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
public class ServerSetCountryCodeRequestData : SetCountryCodeRequestData
|
|
887
|
+
{
|
|
888
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
889
|
+
public new string userId;
|
|
890
|
+
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
public class AdminSetCountryCodeRequestData : ServerSetCountryCodeRequestData
|
|
894
|
+
{
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
public class SetCustomDataRequestData
|
|
898
|
+
{
|
|
899
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
900
|
+
public string? userId;
|
|
901
|
+
|
|
902
|
+
[GNArrayDataMember(code = GNParameterCode.CustomDatas, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(CustomDataParam))]
|
|
903
|
+
public List<CustomDataParam> customData;
|
|
904
|
+
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
public class ServerSetCustomDataRequestData : SetCustomDataRequestData
|
|
908
|
+
{
|
|
909
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
910
|
+
public new string userId;
|
|
911
|
+
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
public class AdminSetCustomDataRequestData : ServerSetCustomDataRequestData
|
|
915
|
+
{
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
public class SetDisplayNameRequestData
|
|
919
|
+
{
|
|
920
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
921
|
+
public string? userId;
|
|
922
|
+
|
|
923
|
+
[StringDataMember(code = GNParameterCode.DisplayName, minLength = 5, maxLength = 32, mustNonNull = true)]
|
|
924
|
+
public string displayName;
|
|
925
|
+
|
|
926
|
+
[BooleanDataMember(code = GNParameterCode.UniqueDisplayName, defaultValue = false, isOptional = true)]
|
|
927
|
+
public bool? uniqueDisplayName;
|
|
928
|
+
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
public class ServerSetDisplayNameRequestData : SetDisplayNameRequestData
|
|
932
|
+
{
|
|
933
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
934
|
+
public new string userId;
|
|
810
935
|
|
|
811
|
-
|
|
936
|
+
}
|
|
812
937
|
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
public new string userId;
|
|
938
|
+
public class AdminSetDisplayNameRequestData : ServerSetDisplayNameRequestData
|
|
939
|
+
{
|
|
940
|
+
}
|
|
817
941
|
|
|
818
|
-
|
|
942
|
+
public class SetPlayerBanRequestData
|
|
943
|
+
{
|
|
944
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
945
|
+
public string? userId;
|
|
819
946
|
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
}
|
|
947
|
+
[NumberDataMember(code = GNParameterCode.TsExpire)]
|
|
948
|
+
public double tsExpire;
|
|
823
949
|
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
827
|
-
public string? userId;
|
|
950
|
+
[StringDataMember(code = GNParameterCode.Reason)]
|
|
951
|
+
public string reason;
|
|
828
952
|
|
|
829
|
-
|
|
830
|
-
public string key;
|
|
953
|
+
}
|
|
831
954
|
|
|
832
|
-
|
|
955
|
+
public class ServerSetPlayerBanRequestData : SetPlayerBanRequestData
|
|
956
|
+
{
|
|
957
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
958
|
+
public new string userId;
|
|
833
959
|
|
|
834
|
-
|
|
835
|
-
{
|
|
836
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
837
|
-
public new string userId;
|
|
960
|
+
}
|
|
838
961
|
|
|
839
|
-
|
|
962
|
+
public class AdminSetPlayerBanRequestData : ServerSetPlayerBanRequestData
|
|
963
|
+
{
|
|
964
|
+
}
|
|
840
965
|
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
966
|
+
public class SetPlayerCurrencyRequestData
|
|
967
|
+
{
|
|
968
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
969
|
+
public string? userId;
|
|
844
970
|
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
848
|
-
public string? userId;
|
|
971
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerCurrencies, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(PlayerCurrencyParam))]
|
|
972
|
+
public List<PlayerCurrencyParam> playerCurrencyParams;
|
|
849
973
|
|
|
850
|
-
|
|
851
|
-
|
|
974
|
+
[StringDataMember(code = GNParameterCode.Log, minLength = 1, maxLength = 256, mustNonNull = true, isOptional = true)]
|
|
975
|
+
public string? log;
|
|
852
976
|
|
|
853
|
-
|
|
854
|
-
public string value;
|
|
977
|
+
}
|
|
855
978
|
|
|
856
|
-
|
|
979
|
+
public class ServerSetPlayerCurrencyRequestData : SetPlayerCurrencyRequestData
|
|
980
|
+
{
|
|
981
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
982
|
+
public new string userId;
|
|
857
983
|
|
|
858
|
-
|
|
859
|
-
{
|
|
860
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
861
|
-
public new string userId;
|
|
984
|
+
}
|
|
862
985
|
|
|
863
|
-
|
|
986
|
+
public class AdminSetPlayerCurrencyRequestData : ServerSetPlayerCurrencyRequestData
|
|
987
|
+
{
|
|
988
|
+
}
|
|
864
989
|
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
990
|
+
public class SetPlayerDataRequestData
|
|
991
|
+
{
|
|
992
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
993
|
+
public string? userId;
|
|
868
994
|
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
872
|
-
public string? userId;
|
|
995
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerDatas, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(PlayerDataParam))]
|
|
996
|
+
public List<PlayerDataParam> playerDataParams;
|
|
873
997
|
|
|
874
|
-
|
|
875
|
-
public string countryCode;
|
|
998
|
+
}
|
|
876
999
|
|
|
877
|
-
|
|
1000
|
+
public class ServerSetPlayerDataRequestData : SetPlayerDataRequestData
|
|
1001
|
+
{
|
|
1002
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1003
|
+
public new string userId;
|
|
878
1004
|
|
|
879
|
-
|
|
880
|
-
{
|
|
881
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
882
|
-
public new string userId;
|
|
1005
|
+
}
|
|
883
1006
|
|
|
884
|
-
|
|
1007
|
+
public class AdminSetPlayerDataRequestData : ServerSetPlayerDataRequestData
|
|
1008
|
+
{
|
|
1009
|
+
}
|
|
885
1010
|
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
1011
|
+
public class SetPlayerStatisticsRequestData
|
|
1012
|
+
{
|
|
1013
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1014
|
+
public string? userId;
|
|
889
1015
|
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
893
|
-
public string? userId;
|
|
1016
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerStatistics, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(PlayerStatisticsParam))]
|
|
1017
|
+
public List<PlayerStatisticsParam> playerStatisticsParams;
|
|
894
1018
|
|
|
895
|
-
|
|
896
|
-
|
|
1019
|
+
[StringDataMember(code = GNParameterCode.Log, minLength = 1, maxLength = 256, mustNonNull = true, isOptional = true)]
|
|
1020
|
+
public string? log;
|
|
897
1021
|
|
|
898
|
-
|
|
1022
|
+
}
|
|
899
1023
|
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
1024
|
+
public class ServerSetPlayerStatisticsRequestData : SetPlayerStatisticsRequestData
|
|
1025
|
+
{
|
|
1026
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1027
|
+
public new string userId;
|
|
904
1028
|
|
|
905
|
-
|
|
1029
|
+
}
|
|
906
1030
|
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
1031
|
+
public class AdminSetPlayerStatisticsRequestData : ServerSetPlayerStatisticsRequestData
|
|
1032
|
+
{
|
|
1033
|
+
}
|
|
910
1034
|
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
1035
|
+
public class SetTagRequestData
|
|
1036
|
+
{
|
|
1037
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1038
|
+
public string? userId;
|
|
915
1039
|
|
|
916
|
-
|
|
917
|
-
|
|
1040
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1041
|
+
public string key;
|
|
918
1042
|
|
|
919
|
-
|
|
920
|
-
|
|
1043
|
+
[StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1044
|
+
public string value;
|
|
921
1045
|
|
|
922
|
-
|
|
1046
|
+
}
|
|
923
1047
|
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
1048
|
+
public class ServerSetTagRequestData : SetTagRequestData
|
|
1049
|
+
{
|
|
1050
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1051
|
+
public new string userId;
|
|
928
1052
|
|
|
929
|
-
|
|
1053
|
+
}
|
|
930
1054
|
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
1055
|
+
public class AdminSetTagRequestData : ServerSetTagRequestData
|
|
1056
|
+
{
|
|
1057
|
+
}
|
|
934
1058
|
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
1059
|
+
public class GetCreateLeaderboardRequestData
|
|
1060
|
+
{
|
|
1061
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
1062
|
+
public InfoRequestParam infoRequestParam;
|
|
939
1063
|
|
|
940
|
-
|
|
941
|
-
|
|
1064
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
1065
|
+
public int? skip;
|
|
942
1066
|
|
|
943
|
-
|
|
944
|
-
|
|
1067
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
1068
|
+
public int? limit;
|
|
945
1069
|
|
|
946
|
-
|
|
1070
|
+
[BooleanDataMember(code = GNParameterCode.LoadFromCache, defaultValue = true, isOptional = true)]
|
|
1071
|
+
public bool? loadFromCache;
|
|
947
1072
|
|
|
948
|
-
|
|
949
|
-
{
|
|
950
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
951
|
-
public new string userId;
|
|
1073
|
+
}
|
|
952
1074
|
|
|
953
|
-
|
|
1075
|
+
public class ServerGetCreateLeaderboardRequestData : GetCreateLeaderboardRequestData
|
|
1076
|
+
{
|
|
1077
|
+
}
|
|
954
1078
|
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
1079
|
+
public class AdminGetCreateLeaderboardRequestData : ServerGetCreateLeaderboardRequestData
|
|
1080
|
+
{
|
|
1081
|
+
}
|
|
958
1082
|
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
1083
|
+
public class GetStatisticsLogRequestData
|
|
1084
|
+
{
|
|
1085
|
+
[GNArrayDataMember(code = GNParameterCode.Keys, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(string), isOptional = true)]
|
|
1086
|
+
public List<string>? keys;
|
|
963
1087
|
|
|
964
|
-
|
|
965
|
-
|
|
1088
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true, isOptional = true)]
|
|
1089
|
+
public string? userId;
|
|
966
1090
|
|
|
967
|
-
|
|
1091
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
1092
|
+
public int? limit;
|
|
968
1093
|
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
972
|
-
public new string userId;
|
|
1094
|
+
[StringDataMember(code = GNParameterCode.Token, minLength = 24, maxLength = 24, mustNonNull = true, isOptional = true)]
|
|
1095
|
+
public string? token;
|
|
973
1096
|
|
|
974
|
-
|
|
1097
|
+
}
|
|
975
1098
|
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
1099
|
+
public class ServerGetStatisticsLogRequestData : GetStatisticsLogRequestData
|
|
1100
|
+
{
|
|
1101
|
+
}
|
|
979
1102
|
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
public string? userId;
|
|
1103
|
+
public class AdminGetStatisticsLogRequestData : ServerGetStatisticsLogRequestData
|
|
1104
|
+
{
|
|
1105
|
+
}
|
|
984
1106
|
|
|
985
|
-
|
|
986
|
-
|
|
1107
|
+
public class GetCurrencyLogRequestData
|
|
1108
|
+
{
|
|
1109
|
+
[GNArrayDataMember(code = GNParameterCode.Keys, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(string), isOptional = true)]
|
|
1110
|
+
public List<string>? keys;
|
|
987
1111
|
|
|
988
|
-
|
|
1112
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true, isOptional = true)]
|
|
1113
|
+
public string? userId;
|
|
989
1114
|
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
993
|
-
public new string userId;
|
|
1115
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
1116
|
+
public int? limit;
|
|
994
1117
|
|
|
995
|
-
|
|
1118
|
+
[StringDataMember(code = GNParameterCode.Token, minLength = 24, maxLength = 24, mustNonNull = true, isOptional = true)]
|
|
1119
|
+
public string? token;
|
|
996
1120
|
|
|
997
|
-
|
|
998
|
-
{
|
|
999
|
-
}
|
|
1121
|
+
}
|
|
1000
1122
|
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
public string? userId;
|
|
1123
|
+
public class ServerGetCurrencyLogRequestData : GetCurrencyLogRequestData
|
|
1124
|
+
{
|
|
1125
|
+
}
|
|
1005
1126
|
|
|
1006
|
-
|
|
1007
|
-
|
|
1127
|
+
public class AdminGetCurrencyLogRequestData : ServerGetCurrencyLogRequestData
|
|
1128
|
+
{
|
|
1129
|
+
}
|
|
1008
1130
|
|
|
1009
|
-
|
|
1131
|
+
}
|
|
1010
1132
|
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1133
|
+
public partial class GamePlayerModels
|
|
1134
|
+
{
|
|
1135
|
+
public class CustomDataParam
|
|
1136
|
+
{
|
|
1137
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1138
|
+
public string key;
|
|
1015
1139
|
|
|
1016
|
-
|
|
1140
|
+
[DataMember(code = GNParameterCode.Value)]
|
|
1141
|
+
public object value;
|
|
1017
1142
|
|
|
1018
|
-
|
|
1019
|
-
{
|
|
1020
|
-
}
|
|
1143
|
+
}
|
|
1021
1144
|
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1145
|
+
public class GroupMemberParam
|
|
1146
|
+
{
|
|
1147
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1148
|
+
public string userId;
|
|
1026
1149
|
|
|
1027
|
-
|
|
1028
|
-
public string key;
|
|
1150
|
+
}
|
|
1029
1151
|
|
|
1030
|
-
|
|
1031
|
-
|
|
1152
|
+
public class InfoRequestParam
|
|
1153
|
+
{
|
|
1154
|
+
[BooleanDataMember(code = GNParameterCode.Segments, isOptional = true, defaultValue = false)]
|
|
1155
|
+
public bool? segments;
|
|
1032
1156
|
|
|
1033
|
-
|
|
1157
|
+
[BooleanDataMember(code = GNParameterCode.CustomDatas, isOptional = true, defaultValue = false)]
|
|
1158
|
+
public bool? customDatas;
|
|
1034
1159
|
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1038
|
-
public new string userId;
|
|
1160
|
+
[BooleanDataMember(code = GNParameterCode.DisplayName, isOptional = true, defaultValue = false)]
|
|
1161
|
+
public bool? displayName;
|
|
1039
1162
|
|
|
1040
|
-
|
|
1163
|
+
[BooleanDataMember(code = GNParameterCode.Avatar, isOptional = true, defaultValue = false)]
|
|
1164
|
+
public bool? avatar;
|
|
1041
1165
|
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
}
|
|
1166
|
+
[BooleanDataMember(code = GNParameterCode.TsCreate, isOptional = true, defaultValue = false)]
|
|
1167
|
+
public bool? tsCreate;
|
|
1045
1168
|
|
|
1046
|
-
|
|
1169
|
+
[BooleanDataMember(code = GNParameterCode.Tags, isOptional = true, defaultValue = false)]
|
|
1170
|
+
public bool? tags;
|
|
1047
1171
|
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
public class CustomDataParam
|
|
1051
|
-
{
|
|
1052
|
-
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1053
|
-
public string key;
|
|
1172
|
+
[BooleanDataMember(code = GNParameterCode.PlayerBan, isOptional = true, defaultValue = false)]
|
|
1173
|
+
public bool? playerBan;
|
|
1054
1174
|
|
|
1055
|
-
|
|
1056
|
-
|
|
1175
|
+
[BooleanDataMember(code = GNParameterCode.PlayerCurrencies, isOptional = true, defaultValue = false)]
|
|
1176
|
+
public bool? playerCurrencies;
|
|
1057
1177
|
|
|
1058
|
-
|
|
1178
|
+
[BooleanDataMember(code = GNParameterCode.PlayerStatistics, isOptional = true, defaultValue = false)]
|
|
1179
|
+
public bool? playerStatistics;
|
|
1059
1180
|
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1063
|
-
public string userId;
|
|
1181
|
+
[BooleanDataMember(code = GNParameterCode.PlayerDatas, isOptional = true, defaultValue = false)]
|
|
1182
|
+
public bool? playerDatas;
|
|
1064
1183
|
|
|
1065
|
-
|
|
1184
|
+
[BooleanDataMember(code = GNParameterCode.IpAddressCreate, isOptional = true, defaultValue = false)]
|
|
1185
|
+
public bool? ipAddressCreate;
|
|
1066
1186
|
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
[BooleanDataMember(code = GNParameterCode.Segments, isOptional = true, defaultValue = false)]
|
|
1070
|
-
public bool? segments;
|
|
1187
|
+
[BooleanDataMember(code = GNParameterCode.CountryCode, isOptional = true, defaultValue = false)]
|
|
1188
|
+
public bool? countryCode;
|
|
1071
1189
|
|
|
1072
|
-
|
|
1073
|
-
|
|
1190
|
+
[BooleanDataMember(code = GNParameterCode.TsLastLogin, isOptional = true, defaultValue = false)]
|
|
1191
|
+
public bool? tsLastLogin;
|
|
1074
1192
|
|
|
1075
|
-
|
|
1076
|
-
|
|
1193
|
+
[BooleanDataMember(code = GNParameterCode.PlayerCharacters, isOptional = true, defaultValue = false)]
|
|
1194
|
+
public bool? playerCharacters;
|
|
1077
1195
|
|
|
1078
|
-
|
|
1079
|
-
|
|
1196
|
+
[BooleanDataMember(code = GNParameterCode.PlayerInventories, isOptional = true, defaultValue = false)]
|
|
1197
|
+
public bool? playerInventories;
|
|
1080
1198
|
|
|
1081
|
-
|
|
1082
|
-
|
|
1199
|
+
[BooleanDataMember(code = GNParameterCode.PlayerGroups, isOptional = true, defaultValue = false)]
|
|
1200
|
+
public bool? playerGroups;
|
|
1083
1201
|
|
|
1084
|
-
|
|
1085
|
-
|
|
1202
|
+
[BooleanDataMember(code = GNParameterCode.PlayerFriends, isOptional = true, defaultValue = false)]
|
|
1203
|
+
public bool? playerFriends;
|
|
1086
1204
|
|
|
1087
|
-
|
|
1088
|
-
|
|
1205
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerDataKeys, isOptional = true, elementCls = typeof(string))]
|
|
1206
|
+
public List<string>? playerDataKeys;
|
|
1089
1207
|
|
|
1090
|
-
|
|
1091
|
-
|
|
1208
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerCurrencyKeys, isOptional = true, elementCls = typeof(string))]
|
|
1209
|
+
public List<string>? playerCurrencyKeys;
|
|
1092
1210
|
|
|
1093
|
-
|
|
1094
|
-
|
|
1211
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerStatisticsKeys, isOptional = true, elementCls = typeof(string))]
|
|
1212
|
+
public List<string>? playerStatisticsKeys;
|
|
1095
1213
|
|
|
1096
|
-
|
|
1097
|
-
|
|
1214
|
+
[GNArrayDataMember(code = GNParameterCode.CustomDataKeys, isOptional = true, elementCls = typeof(string))]
|
|
1215
|
+
public List<string>? customDataKeys;
|
|
1098
1216
|
|
|
1099
|
-
|
|
1100
|
-
|
|
1217
|
+
[GNArrayDataMember(code = GNParameterCode.TagKeys, isOptional = true, elementCls = typeof(string))]
|
|
1218
|
+
public List<string>? tagKeys;
|
|
1101
1219
|
|
|
1102
|
-
|
|
1103
|
-
|
|
1220
|
+
[GNArrayDataMember(code = GNParameterCode.CharacterCatalogIds, isOptional = true, elementCls = typeof(string))]
|
|
1221
|
+
public List<string>? characterCatalogIds;
|
|
1104
1222
|
|
|
1105
|
-
|
|
1106
|
-
|
|
1223
|
+
[GNArrayDataMember(code = GNParameterCode.ItemCatalogIds, isOptional = true, elementCls = typeof(string))]
|
|
1224
|
+
public List<string>? itemCatalogIds;
|
|
1107
1225
|
|
|
1108
|
-
|
|
1109
|
-
|
|
1226
|
+
[GNArrayDataMember(code = GNParameterCode.GroupCatalogIds, isOptional = true, elementCls = typeof(string))]
|
|
1227
|
+
public List<string>? groupCatalogIds;
|
|
1110
1228
|
|
|
1111
|
-
|
|
1112
|
-
|
|
1229
|
+
[GNArrayDataMember(code = GNParameterCode.FriendCatalogIds, isOptional = true, elementCls = typeof(string))]
|
|
1230
|
+
public List<string>? friendCatalogIds;
|
|
1113
1231
|
|
|
1114
|
-
|
|
1115
|
-
public bool? playerGroups;
|
|
1232
|
+
}
|
|
1116
1233
|
|
|
1117
|
-
|
|
1118
|
-
|
|
1234
|
+
public class PlayerCurrencyParam
|
|
1235
|
+
{
|
|
1236
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1237
|
+
public string key;
|
|
1119
1238
|
|
|
1120
|
-
|
|
1121
|
-
|
|
1239
|
+
[NumberDataMember(code = GNParameterCode.Amount)]
|
|
1240
|
+
public double amount;
|
|
1122
1241
|
|
|
1123
|
-
|
|
1124
|
-
public List<string>? playerCurrencyKeys;
|
|
1242
|
+
}
|
|
1125
1243
|
|
|
1126
|
-
|
|
1127
|
-
|
|
1244
|
+
public class PlayerDataParam
|
|
1245
|
+
{
|
|
1246
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1247
|
+
public string key;
|
|
1128
1248
|
|
|
1129
|
-
|
|
1130
|
-
|
|
1249
|
+
[DataMember(code = GNParameterCode.Value)]
|
|
1250
|
+
public object value;
|
|
1131
1251
|
|
|
1132
|
-
|
|
1133
|
-
public List<string>? tagKeys;
|
|
1252
|
+
}
|
|
1134
1253
|
|
|
1135
|
-
|
|
1136
|
-
|
|
1254
|
+
public class PlayerStatisticsParam
|
|
1255
|
+
{
|
|
1256
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1257
|
+
public string key;
|
|
1137
1258
|
|
|
1138
|
-
|
|
1139
|
-
|
|
1259
|
+
[NumberDataMember(code = GNParameterCode.Value)]
|
|
1260
|
+
public double value;
|
|
1140
1261
|
|
|
1141
|
-
|
|
1142
|
-
public List<string>? groupCatalogIds;
|
|
1262
|
+
}
|
|
1143
1263
|
|
|
1144
|
-
|
|
1145
|
-
public List<string>? friendCatalogIds;
|
|
1264
|
+
}
|
|
1146
1265
|
|
|
1147
|
-
|
|
1266
|
+
public partial class GamePlayerModels
|
|
1267
|
+
{
|
|
1268
|
+
public class InfoResponseParameters
|
|
1269
|
+
{
|
|
1270
|
+
[GNArrayDataMember(code = GNParameterCode.Segments, isOptional = true, elementCls = typeof(string))]
|
|
1271
|
+
public List<string>? segments;
|
|
1148
1272
|
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1152
|
-
public string key;
|
|
1273
|
+
[GNArrayDataMember(code = GNParameterCode.CustomDatas, isOptional = true, elementCls = typeof(GenericModels.DataItem))]
|
|
1274
|
+
public List<GenericModels.DataItem>? customDatas;
|
|
1153
1275
|
|
|
1154
|
-
|
|
1155
|
-
|
|
1276
|
+
[StringDataMember(code = GNParameterCode.DisplayName, isOptional = true)]
|
|
1277
|
+
public string? displayName;
|
|
1156
1278
|
|
|
1157
|
-
|
|
1279
|
+
[GNHashtableDataMember(code = GNParameterCode.Avatar, isOptional = true)]
|
|
1280
|
+
public GenericModels.AvatarItem? avatar;
|
|
1158
1281
|
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1162
|
-
public string key;
|
|
1282
|
+
[NumberDataMember(code = GNParameterCode.TsCreate, isOptional = true)]
|
|
1283
|
+
public long? tsCreate;
|
|
1163
1284
|
|
|
1164
|
-
|
|
1165
|
-
|
|
1285
|
+
[GNArrayDataMember(code = GNParameterCode.Tags, isOptional = true, elementCls = typeof(GenericModels.TagItem))]
|
|
1286
|
+
public List<GenericModels.TagItem>? tags;
|
|
1166
1287
|
|
|
1167
|
-
|
|
1168
|
-
|
|
1288
|
+
[GNHashtableDataMember(code = GNParameterCode.PlayerBan, isOptional = true)]
|
|
1289
|
+
public GenericModels.BanItem? playerBan;
|
|
1169
1290
|
|
|
1170
|
-
|
|
1291
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerDatas, isOptional = true, elementCls = typeof(GenericModels.DataItem))]
|
|
1292
|
+
public List<GenericModels.DataItem>? playerDatas;
|
|
1171
1293
|
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1175
|
-
public string key;
|
|
1294
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerCurrencies, isOptional = true, elementCls = typeof(GenericModels.CurrencyItem))]
|
|
1295
|
+
public List<GenericModels.CurrencyItem>? playerCurrencies;
|
|
1176
1296
|
|
|
1177
|
-
|
|
1178
|
-
|
|
1297
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerStatistics, isOptional = true, elementCls = typeof(GenericModels.StatisticsItem))]
|
|
1298
|
+
public List<GenericModels.StatisticsItem>? playerStatistics;
|
|
1179
1299
|
|
|
1180
|
-
|
|
1300
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerCharacters, isOptional = true, elementCls = typeof(GenericModels.CharacterItem))]
|
|
1301
|
+
public List<GenericModels.CharacterItem>? playerCharacters;
|
|
1181
1302
|
|
|
1182
|
-
|
|
1303
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerInventories, isOptional = true, elementCls = typeof(GenericModels.InventoryItem))]
|
|
1304
|
+
public List<GenericModels.InventoryItem>? playerInventories;
|
|
1183
1305
|
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
public class InfoResponseParameters
|
|
1187
|
-
{
|
|
1188
|
-
[GNArrayDataMember(code = GNParameterCode.Segments, isOptional = true, elementCls = typeof(string))]
|
|
1189
|
-
public List<string>? segments;
|
|
1306
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerGroups, isOptional = true, elementCls = typeof(GenericModels.GroupItem))]
|
|
1307
|
+
public List<GenericModels.GroupItem>? playerGroups;
|
|
1190
1308
|
|
|
1191
|
-
|
|
1192
|
-
|
|
1309
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerFriends, isOptional = true, elementCls = typeof(GenericModels.FriendItem))]
|
|
1310
|
+
public List<GenericModels.FriendItem>? playerFriends;
|
|
1193
1311
|
|
|
1194
|
-
|
|
1195
|
-
|
|
1312
|
+
[NumberDataMember(code = GNParameterCode.TsLastLogin, isOptional = true)]
|
|
1313
|
+
public long? tsLastLogin;
|
|
1196
1314
|
|
|
1197
|
-
|
|
1198
|
-
|
|
1315
|
+
[StringDataMember(code = GNParameterCode.IpAddressCreate, isOptional = true)]
|
|
1316
|
+
public string? ipAddressCreate;
|
|
1199
1317
|
|
|
1200
|
-
|
|
1201
|
-
|
|
1318
|
+
[StringDataMember(code = GNParameterCode.CountryCode, isOptional = true)]
|
|
1319
|
+
public string? countryCode;
|
|
1320
|
+
}
|
|
1202
1321
|
|
|
1203
|
-
|
|
1204
|
-
|
|
1322
|
+
public class GamePlayerResponseData
|
|
1323
|
+
{
|
|
1324
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoResponseParameters)]
|
|
1325
|
+
public InfoResponseParameters infoResponseParameters;
|
|
1205
1326
|
|
|
1206
|
-
|
|
1207
|
-
public GenericModels.BanItem? playerBan;
|
|
1327
|
+
}
|
|
1208
1328
|
|
|
1209
|
-
|
|
1210
|
-
|
|
1329
|
+
public class GamePlayerWithUserIdResponseData : GamePlayerResponseData
|
|
1330
|
+
{
|
|
1331
|
+
[StringDataMember(code = GNParameterCode.UserId)]
|
|
1332
|
+
public string userId;
|
|
1333
|
+
|
|
1334
|
+
}
|
|
1211
1335
|
|
|
1212
|
-
|
|
1213
|
-
|
|
1336
|
+
public class GamePlayerLeaderboardResponseData : GamePlayerWithUserIdResponseData
|
|
1337
|
+
{
|
|
1338
|
+
[NumberDataMember(code = GNParameterCode.Position)]
|
|
1339
|
+
public int position;
|
|
1214
1340
|
|
|
1215
|
-
|
|
1216
|
-
|
|
1341
|
+
[NumberDataMember(code = GNParameterCode.BackupValue, isOptional = true)]
|
|
1342
|
+
public double? backupValue;
|
|
1217
1343
|
|
|
1218
|
-
|
|
1219
|
-
public List<GenericModels.CharacterItem>? playerCharacters;
|
|
1344
|
+
}
|
|
1220
1345
|
|
|
1221
|
-
|
|
1222
|
-
|
|
1346
|
+
public class GamePlayerLogResponseData
|
|
1347
|
+
{
|
|
1348
|
+
[StringDataMember(code = GNParameterCode.UserId)]
|
|
1349
|
+
public string userId;
|
|
1223
1350
|
|
|
1224
|
-
|
|
1225
|
-
|
|
1351
|
+
[NumberDataMember(code = GNParameterCode.TsCreate)]
|
|
1352
|
+
public long tsCreate;
|
|
1226
1353
|
|
|
1227
|
-
|
|
1228
|
-
|
|
1354
|
+
[NumberDataMember(code = GNParameterCode.Log)]
|
|
1355
|
+
public string log;
|
|
1229
1356
|
|
|
1230
|
-
|
|
1231
|
-
|
|
1357
|
+
[NumberDataMember(code = GNParameterCode.Key)]
|
|
1358
|
+
public string key;
|
|
1232
1359
|
|
|
1233
|
-
|
|
1234
|
-
|
|
1360
|
+
[NumberDataMember(code = GNParameterCode.Amount)]
|
|
1361
|
+
public double amount;
|
|
1235
1362
|
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
}
|
|
1363
|
+
[NumberDataMember(code = GNParameterCode.StartValue)]
|
|
1364
|
+
public double startValue;
|
|
1239
1365
|
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
[GNHashtableDataMember(code = GNParameterCode.InfoResponseParameters)]
|
|
1243
|
-
public InfoResponseParameters infoResponseParameters;
|
|
1366
|
+
[NumberDataMember(code = GNParameterCode.FinalValue)]
|
|
1367
|
+
public double finalValue;
|
|
1244
1368
|
|
|
1245
|
-
|
|
1369
|
+
}
|
|
1246
1370
|
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1371
|
+
public class GetStatisticsLeaderboardResponseData
|
|
1372
|
+
{
|
|
1373
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(GamePlayerLeaderboardResponseData))]
|
|
1374
|
+
public List<GamePlayerLeaderboardResponseData> results;
|
|
1251
1375
|
|
|
1252
|
-
|
|
1376
|
+
[NumberDataMember(code = GNParameterCode.TsCreate, isOptional = true)]
|
|
1377
|
+
public long? tsCreate;
|
|
1253
1378
|
|
|
1254
|
-
|
|
1255
|
-
{
|
|
1256
|
-
[NumberDataMember(code = GNParameterCode.Position)]
|
|
1257
|
-
public int position;
|
|
1379
|
+
}
|
|
1258
1380
|
|
|
1259
|
-
|
|
1381
|
+
public class GamePlayersWithUserIdResponseData
|
|
1382
|
+
{
|
|
1383
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(GamePlayerWithUserIdResponseData))]
|
|
1384
|
+
public List<GamePlayerWithUserIdResponseData> results;
|
|
1260
1385
|
|
|
1261
|
-
|
|
1262
|
-
{
|
|
1263
|
-
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(GamePlayerLeaderboardResponseData))]
|
|
1264
|
-
public List<GamePlayerLeaderboardResponseData> results;
|
|
1386
|
+
}
|
|
1265
1387
|
|
|
1266
|
-
|
|
1388
|
+
public class OnlineStatusResponseData
|
|
1389
|
+
{
|
|
1390
|
+
[NumberDataMember(code = GNParameterCode.TsLastLogin)]
|
|
1391
|
+
public long tsLastLogin;
|
|
1267
1392
|
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(GamePlayerWithUserIdResponseData))]
|
|
1271
|
-
public List<GamePlayerWithUserIdResponseData> results;
|
|
1393
|
+
[StringDataMember(code = GNParameterCode.SocketId)]
|
|
1394
|
+
public string socketId;
|
|
1272
1395
|
|
|
1273
|
-
|
|
1396
|
+
}
|
|
1274
1397
|
|
|
1275
|
-
|
|
1398
|
+
public class GetCurrencyLeaderboardRequestData
|
|
1276
1399
|
{
|
|
1277
|
-
|
|
1278
|
-
|
|
1400
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1401
|
+
public string key;
|
|
1279
1402
|
|
|
1280
|
-
|
|
1281
|
-
|
|
1403
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
1404
|
+
public InfoRequestParam infoRequestParam;
|
|
1282
1405
|
|
|
1283
|
-
|
|
1406
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
1407
|
+
public int? skip;
|
|
1284
1408
|
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1288
|
-
public string key;
|
|
1409
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
1410
|
+
public int? limit;
|
|
1289
1411
|
|
|
1290
|
-
|
|
1291
|
-
|
|
1412
|
+
[BooleanDataMember(code = GNParameterCode.LoadFromCache, defaultValue = true, isOptional = true)]
|
|
1413
|
+
public bool? loadFromCache;
|
|
1292
1414
|
|
|
1293
|
-
|
|
1294
|
-
public long? skip;
|
|
1415
|
+
}
|
|
1295
1416
|
|
|
1296
|
-
|
|
1297
|
-
|
|
1417
|
+
public class ServerGetCurrencyLeaderboardRequestData : GetCurrencyLeaderboardRequestData
|
|
1418
|
+
{
|
|
1419
|
+
}
|
|
1298
1420
|
|
|
1299
|
-
|
|
1300
|
-
|
|
1421
|
+
public class AdminGetCurrencyLeaderboardRequestData : ServerGetCurrencyLeaderboardRequestData
|
|
1422
|
+
{
|
|
1423
|
+
}
|
|
1301
1424
|
|
|
1302
|
-
|
|
1425
|
+
public class GetCurrencyLeaderboardResponseData
|
|
1426
|
+
{
|
|
1427
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(GamePlayerLeaderboardResponseData))]
|
|
1428
|
+
public List<GamePlayerLeaderboardResponseData> results;
|
|
1303
1429
|
|
|
1304
|
-
|
|
1305
|
-
{
|
|
1306
|
-
}
|
|
1430
|
+
}
|
|
1307
1431
|
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1432
|
+
public class GetCreateLeaderboardResponseData
|
|
1433
|
+
{
|
|
1434
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(GamePlayerLeaderboardResponseData))]
|
|
1435
|
+
public List<GamePlayerLeaderboardResponseData> results;
|
|
1436
|
+
|
|
1437
|
+
}
|
|
1311
1438
|
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1439
|
+
public class GetStatisticsLogResponseData
|
|
1440
|
+
{
|
|
1441
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(GamePlayerLogResponseData))]
|
|
1442
|
+
public List<GamePlayerLogResponseData> results;
|
|
1316
1443
|
|
|
1317
|
-
|
|
1444
|
+
[StringDataMember(code = GNParameterCode.Token, isOptional = true)]
|
|
1445
|
+
public string? token;
|
|
1318
1446
|
|
|
1319
|
-
|
|
1320
|
-
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
public class GetCurrencyLogResponseData
|
|
1450
|
+
{
|
|
1451
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(GamePlayerLogResponseData))]
|
|
1452
|
+
public List<GamePlayerLogResponseData> results;
|
|
1453
|
+
|
|
1454
|
+
[StringDataMember(code = GNParameterCode.Token, isOptional = true)]
|
|
1455
|
+
public string? token;
|
|
1456
|
+
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
public class EmptyResponseData
|
|
1460
|
+
{
|
|
1321
1461
|
|
|
1322
|
-
|
|
1462
|
+
}
|
|
1323
1463
|
|
|
1324
|
-
|
|
1464
|
+
}
|
|
1325
1465
|
|
|
1326
1466
|
}
|