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
|
@@ -4,1904 +4,2446 @@
|
|
|
4
4
|
using XmobiTea.GN.Common;
|
|
5
5
|
using XmobiTea.GN.Constant;
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
public partial class MasterPlayerModels
|
|
8
|
+
{
|
|
9
|
+
public class AddSegmentRequestData
|
|
10
|
+
{
|
|
11
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
12
|
+
public string? userId;
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
[StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
15
|
+
public string value;
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
}
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
public class ServerAddSegmentRequestData : AddSegmentRequestData
|
|
20
|
+
{
|
|
21
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
22
|
+
public new string userId;
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
}
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
public class AdminAddSegmentRequestData : ServerAddSegmentRequestData
|
|
27
|
+
{
|
|
28
|
+
}
|
|
29
29
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
30
|
+
public class ChangeAccountPasswordRequestData
|
|
31
|
+
{
|
|
32
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
33
|
+
public string? userId;
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
[StringDataMember(code = GNParameterCode.CurrentPassword, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
36
|
+
public string currentPassword;
|
|
37
37
|
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
[StringDataMember(code = GNParameterCode.Password, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
39
|
+
public string password;
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
}
|
|
42
42
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
43
|
+
public class GetAvatarRequestData
|
|
44
|
+
{
|
|
45
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
46
|
+
public string? userId;
|
|
47
47
|
|
|
48
|
-
|
|
48
|
+
}
|
|
49
49
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
50
|
+
public class ServerGetAvatarRequestData : GetAvatarRequestData
|
|
51
|
+
{
|
|
52
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
53
|
+
public new string userId;
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
}
|
|
56
56
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
public class AdminGetAvatarRequestData : ServerGetAvatarRequestData
|
|
58
|
+
{
|
|
59
|
+
}
|
|
60
60
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
61
|
+
public class GetCountryCodeRequestData
|
|
62
|
+
{
|
|
63
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
64
|
+
public string? userId;
|
|
65
65
|
|
|
66
|
-
|
|
66
|
+
}
|
|
67
67
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
68
|
+
public class ServerGetCountryCodeRequestData : GetCountryCodeRequestData
|
|
69
|
+
{
|
|
70
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
71
|
+
public new string userId;
|
|
72
72
|
|
|
73
|
-
|
|
73
|
+
}
|
|
74
74
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
75
|
+
public class AdminGetCountryCodeRequestData : ServerGetCountryCodeRequestData
|
|
76
|
+
{
|
|
77
|
+
}
|
|
78
78
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
79
|
+
public class GetCustomDataRequestData
|
|
80
|
+
{
|
|
81
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
82
|
+
public string? userId;
|
|
83
83
|
|
|
84
|
-
|
|
85
|
-
|
|
84
|
+
[GNArrayDataMember(code = GNParameterCode.CustomDataKeys, isOptional = true, elementCls = typeof(string))]
|
|
85
|
+
public List<string>? customDataKeys;
|
|
86
86
|
|
|
87
|
-
|
|
87
|
+
}
|
|
88
88
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
89
|
+
public class ServerGetCustomDataRequestData : GetCustomDataRequestData
|
|
90
|
+
{
|
|
91
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
92
|
+
public new string userId;
|
|
93
93
|
|
|
94
|
-
|
|
94
|
+
}
|
|
95
95
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
96
|
+
public class AdminGetCustomDataRequestData : ServerGetCustomDataRequestData
|
|
97
|
+
{
|
|
98
|
+
}
|
|
99
99
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
100
|
+
public class GetDisplayNameRequestData
|
|
101
|
+
{
|
|
102
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
103
|
+
public string? userId;
|
|
104
104
|
|
|
105
|
-
|
|
105
|
+
}
|
|
106
106
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
107
|
+
public class ServerGetDisplayNameRequestData : GetDisplayNameRequestData
|
|
108
|
+
{
|
|
109
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
110
|
+
public new string userId;
|
|
111
111
|
|
|
112
|
-
|
|
112
|
+
}
|
|
113
113
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
114
|
+
public class AdminGetDisplayNameRequestData : ServerGetDisplayNameRequestData
|
|
115
|
+
{
|
|
116
|
+
}
|
|
117
117
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
118
|
+
public class GetEmailRequestData
|
|
119
|
+
{
|
|
120
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
121
|
+
public string? userId;
|
|
122
122
|
|
|
123
|
-
|
|
123
|
+
}
|
|
124
124
|
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
125
|
+
public class ServerGetEmailRequestData : GetEmailRequestData
|
|
126
|
+
{
|
|
127
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
128
|
+
public new string userId;
|
|
129
129
|
|
|
130
|
-
|
|
130
|
+
}
|
|
131
131
|
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
132
|
+
public class AdminGetEmailRequestData : ServerGetEmailRequestData
|
|
133
|
+
{
|
|
134
|
+
}
|
|
135
135
|
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
136
|
+
public class GetExternalRequestData
|
|
137
|
+
{
|
|
138
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
139
|
+
public string? userId;
|
|
140
140
|
|
|
141
|
-
|
|
141
|
+
}
|
|
142
142
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
143
|
+
public class ServerGetExternalRequestData : GetExternalRequestData
|
|
144
|
+
{
|
|
145
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
146
|
+
public new string userId;
|
|
147
147
|
|
|
148
|
-
|
|
148
|
+
}
|
|
149
149
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
150
|
+
public class AdminGetExternalRequestData : ServerGetExternalRequestData
|
|
151
|
+
{
|
|
152
|
+
}
|
|
153
153
|
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
154
|
+
public class GetIpAddressCreateRequestData
|
|
155
|
+
{
|
|
156
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
157
|
+
public string? userId;
|
|
158
158
|
|
|
159
|
-
|
|
159
|
+
}
|
|
160
160
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
161
|
+
public class ServerGetIpAddressCreateRequestData : GetIpAddressCreateRequestData
|
|
162
|
+
{
|
|
163
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
164
|
+
public new string userId;
|
|
165
165
|
|
|
166
|
-
|
|
166
|
+
}
|
|
167
167
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
168
|
+
public class AdminGetIpAddressCreateRequestData : ServerGetIpAddressCreateRequestData
|
|
169
|
+
{
|
|
170
|
+
}
|
|
171
171
|
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
172
|
+
public class GetPlayerBanRequestData
|
|
173
|
+
{
|
|
174
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
175
|
+
public string? userId;
|
|
176
176
|
|
|
177
|
-
|
|
177
|
+
}
|
|
178
178
|
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
179
|
+
public class ServerGetPlayerBanRequestData : GetPlayerBanRequestData
|
|
180
|
+
{
|
|
181
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
182
|
+
public new string userId;
|
|
183
183
|
|
|
184
|
-
|
|
184
|
+
}
|
|
185
185
|
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
186
|
+
public class AdminGetPlayerBanRequestData : ServerGetPlayerBanRequestData
|
|
187
|
+
{
|
|
188
|
+
}
|
|
189
189
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
190
|
+
public class GetPlayerCurrencyRequestData
|
|
191
|
+
{
|
|
192
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
193
|
+
public string? userId;
|
|
194
194
|
|
|
195
|
-
|
|
196
|
-
|
|
195
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerCurrencyKeys, isOptional = true, elementCls = typeof(string))]
|
|
196
|
+
public List<string>? playerCurrencyKeys;
|
|
197
197
|
|
|
198
|
-
|
|
198
|
+
}
|
|
199
199
|
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
200
|
+
public class ServerGetPlayerCurrencyRequestData : GetPlayerCurrencyRequestData
|
|
201
|
+
{
|
|
202
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
203
|
+
public new string userId;
|
|
204
204
|
|
|
205
|
-
|
|
205
|
+
}
|
|
206
206
|
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
207
|
+
public class AdminGetPlayerCurrencyRequestData : ServerGetPlayerCurrencyRequestData
|
|
208
|
+
{
|
|
209
|
+
}
|
|
210
210
|
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
211
|
+
public class GetPlayerDataRequestData
|
|
212
|
+
{
|
|
213
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
214
|
+
public string? userId;
|
|
215
215
|
|
|
216
|
-
|
|
217
|
-
|
|
216
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerDataKeys, isOptional = true, elementCls = typeof(string))]
|
|
217
|
+
public List<string>? playerDataKeys;
|
|
218
218
|
|
|
219
|
-
|
|
219
|
+
}
|
|
220
220
|
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
221
|
+
public class ServerGetPlayerDataRequestData : GetPlayerDataRequestData
|
|
222
|
+
{
|
|
223
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
224
|
+
public new string userId;
|
|
225
225
|
|
|
226
|
-
|
|
226
|
+
}
|
|
227
227
|
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
228
|
+
public class AdminGetPlayerDataRequestData : ServerGetPlayerDataRequestData
|
|
229
|
+
{
|
|
230
|
+
}
|
|
231
231
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
232
|
+
public class GetPlayerInformationRequestData
|
|
233
|
+
{
|
|
234
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
235
|
+
public string? userId;
|
|
236
236
|
|
|
237
|
-
|
|
238
|
-
|
|
237
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
238
|
+
public InfoRequestParam infoRequestParam;
|
|
239
239
|
|
|
240
|
-
|
|
240
|
+
}
|
|
241
241
|
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
242
|
+
public class ServerGetPlayerInformationRequestData : GetPlayerInformationRequestData
|
|
243
|
+
{
|
|
244
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
245
|
+
public new string userId;
|
|
246
246
|
|
|
247
|
-
|
|
247
|
+
}
|
|
248
248
|
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
249
|
+
public class AdminGetPlayerInformationRequestData : ServerGetPlayerInformationRequestData
|
|
250
|
+
{
|
|
251
|
+
}
|
|
252
252
|
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
253
|
+
public class GetPlayerStatisticsRequestData
|
|
254
|
+
{
|
|
255
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
256
|
+
public string? userId;
|
|
257
257
|
|
|
258
|
-
|
|
259
|
-
|
|
258
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerStatisticsKeys, isOptional = true, elementCls = typeof(string))]
|
|
259
|
+
public List<string>? playerStatisticsKeys;
|
|
260
260
|
|
|
261
|
-
|
|
261
|
+
}
|
|
262
262
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
263
|
+
public class ServerGetPlayerStatisticsRequestData : GetPlayerStatisticsRequestData
|
|
264
|
+
{
|
|
265
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
266
|
+
public new string userId;
|
|
267
267
|
|
|
268
|
-
|
|
268
|
+
}
|
|
269
269
|
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
270
|
+
public class AdminGetPlayerStatisticsRequestData : ServerGetPlayerStatisticsRequestData
|
|
271
|
+
{
|
|
272
|
+
}
|
|
273
273
|
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
274
|
+
public class GetPlayersWithAppleRequestData
|
|
275
|
+
{
|
|
276
|
+
[GNArrayDataMember(code = GNParameterCode.AppleIds, mustNonNull = true, elementCls = typeof(string))]
|
|
277
|
+
public List<string> appleIds;
|
|
278
278
|
|
|
279
|
-
|
|
280
|
-
|
|
279
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
280
|
+
public InfoRequestParam infoRequestParam;
|
|
281
281
|
|
|
282
|
-
|
|
282
|
+
}
|
|
283
283
|
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
284
|
+
public class ServerGetPlayersWithAppleRequestData : GetPlayersWithAppleRequestData
|
|
285
|
+
{
|
|
286
|
+
}
|
|
287
287
|
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
288
|
+
public class AdminGetPlayersWithAppleRequestData : ServerGetPlayersWithAppleRequestData
|
|
289
|
+
{
|
|
290
|
+
}
|
|
291
291
|
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
292
|
+
public class GetPlayersWithDisplayNameRequestData
|
|
293
|
+
{
|
|
294
|
+
[StringDataMember(code = GNParameterCode.Keyword, minLength = 2, maxLength = 32)]
|
|
295
|
+
public string keyword;
|
|
296
296
|
|
|
297
|
-
|
|
298
|
-
|
|
297
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
298
|
+
public InfoRequestParam infoRequestParam;
|
|
299
299
|
|
|
300
|
-
|
|
301
|
-
|
|
300
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
301
|
+
public int? skip;
|
|
302
302
|
|
|
303
|
-
|
|
304
|
-
|
|
303
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
304
|
+
public int? limit;
|
|
305
305
|
|
|
306
|
-
|
|
306
|
+
}
|
|
307
307
|
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
308
|
+
public class ServerGetPlayersWithDisplayNameRequestData : GetPlayersWithDisplayNameRequestData
|
|
309
|
+
{
|
|
310
|
+
}
|
|
311
311
|
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
312
|
+
public class AdminGetPlayersWithDisplayNameRequestData : ServerGetPlayersWithDisplayNameRequestData
|
|
313
|
+
{
|
|
314
|
+
}
|
|
315
315
|
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
316
|
+
public class GetPlayersWithFacebookRequestData
|
|
317
|
+
{
|
|
318
|
+
[GNArrayDataMember(code = GNParameterCode.FacebookIds, mustNonNull = true, elementCls = typeof(string))]
|
|
319
|
+
public List<string> facebookIds;
|
|
320
320
|
|
|
321
|
-
|
|
322
|
-
|
|
321
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
322
|
+
public InfoRequestParam infoRequestParam;
|
|
323
323
|
|
|
324
|
-
|
|
324
|
+
}
|
|
325
325
|
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
326
|
+
public class ServerGetPlayersWithFacebookRequestData : GetPlayersWithFacebookRequestData
|
|
327
|
+
{
|
|
328
|
+
}
|
|
329
329
|
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
330
|
+
public class AdminGetPlayersWithFacebookRequestData : ServerGetPlayersWithFacebookRequestData
|
|
331
|
+
{
|
|
332
|
+
}
|
|
333
333
|
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
334
|
+
public class GetPlayersWithGenericServiceRequestData
|
|
335
|
+
{
|
|
336
|
+
[StringDataMember(code = GNParameterCode.ServiceName, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
337
|
+
public string serviceName;
|
|
338
338
|
|
|
339
|
-
|
|
340
|
-
|
|
339
|
+
[GNArrayDataMember(code = GNParameterCode.GenericIds, mustNonNull = true, elementCls = typeof(string))]
|
|
340
|
+
public List<string> genericIds;
|
|
341
341
|
|
|
342
|
-
|
|
343
|
-
|
|
342
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
343
|
+
public InfoRequestParam infoRequestParam;
|
|
344
344
|
|
|
345
|
-
|
|
345
|
+
}
|
|
346
346
|
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
347
|
+
public class ServerGetPlayersWithGenericServiceRequestData : GetPlayersWithGenericServiceRequestData
|
|
348
|
+
{
|
|
349
|
+
}
|
|
350
350
|
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
351
|
+
public class AdminGetPlayersWithGenericServiceRequestData : ServerGetPlayersWithGenericServiceRequestData
|
|
352
|
+
{
|
|
353
|
+
}
|
|
354
354
|
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
355
|
+
public class GetPlayersWithGoogleRequestData
|
|
356
|
+
{
|
|
357
|
+
[GNArrayDataMember(code = GNParameterCode.GoogleIds, mustNonNull = true, elementCls = typeof(string))]
|
|
358
|
+
public List<string> googleIds;
|
|
359
359
|
|
|
360
|
-
|
|
361
|
-
|
|
360
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
361
|
+
public InfoRequestParam infoRequestParam;
|
|
362
362
|
|
|
363
|
-
|
|
363
|
+
}
|
|
364
364
|
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
365
|
+
public class ServerGetPlayersWithGoogleRequestData : GetPlayersWithGoogleRequestData
|
|
366
|
+
{
|
|
367
|
+
}
|
|
368
368
|
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
369
|
+
public class AdminGetPlayersWithGoogleRequestData : ServerGetPlayersWithGoogleRequestData
|
|
370
|
+
{
|
|
371
|
+
}
|
|
372
372
|
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
373
|
+
public class GetPlayersWithGooglePlayGameServiceRequestData
|
|
374
|
+
{
|
|
375
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerIds, mustNonNull = true, elementCls = typeof(string))]
|
|
376
|
+
public List<string> playerIds;
|
|
377
377
|
|
|
378
|
-
|
|
379
|
-
|
|
378
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
379
|
+
public InfoRequestParam infoRequestParam;
|
|
380
380
|
|
|
381
|
-
|
|
382
|
-
public long? skip;
|
|
381
|
+
}
|
|
383
382
|
|
|
384
|
-
|
|
385
|
-
|
|
383
|
+
public class ServerGetPlayersWithGooglePlayGameServiceRequestData : GetPlayersWithGooglePlayGameServiceRequestData
|
|
384
|
+
{
|
|
385
|
+
}
|
|
386
386
|
|
|
387
|
-
|
|
387
|
+
public class AdminGetPlayersWithGooglePlayGameServiceRequestData : ServerGetPlayersWithGooglePlayGameServiceRequestData
|
|
388
|
+
{
|
|
389
|
+
}
|
|
388
390
|
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
391
|
+
public class GetPlayersWithGameCenterRequestData
|
|
392
|
+
{
|
|
393
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerIds, mustNonNull = true, elementCls = typeof(string))]
|
|
394
|
+
public List<string> playerIds;
|
|
392
395
|
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
}
|
|
396
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
397
|
+
public InfoRequestParam infoRequestParam;
|
|
396
398
|
|
|
397
|
-
|
|
398
|
-
{
|
|
399
|
-
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
400
|
-
public string key;
|
|
399
|
+
}
|
|
401
400
|
|
|
402
|
-
|
|
403
|
-
|
|
401
|
+
public class ServerGetPlayersWithGameCenterRequestData : GetPlayersWithGameCenterRequestData
|
|
402
|
+
{
|
|
403
|
+
}
|
|
404
404
|
|
|
405
|
-
|
|
406
|
-
|
|
405
|
+
public class AdminGetPlayersWithGameCenterRequestData : ServerGetPlayersWithGameCenterRequestData
|
|
406
|
+
{
|
|
407
|
+
}
|
|
407
408
|
|
|
408
|
-
|
|
409
|
-
|
|
409
|
+
public class GetPlayersWithSegmentRequestData
|
|
410
|
+
{
|
|
411
|
+
[StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
412
|
+
public string value;
|
|
410
413
|
|
|
411
|
-
|
|
412
|
-
|
|
414
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
415
|
+
public InfoRequestParam infoRequestParam;
|
|
413
416
|
|
|
414
|
-
|
|
417
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
418
|
+
public int? skip;
|
|
415
419
|
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
}
|
|
420
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
421
|
+
public int? limit;
|
|
419
422
|
|
|
420
|
-
|
|
421
|
-
{
|
|
422
|
-
}
|
|
423
|
+
}
|
|
423
424
|
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
public string? userId;
|
|
425
|
+
public class ServerGetPlayersWithSegmentRequestData : GetPlayersWithSegmentRequestData
|
|
426
|
+
{
|
|
427
|
+
}
|
|
428
428
|
|
|
429
|
-
|
|
429
|
+
public class AdminGetPlayersWithSegmentRequestData : ServerGetPlayersWithSegmentRequestData
|
|
430
|
+
{
|
|
431
|
+
}
|
|
430
432
|
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
433
|
+
public class GetPlayersWithTagRequestData
|
|
434
|
+
{
|
|
435
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
436
|
+
public string key;
|
|
435
437
|
|
|
436
|
-
|
|
438
|
+
[StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
439
|
+
public string value;
|
|
437
440
|
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
}
|
|
441
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
442
|
+
public InfoRequestParam infoRequestParam;
|
|
441
443
|
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
445
|
-
public string? userId;
|
|
444
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
445
|
+
public int? skip;
|
|
446
446
|
|
|
447
|
-
|
|
448
|
-
|
|
447
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
448
|
+
public int? limit;
|
|
449
449
|
|
|
450
|
-
|
|
451
|
-
public InfoRequestParam infoRequestParam;
|
|
450
|
+
}
|
|
452
451
|
|
|
453
|
-
|
|
454
|
-
|
|
452
|
+
public class ServerGetPlayersWithTagRequestData : GetPlayersWithTagRequestData
|
|
453
|
+
{
|
|
454
|
+
}
|
|
455
455
|
|
|
456
|
-
|
|
457
|
-
|
|
456
|
+
public class AdminGetPlayersWithTagRequestData : ServerGetPlayersWithTagRequestData
|
|
457
|
+
{
|
|
458
|
+
}
|
|
458
459
|
|
|
459
|
-
|
|
460
|
+
public class GetSegmentRequestData
|
|
461
|
+
{
|
|
462
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
463
|
+
public string? userId;
|
|
460
464
|
|
|
461
|
-
|
|
462
|
-
{
|
|
463
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
464
|
-
public new string userId;
|
|
465
|
+
}
|
|
465
466
|
|
|
466
|
-
|
|
467
|
+
public class ServerGetSegmentRequestData : GetSegmentRequestData
|
|
468
|
+
{
|
|
469
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
470
|
+
public new string userId;
|
|
467
471
|
|
|
468
|
-
|
|
469
|
-
{
|
|
470
|
-
}
|
|
472
|
+
}
|
|
471
473
|
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
public string key;
|
|
474
|
+
public class AdminGetSegmentRequestData : ServerGetSegmentRequestData
|
|
475
|
+
{
|
|
476
|
+
}
|
|
476
477
|
|
|
477
|
-
|
|
478
|
-
|
|
478
|
+
public class GetStatisticsLeaderboardAroundPlayerRequestData
|
|
479
|
+
{
|
|
480
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
481
|
+
public string? userId;
|
|
479
482
|
|
|
480
|
-
|
|
481
|
-
|
|
483
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
484
|
+
public string key;
|
|
482
485
|
|
|
483
|
-
|
|
484
|
-
|
|
486
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
487
|
+
public InfoRequestParam infoRequestParam;
|
|
485
488
|
|
|
486
|
-
|
|
487
|
-
|
|
489
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
490
|
+
public int? skip;
|
|
488
491
|
|
|
489
|
-
|
|
492
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
493
|
+
public int? limit;
|
|
490
494
|
|
|
491
|
-
|
|
492
|
-
{
|
|
493
|
-
}
|
|
495
|
+
}
|
|
494
496
|
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
497
|
+
public class ServerGetStatisticsLeaderboardAroundPlayerRequestData : GetStatisticsLeaderboardAroundPlayerRequestData
|
|
498
|
+
{
|
|
499
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
500
|
+
public new string userId;
|
|
498
501
|
|
|
499
|
-
|
|
500
|
-
{
|
|
501
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
502
|
-
public string? userId;
|
|
502
|
+
}
|
|
503
503
|
|
|
504
|
-
|
|
505
|
-
|
|
504
|
+
public class AdminGetStatisticsLeaderboardAroundPlayerRequestData : ServerGetStatisticsLeaderboardAroundPlayerRequestData
|
|
505
|
+
{
|
|
506
|
+
}
|
|
506
507
|
|
|
507
|
-
|
|
508
|
+
public class GetStatisticsLeaderboardRequestData
|
|
509
|
+
{
|
|
510
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
511
|
+
public string key;
|
|
508
512
|
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
512
|
-
public new string userId;
|
|
513
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
514
|
+
public InfoRequestParam infoRequestParam;
|
|
513
515
|
|
|
514
|
-
|
|
516
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
517
|
+
public int? skip;
|
|
515
518
|
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
}
|
|
519
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
520
|
+
public int? limit;
|
|
519
521
|
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
523
|
-
public string? userId;
|
|
522
|
+
[BooleanDataMember(code = GNParameterCode.LoadFromCache, defaultValue = true, isOptional = true)]
|
|
523
|
+
public bool? loadFromCache;
|
|
524
524
|
|
|
525
|
-
|
|
525
|
+
[StringDataMember(code = GNParameterCode.Version, minLength = 2, maxLength = 32, mustNonNull = true, isOptional = true)]
|
|
526
|
+
public string? version;
|
|
526
527
|
|
|
527
|
-
|
|
528
|
-
{
|
|
529
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
530
|
-
public new string userId;
|
|
528
|
+
}
|
|
531
529
|
|
|
532
|
-
|
|
530
|
+
public class ServerGetStatisticsLeaderboardRequestData : GetStatisticsLeaderboardRequestData
|
|
531
|
+
{
|
|
532
|
+
}
|
|
533
533
|
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
534
|
+
public class AdminGetStatisticsLeaderboardRequestData : ServerGetStatisticsLeaderboardRequestData
|
|
535
|
+
{
|
|
536
|
+
}
|
|
537
537
|
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
538
|
+
public class GetTagRequestData
|
|
539
|
+
{
|
|
540
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
541
|
+
public string? userId;
|
|
542
542
|
|
|
543
|
-
|
|
543
|
+
[GNArrayDataMember(code = GNParameterCode.TagKeys, elementCls = typeof(string))]
|
|
544
|
+
public List<string> tagKeys;
|
|
544
545
|
|
|
545
|
-
|
|
546
|
-
{
|
|
547
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
548
|
-
public new string userId;
|
|
546
|
+
}
|
|
549
547
|
|
|
550
|
-
|
|
548
|
+
public class ServerGetTagRequestData : GetTagRequestData
|
|
549
|
+
{
|
|
550
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
551
|
+
public new string userId;
|
|
551
552
|
|
|
552
|
-
|
|
553
|
-
{
|
|
554
|
-
}
|
|
553
|
+
}
|
|
555
554
|
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
public string? userId;
|
|
555
|
+
public class AdminGetTagRequestData : ServerGetTagRequestData
|
|
556
|
+
{
|
|
557
|
+
}
|
|
560
558
|
|
|
561
|
-
|
|
562
|
-
|
|
559
|
+
public class GetTsCreateRequestData
|
|
560
|
+
{
|
|
561
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
562
|
+
public string? userId;
|
|
563
563
|
|
|
564
|
-
|
|
565
|
-
public string password;
|
|
564
|
+
}
|
|
566
565
|
|
|
567
|
-
|
|
568
|
-
|
|
566
|
+
public class ServerGetTsCreateRequestData : GetTsCreateRequestData
|
|
567
|
+
{
|
|
568
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
569
|
+
public new string userId;
|
|
569
570
|
|
|
570
|
-
|
|
571
|
+
}
|
|
571
572
|
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
public new string userId;
|
|
573
|
+
public class AdminGetTsCreateRequestData : ServerGetTsCreateRequestData
|
|
574
|
+
{
|
|
575
|
+
}
|
|
576
576
|
|
|
577
|
-
|
|
577
|
+
public class GetTsLastLoginRequestData
|
|
578
|
+
{
|
|
579
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
580
|
+
public string? userId;
|
|
578
581
|
|
|
579
|
-
|
|
580
|
-
{
|
|
581
|
-
}
|
|
582
|
+
}
|
|
582
583
|
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
584
|
+
public class ServerGetTsLastLoginRequestData : GetTsLastLoginRequestData
|
|
585
|
+
{
|
|
586
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
587
|
+
public new string userId;
|
|
587
588
|
|
|
588
|
-
|
|
589
|
-
public string androidDeviceId;
|
|
589
|
+
}
|
|
590
590
|
|
|
591
|
-
|
|
592
|
-
|
|
591
|
+
public class AdminGetTsLastLoginRequestData : ServerGetTsLastLoginRequestData
|
|
592
|
+
{
|
|
593
|
+
}
|
|
593
594
|
|
|
594
|
-
|
|
595
|
+
public class LinkAccountRequestData
|
|
596
|
+
{
|
|
597
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
598
|
+
public string? userId;
|
|
595
599
|
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
599
|
-
public new string userId;
|
|
600
|
+
[StringDataMember(code = GNParameterCode.Username, minLength = 6, maxLength = 32, mustNonNull = true)]
|
|
601
|
+
public string username;
|
|
600
602
|
|
|
601
|
-
|
|
603
|
+
[StringDataMember(code = GNParameterCode.Username, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
604
|
+
public string password;
|
|
602
605
|
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
}
|
|
606
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
607
|
+
public bool? forceLink;
|
|
606
608
|
|
|
607
|
-
|
|
608
|
-
{
|
|
609
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
610
|
-
public string? userId;
|
|
609
|
+
}
|
|
611
610
|
|
|
612
|
-
|
|
613
|
-
|
|
611
|
+
public class ServerLinkAccountRequestData : LinkAccountRequestData
|
|
612
|
+
{
|
|
613
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
614
|
+
public new string userId;
|
|
614
615
|
|
|
615
|
-
|
|
616
|
-
public bool? forceLink;
|
|
616
|
+
}
|
|
617
617
|
|
|
618
|
-
|
|
618
|
+
public class AdminLinkAccountRequestData : ServerLinkAccountRequestData
|
|
619
|
+
{
|
|
620
|
+
}
|
|
619
621
|
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
622
|
+
public class LinkAndroidDeviceIdRequestData
|
|
623
|
+
{
|
|
624
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
625
|
+
public string? userId;
|
|
624
626
|
|
|
625
|
-
|
|
627
|
+
[StringDataMember(code = GNParameterCode.AndroidDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
628
|
+
public string androidDeviceId;
|
|
626
629
|
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
}
|
|
630
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
631
|
+
public bool? forceLink;
|
|
630
632
|
|
|
631
|
-
|
|
632
|
-
{
|
|
633
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
634
|
-
public string? userId;
|
|
633
|
+
}
|
|
635
634
|
|
|
636
|
-
|
|
637
|
-
|
|
635
|
+
public class ServerLinkAndroidDeviceIdRequestData : LinkAndroidDeviceIdRequestData
|
|
636
|
+
{
|
|
637
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
638
|
+
public new string userId;
|
|
638
639
|
|
|
639
|
-
|
|
640
|
-
public bool? forceLink;
|
|
640
|
+
}
|
|
641
641
|
|
|
642
|
-
|
|
642
|
+
public class AdminLinkAndroidDeviceIdRequestData : ServerLinkAndroidDeviceIdRequestData
|
|
643
|
+
{
|
|
644
|
+
}
|
|
643
645
|
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
646
|
+
public class LinkAppleRequestData
|
|
647
|
+
{
|
|
648
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
649
|
+
public string? userId;
|
|
648
650
|
|
|
649
|
-
|
|
651
|
+
[StringDataMember(code = GNParameterCode.Token, minLength = 64, maxLength = 512, mustNonNull = true)]
|
|
652
|
+
public string token;
|
|
650
653
|
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
}
|
|
654
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
655
|
+
public bool? forceLink;
|
|
654
656
|
|
|
655
|
-
|
|
656
|
-
{
|
|
657
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
658
|
-
public string? userId;
|
|
657
|
+
}
|
|
659
658
|
|
|
660
|
-
|
|
661
|
-
|
|
659
|
+
public class ServerLinkAppleRequestData : LinkAppleRequestData
|
|
660
|
+
{
|
|
661
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
662
|
+
public new string userId;
|
|
662
663
|
|
|
663
|
-
|
|
664
|
-
public bool? forceLink;
|
|
664
|
+
}
|
|
665
665
|
|
|
666
|
-
|
|
666
|
+
public class AdminLinkAppleRequestData : ServerLinkAppleRequestData
|
|
667
|
+
{
|
|
668
|
+
}
|
|
667
669
|
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
670
|
+
public class LinkCustomDeviceIdRequestData
|
|
671
|
+
{
|
|
672
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
673
|
+
public string? userId;
|
|
672
674
|
|
|
673
|
-
|
|
675
|
+
[StringDataMember(code = GNParameterCode.CustomDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
676
|
+
public string customDeviceId;
|
|
674
677
|
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
}
|
|
678
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
679
|
+
public bool? forceLink;
|
|
678
680
|
|
|
679
|
-
|
|
680
|
-
{
|
|
681
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
682
|
-
public string? userId;
|
|
681
|
+
}
|
|
683
682
|
|
|
684
|
-
|
|
685
|
-
|
|
683
|
+
public class ServerLinkCustomDeviceIdRequestData : LinkCustomDeviceIdRequestData
|
|
684
|
+
{
|
|
685
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
686
|
+
public new string userId;
|
|
686
687
|
|
|
687
|
-
|
|
688
|
-
public bool? forceLink;
|
|
688
|
+
}
|
|
689
689
|
|
|
690
|
-
|
|
690
|
+
public class AdminLinkCustomDeviceIdRequestData : ServerLinkCustomDeviceIdRequestData
|
|
691
|
+
{
|
|
692
|
+
}
|
|
691
693
|
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
694
|
+
public class LinkCustomIdRequestData
|
|
695
|
+
{
|
|
696
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
697
|
+
public string? userId;
|
|
696
698
|
|
|
697
|
-
|
|
699
|
+
[StringDataMember(code = GNParameterCode.CustomId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
700
|
+
public string customId;
|
|
698
701
|
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
}
|
|
702
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
703
|
+
public bool? forceLink;
|
|
702
704
|
|
|
703
|
-
|
|
704
|
-
{
|
|
705
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
706
|
-
public string? userId;
|
|
705
|
+
}
|
|
707
706
|
|
|
708
|
-
|
|
709
|
-
|
|
707
|
+
public class ServerLinkCustomIdRequestData : LinkCustomIdRequestData
|
|
708
|
+
{
|
|
709
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
710
|
+
public new string userId;
|
|
710
711
|
|
|
711
|
-
|
|
712
|
-
public bool? forceLink;
|
|
712
|
+
}
|
|
713
713
|
|
|
714
|
-
|
|
714
|
+
public class AdminLinkCustomIdRequestData : ServerLinkCustomIdRequestData
|
|
715
|
+
{
|
|
716
|
+
}
|
|
715
717
|
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
718
|
+
public class LinkEditorDeviceIdRequestData
|
|
719
|
+
{
|
|
720
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
721
|
+
public string? userId;
|
|
720
722
|
|
|
721
|
-
|
|
723
|
+
[StringDataMember(code = GNParameterCode.EditorDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
724
|
+
public string editorDeviceId;
|
|
722
725
|
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
}
|
|
726
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
727
|
+
public bool? forceLink;
|
|
726
728
|
|
|
727
|
-
|
|
728
|
-
{
|
|
729
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
730
|
-
public string? userId;
|
|
729
|
+
}
|
|
731
730
|
|
|
732
|
-
|
|
733
|
-
|
|
731
|
+
public class ServerLinkEditorDeviceIdRequestData : LinkEditorDeviceIdRequestData
|
|
732
|
+
{
|
|
733
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
734
|
+
public new string userId;
|
|
734
735
|
|
|
735
|
-
|
|
736
|
-
public GNHashtable serviceData;
|
|
736
|
+
}
|
|
737
737
|
|
|
738
|
-
|
|
739
|
-
|
|
738
|
+
public class AdminLinkEditorDeviceIdRequestData : ServerLinkEditorDeviceIdRequestData
|
|
739
|
+
{
|
|
740
|
+
}
|
|
740
741
|
|
|
741
|
-
|
|
742
|
+
public class LinkFacebookRequestData
|
|
743
|
+
{
|
|
744
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
745
|
+
public string? userId;
|
|
742
746
|
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
746
|
-
public new string userId;
|
|
747
|
+
[StringDataMember(code = GNParameterCode.Token, minLength = 64, maxLength = 512, mustNonNull = true)]
|
|
748
|
+
public string token;
|
|
747
749
|
|
|
748
|
-
|
|
750
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
751
|
+
public bool? forceLink;
|
|
749
752
|
|
|
750
|
-
|
|
751
|
-
{
|
|
752
|
-
}
|
|
753
|
+
}
|
|
753
754
|
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
755
|
+
public class ServerLinkFacebookRequestData : LinkFacebookRequestData
|
|
756
|
+
{
|
|
757
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
758
|
+
public new string userId;
|
|
758
759
|
|
|
759
|
-
|
|
760
|
-
public string token;
|
|
760
|
+
}
|
|
761
761
|
|
|
762
|
-
|
|
763
|
-
|
|
762
|
+
public class AdminLinkFacebookRequestData : ServerLinkFacebookRequestData
|
|
763
|
+
{
|
|
764
|
+
}
|
|
764
765
|
|
|
765
|
-
|
|
766
|
-
|
|
766
|
+
public class LinkGenericServiceRequestData
|
|
767
|
+
{
|
|
768
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
769
|
+
public string? userId;
|
|
767
770
|
|
|
768
|
-
|
|
771
|
+
[StringDataMember(code = GNParameterCode.ServiceName, minLength = 6, maxLength = 32, mustNonNull = true)]
|
|
772
|
+
public string serviceName;
|
|
769
773
|
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
773
|
-
public new string userId;
|
|
774
|
+
[GNHashtableDataMember(code = GNParameterCode.ServiceData, mustNonNull = true)]
|
|
775
|
+
public GNHashtable serviceData;
|
|
774
776
|
|
|
775
|
-
|
|
777
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
778
|
+
public bool? forceLink;
|
|
776
779
|
|
|
777
|
-
|
|
778
|
-
{
|
|
779
|
-
}
|
|
780
|
+
}
|
|
780
781
|
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
782
|
+
public class ServerLinkGenericServiceRequestData : LinkGenericServiceRequestData
|
|
783
|
+
{
|
|
784
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
785
|
+
public new string userId;
|
|
785
786
|
|
|
786
|
-
|
|
787
|
-
public string iOSDeviceId;
|
|
787
|
+
}
|
|
788
788
|
|
|
789
|
-
|
|
790
|
-
|
|
789
|
+
public class AdminLinkGenericServiceRequestData : ServerLinkGenericServiceRequestData
|
|
790
|
+
{
|
|
791
|
+
}
|
|
791
792
|
|
|
792
|
-
|
|
793
|
+
public class LinkGoogleRequestData
|
|
794
|
+
{
|
|
795
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
796
|
+
public string? userId;
|
|
793
797
|
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
797
|
-
public new string userId;
|
|
798
|
+
[StringDataMember(code = GNParameterCode.Token, maxLength = 512, minLength = 32, mustNonNull = true)]
|
|
799
|
+
public string token;
|
|
798
800
|
|
|
799
|
-
|
|
801
|
+
[NumberDataMember(code = GNParameterCode.Type, minValue = 1, maxValue = 2)]
|
|
802
|
+
public int type;
|
|
800
803
|
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
}
|
|
804
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
805
|
+
public bool? forceLink;
|
|
804
806
|
|
|
805
|
-
|
|
806
|
-
{
|
|
807
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
808
|
-
public string? userId;
|
|
807
|
+
}
|
|
809
808
|
|
|
810
|
-
|
|
811
|
-
|
|
809
|
+
public class ServerLinkGoogleRequestData : LinkGoogleRequestData
|
|
810
|
+
{
|
|
811
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
812
|
+
public new string userId;
|
|
812
813
|
|
|
813
|
-
|
|
814
|
-
public bool? forceLink;
|
|
814
|
+
}
|
|
815
815
|
|
|
816
|
-
|
|
816
|
+
public class AdminLinkGoogleRequestData : ServerLinkGoogleRequestData
|
|
817
|
+
{
|
|
818
|
+
}
|
|
817
819
|
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
820
|
+
public class LinkGooglePlayGameServiceRequestData
|
|
821
|
+
{
|
|
822
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
823
|
+
public string? userId;
|
|
822
824
|
|
|
823
|
-
|
|
825
|
+
[StringDataMember(code = GNParameterCode.Token, minLength = 20, maxLength = 512, mustNonNull = true)]
|
|
826
|
+
public string token;
|
|
824
827
|
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
}
|
|
828
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
829
|
+
public bool? forceLink;
|
|
828
830
|
|
|
829
|
-
|
|
830
|
-
{
|
|
831
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
832
|
-
public string? userId;
|
|
831
|
+
}
|
|
833
832
|
|
|
834
|
-
|
|
835
|
-
|
|
833
|
+
public class ServerLinkGooglePlayGameServiceRequestData : LinkGooglePlayGameServiceRequestData
|
|
834
|
+
{
|
|
835
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
836
|
+
public new string userId;
|
|
836
837
|
|
|
837
|
-
|
|
838
|
-
public bool? forceLink;
|
|
838
|
+
}
|
|
839
839
|
|
|
840
|
-
|
|
840
|
+
public class AdminLinkGooglePlayGameServiceRequestData : ServerLinkGooglePlayGameServiceRequestData
|
|
841
|
+
{
|
|
842
|
+
}
|
|
841
843
|
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
844
|
+
public class LinkGameCenterRequestData
|
|
845
|
+
{
|
|
846
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
847
|
+
public string? userId;
|
|
846
848
|
|
|
847
|
-
|
|
849
|
+
[StringDataMember(code = GNParameterCode.PlayerId, minLength = 2, maxLength = 64, mustNonNull = true)]
|
|
850
|
+
public string playerId;
|
|
848
851
|
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
}
|
|
852
|
+
[StringDataMember(code = GNParameterCode.Name, minLength = 2, maxLength = 64, mustNonNull = true)]
|
|
853
|
+
public string name;
|
|
852
854
|
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
856
|
-
public string? userId;
|
|
855
|
+
[StringDataMember(code = GNParameterCode.PublicKeyUrl, minLength = 2, maxLength = 256, mustNonNull = true)]
|
|
856
|
+
public string publicKeyUrl;
|
|
857
857
|
|
|
858
|
-
|
|
859
|
-
|
|
858
|
+
[StringDataMember(code = GNParameterCode.Signature, minLength = 2, maxLength = 512, mustNonNull = true)]
|
|
859
|
+
public string signature;
|
|
860
860
|
|
|
861
|
-
|
|
862
|
-
|
|
861
|
+
[StringDataMember(code = GNParameterCode.Salt, minLength = 2, maxLength = 128, mustNonNull = true)]
|
|
862
|
+
public string salt;
|
|
863
863
|
|
|
864
|
-
|
|
864
|
+
[NumberDataMember(code = GNParameterCode.Timestamp)]
|
|
865
|
+
public long timestamp;
|
|
865
866
|
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
869
|
-
public new string userId;
|
|
867
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
868
|
+
public bool? forceLink;
|
|
870
869
|
|
|
871
|
-
|
|
870
|
+
}
|
|
872
871
|
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
872
|
+
public class ServerLinkGameCenterRequestData : LinkGameCenterRequestData
|
|
873
|
+
{
|
|
874
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
875
|
+
public new string userId;
|
|
876
876
|
|
|
877
|
-
|
|
878
|
-
{
|
|
879
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
880
|
-
public string? userId;
|
|
877
|
+
}
|
|
881
878
|
|
|
882
|
-
|
|
883
|
-
|
|
879
|
+
public class AdminLinkGameCenterRequestData : ServerLinkGameCenterRequestData
|
|
880
|
+
{
|
|
881
|
+
}
|
|
884
882
|
|
|
885
|
-
|
|
886
|
-
|
|
883
|
+
public class LinkiOSDeviceIdRequestData
|
|
884
|
+
{
|
|
885
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
886
|
+
public string? userId;
|
|
887
887
|
|
|
888
|
-
|
|
888
|
+
[StringDataMember(code = GNParameterCode.iOSDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
889
|
+
public string iOSDeviceId;
|
|
889
890
|
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
893
|
-
public new string userId;
|
|
891
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
892
|
+
public bool? forceLink;
|
|
894
893
|
|
|
895
|
-
|
|
894
|
+
}
|
|
896
895
|
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
896
|
+
public class ServerLinkiOSDeviceIdRequestData : LinkiOSDeviceIdRequestData
|
|
897
|
+
{
|
|
898
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
899
|
+
public new string userId;
|
|
900
900
|
|
|
901
|
-
|
|
902
|
-
{
|
|
903
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
904
|
-
public string? userId;
|
|
901
|
+
}
|
|
905
902
|
|
|
906
|
-
|
|
907
|
-
|
|
903
|
+
public class AdminLinkiOSDeviceIdRequestData : ServerLinkiOSDeviceIdRequestData
|
|
904
|
+
{
|
|
905
|
+
}
|
|
908
906
|
|
|
909
|
-
|
|
907
|
+
public class LinkLinuxDeviceIdRequestData
|
|
908
|
+
{
|
|
909
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
910
|
+
public string? userId;
|
|
910
911
|
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
914
|
-
public new string userId;
|
|
912
|
+
[StringDataMember(code = GNParameterCode.LinuxDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
913
|
+
public string linuxDeviceId;
|
|
915
914
|
|
|
916
|
-
|
|
915
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
916
|
+
public bool? forceLink;
|
|
917
917
|
|
|
918
|
-
|
|
919
|
-
{
|
|
920
|
-
}
|
|
918
|
+
}
|
|
921
919
|
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
920
|
+
public class ServerLinkLinuxDeviceIdRequestData : LinkLinuxDeviceIdRequestData
|
|
921
|
+
{
|
|
922
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
923
|
+
public new string userId;
|
|
926
924
|
|
|
927
|
-
|
|
928
|
-
public string key;
|
|
925
|
+
}
|
|
929
926
|
|
|
930
|
-
|
|
927
|
+
public class AdminLinkLinuxDeviceIdRequestData : ServerLinkLinuxDeviceIdRequestData
|
|
928
|
+
{
|
|
929
|
+
}
|
|
931
930
|
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
931
|
+
public class LinkMacOSDeviceIdRequestData
|
|
932
|
+
{
|
|
933
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
934
|
+
public string? userId;
|
|
936
935
|
|
|
937
|
-
|
|
936
|
+
[StringDataMember(code = GNParameterCode.MacOSDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
937
|
+
public string macOSDeviceId;
|
|
938
938
|
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
}
|
|
939
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
940
|
+
public bool? forceLink;
|
|
942
941
|
|
|
943
|
-
|
|
944
|
-
{
|
|
945
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
946
|
-
public string userId;
|
|
942
|
+
}
|
|
947
943
|
|
|
948
|
-
|
|
949
|
-
|
|
944
|
+
public class ServerLinkMacOSDeviceIdRequestData : LinkMacOSDeviceIdRequestData
|
|
945
|
+
{
|
|
946
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
947
|
+
public new string userId;
|
|
950
948
|
|
|
951
|
-
|
|
949
|
+
}
|
|
952
950
|
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
public new string userId;
|
|
951
|
+
public class AdminLinkMacOSDeviceIdRequestData : ServerLinkMacOSDeviceIdRequestData
|
|
952
|
+
{
|
|
953
|
+
}
|
|
957
954
|
|
|
958
|
-
|
|
955
|
+
public class LinkWindowsDeviceIdRequestData
|
|
956
|
+
{
|
|
957
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
958
|
+
public string? userId;
|
|
959
959
|
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
}
|
|
960
|
+
[StringDataMember(code = GNParameterCode.WindowsDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
961
|
+
public string windowsDeviceId;
|
|
963
962
|
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
967
|
-
public string userId;
|
|
963
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
964
|
+
public bool? forceLink;
|
|
968
965
|
|
|
969
|
-
|
|
970
|
-
public long type;
|
|
966
|
+
}
|
|
971
967
|
|
|
972
|
-
|
|
973
|
-
|
|
968
|
+
public class ServerLinkWindowsDeviceIdRequestData : LinkWindowsDeviceIdRequestData
|
|
969
|
+
{
|
|
970
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
971
|
+
public new string userId;
|
|
974
972
|
|
|
975
|
-
|
|
973
|
+
}
|
|
976
974
|
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
public new string userId;
|
|
975
|
+
public class AdminLinkWindowsDeviceIdRequestData : ServerLinkWindowsDeviceIdRequestData
|
|
976
|
+
{
|
|
977
|
+
}
|
|
981
978
|
|
|
982
|
-
|
|
979
|
+
public class LinkWindowsPhoneDeviceIdRequestData
|
|
980
|
+
{
|
|
981
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
982
|
+
public string? userId;
|
|
983
983
|
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
}
|
|
984
|
+
[StringDataMember(code = GNParameterCode.WindowsPhoneDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
985
|
+
public string windowsPhoneDeviceId;
|
|
987
986
|
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
991
|
-
public string? userId;
|
|
987
|
+
[BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
|
|
988
|
+
public bool? forceLink;
|
|
992
989
|
|
|
993
|
-
|
|
994
|
-
public string countryCode;
|
|
990
|
+
}
|
|
995
991
|
|
|
996
|
-
|
|
992
|
+
public class ServerLinkWindowsPhoneDeviceIdRequestData : LinkWindowsPhoneDeviceIdRequestData
|
|
993
|
+
{
|
|
994
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
995
|
+
public new string userId;
|
|
997
996
|
|
|
998
|
-
|
|
999
|
-
{
|
|
1000
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1001
|
-
public new string userId;
|
|
997
|
+
}
|
|
1002
998
|
|
|
1003
|
-
|
|
999
|
+
public class AdminLinkWindowsPhoneDeviceIdRequestData : ServerLinkWindowsPhoneDeviceIdRequestData
|
|
1000
|
+
{
|
|
1001
|
+
}
|
|
1004
1002
|
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1003
|
+
public class RemoveSegmentRequestData
|
|
1004
|
+
{
|
|
1005
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1006
|
+
public string? userId;
|
|
1008
1007
|
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1012
|
-
public string? userId;
|
|
1008
|
+
[StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1009
|
+
public string value;
|
|
1013
1010
|
|
|
1014
|
-
|
|
1015
|
-
public List<CustomDataParam> customData;
|
|
1011
|
+
}
|
|
1016
1012
|
|
|
1017
|
-
|
|
1013
|
+
public class ServerRemoveSegmentRequestData : RemoveSegmentRequestData
|
|
1014
|
+
{
|
|
1015
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1016
|
+
public new string userId;
|
|
1018
1017
|
|
|
1019
|
-
|
|
1020
|
-
{
|
|
1021
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1022
|
-
public new string userId;
|
|
1018
|
+
}
|
|
1023
1019
|
|
|
1024
|
-
|
|
1020
|
+
public class AdminRemoveSegmentRequestData : ServerRemoveSegmentRequestData
|
|
1021
|
+
{
|
|
1022
|
+
}
|
|
1025
1023
|
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1024
|
+
public class RemoveTagRequestData
|
|
1025
|
+
{
|
|
1026
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1027
|
+
public string? userId;
|
|
1029
1028
|
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1033
|
-
public string? userId;
|
|
1029
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1030
|
+
public string key;
|
|
1034
1031
|
|
|
1035
|
-
|
|
1036
|
-
public string displayName;
|
|
1032
|
+
}
|
|
1037
1033
|
|
|
1038
|
-
|
|
1039
|
-
|
|
1034
|
+
public class ServerRemoveTagRequestData : RemoveTagRequestData
|
|
1035
|
+
{
|
|
1036
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1037
|
+
public new string userId;
|
|
1040
1038
|
|
|
1041
|
-
|
|
1039
|
+
}
|
|
1042
1040
|
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
public new string userId;
|
|
1041
|
+
public class AdminRemoveTagRequestData : ServerRemoveTagRequestData
|
|
1042
|
+
{
|
|
1043
|
+
}
|
|
1047
1044
|
|
|
1048
|
-
|
|
1045
|
+
public class ResetAccountPasswordRequestData
|
|
1046
|
+
{
|
|
1047
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1048
|
+
public string? userId;
|
|
1049
1049
|
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
}
|
|
1050
|
+
[StringDataMember(code = GNParameterCode.Password, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1051
|
+
public string password;
|
|
1053
1052
|
|
|
1054
|
-
|
|
1055
|
-
{
|
|
1056
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1057
|
-
public string? userId;
|
|
1053
|
+
}
|
|
1058
1054
|
|
|
1059
|
-
|
|
1060
|
-
|
|
1055
|
+
public class ServerResetAccountPasswordRequestData : ResetAccountPasswordRequestData
|
|
1056
|
+
{
|
|
1057
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1058
|
+
public new string userId;
|
|
1061
1059
|
|
|
1062
|
-
|
|
1060
|
+
}
|
|
1063
1061
|
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
public new string userId;
|
|
1062
|
+
public class AdminResetAccountPasswordRequestData : ServerResetAccountPasswordRequestData
|
|
1063
|
+
{
|
|
1064
|
+
}
|
|
1068
1065
|
|
|
1069
|
-
|
|
1066
|
+
public class SetAvatarRequestData
|
|
1067
|
+
{
|
|
1068
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1069
|
+
public string? userId;
|
|
1070
1070
|
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
}
|
|
1071
|
+
[NumberDataMember(code = GNParameterCode.Type, mustInt = true)]
|
|
1072
|
+
public long type;
|
|
1074
1073
|
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1078
|
-
public string? userId;
|
|
1074
|
+
[StringDataMember(code = GNParameterCode.Value, minLength = 1, maxLength = 128, mustNonNull = true)]
|
|
1075
|
+
public string value;
|
|
1079
1076
|
|
|
1080
|
-
|
|
1081
|
-
public double tsExpire;
|
|
1077
|
+
}
|
|
1082
1078
|
|
|
1083
|
-
|
|
1084
|
-
|
|
1079
|
+
public class ServerSetAvatarRequestData : SetAvatarRequestData
|
|
1080
|
+
{
|
|
1081
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1082
|
+
public new string userId;
|
|
1085
1083
|
|
|
1086
|
-
|
|
1084
|
+
}
|
|
1087
1085
|
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
public new string userId;
|
|
1086
|
+
public class AdminSetAvatarRequestData : ServerSetAvatarRequestData
|
|
1087
|
+
{
|
|
1088
|
+
}
|
|
1092
1089
|
|
|
1093
|
-
|
|
1090
|
+
public class SetCountryCodeRequestData
|
|
1091
|
+
{
|
|
1092
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1093
|
+
public string? userId;
|
|
1094
1094
|
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
}
|
|
1095
|
+
[StringDataMember(code = GNParameterCode.CountryCode, minLength = 2, maxLength = 32)]
|
|
1096
|
+
public string countryCode;
|
|
1098
1097
|
|
|
1099
|
-
|
|
1100
|
-
{
|
|
1101
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1102
|
-
public string? userId;
|
|
1098
|
+
}
|
|
1103
1099
|
|
|
1104
|
-
|
|
1105
|
-
|
|
1100
|
+
public class ServerSetCountryCodeRequestData : SetCountryCodeRequestData
|
|
1101
|
+
{
|
|
1102
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1103
|
+
public new string userId;
|
|
1106
1104
|
|
|
1107
|
-
|
|
1105
|
+
}
|
|
1108
1106
|
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
public new string userId;
|
|
1107
|
+
public class AdminSetCountryCodeRequestData : ServerSetCountryCodeRequestData
|
|
1108
|
+
{
|
|
1109
|
+
}
|
|
1113
1110
|
|
|
1114
|
-
|
|
1111
|
+
public class SetCustomDataRequestData
|
|
1112
|
+
{
|
|
1113
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1114
|
+
public string? userId;
|
|
1115
1115
|
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
}
|
|
1116
|
+
[GNArrayDataMember(code = GNParameterCode.CustomDatas, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(CustomDataParam))]
|
|
1117
|
+
public List<CustomDataParam> customData;
|
|
1119
1118
|
|
|
1120
|
-
|
|
1121
|
-
{
|
|
1122
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1123
|
-
public string? userId;
|
|
1119
|
+
}
|
|
1124
1120
|
|
|
1125
|
-
|
|
1126
|
-
|
|
1121
|
+
public class ServerSetCustomDataRequestData : SetCustomDataRequestData
|
|
1122
|
+
{
|
|
1123
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1124
|
+
public new string userId;
|
|
1127
1125
|
|
|
1128
|
-
|
|
1126
|
+
}
|
|
1129
1127
|
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
public new string userId;
|
|
1128
|
+
public class AdminSetCustomDataRequestData : ServerSetCustomDataRequestData
|
|
1129
|
+
{
|
|
1130
|
+
}
|
|
1134
1131
|
|
|
1135
|
-
|
|
1132
|
+
public class SetDisplayNameRequestData
|
|
1133
|
+
{
|
|
1134
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1135
|
+
public string? userId;
|
|
1136
1136
|
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
}
|
|
1137
|
+
[StringDataMember(code = GNParameterCode.DisplayName, minLength = 5, maxLength = 32, mustNonNull = true)]
|
|
1138
|
+
public string displayName;
|
|
1140
1139
|
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1144
|
-
public string? userId;
|
|
1140
|
+
[BooleanDataMember(code = GNParameterCode.UniqueDisplayName, defaultValue = false, isOptional = true)]
|
|
1141
|
+
public bool? uniqueDisplayName;
|
|
1145
1142
|
|
|
1146
|
-
|
|
1147
|
-
public List<PlayerStatisticsParam> playerStatisticsParams;
|
|
1143
|
+
}
|
|
1148
1144
|
|
|
1149
|
-
|
|
1145
|
+
public class ServerSetDisplayNameRequestData : SetDisplayNameRequestData
|
|
1146
|
+
{
|
|
1147
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1148
|
+
public new string userId;
|
|
1150
1149
|
|
|
1151
|
-
|
|
1152
|
-
{
|
|
1153
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1154
|
-
public new string userId;
|
|
1150
|
+
}
|
|
1155
1151
|
|
|
1156
|
-
|
|
1152
|
+
public class AdminSetDisplayNameRequestData : ServerSetDisplayNameRequestData
|
|
1153
|
+
{
|
|
1154
|
+
}
|
|
1157
1155
|
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1156
|
+
public class SetEmailRequestData
|
|
1157
|
+
{
|
|
1158
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1159
|
+
public string? userId;
|
|
1161
1160
|
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1165
|
-
public string? userId;
|
|
1161
|
+
[StringDataMember(code = GNParameterCode.Email, minLength = 5, maxLength = 128, mustNonNull = true)]
|
|
1162
|
+
public string email;
|
|
1166
1163
|
|
|
1167
|
-
|
|
1168
|
-
public string key;
|
|
1164
|
+
}
|
|
1169
1165
|
|
|
1170
|
-
|
|
1171
|
-
|
|
1166
|
+
public class ServerSetEmailRequestData : SetEmailRequestData
|
|
1167
|
+
{
|
|
1168
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1169
|
+
public new string userId;
|
|
1172
1170
|
|
|
1173
|
-
|
|
1171
|
+
}
|
|
1174
1172
|
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
public new string userId;
|
|
1173
|
+
public class AdminSetEmailRequestData : ServerSetEmailRequestData
|
|
1174
|
+
{
|
|
1175
|
+
}
|
|
1179
1176
|
|
|
1180
|
-
|
|
1177
|
+
public class SetPlayerBanRequestData
|
|
1178
|
+
{
|
|
1179
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1180
|
+
public string? userId;
|
|
1181
1181
|
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
}
|
|
1182
|
+
[NumberDataMember(code = GNParameterCode.TsExpire)]
|
|
1183
|
+
public double tsExpire;
|
|
1185
1184
|
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1189
|
-
public string? userId;
|
|
1185
|
+
[StringDataMember(code = GNParameterCode.Reason)]
|
|
1186
|
+
public string reason;
|
|
1190
1187
|
|
|
1191
|
-
|
|
1188
|
+
}
|
|
1192
1189
|
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1190
|
+
public class ServerSetPlayerBanRequestData : SetPlayerBanRequestData
|
|
1191
|
+
{
|
|
1192
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1193
|
+
public new string userId;
|
|
1197
1194
|
|
|
1198
|
-
|
|
1195
|
+
}
|
|
1199
1196
|
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1197
|
+
public class AdminSetPlayerBanRequestData : ServerSetPlayerBanRequestData
|
|
1198
|
+
{
|
|
1199
|
+
}
|
|
1203
1200
|
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1201
|
+
public class SetPlayerCurrencyRequestData
|
|
1202
|
+
{
|
|
1203
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1204
|
+
public string? userId;
|
|
1208
1205
|
|
|
1209
|
-
|
|
1210
|
-
|
|
1206
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerCurrencies, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(PlayerCurrencyParam))]
|
|
1207
|
+
public List<PlayerCurrencyParam> playerCurrencyParams;
|
|
1211
1208
|
|
|
1212
|
-
|
|
1209
|
+
[StringDataMember(code = GNParameterCode.Log, minLength = 1, maxLength = 256, mustNonNull = true, isOptional = true)]
|
|
1210
|
+
public string? log;
|
|
1213
1211
|
|
|
1214
|
-
|
|
1215
|
-
{
|
|
1216
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1217
|
-
public new string userId;
|
|
1212
|
+
}
|
|
1218
1213
|
|
|
1219
|
-
|
|
1214
|
+
public class ServerSetPlayerCurrencyRequestData : SetPlayerCurrencyRequestData
|
|
1215
|
+
{
|
|
1216
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1217
|
+
public new string userId;
|
|
1220
1218
|
|
|
1221
|
-
|
|
1222
|
-
{
|
|
1223
|
-
}
|
|
1219
|
+
}
|
|
1224
1220
|
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
public string? userId;
|
|
1221
|
+
public class AdminSetPlayerCurrencyRequestData : ServerSetPlayerCurrencyRequestData
|
|
1222
|
+
{
|
|
1223
|
+
}
|
|
1229
1224
|
|
|
1230
|
-
|
|
1231
|
-
|
|
1225
|
+
public class SetPlayerDataRequestData
|
|
1226
|
+
{
|
|
1227
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1228
|
+
public string? userId;
|
|
1232
1229
|
|
|
1233
|
-
|
|
1230
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerDatas, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(PlayerDataParam))]
|
|
1231
|
+
public List<PlayerDataParam> playerDataParams;
|
|
1234
1232
|
|
|
1235
|
-
|
|
1236
|
-
{
|
|
1237
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1238
|
-
public new string userId;
|
|
1233
|
+
}
|
|
1239
1234
|
|
|
1240
|
-
|
|
1235
|
+
public class ServerSetPlayerDataRequestData : SetPlayerDataRequestData
|
|
1236
|
+
{
|
|
1237
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1238
|
+
public new string userId;
|
|
1241
1239
|
|
|
1242
|
-
|
|
1243
|
-
{
|
|
1244
|
-
}
|
|
1240
|
+
}
|
|
1245
1241
|
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
public string? userId;
|
|
1242
|
+
public class AdminSetPlayerDataRequestData : ServerSetPlayerDataRequestData
|
|
1243
|
+
{
|
|
1244
|
+
}
|
|
1250
1245
|
|
|
1251
|
-
|
|
1252
|
-
|
|
1246
|
+
public class SetPlayerStatisticsRequestData
|
|
1247
|
+
{
|
|
1248
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1249
|
+
public string? userId;
|
|
1253
1250
|
|
|
1254
|
-
|
|
1251
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerStatistics, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(PlayerStatisticsParam))]
|
|
1252
|
+
public List<PlayerStatisticsParam> playerStatisticsParams;
|
|
1255
1253
|
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1259
|
-
public new string userId;
|
|
1254
|
+
[StringDataMember(code = GNParameterCode.Log, minLength = 1, maxLength = 256, mustNonNull = true, isOptional = true)]
|
|
1255
|
+
public string? log;
|
|
1260
1256
|
|
|
1261
|
-
|
|
1257
|
+
}
|
|
1262
1258
|
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1259
|
+
public class ServerSetPlayerStatisticsRequestData : SetPlayerStatisticsRequestData
|
|
1260
|
+
{
|
|
1261
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1262
|
+
public new string userId;
|
|
1266
1263
|
|
|
1267
|
-
|
|
1268
|
-
{
|
|
1269
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1270
|
-
public string? userId;
|
|
1264
|
+
}
|
|
1271
1265
|
|
|
1272
|
-
|
|
1273
|
-
|
|
1266
|
+
public class AdminSetPlayerStatisticsRequestData : ServerSetPlayerStatisticsRequestData
|
|
1267
|
+
{
|
|
1268
|
+
}
|
|
1274
1269
|
|
|
1275
|
-
|
|
1270
|
+
public class SetTagRequestData
|
|
1271
|
+
{
|
|
1272
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1273
|
+
public string? userId;
|
|
1276
1274
|
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1280
|
-
public new string userId;
|
|
1275
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1276
|
+
public string key;
|
|
1281
1277
|
|
|
1282
|
-
|
|
1278
|
+
[StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1279
|
+
public string value;
|
|
1283
1280
|
|
|
1284
|
-
|
|
1285
|
-
{
|
|
1286
|
-
}
|
|
1281
|
+
}
|
|
1287
1282
|
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1283
|
+
public class ServerSetTagRequestData : SetTagRequestData
|
|
1284
|
+
{
|
|
1285
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1286
|
+
public new string userId;
|
|
1292
1287
|
|
|
1293
|
-
|
|
1294
|
-
public string customId;
|
|
1288
|
+
}
|
|
1295
1289
|
|
|
1296
|
-
|
|
1290
|
+
public class AdminSetTagRequestData : ServerSetTagRequestData
|
|
1291
|
+
{
|
|
1292
|
+
}
|
|
1297
1293
|
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1294
|
+
public class SetTsLastLoginRequestData
|
|
1295
|
+
{
|
|
1296
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1297
|
+
public string? userId;
|
|
1302
1298
|
|
|
1303
|
-
|
|
1299
|
+
}
|
|
1304
1300
|
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1301
|
+
public class ServerSetTsLastLoginRequestData : SetTsLastLoginRequestData
|
|
1302
|
+
{
|
|
1303
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1304
|
+
public new string userId;
|
|
1308
1305
|
|
|
1309
|
-
|
|
1310
|
-
{
|
|
1311
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1312
|
-
public string? userId;
|
|
1306
|
+
}
|
|
1313
1307
|
|
|
1314
|
-
|
|
1315
|
-
|
|
1308
|
+
public class AdminSetTsLastLoginRequestData : ServerSetTsLastLoginRequestData
|
|
1309
|
+
{
|
|
1310
|
+
}
|
|
1316
1311
|
|
|
1317
|
-
|
|
1312
|
+
public class UnlinkAccountRequestData
|
|
1313
|
+
{
|
|
1314
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1315
|
+
public string? userId;
|
|
1318
1316
|
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1322
|
-
public new string userId;
|
|
1317
|
+
[StringDataMember(code = GNParameterCode.Username, minLength = 6, maxLength = 32, mustNonNull = true)]
|
|
1318
|
+
public string username;
|
|
1323
1319
|
|
|
1324
|
-
|
|
1320
|
+
}
|
|
1325
1321
|
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1322
|
+
public class ServerUnlinkAccountRequestData : UnlinkAccountRequestData
|
|
1323
|
+
{
|
|
1324
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1325
|
+
public new string userId;
|
|
1329
1326
|
|
|
1330
|
-
|
|
1331
|
-
{
|
|
1332
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1333
|
-
public string? userId;
|
|
1327
|
+
}
|
|
1334
1328
|
|
|
1335
|
-
|
|
1336
|
-
|
|
1329
|
+
public class AdminUnlinkAccountRequestData : ServerUnlinkAccountRequestData
|
|
1330
|
+
{
|
|
1331
|
+
}
|
|
1337
1332
|
|
|
1338
|
-
|
|
1333
|
+
public class UnlinkAndroidDeviceIdRequestData
|
|
1334
|
+
{
|
|
1335
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1336
|
+
public string? userId;
|
|
1339
1337
|
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1343
|
-
public new string userId;
|
|
1338
|
+
[StringDataMember(code = GNParameterCode.AndroidDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1339
|
+
public string androidDeviceId;
|
|
1344
1340
|
|
|
1345
|
-
|
|
1341
|
+
}
|
|
1346
1342
|
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1343
|
+
public class ServerUnlinkAndroidDeviceIdRequestData : UnlinkAndroidDeviceIdRequestData
|
|
1344
|
+
{
|
|
1345
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1346
|
+
public new string userId;
|
|
1350
1347
|
|
|
1351
|
-
|
|
1352
|
-
{
|
|
1353
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1354
|
-
public string? userId;
|
|
1348
|
+
}
|
|
1355
1349
|
|
|
1356
|
-
|
|
1357
|
-
|
|
1350
|
+
public class AdminUnlinkAndroidDeviceIdRequestData : ServerUnlinkAndroidDeviceIdRequestData
|
|
1351
|
+
{
|
|
1352
|
+
}
|
|
1358
1353
|
|
|
1359
|
-
|
|
1360
|
-
|
|
1354
|
+
public class UnlinkAppleRequestData
|
|
1355
|
+
{
|
|
1356
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1357
|
+
public string? userId;
|
|
1361
1358
|
|
|
1362
|
-
|
|
1359
|
+
[StringDataMember(code = GNParameterCode.AppleId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1360
|
+
public string appleId;
|
|
1363
1361
|
|
|
1364
|
-
|
|
1365
|
-
{
|
|
1366
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1367
|
-
public new string userId;
|
|
1362
|
+
}
|
|
1368
1363
|
|
|
1369
|
-
|
|
1364
|
+
public class ServerUnlinkAppleRequestData : UnlinkAppleRequestData
|
|
1365
|
+
{
|
|
1366
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1367
|
+
public new string userId;
|
|
1370
1368
|
|
|
1371
|
-
|
|
1372
|
-
{
|
|
1373
|
-
}
|
|
1369
|
+
}
|
|
1374
1370
|
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
public string? userId;
|
|
1371
|
+
public class AdminUnlinkAppleRequestData : ServerUnlinkAppleRequestData
|
|
1372
|
+
{
|
|
1373
|
+
}
|
|
1379
1374
|
|
|
1380
|
-
|
|
1381
|
-
|
|
1375
|
+
public class UnlinkCustomDeviceIdRequestData
|
|
1376
|
+
{
|
|
1377
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1378
|
+
public string? userId;
|
|
1382
1379
|
|
|
1383
|
-
|
|
1380
|
+
[StringDataMember(code = GNParameterCode.CustomDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1381
|
+
public string customDeviceId;
|
|
1384
1382
|
|
|
1385
|
-
|
|
1386
|
-
{
|
|
1387
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1388
|
-
public new string userId;
|
|
1383
|
+
}
|
|
1389
1384
|
|
|
1390
|
-
|
|
1385
|
+
public class ServerUnlinkCustomDeviceIdRequestData : UnlinkCustomDeviceIdRequestData
|
|
1386
|
+
{
|
|
1387
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1388
|
+
public new string userId;
|
|
1391
1389
|
|
|
1392
|
-
|
|
1393
|
-
{
|
|
1394
|
-
}
|
|
1390
|
+
}
|
|
1395
1391
|
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
public string? userId;
|
|
1392
|
+
public class AdminUnlinkCustomDeviceIdRequestData : ServerUnlinkCustomDeviceIdRequestData
|
|
1393
|
+
{
|
|
1394
|
+
}
|
|
1400
1395
|
|
|
1401
|
-
|
|
1402
|
-
|
|
1396
|
+
public class UnlinkCustomIdRequestData
|
|
1397
|
+
{
|
|
1398
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1399
|
+
public string? userId;
|
|
1403
1400
|
|
|
1404
|
-
|
|
1401
|
+
[StringDataMember(code = GNParameterCode.CustomId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1402
|
+
public string customId;
|
|
1405
1403
|
|
|
1406
|
-
|
|
1407
|
-
{
|
|
1408
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1409
|
-
public new string userId;
|
|
1404
|
+
}
|
|
1410
1405
|
|
|
1411
|
-
|
|
1406
|
+
public class ServerUnlinkCustomIdRequestData : UnlinkCustomIdRequestData
|
|
1407
|
+
{
|
|
1408
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1409
|
+
public new string userId;
|
|
1412
1410
|
|
|
1413
|
-
|
|
1414
|
-
{
|
|
1415
|
-
}
|
|
1411
|
+
}
|
|
1416
1412
|
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
public string? userId;
|
|
1413
|
+
public class AdminUnlinkCustomIdRequestData : ServerUnlinkCustomIdRequestData
|
|
1414
|
+
{
|
|
1415
|
+
}
|
|
1421
1416
|
|
|
1422
|
-
|
|
1423
|
-
|
|
1417
|
+
public class UnlinkEditorDeviceIdRequestData
|
|
1418
|
+
{
|
|
1419
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1420
|
+
public string? userId;
|
|
1424
1421
|
|
|
1425
|
-
|
|
1422
|
+
[StringDataMember(code = GNParameterCode.EditorDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1423
|
+
public string editorDeviceId;
|
|
1426
1424
|
|
|
1427
|
-
|
|
1428
|
-
{
|
|
1429
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1430
|
-
public new string userId;
|
|
1425
|
+
}
|
|
1431
1426
|
|
|
1432
|
-
|
|
1427
|
+
public class ServerUnlinkEditorDeviceIdRequestData : UnlinkEditorDeviceIdRequestData
|
|
1428
|
+
{
|
|
1429
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1430
|
+
public new string userId;
|
|
1433
1431
|
|
|
1434
|
-
|
|
1435
|
-
{
|
|
1436
|
-
}
|
|
1432
|
+
}
|
|
1437
1433
|
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
public string? userId;
|
|
1434
|
+
public class AdminUnlinkEditorDeviceIdRequestData : ServerUnlinkEditorDeviceIdRequestData
|
|
1435
|
+
{
|
|
1436
|
+
}
|
|
1442
1437
|
|
|
1443
|
-
|
|
1444
|
-
|
|
1438
|
+
public class UnlinkFacebookRequestData
|
|
1439
|
+
{
|
|
1440
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1441
|
+
public string? userId;
|
|
1445
1442
|
|
|
1446
|
-
|
|
1443
|
+
[StringDataMember(code = GNParameterCode.FacebookId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1444
|
+
public string facebookId;
|
|
1447
1445
|
|
|
1448
|
-
|
|
1449
|
-
{
|
|
1450
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1451
|
-
public new string userId;
|
|
1446
|
+
}
|
|
1452
1447
|
|
|
1453
|
-
|
|
1448
|
+
public class ServerUnlinkFacebookRequestData : UnlinkFacebookRequestData
|
|
1449
|
+
{
|
|
1450
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1451
|
+
public new string userId;
|
|
1454
1452
|
|
|
1455
|
-
|
|
1456
|
-
{
|
|
1457
|
-
}
|
|
1453
|
+
}
|
|
1458
1454
|
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
public string? userId;
|
|
1455
|
+
public class AdminUnlinkFacebookRequestData : ServerUnlinkFacebookRequestData
|
|
1456
|
+
{
|
|
1457
|
+
}
|
|
1463
1458
|
|
|
1464
|
-
|
|
1465
|
-
|
|
1459
|
+
public class UnlinkGenericServiceRequestData
|
|
1460
|
+
{
|
|
1461
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1462
|
+
public string? userId;
|
|
1466
1463
|
|
|
1467
|
-
|
|
1464
|
+
[StringDataMember(code = GNParameterCode.ServiceName, minLength = 6, maxLength = 32, mustNonNull = true)]
|
|
1465
|
+
public string serviceName;
|
|
1468
1466
|
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1472
|
-
public new string userId;
|
|
1467
|
+
[StringDataMember(code = GNParameterCode.ServiceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1468
|
+
public string serviceId;
|
|
1473
1469
|
|
|
1474
|
-
|
|
1470
|
+
}
|
|
1475
1471
|
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1472
|
+
public class ServerUnlinkGenericServiceRequestData : UnlinkGenericServiceRequestData
|
|
1473
|
+
{
|
|
1474
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1475
|
+
public new string userId;
|
|
1479
1476
|
|
|
1480
|
-
|
|
1481
|
-
{
|
|
1482
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1483
|
-
public string? userId;
|
|
1477
|
+
}
|
|
1484
1478
|
|
|
1485
|
-
|
|
1486
|
-
|
|
1479
|
+
public class AdminUnlinkGenericServiceRequestData : ServerUnlinkGenericServiceRequestData
|
|
1480
|
+
{
|
|
1481
|
+
}
|
|
1487
1482
|
|
|
1488
|
-
|
|
1483
|
+
public class UnlinkGoogleRequestData
|
|
1484
|
+
{
|
|
1485
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1486
|
+
public string? userId;
|
|
1489
1487
|
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1493
|
-
public new string userId;
|
|
1488
|
+
[StringDataMember(code = GNParameterCode.GoogleId, minLength = 6, maxLength = 32, mustNonNull = true)]
|
|
1489
|
+
public string googleId;
|
|
1494
1490
|
|
|
1495
|
-
|
|
1491
|
+
}
|
|
1496
1492
|
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1493
|
+
public class ServerUnlinkGoogleRequestData : UnlinkGoogleRequestData
|
|
1494
|
+
{
|
|
1495
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1496
|
+
public new string userId;
|
|
1500
1497
|
|
|
1501
|
-
|
|
1498
|
+
}
|
|
1502
1499
|
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
{
|
|
1507
|
-
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1508
|
-
public string key;
|
|
1500
|
+
public class AdminUnlinkGoogleRequestData : ServerUnlinkGoogleRequestData
|
|
1501
|
+
{
|
|
1502
|
+
}
|
|
1509
1503
|
|
|
1510
|
-
|
|
1511
|
-
|
|
1504
|
+
public class UnlinkGooglePlayGameServiceRequestData
|
|
1505
|
+
{
|
|
1506
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1507
|
+
public string? userId;
|
|
1512
1508
|
|
|
1513
|
-
|
|
1509
|
+
[StringDataMember(code = GNParameterCode.PlayerId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1510
|
+
public string playerId;
|
|
1514
1511
|
|
|
1515
|
-
|
|
1516
|
-
{
|
|
1517
|
-
[BooleanDataMember(code = GNParameterCode.External, isOptional = true, defaultValue = false)]
|
|
1518
|
-
public bool? external;
|
|
1512
|
+
}
|
|
1519
1513
|
|
|
1520
|
-
|
|
1521
|
-
|
|
1514
|
+
public class ServerUnlinkGooglePlayGameServiceRequestData : UnlinkGooglePlayGameServiceRequestData
|
|
1515
|
+
{
|
|
1516
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1517
|
+
public new string userId;
|
|
1522
1518
|
|
|
1523
|
-
|
|
1524
|
-
public bool? customDatas;
|
|
1519
|
+
}
|
|
1525
1520
|
|
|
1526
|
-
|
|
1527
|
-
|
|
1521
|
+
public class AdminUnlinkGooglePlayGameServiceRequestData : ServerUnlinkGooglePlayGameServiceRequestData
|
|
1522
|
+
{
|
|
1523
|
+
}
|
|
1528
1524
|
|
|
1529
|
-
|
|
1530
|
-
|
|
1525
|
+
public class UnlinkGameCenterRequestData
|
|
1526
|
+
{
|
|
1527
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1528
|
+
public string? userId;
|
|
1531
1529
|
|
|
1532
|
-
|
|
1533
|
-
|
|
1530
|
+
[StringDataMember(code = GNParameterCode.PlayerId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1531
|
+
public string playerId;
|
|
1534
1532
|
|
|
1535
|
-
|
|
1536
|
-
public bool? tags;
|
|
1533
|
+
}
|
|
1537
1534
|
|
|
1538
|
-
|
|
1539
|
-
|
|
1535
|
+
public class ServerUnlinkGameCenterRequestData : UnlinkGameCenterRequestData
|
|
1536
|
+
{
|
|
1537
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1538
|
+
public new string userId;
|
|
1540
1539
|
|
|
1541
|
-
|
|
1542
|
-
public bool? playerCurrencies;
|
|
1540
|
+
}
|
|
1543
1541
|
|
|
1544
|
-
|
|
1545
|
-
|
|
1542
|
+
public class AdminUnlinkGameCenterRequestData : ServerUnlinkGameCenterRequestData
|
|
1543
|
+
{
|
|
1544
|
+
}
|
|
1546
1545
|
|
|
1547
|
-
|
|
1548
|
-
|
|
1546
|
+
public class UnlinkiOSDeviceIdRequestData
|
|
1547
|
+
{
|
|
1548
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1549
|
+
public string? userId;
|
|
1549
1550
|
|
|
1550
|
-
|
|
1551
|
-
|
|
1551
|
+
[StringDataMember(code = GNParameterCode.iOSDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1552
|
+
public string iOSDeviceId;
|
|
1552
1553
|
|
|
1553
|
-
|
|
1554
|
-
public bool? countryCode;
|
|
1554
|
+
}
|
|
1555
1555
|
|
|
1556
|
-
|
|
1557
|
-
|
|
1556
|
+
public class ServerUnlinkiOSDeviceIdRequestData : UnlinkiOSDeviceIdRequestData
|
|
1557
|
+
{
|
|
1558
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1559
|
+
public new string userId;
|
|
1558
1560
|
|
|
1559
|
-
|
|
1560
|
-
public bool? tsLastLogin;
|
|
1561
|
+
}
|
|
1561
1562
|
|
|
1562
|
-
|
|
1563
|
-
|
|
1563
|
+
public class AdminUnlinkiOSDeviceIdRequestData : ServerUnlinkiOSDeviceIdRequestData
|
|
1564
|
+
{
|
|
1565
|
+
}
|
|
1564
1566
|
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
+
public class UnlinkLinuxDeviceIdRequestData
|
|
1568
|
+
{
|
|
1569
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1570
|
+
public string? userId;
|
|
1567
1571
|
|
|
1568
|
-
|
|
1569
|
-
|
|
1572
|
+
[StringDataMember(code = GNParameterCode.LinuxDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1573
|
+
public string linuxDeviceId;
|
|
1570
1574
|
|
|
1571
|
-
|
|
1572
|
-
public List<string>? customDataKeys;
|
|
1575
|
+
}
|
|
1573
1576
|
|
|
1574
|
-
|
|
1575
|
-
|
|
1577
|
+
public class ServerUnlinkLinuxDeviceIdRequestData : UnlinkLinuxDeviceIdRequestData
|
|
1578
|
+
{
|
|
1579
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1580
|
+
public new string userId;
|
|
1576
1581
|
|
|
1577
|
-
|
|
1582
|
+
}
|
|
1578
1583
|
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
public string key;
|
|
1584
|
+
public class AdminUnlinkLinuxDeviceIdRequestData : ServerUnlinkLinuxDeviceIdRequestData
|
|
1585
|
+
{
|
|
1586
|
+
}
|
|
1583
1587
|
|
|
1584
|
-
|
|
1585
|
-
|
|
1588
|
+
public class UnlinkMacOSDeviceIdRequestData
|
|
1589
|
+
{
|
|
1590
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1591
|
+
public string? userId;
|
|
1586
1592
|
|
|
1587
|
-
|
|
1593
|
+
[StringDataMember(code = GNParameterCode.MacOSDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1594
|
+
public string macOSDeviceId;
|
|
1588
1595
|
|
|
1589
|
-
|
|
1590
|
-
{
|
|
1591
|
-
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1592
|
-
public string key;
|
|
1596
|
+
}
|
|
1593
1597
|
|
|
1594
|
-
|
|
1595
|
-
|
|
1598
|
+
public class ServerUnlinkMacOSDeviceIdRequestData : UnlinkMacOSDeviceIdRequestData
|
|
1599
|
+
{
|
|
1600
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1601
|
+
public new string userId;
|
|
1596
1602
|
|
|
1597
|
-
|
|
1603
|
+
}
|
|
1598
1604
|
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
public string key;
|
|
1605
|
+
public class AdminUnlinkMacOSDeviceIdRequestData : ServerUnlinkMacOSDeviceIdRequestData
|
|
1606
|
+
{
|
|
1607
|
+
}
|
|
1603
1608
|
|
|
1604
|
-
|
|
1605
|
-
|
|
1609
|
+
public class UnlinkWindowsDeviceIdRequestData
|
|
1610
|
+
{
|
|
1611
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1612
|
+
public string? userId;
|
|
1606
1613
|
|
|
1607
|
-
|
|
1614
|
+
[StringDataMember(code = GNParameterCode.WindowsDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1615
|
+
public string windowsDeviceId;
|
|
1608
1616
|
|
|
1609
|
-
|
|
1617
|
+
}
|
|
1610
1618
|
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
public class Device
|
|
1616
|
-
{
|
|
1617
|
-
[StringDataMember(code = GNParameterCode.CustomDeviceId, isOptional = true)]
|
|
1618
|
-
public string? customDeviceId;
|
|
1619
|
+
public class ServerUnlinkWindowsDeviceIdRequestData : UnlinkWindowsDeviceIdRequestData
|
|
1620
|
+
{
|
|
1621
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1622
|
+
public new string userId;
|
|
1619
1623
|
|
|
1620
|
-
|
|
1621
|
-
public string? androidDeviceId;
|
|
1624
|
+
}
|
|
1622
1625
|
|
|
1623
|
-
|
|
1624
|
-
|
|
1626
|
+
public class AdminUnlinkWindowsDeviceIdRequestData : ServerUnlinkWindowsDeviceIdRequestData
|
|
1627
|
+
{
|
|
1628
|
+
}
|
|
1625
1629
|
|
|
1626
|
-
|
|
1627
|
-
|
|
1630
|
+
public class UnlinkWindowsPhoneDeviceIdRequestData
|
|
1631
|
+
{
|
|
1632
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1633
|
+
public string? userId;
|
|
1628
1634
|
|
|
1629
|
-
|
|
1630
|
-
|
|
1635
|
+
[StringDataMember(code = GNParameterCode.WindowsPhoneDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
|
|
1636
|
+
public string windowsPhoneDeviceId;
|
|
1631
1637
|
|
|
1632
|
-
|
|
1633
|
-
public string? linuxDeviceId;
|
|
1638
|
+
}
|
|
1634
1639
|
|
|
1635
|
-
|
|
1636
|
-
|
|
1640
|
+
public class ServerUnlinkWindowsPhoneDeviceIdRequestData : UnlinkWindowsPhoneDeviceIdRequestData
|
|
1641
|
+
{
|
|
1642
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1643
|
+
public new string userId;
|
|
1644
|
+
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
public class AdminUnlinkWindowsPhoneDeviceIdRequestData : ServerUnlinkWindowsPhoneDeviceIdRequestData
|
|
1648
|
+
{
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
public class GetCurrencyLeaderboardRequestData
|
|
1652
|
+
{
|
|
1653
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1654
|
+
public string key;
|
|
1655
|
+
|
|
1656
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
1657
|
+
public InfoRequestParam infoRequestParam;
|
|
1658
|
+
|
|
1659
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
1660
|
+
public int? skip;
|
|
1661
|
+
|
|
1662
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
1663
|
+
public int? limit;
|
|
1664
|
+
|
|
1665
|
+
[BooleanDataMember(code = GNParameterCode.LoadFromCache, defaultValue = true, isOptional = true)]
|
|
1666
|
+
public bool? loadFromCache;
|
|
1667
|
+
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
public class ServerGetCurrencyLeaderboardRequestData : GetCurrencyLeaderboardRequestData
|
|
1671
|
+
{
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
public class AdminGetCurrencyLeaderboardRequestData : ServerGetCurrencyLeaderboardRequestData
|
|
1675
|
+
{
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1678
|
+
public class GetLastLoginLeaderboardRequestData
|
|
1679
|
+
{
|
|
1680
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
1681
|
+
public InfoRequestParam infoRequestParam;
|
|
1682
|
+
|
|
1683
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
1684
|
+
public int? skip;
|
|
1685
|
+
|
|
1686
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
1687
|
+
public int? limit;
|
|
1688
|
+
|
|
1689
|
+
[BooleanDataMember(code = GNParameterCode.LoadFromCache, defaultValue = true, isOptional = true)]
|
|
1690
|
+
public bool? loadFromCache;
|
|
1691
|
+
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
public class ServerGetLastLoginLeaderboardRequestData : GetLastLoginLeaderboardRequestData
|
|
1695
|
+
{
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
public class AdminGetLastLoginLeaderboardRequestData : ServerGetLastLoginLeaderboardRequestData
|
|
1699
|
+
{
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
public class GetCreateLeaderboardRequestData
|
|
1703
|
+
{
|
|
1704
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
|
|
1705
|
+
public InfoRequestParam infoRequestParam;
|
|
1706
|
+
|
|
1707
|
+
[NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
|
|
1708
|
+
public int? skip;
|
|
1709
|
+
|
|
1710
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
1711
|
+
public int? limit;
|
|
1712
|
+
|
|
1713
|
+
[BooleanDataMember(code = GNParameterCode.LoadFromCache, defaultValue = true, isOptional = true)]
|
|
1714
|
+
public bool? loadFromCache;
|
|
1715
|
+
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
public class ServerGetCreateLeaderboardRequestData : GetCreateLeaderboardRequestData
|
|
1719
|
+
{
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
public class AdminGetCreateLeaderboardRequestData : ServerGetCreateLeaderboardRequestData
|
|
1723
|
+
{
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
public class GetStatisticsLogRequestData
|
|
1727
|
+
{
|
|
1728
|
+
[GNArrayDataMember(code = GNParameterCode.Keys, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(string), isOptional = true)]
|
|
1729
|
+
public List<string>? keys;
|
|
1730
|
+
|
|
1731
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true, isOptional = true)]
|
|
1732
|
+
public string? userId;
|
|
1733
|
+
|
|
1734
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
1735
|
+
public int? limit;
|
|
1736
|
+
|
|
1737
|
+
[StringDataMember(code = GNParameterCode.Token, minLength = 24, maxLength = 24, mustNonNull = true, isOptional = true)]
|
|
1738
|
+
public string? token;
|
|
1739
|
+
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
public class ServerGetStatisticsLogRequestData : GetStatisticsLogRequestData
|
|
1743
|
+
{
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
public class AdminGetStatisticsLogRequestData : ServerGetStatisticsLogRequestData
|
|
1747
|
+
{
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
public class GetCurrencyLogRequestData
|
|
1751
|
+
{
|
|
1752
|
+
[GNArrayDataMember(code = GNParameterCode.Keys, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(string), isOptional = true)]
|
|
1753
|
+
public List<string>? keys;
|
|
1754
|
+
|
|
1755
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true, isOptional = true)]
|
|
1756
|
+
public string? userId;
|
|
1757
|
+
|
|
1758
|
+
[NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
|
|
1759
|
+
public int? limit;
|
|
1760
|
+
|
|
1761
|
+
[StringDataMember(code = GNParameterCode.Token, minLength = 24, maxLength = 24, mustNonNull = true, isOptional = true)]
|
|
1762
|
+
public string? token;
|
|
1763
|
+
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1766
|
+
public class ServerGetCurrencyLogRequestData : GetCurrencyLogRequestData
|
|
1767
|
+
{
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
public class AdminGetCurrencyLogRequestData : ServerGetCurrencyLogRequestData
|
|
1771
|
+
{
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
public class SendSocketOperationEventRequestData
|
|
1775
|
+
{
|
|
1776
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1777
|
+
public string? userId;
|
|
1778
|
+
|
|
1779
|
+
[NumberDataMember(code = GNParameterCode.EventCode, mustInt = true, minValue = 1000)]
|
|
1780
|
+
public int eventCode;
|
|
1781
|
+
|
|
1782
|
+
[GNHashtableDataMember(code = GNParameterCode.EventParameters, minLength = 0, maxLength = 128, mustNonNull = true, isOptional = true)]
|
|
1783
|
+
public GNHashtable? eventParameters;
|
|
1784
|
+
|
|
1785
|
+
[BooleanDataMember(code = GNParameterCode.EventEncrypted, isOptional = true, defaultValue = false)]
|
|
1786
|
+
public bool? eventEncrypted;
|
|
1787
|
+
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
public class ServerSendSocketOperationEventRequestData : SendSocketOperationEventRequestData
|
|
1791
|
+
{
|
|
1792
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1793
|
+
public new string userId;
|
|
1794
|
+
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
public class AdminSendSocketOperationEventRequestData : ServerSendSocketOperationEventRequestData
|
|
1798
|
+
{
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1801
|
+
public class SendEmailRequestData
|
|
1802
|
+
{
|
|
1803
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1804
|
+
public string? userId;
|
|
1805
|
+
|
|
1806
|
+
[StringDataMember(code = GNParameterCode.Subject, minLength = 2, maxLength = 256, mustNonNull = true)]
|
|
1807
|
+
public string subject;
|
|
1808
|
+
|
|
1809
|
+
[StringDataMember(code = GNParameterCode.ContentHtml, minLength = 2, maxLength = 8192, mustNonNull = true)]
|
|
1810
|
+
public string contentHtml;
|
|
1811
|
+
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
public class ServerSendEmailRequestData : SendEmailRequestData
|
|
1815
|
+
{
|
|
1816
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1817
|
+
public new string userId;
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
public class AdminSendEmailRequestData : ServerSendEmailRequestData
|
|
1821
|
+
{
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
public class AddPushNotificationRequestData
|
|
1825
|
+
{
|
|
1826
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1827
|
+
public string? userId;
|
|
1828
|
+
|
|
1829
|
+
[StringDataMember(code = GNParameterCode.Token, minLength = 10, maxLength = 256, mustNonNull = true)]
|
|
1830
|
+
public string token;
|
|
1831
|
+
|
|
1832
|
+
[NumberDataMember(code = GNParameterCode.PlatformType, minValue = 1, mustInt = true)]
|
|
1833
|
+
public int platformType;
|
|
1834
|
+
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
public class ServerAddPushNotificationRequestData : AddPushNotificationRequestData
|
|
1838
|
+
{
|
|
1839
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1840
|
+
public new string userId;
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
public class AdminAddPushNotificationRequestData : ServerAddPushNotificationRequestData
|
|
1844
|
+
{
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
public class GetPushNotificationRequestData
|
|
1848
|
+
{
|
|
1849
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1850
|
+
public string? userId;
|
|
1851
|
+
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1854
|
+
public class ServerGetPushNotificationRequestData : GetPushNotificationRequestData
|
|
1855
|
+
{
|
|
1856
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1857
|
+
public new string userId;
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
public class AdminGetPushNotificationRequestData : ServerGetPushNotificationRequestData
|
|
1861
|
+
{
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
public class RemovePushNotificationRequestData
|
|
1865
|
+
{
|
|
1866
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1867
|
+
public string? userId;
|
|
1868
|
+
|
|
1869
|
+
[StringDataMember(code = GNParameterCode.PushId, minLength = 8, maxLength = 8, mustNonNull = true)]
|
|
1870
|
+
public string pushId;
|
|
1871
|
+
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
public class ServerRemovePushNotificationRequestData : RemovePushNotificationRequestData
|
|
1875
|
+
{
|
|
1876
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1877
|
+
public new string userId;
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
public class AdminRemovePushNotificationRequestData : ServerRemovePushNotificationRequestData
|
|
1881
|
+
{
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
public class SendPushNotificationRequestData
|
|
1885
|
+
{
|
|
1886
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
|
|
1887
|
+
public string? userId;
|
|
1888
|
+
|
|
1889
|
+
[StringDataMember(code = GNParameterCode.Title)]
|
|
1890
|
+
public string title;
|
|
1891
|
+
|
|
1892
|
+
[StringDataMember(code = GNParameterCode.Body)]
|
|
1893
|
+
public string body;
|
|
1894
|
+
|
|
1895
|
+
[NumberDataMember(code = GNParameterCode.Badge, mustInt = true, isOptional = true)]
|
|
1896
|
+
public int? badge;
|
|
1897
|
+
|
|
1898
|
+
[StringDataMember(code = GNParameterCode.Sound, isOptional = true)]
|
|
1899
|
+
public string? sound;
|
|
1900
|
+
|
|
1901
|
+
[StringDataMember(code = GNParameterCode.Icon, isOptional = true)]
|
|
1902
|
+
public string? icon;
|
|
1903
|
+
|
|
1904
|
+
[GNHashtableDataMember(code = GNParameterCode.Data, isOptional = true)]
|
|
1905
|
+
public GNHashtable? data;
|
|
1906
|
+
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
public class ServerSendPushNotificationRequestData : SendPushNotificationRequestData
|
|
1910
|
+
{
|
|
1911
|
+
[StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
|
|
1912
|
+
public new string userId;
|
|
1913
|
+
}
|
|
1637
1914
|
|
|
1638
|
-
|
|
1639
|
-
|
|
1915
|
+
public class AdminSendPushNotificationRequestData : ServerSendPushNotificationRequestData
|
|
1916
|
+
{
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
public partial class MasterPlayerModels
|
|
1922
|
+
{
|
|
1923
|
+
public class CustomDataParam
|
|
1924
|
+
{
|
|
1925
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
1926
|
+
public string key;
|
|
1927
|
+
|
|
1928
|
+
[DataMember(code = GNParameterCode.Value)]
|
|
1929
|
+
public object value;
|
|
1930
|
+
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
public class InfoRequestParam
|
|
1934
|
+
{
|
|
1935
|
+
[BooleanDataMember(code = GNParameterCode.External, isOptional = true, defaultValue = false)]
|
|
1936
|
+
public bool? external;
|
|
1937
|
+
|
|
1938
|
+
[BooleanDataMember(code = GNParameterCode.Segments, isOptional = true, defaultValue = false)]
|
|
1939
|
+
public bool? segments;
|
|
1940
|
+
|
|
1941
|
+
[BooleanDataMember(code = GNParameterCode.CustomDatas, isOptional = true, defaultValue = false)]
|
|
1942
|
+
public bool? customDatas;
|
|
1943
|
+
|
|
1944
|
+
[BooleanDataMember(code = GNParameterCode.DisplayName, isOptional = true, defaultValue = false)]
|
|
1945
|
+
public bool? displayName;
|
|
1946
|
+
|
|
1947
|
+
[BooleanDataMember(code = GNParameterCode.Avatar, isOptional = true, defaultValue = false)]
|
|
1948
|
+
public bool? avatar;
|
|
1949
|
+
|
|
1950
|
+
[BooleanDataMember(code = GNParameterCode.TsCreate, isOptional = true, defaultValue = false)]
|
|
1951
|
+
public bool? tsCreate;
|
|
1952
|
+
|
|
1953
|
+
[BooleanDataMember(code = GNParameterCode.Tags, isOptional = true, defaultValue = false)]
|
|
1954
|
+
public bool? tags;
|
|
1955
|
+
|
|
1956
|
+
[BooleanDataMember(code = GNParameterCode.PlayerBan, isOptional = true, defaultValue = false)]
|
|
1957
|
+
public bool? playerBan;
|
|
1958
|
+
|
|
1959
|
+
[BooleanDataMember(code = GNParameterCode.PlayerCurrencies, isOptional = true, defaultValue = false)]
|
|
1960
|
+
public bool? playerCurrencies;
|
|
1961
|
+
|
|
1962
|
+
[BooleanDataMember(code = GNParameterCode.PlayerStatistics, isOptional = true, defaultValue = false)]
|
|
1963
|
+
public bool? playerStatistics;
|
|
1964
|
+
|
|
1965
|
+
[BooleanDataMember(code = GNParameterCode.PlayerDatas, isOptional = true, defaultValue = false)]
|
|
1966
|
+
public bool? playerDatas;
|
|
1967
|
+
|
|
1968
|
+
[BooleanDataMember(code = GNParameterCode.IpAddressCreate, isOptional = true, defaultValue = false)]
|
|
1969
|
+
public bool? ipAddressCreate;
|
|
1970
|
+
|
|
1971
|
+
[BooleanDataMember(code = GNParameterCode.CountryCode, isOptional = true, defaultValue = false)]
|
|
1972
|
+
public bool? countryCode;
|
|
1973
|
+
|
|
1974
|
+
[BooleanDataMember(code = GNParameterCode.Email, isOptional = true, defaultValue = false)]
|
|
1975
|
+
public bool? email;
|
|
1976
|
+
|
|
1977
|
+
[BooleanDataMember(code = GNParameterCode.TsLastLogin, isOptional = true, defaultValue = false)]
|
|
1978
|
+
public bool? tsLastLogin;
|
|
1979
|
+
|
|
1980
|
+
[BooleanDataMember(code = GNParameterCode.PushNotifications, isOptional = true, defaultValue = false)]
|
|
1981
|
+
public bool? pushNotifications;
|
|
1982
|
+
|
|
1983
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerDataKeys, isOptional = true, elementCls = typeof(string))]
|
|
1984
|
+
public List<string>? playerDataKeys;
|
|
1985
|
+
|
|
1986
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerCurrencyKeys, isOptional = true, elementCls = typeof(string))]
|
|
1987
|
+
public List<string>? playerCurrencyKeys;
|
|
1988
|
+
|
|
1989
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerStatisticsKeys, isOptional = true, elementCls = typeof(string))]
|
|
1990
|
+
public List<string>? playerStatisticsKeys;
|
|
1991
|
+
|
|
1992
|
+
[GNArrayDataMember(code = GNParameterCode.CustomDataKeys, isOptional = true, elementCls = typeof(string))]
|
|
1993
|
+
public List<string>? customDataKeys;
|
|
1994
|
+
|
|
1995
|
+
[GNArrayDataMember(code = GNParameterCode.TagKeys, isOptional = true, elementCls = typeof(string))]
|
|
1996
|
+
public List<string>? tagKeys;
|
|
1997
|
+
|
|
1998
|
+
}
|
|
1999
|
+
|
|
2000
|
+
public class PlayerCurrencyParam
|
|
2001
|
+
{
|
|
2002
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
2003
|
+
public string key;
|
|
2004
|
+
|
|
2005
|
+
[NumberDataMember(code = GNParameterCode.Amount)]
|
|
2006
|
+
public double amount;
|
|
2007
|
+
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
public class PlayerDataParam
|
|
2011
|
+
{
|
|
2012
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
2013
|
+
public string key;
|
|
2014
|
+
|
|
2015
|
+
[DataMember(code = GNParameterCode.Value)]
|
|
2016
|
+
public object value;
|
|
2017
|
+
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
public class PlayerStatisticsParam
|
|
2021
|
+
{
|
|
2022
|
+
[StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
|
|
2023
|
+
public string key;
|
|
2024
|
+
|
|
2025
|
+
[NumberDataMember(code = GNParameterCode.Value)]
|
|
2026
|
+
public double value;
|
|
2027
|
+
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
public partial class MasterPlayerModels
|
|
2033
|
+
{
|
|
2034
|
+
public class ExternalItem
|
|
2035
|
+
{
|
|
2036
|
+
public class Device
|
|
2037
|
+
{
|
|
2038
|
+
[StringDataMember(code = GNParameterCode.CustomDeviceId, isOptional = true)]
|
|
2039
|
+
public string? customDeviceId;
|
|
2040
|
+
|
|
2041
|
+
[StringDataMember(code = GNParameterCode.AndroidDeviceId, isOptional = true)]
|
|
2042
|
+
public string? androidDeviceId;
|
|
2043
|
+
|
|
2044
|
+
[StringDataMember(code = GNParameterCode.iOSDeviceId, isOptional = true)]
|
|
2045
|
+
public string? iOSDeviceId;
|
|
2046
|
+
|
|
2047
|
+
[StringDataMember(code = GNParameterCode.WindowsPhoneDeviceId, isOptional = true)]
|
|
2048
|
+
public string? windowsPhoneDeviceId;
|
|
2049
|
+
|
|
2050
|
+
[StringDataMember(code = GNParameterCode.WindowsDeviceId, isOptional = true)]
|
|
2051
|
+
public string? windowsDeviceId;
|
|
2052
|
+
|
|
2053
|
+
[StringDataMember(code = GNParameterCode.LinuxDeviceId, isOptional = true)]
|
|
2054
|
+
public string? linuxDeviceId;
|
|
2055
|
+
|
|
2056
|
+
[StringDataMember(code = GNParameterCode.MacOSDeviceId, isOptional = true)]
|
|
2057
|
+
public string? macOSDeviceId;
|
|
2058
|
+
|
|
2059
|
+
[StringDataMember(code = GNParameterCode.EditorDeviceId, isOptional = true)]
|
|
2060
|
+
public string? editorDeviceId;
|
|
2061
|
+
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
public class Account
|
|
2065
|
+
{
|
|
2066
|
+
[StringDataMember(code = GNParameterCode.Username, isOptional = true)]
|
|
2067
|
+
public string? username;
|
|
2068
|
+
|
|
2069
|
+
}
|
|
2070
|
+
|
|
2071
|
+
public class Custom
|
|
2072
|
+
{
|
|
2073
|
+
[StringDataMember(code = GNParameterCode.CustomId, isOptional = true)]
|
|
2074
|
+
public string? customId;
|
|
1640
2075
|
|
|
1641
|
-
|
|
2076
|
+
}
|
|
1642
2077
|
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
2078
|
+
public class Apple
|
|
2079
|
+
{
|
|
2080
|
+
[StringDataMember(code = GNParameterCode.AppleId)]
|
|
2081
|
+
public string appleId;
|
|
1647
2082
|
|
|
1648
|
-
|
|
2083
|
+
[StringDataMember(code = GNParameterCode.Email)]
|
|
2084
|
+
public string email;
|
|
1649
2085
|
|
|
1650
|
-
|
|
1651
|
-
{
|
|
1652
|
-
[StringDataMember(code = GNParameterCode.CustomId, isOptional = true)]
|
|
1653
|
-
public string? customId;
|
|
2086
|
+
}
|
|
1654
2087
|
|
|
1655
|
-
|
|
2088
|
+
public class Google
|
|
2089
|
+
{
|
|
2090
|
+
[StringDataMember(code = GNParameterCode.GoogleId)]
|
|
2091
|
+
public string googleId;
|
|
1656
2092
|
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
[StringDataMember(code = GNParameterCode.AppleId)]
|
|
1660
|
-
public string appleId;
|
|
2093
|
+
[StringDataMember(code = GNParameterCode.DisplayName)]
|
|
2094
|
+
public string displayName;
|
|
1661
2095
|
|
|
1662
|
-
|
|
1663
|
-
|
|
2096
|
+
[StringDataMember(code = GNParameterCode.Email)]
|
|
2097
|
+
public string email;
|
|
1664
2098
|
|
|
1665
|
-
|
|
2099
|
+
}
|
|
1666
2100
|
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
2101
|
+
public class GooglePlayGameService
|
|
2102
|
+
{
|
|
2103
|
+
[StringDataMember(code = GNParameterCode.PlayerId)]
|
|
2104
|
+
public string playerId;
|
|
1671
2105
|
|
|
1672
|
-
|
|
1673
|
-
|
|
2106
|
+
[StringDataMember(code = GNParameterCode.DisplayName)]
|
|
2107
|
+
public string displayName;
|
|
1674
2108
|
|
|
1675
|
-
|
|
1676
|
-
|
|
2109
|
+
[StringDataMember(code = GNParameterCode.Email)]
|
|
2110
|
+
public string email;
|
|
1677
2111
|
|
|
1678
|
-
|
|
2112
|
+
}
|
|
1679
2113
|
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
2114
|
+
public class GameCenter
|
|
2115
|
+
{
|
|
2116
|
+
[StringDataMember(code = GNParameterCode.PlayerId)]
|
|
2117
|
+
public string playerId;
|
|
1684
2118
|
|
|
1685
|
-
|
|
1686
|
-
|
|
2119
|
+
[StringDataMember(code = GNParameterCode.DisplayName)]
|
|
2120
|
+
public string displayName;
|
|
1687
2121
|
|
|
1688
|
-
|
|
1689
|
-
|
|
2122
|
+
[StringDataMember(code = GNParameterCode.Email)]
|
|
2123
|
+
public string email;
|
|
1690
2124
|
|
|
1691
|
-
|
|
2125
|
+
}
|
|
1692
2126
|
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
2127
|
+
public class Facebook
|
|
2128
|
+
{
|
|
2129
|
+
[StringDataMember(code = GNParameterCode.FacebookId)]
|
|
2130
|
+
public string facebookId;
|
|
1697
2131
|
|
|
1698
|
-
|
|
1699
|
-
|
|
2132
|
+
[StringDataMember(code = GNParameterCode.DisplayName)]
|
|
2133
|
+
public string displayName;
|
|
1700
2134
|
|
|
1701
|
-
|
|
2135
|
+
[StringDataMember(code = GNParameterCode.Email)]
|
|
2136
|
+
public string email;
|
|
1702
2137
|
|
|
1703
|
-
|
|
1704
|
-
public Device? device;
|
|
2138
|
+
}
|
|
1705
2139
|
|
|
1706
|
-
|
|
1707
|
-
|
|
2140
|
+
public class GenericService
|
|
2141
|
+
{
|
|
2142
|
+
[StringDataMember(code = GNParameterCode.ServiceName)]
|
|
2143
|
+
public string serviceName;
|
|
1708
2144
|
|
|
1709
|
-
|
|
1710
|
-
|
|
2145
|
+
[StringDataMember(code = GNParameterCode.ServiceId)]
|
|
2146
|
+
public string serviceId;
|
|
1711
2147
|
|
|
1712
|
-
|
|
1713
|
-
public Apple? apple;
|
|
2148
|
+
}
|
|
1714
2149
|
|
|
1715
|
-
|
|
1716
|
-
|
|
2150
|
+
[GNHashtableDataMember(code = GNParameterCode.Device, isOptional = true)]
|
|
2151
|
+
public Device? device;
|
|
1717
2152
|
|
|
1718
|
-
|
|
1719
|
-
|
|
2153
|
+
[GNHashtableDataMember(code = GNParameterCode.Account, isOptional = true)]
|
|
2154
|
+
public Account? account;
|
|
1720
2155
|
|
|
1721
|
-
|
|
1722
|
-
|
|
2156
|
+
[GNHashtableDataMember(code = GNParameterCode.Custom, isOptional = true)]
|
|
2157
|
+
public Custom? custom;
|
|
1723
2158
|
|
|
1724
|
-
|
|
2159
|
+
[GNHashtableDataMember(code = GNParameterCode.Apple, isOptional = true)]
|
|
2160
|
+
public Apple? apple;
|
|
1725
2161
|
|
|
1726
|
-
|
|
2162
|
+
[GNHashtableDataMember(code = GNParameterCode.Google, isOptional = true)]
|
|
2163
|
+
public Google? google;
|
|
2164
|
+
|
|
2165
|
+
[GNHashtableDataMember(code = GNParameterCode.Facebook, isOptional = true)]
|
|
2166
|
+
public Facebook? facebook;
|
|
2167
|
+
|
|
2168
|
+
[GNArrayDataMember(code = GNParameterCode.GenericService, isOptional = true, elementCls = typeof(GenericService))]
|
|
2169
|
+
public List<GenericService> genericServices;
|
|
2170
|
+
|
|
2171
|
+
[GNHashtableDataMember(code = GNParameterCode.GooglePlayGameService, isOptional = true)]
|
|
2172
|
+
public GooglePlayGameService? googlePlayGameService;
|
|
2173
|
+
|
|
2174
|
+
[GNHashtableDataMember(code = GNParameterCode.GameCenter, isOptional = true)]
|
|
2175
|
+
public GameCenter? gameCenter;
|
|
2176
|
+
|
|
2177
|
+
}
|
|
2178
|
+
|
|
2179
|
+
public class PushNotificationItem
|
|
2180
|
+
{
|
|
2181
|
+
[StringDataMember(code = GNParameterCode.Token)]
|
|
2182
|
+
public string token;
|
|
2183
|
+
|
|
2184
|
+
[StringDataMember(code = GNParameterCode.PushId)]
|
|
2185
|
+
public string pushId;
|
|
2186
|
+
|
|
2187
|
+
[NumberDataMember(code = GNParameterCode.PlatformType)]
|
|
2188
|
+
public int platformType;
|
|
2189
|
+
|
|
2190
|
+
}
|
|
2191
|
+
|
|
2192
|
+
public class InfoResponseParameters
|
|
1727
2193
|
{
|
|
1728
2194
|
[GNHashtableDataMember(code = GNParameterCode.External, isOptional = true)]
|
|
1729
|
-
|
|
2195
|
+
public ExternalItem? external;
|
|
2196
|
+
|
|
2197
|
+
[GNArrayDataMember(code = GNParameterCode.Segments, isOptional = true, elementCls = typeof(string))]
|
|
2198
|
+
public List<string>? segments;
|
|
2199
|
+
|
|
2200
|
+
[GNArrayDataMember(code = GNParameterCode.CustomDatas, isOptional = true, elementCls = typeof(GenericModels.DataItem))]
|
|
2201
|
+
public List<GenericModels.DataItem>? customDatas;
|
|
2202
|
+
|
|
2203
|
+
[StringDataMember(code = GNParameterCode.DisplayName, isOptional = true)]
|
|
2204
|
+
public string? displayName;
|
|
1730
2205
|
|
|
1731
|
-
|
|
1732
|
-
|
|
2206
|
+
[GNHashtableDataMember(code = GNParameterCode.Avatar, isOptional = true)]
|
|
2207
|
+
public GenericModels.AvatarItem? avatar;
|
|
1733
2208
|
|
|
1734
|
-
|
|
1735
|
-
|
|
2209
|
+
[NumberDataMember(code = GNParameterCode.TsCreate, isOptional = true)]
|
|
2210
|
+
public long? tsCreate;
|
|
1736
2211
|
|
|
1737
|
-
|
|
1738
|
-
|
|
2212
|
+
[GNArrayDataMember(code = GNParameterCode.Tags, isOptional = true, elementCls = typeof(GenericModels.TagItem))]
|
|
2213
|
+
public List<GenericModels.TagItem>? tags;
|
|
1739
2214
|
|
|
1740
|
-
|
|
1741
|
-
|
|
2215
|
+
[GNHashtableDataMember(code = GNParameterCode.PlayerBan, isOptional = true)]
|
|
2216
|
+
public GenericModels.BanItem? playerBan;
|
|
1742
2217
|
|
|
1743
|
-
|
|
1744
|
-
|
|
2218
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerDatas, isOptional = true, elementCls = typeof(GenericModels.DataItem))]
|
|
2219
|
+
public List<GenericModels.DataItem>? playerDatas;
|
|
1745
2220
|
|
|
1746
|
-
|
|
1747
|
-
|
|
2221
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerCurrencies, isOptional = true, elementCls = typeof(GenericModels.CurrencyItem))]
|
|
2222
|
+
public List<GenericModels.CurrencyItem>? playerCurrencies;
|
|
1748
2223
|
|
|
1749
|
-
|
|
1750
|
-
|
|
2224
|
+
[GNArrayDataMember(code = GNParameterCode.PlayerStatistics, isOptional = true, elementCls = typeof(GenericModels.StatisticsItem))]
|
|
2225
|
+
public List<GenericModels.StatisticsItem>? playerStatistics;
|
|
1751
2226
|
|
|
1752
|
-
|
|
1753
|
-
|
|
2227
|
+
[NumberDataMember(code = GNParameterCode.TsLastLogin, isOptional = true)]
|
|
2228
|
+
public long? tsLastLogin;
|
|
1754
2229
|
|
|
1755
|
-
|
|
1756
|
-
|
|
2230
|
+
[StringDataMember(code = GNParameterCode.IpAddressCreate, isOptional = true)]
|
|
2231
|
+
public string? ipAddressCreate;
|
|
1757
2232
|
|
|
1758
|
-
|
|
1759
|
-
|
|
2233
|
+
[StringDataMember(code = GNParameterCode.CountryCode, isOptional = true)]
|
|
2234
|
+
public string? countryCode;
|
|
1760
2235
|
|
|
1761
|
-
|
|
1762
|
-
|
|
2236
|
+
[StringDataMember(code = GNParameterCode.Email, isOptional = true)]
|
|
2237
|
+
public string? email;
|
|
1763
2238
|
|
|
1764
|
-
|
|
1765
|
-
|
|
2239
|
+
[GNArrayDataMember(code = GNParameterCode.PushNotifications, isOptional = true, elementCls = typeof(MasterPlayerModels.PushNotificationItem))]
|
|
2240
|
+
public List<MasterPlayerModels.PushNotificationItem>? pushNotifications;
|
|
1766
2241
|
|
|
1767
|
-
|
|
1768
|
-
public string? countryCode;
|
|
2242
|
+
}
|
|
1769
2243
|
|
|
1770
|
-
|
|
1771
|
-
|
|
2244
|
+
public class MasterPlayerResponseData
|
|
2245
|
+
{
|
|
2246
|
+
[GNHashtableDataMember(code = GNParameterCode.InfoResponseParameters)]
|
|
2247
|
+
public InfoResponseParameters infoResponseParameters;
|
|
1772
2248
|
|
|
1773
|
-
|
|
2249
|
+
}
|
|
1774
2250
|
|
|
1775
|
-
|
|
2251
|
+
public class MasterPlayerWithUserIdResponseData : MasterPlayerResponseData
|
|
1776
2252
|
{
|
|
1777
|
-
|
|
1778
|
-
|
|
2253
|
+
[StringDataMember(code = GNParameterCode.UserId)]
|
|
2254
|
+
public string userId;
|
|
1779
2255
|
|
|
1780
|
-
|
|
2256
|
+
}
|
|
1781
2257
|
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
2258
|
+
public class MasterPlayerWithAppleIdResponseData : MasterPlayerWithUserIdResponseData
|
|
2259
|
+
{
|
|
2260
|
+
[StringDataMember(code = GNParameterCode.AppleId)]
|
|
2261
|
+
public string appleId;
|
|
1786
2262
|
|
|
1787
|
-
|
|
2263
|
+
}
|
|
1788
2264
|
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
2265
|
+
public class GetPlayersWithAppleResponseData
|
|
2266
|
+
{
|
|
2267
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerWithAppleIdResponseData))]
|
|
2268
|
+
public List<MasterPlayerWithAppleIdResponseData> results;
|
|
1793
2269
|
|
|
1794
|
-
|
|
2270
|
+
}
|
|
1795
2271
|
|
|
1796
|
-
|
|
2272
|
+
public class MasterPlayersWithUserIdResponseData
|
|
1797
2273
|
{
|
|
1798
|
-
|
|
1799
|
-
|
|
2274
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerWithUserIdResponseData))]
|
|
2275
|
+
public List<MasterPlayerWithUserIdResponseData> results;
|
|
1800
2276
|
|
|
1801
|
-
|
|
2277
|
+
}
|
|
1802
2278
|
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
2279
|
+
public class MasterPlayerWithFacebookIdResponseData : MasterPlayerWithUserIdResponseData
|
|
2280
|
+
{
|
|
2281
|
+
[StringDataMember(code = GNParameterCode.FacebookId)]
|
|
2282
|
+
public string facebookId;
|
|
1807
2283
|
|
|
1808
|
-
|
|
2284
|
+
}
|
|
1809
2285
|
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
2286
|
+
public class GetPlayersWithFacebookResponseData
|
|
2287
|
+
{
|
|
2288
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerWithFacebookIdResponseData))]
|
|
2289
|
+
public List<MasterPlayerWithFacebookIdResponseData> results;
|
|
1814
2290
|
|
|
1815
|
-
|
|
2291
|
+
}
|
|
1816
2292
|
|
|
1817
|
-
|
|
2293
|
+
public class MasterPlayerWithGenericServiceIdResponseData : MasterPlayerWithUserIdResponseData
|
|
1818
2294
|
{
|
|
1819
|
-
|
|
1820
|
-
|
|
2295
|
+
[StringDataMember(code = GNParameterCode.ServiceId)]
|
|
2296
|
+
public string serviceId;
|
|
1821
2297
|
|
|
1822
|
-
|
|
2298
|
+
}
|
|
1823
2299
|
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
2300
|
+
public class GetPlayersWithGenericServiceResponseData
|
|
2301
|
+
{
|
|
2302
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerWithGenericServiceIdResponseData))]
|
|
2303
|
+
public List<MasterPlayerWithGenericServiceIdResponseData> results;
|
|
1828
2304
|
|
|
1829
|
-
|
|
2305
|
+
}
|
|
1830
2306
|
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
2307
|
+
public class MasterPlayerWithGoogleIdResponseData : MasterPlayerWithUserIdResponseData
|
|
2308
|
+
{
|
|
2309
|
+
[StringDataMember(code = GNParameterCode.GoogleId)]
|
|
2310
|
+
public string googleId;
|
|
1835
2311
|
|
|
1836
|
-
|
|
2312
|
+
}
|
|
1837
2313
|
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
2314
|
+
public class GetPlayersWithGoogleResponseData
|
|
2315
|
+
{
|
|
2316
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerWithGoogleIdResponseData))]
|
|
2317
|
+
public List<MasterPlayerWithGoogleIdResponseData> results;
|
|
1842
2318
|
|
|
1843
|
-
|
|
2319
|
+
}
|
|
1844
2320
|
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
2321
|
+
public class MasterPlayerWithPlayerIdResponseData : MasterPlayerWithUserIdResponseData
|
|
2322
|
+
{
|
|
2323
|
+
[StringDataMember(code = GNParameterCode.PlayerId)]
|
|
2324
|
+
public string playerId;
|
|
1849
2325
|
|
|
1850
|
-
|
|
2326
|
+
}
|
|
1851
2327
|
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
2328
|
+
public class GetPlayersWithGooglePlayGameServiceResponseData
|
|
2329
|
+
{
|
|
2330
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerWithPlayerIdResponseData))]
|
|
2331
|
+
public List<MasterPlayerWithPlayerIdResponseData> results;
|
|
1856
2332
|
|
|
1857
|
-
|
|
2333
|
+
}
|
|
1858
2334
|
|
|
1859
|
-
|
|
2335
|
+
public class GetPlayersWithGameCenterResponseData
|
|
1860
2336
|
{
|
|
1861
|
-
|
|
1862
|
-
|
|
2337
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerWithPlayerIdResponseData))]
|
|
2338
|
+
public List<MasterPlayerWithPlayerIdResponseData> results;
|
|
1863
2339
|
|
|
1864
|
-
|
|
2340
|
+
}
|
|
1865
2341
|
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
2342
|
+
public class MasterPlayerLeaderboardResponseData : MasterPlayerWithUserIdResponseData
|
|
2343
|
+
{
|
|
2344
|
+
[NumberDataMember(code = GNParameterCode.Position)]
|
|
2345
|
+
public int position;
|
|
1870
2346
|
|
|
1871
|
-
|
|
1872
|
-
|
|
2347
|
+
[NumberDataMember(code = GNParameterCode.BackupValue, isOptional = true)]
|
|
2348
|
+
public double? backupValue;
|
|
1873
2349
|
|
|
1874
|
-
|
|
1875
|
-
public long? skip;
|
|
2350
|
+
}
|
|
1876
2351
|
|
|
1877
|
-
|
|
1878
|
-
|
|
2352
|
+
public class MasterPlayerLogResponseData
|
|
2353
|
+
{
|
|
2354
|
+
[StringDataMember(code = GNParameterCode.UserId)]
|
|
2355
|
+
public string userId;
|
|
2356
|
+
|
|
2357
|
+
[NumberDataMember(code = GNParameterCode.TsCreate)]
|
|
2358
|
+
public long tsCreate;
|
|
1879
2359
|
|
|
1880
|
-
|
|
1881
|
-
|
|
2360
|
+
[NumberDataMember(code = GNParameterCode.Log)]
|
|
2361
|
+
public string log;
|
|
1882
2362
|
|
|
1883
|
-
|
|
2363
|
+
[NumberDataMember(code = GNParameterCode.Key)]
|
|
2364
|
+
public string key;
|
|
1884
2365
|
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
}
|
|
2366
|
+
[NumberDataMember(code = GNParameterCode.Amount)]
|
|
2367
|
+
public double amount;
|
|
1888
2368
|
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
}
|
|
2369
|
+
[NumberDataMember(code = GNParameterCode.StartValue)]
|
|
2370
|
+
public double startValue;
|
|
1892
2371
|
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerLeaderboardResponseData))]
|
|
1896
|
-
public List<MasterPlayerLeaderboardResponseData> results;
|
|
2372
|
+
[NumberDataMember(code = GNParameterCode.FinalValue)]
|
|
2373
|
+
public double finalValue;
|
|
1897
2374
|
|
|
1898
|
-
|
|
2375
|
+
}
|
|
1899
2376
|
|
|
1900
|
-
|
|
1901
|
-
|
|
2377
|
+
public class GetStatisticsLeaderboardResponseData
|
|
2378
|
+
{
|
|
2379
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerLeaderboardResponseData))]
|
|
2380
|
+
public List<MasterPlayerLeaderboardResponseData> results;
|
|
2381
|
+
|
|
2382
|
+
[NumberDataMember(code = GNParameterCode.TsCreate, isOptional = true)]
|
|
2383
|
+
public long? tsCreate;
|
|
2384
|
+
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
public class GetCurrencyLeaderboardResponseData
|
|
2388
|
+
{
|
|
2389
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerLeaderboardResponseData))]
|
|
2390
|
+
public List<MasterPlayerLeaderboardResponseData> results;
|
|
2391
|
+
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2394
|
+
public class GetLastLoginLeaderboardResponseData
|
|
2395
|
+
{
|
|
2396
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerLeaderboardResponseData))]
|
|
2397
|
+
public List<MasterPlayerLeaderboardResponseData> results;
|
|
2398
|
+
|
|
2399
|
+
}
|
|
2400
|
+
|
|
2401
|
+
public class GetCreateLeaderboardResponseData
|
|
2402
|
+
{
|
|
2403
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerLeaderboardResponseData))]
|
|
2404
|
+
public List<MasterPlayerLeaderboardResponseData> results;
|
|
2405
|
+
|
|
2406
|
+
}
|
|
2407
|
+
|
|
2408
|
+
public class GetStatisticsLogResponseData
|
|
2409
|
+
{
|
|
2410
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerLogResponseData))]
|
|
2411
|
+
public List<MasterPlayerLogResponseData> results;
|
|
2412
|
+
|
|
2413
|
+
[StringDataMember(code = GNParameterCode.Token, isOptional = true)]
|
|
2414
|
+
public string? token;
|
|
2415
|
+
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
public class GetCurrencyLogResponseData
|
|
2419
|
+
{
|
|
2420
|
+
[GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerLogResponseData))]
|
|
2421
|
+
public List<MasterPlayerLogResponseData> results;
|
|
2422
|
+
|
|
2423
|
+
[StringDataMember(code = GNParameterCode.Token, isOptional = true)]
|
|
2424
|
+
public string? token;
|
|
2425
|
+
|
|
2426
|
+
}
|
|
2427
|
+
|
|
2428
|
+
public class AddPushNotificationResponseData
|
|
2429
|
+
{
|
|
2430
|
+
[StringDataMember(code = GNParameterCode.PushId)]
|
|
2431
|
+
public string pushId;
|
|
2432
|
+
|
|
2433
|
+
}
|
|
2434
|
+
|
|
2435
|
+
public class SendPushNotificationResponseData
|
|
2436
|
+
{
|
|
2437
|
+
[StringDataMember(code = GNParameterCode.Message)]
|
|
2438
|
+
public string message;
|
|
2439
|
+
|
|
2440
|
+
}
|
|
2441
|
+
|
|
2442
|
+
public class EmptyResponseData
|
|
2443
|
+
{
|
|
1902
2444
|
|
|
1903
|
-
|
|
2445
|
+
}
|
|
1904
2446
|
|
|
1905
|
-
|
|
2447
|
+
}
|
|
1906
2448
|
|
|
1907
2449
|
}
|