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.
Files changed (112) hide show
  1. package/Editor/GNServerSettingsEditor.cs +42 -322
  2. package/Runtime/Common/GNArray.cs +120 -35
  3. package/Runtime/Common/GNData.cs +19 -6
  4. package/Runtime/Common/GNHashtable.cs +174 -11
  5. package/Runtime/Common/IGNData.cs +11 -2
  6. package/Runtime/Config/GNServerSettings.cs +136 -92
  7. package/Runtime/Constant/Commands.cs +82 -19
  8. package/Runtime/Constant/EnumType/GoogleLoginType.cs +5 -5
  9. package/Runtime/Constant/EnumType/GroupStatus.cs +7 -7
  10. package/Runtime/Constant/EnumType/ItemType.cs +5 -5
  11. package/Runtime/Constant/EnumType/MatchmakingMemberStatus.cs +6 -6
  12. package/Runtime/Constant/EnumType/MatchmakingTicketStatus.cs +2 -2
  13. package/Runtime/Constant/EnumType/OwnerType.cs +3 -2
  14. package/Runtime/Constant/EnumType/PushPlatformType.cs +10 -0
  15. package/Runtime/Constant/EnumType/PushPlatformType.cs.meta +11 -0
  16. package/Runtime/Constant/EnumType/RequestType.cs +1 -0
  17. package/Runtime/Constant/EnumType/StoreReceiveType.cs +13 -0
  18. package/Runtime/Constant/EnumType/StoreReceiveType.cs.meta +11 -0
  19. package/Runtime/Constant/ErrorCode/GNErrorCode.cs +53 -48
  20. package/Runtime/Constant/EventCode.cs +29 -2
  21. package/Runtime/Constant/OperationCode.cs +249 -211
  22. package/Runtime/Constant/ParameterCode/GNParameterCode.cs +610 -466
  23. package/Runtime/Constant/ReturnCode.cs +50 -2
  24. package/Runtime/Entity/DataMember.cs +221 -3
  25. package/Runtime/Entity/GNMetadata.cs +46 -1
  26. package/Runtime/Entity/InvalidMember.cs +24 -5
  27. package/Runtime/Entity/Models/AuthenticateModels.cs +251 -207
  28. package/Runtime/Entity/Models/AuthenticateRequestModels.cs +153 -131
  29. package/Runtime/Entity/Models/AuthenticateResponseModels.cs +61 -51
  30. package/Runtime/Entity/Models/CharacterPlayerModels.cs +985 -849
  31. package/Runtime/Entity/Models/CharacterPlayerRequestModels.cs +957 -885
  32. package/Runtime/Entity/Models/CharacterPlayerResponseModels.cs +165 -150
  33. package/Runtime/Entity/Models/CloudScriptModels.cs +185 -0
  34. package/Runtime/Entity/Models/CloudScriptModels.cs.meta +11 -0
  35. package/Runtime/Entity/Models/CloudScriptRequestModels.cs +134 -0
  36. package/Runtime/Entity/Models/CloudScriptRequestModels.cs.meta +11 -0
  37. package/Runtime/Entity/Models/CloudScriptResponseModels.cs +34 -0
  38. package/Runtime/Entity/Models/CloudScriptResponseModels.cs.meta +11 -0
  39. package/Runtime/Entity/Models/ContentModels.cs +150 -153
  40. package/Runtime/Entity/Models/ContentRequestModels.cs +129 -129
  41. package/Runtime/Entity/Models/ContentResponseModels.cs +24 -24
  42. package/Runtime/Entity/Models/DashboardModels.cs +1684 -1156
  43. package/Runtime/Entity/Models/DashboardRequestModels.cs +220 -147
  44. package/Runtime/Entity/Models/DashboardResponseModels.cs +92 -57
  45. package/Runtime/Entity/Models/GamePlayerModels.cs +1073 -933
  46. package/Runtime/Entity/Models/GamePlayerRequestModels.cs +939 -867
  47. package/Runtime/Entity/Models/GamePlayerResponseModels.cs +162 -147
  48. package/Runtime/Entity/Models/GenericModels.cs +102 -102
  49. package/Runtime/Entity/Models/GroupModels.cs +812 -676
  50. package/Runtime/Entity/Models/GroupRequestModels.cs +741 -669
  51. package/Runtime/Entity/Models/GroupResponseModels.cs +129 -114
  52. package/Runtime/Entity/Models/InventoryModels.cs +667 -558
  53. package/Runtime/Entity/Models/InventoryRequestModels.cs +626 -579
  54. package/Runtime/Entity/Models/InventoryResponseModels.cs +109 -99
  55. package/Runtime/Entity/Models/MasterPlayerModels.cs +1882 -1340
  56. package/Runtime/Entity/Models/MasterPlayerRequestModels.cs +1643 -1253
  57. package/Runtime/Entity/Models/MasterPlayerResponseModels.cs +293 -213
  58. package/Runtime/Entity/Models/MultiplayerModels.cs +293 -223
  59. package/Runtime/Entity/Models/MultiplayerRequestModels.cs +199 -149
  60. package/Runtime/Entity/Models/MultiplayerResponseModels.cs +10 -0
  61. package/Runtime/Entity/Models/StoreInventoryModels.cs +514 -323
  62. package/Runtime/Entity/Models/StoreInventoryRequestModels.cs +236 -165
  63. package/Runtime/Entity/Models/StoreInventoryResponseModels.cs +45 -30
  64. package/Runtime/Entity/OperationEvent.cs +43 -7
  65. package/Runtime/Entity/OperationHelper.cs +18 -2
  66. package/Runtime/Entity/OperationRequest.cs +80 -37
  67. package/Runtime/Entity/OperationResponse.cs +111 -63
  68. package/Runtime/Entity/Request/CustomOperationRequest.cs +53 -2
  69. package/Runtime/Entity/Response/CustomOperationResponse.cs +25 -4
  70. package/Runtime/GNNetwork.cs +333 -21
  71. package/Runtime/GNNetworkApi.cs +25 -13
  72. package/Runtime/GNNetworkAuthenticateApi.cs +531 -98
  73. package/Runtime/GNNetworkCharacterPlayerApi.cs +1587 -762
  74. package/Runtime/GNNetworkCloudScriptApi.cs +181 -0
  75. package/Runtime/GNNetworkCloudScriptApi.cs.meta +11 -0
  76. package/Runtime/GNNetworkContentApi.cs +238 -132
  77. package/Runtime/GNNetworkDashboardApi.cs +278 -117
  78. package/Runtime/GNNetworkGamePlayerApi.cs +1558 -747
  79. package/Runtime/GNNetworkGroupApi.cs +1228 -582
  80. package/Runtime/GNNetworkInventoryApi.cs +1048 -507
  81. package/Runtime/GNNetworkMasterPlayerApi.cs +2586 -1067
  82. package/Runtime/GNNetworkMultiplayerApi.cs +328 -147
  83. package/Runtime/GNNetworkStoreInventoryApi.cs +388 -162
  84. package/Runtime/Helper/CodeHelper.cs +45 -3
  85. package/Runtime/Helper/ConverterService.cs +240 -85
  86. package/Runtime/Logger/GNDebug.cs +46 -3
  87. package/Runtime/Networking/AuthenticateStatus.cs +30 -8
  88. package/Runtime/Networking/Handler/IServerEventHandler.cs +8 -8
  89. package/Runtime/Networking/Handler/OnCharacterPlayerFriendUpdateEventHandler.cs +31 -2
  90. package/Runtime/Networking/Handler/OnCharacterPlayerGroupUpdateEventHandler.cs +24 -3
  91. package/Runtime/Networking/Handler/OnGamePlayerFriendUpdateEventHandler.cs +24 -2
  92. package/Runtime/Networking/Handler/OnGamePlayerGroupUpdateEventHandler.cs +24 -2
  93. package/Runtime/Networking/Handler/OnGroupMemberUpdateEventHandler.cs +21 -2
  94. package/Runtime/Networking/Handler/OnGroupMessageUpdateEventHandler.cs +20 -2
  95. package/Runtime/Networking/Http/HttpPeer.cs +68 -25
  96. package/Runtime/Networking/Http/NetworkingHttpPeerBase.cs +44 -4
  97. package/Runtime/Networking/Http/NetworkingPeerHttpClientRequest.cs +63 -40
  98. package/Runtime/Networking/Http/NetworkingPeerHttpRequest.cs +43 -13
  99. package/Runtime/Networking/Http/NetworkingPeerUnityWebRequest.cs +72 -39
  100. package/Runtime/Networking/IPeer.cs +24 -2
  101. package/Runtime/Networking/NetworkingPeer.cs +64 -10
  102. package/Runtime/Networking/NetworkingPeerAPI.cs +20 -21
  103. package/Runtime/Networking/OperationPending.cs +79 -15
  104. package/Runtime/Networking/PeerBase.cs +86 -23
  105. package/Runtime/Networking/Socket/NetworkingPeerSocketV2.cs +57 -18
  106. package/Runtime/Networking/Socket/NetworkingPeerSocketV3.cs +70 -10
  107. package/Runtime/Networking/Socket/NetworkingSocketPeerBase.cs +165 -23
  108. package/Runtime/Networking/Socket/SocketPeer.cs +63 -12
  109. package/Runtime/Unity/ServiceCoroutine.cs +10 -0
  110. package/Runtime/Unity/ServiceCoroutine.cs.meta +11 -0
  111. package/Runtime/Unity/ServiceUpdate.cs +14 -1
  112. package/package.json +1 -1
@@ -4,1904 +4,2446 @@
4
4
  using XmobiTea.GN.Common;
5
5
  using XmobiTea.GN.Constant;
6
6
 
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;
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
- [StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
15
- public string value;
14
+ [StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
15
+ public string value;
16
16
 
17
- }
17
+ }
18
18
 
19
- public class ServerAddSegmentRequestData : AddSegmentRequestData
20
- {
21
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
22
- public new string userId;
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
- public class AdminAddSegmentRequestData : ServerAddSegmentRequestData
27
- {
28
- }
26
+ public class AdminAddSegmentRequestData : ServerAddSegmentRequestData
27
+ {
28
+ }
29
29
 
30
- public class ChangeAccountPasswordRequestData
31
- {
32
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
33
- public string? userId;
30
+ public class ChangeAccountPasswordRequestData
31
+ {
32
+ [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
33
+ public string? userId;
34
34
 
35
- [StringDataMember(code = GNParameterCode.CurrentPassword, minLength = 6, maxLength = 64, mustNonNull = true)]
36
- public string currentPassword;
35
+ [StringDataMember(code = GNParameterCode.CurrentPassword, minLength = 6, maxLength = 64, mustNonNull = true)]
36
+ public string currentPassword;
37
37
 
38
- [StringDataMember(code = GNParameterCode.Password, minLength = 6, maxLength = 64, mustNonNull = true)]
39
- public string password;
38
+ [StringDataMember(code = GNParameterCode.Password, minLength = 6, maxLength = 64, mustNonNull = true)]
39
+ public string password;
40
40
 
41
- }
41
+ }
42
42
 
43
- public class GetAvatarRequestData
44
- {
45
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
46
- public string? userId;
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
- public class ServerGetAvatarRequestData : GetAvatarRequestData
51
- {
52
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
53
- public new string userId;
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
- public class AdminGetAvatarRequestData : ServerGetAvatarRequestData
58
- {
59
- }
57
+ public class AdminGetAvatarRequestData : ServerGetAvatarRequestData
58
+ {
59
+ }
60
60
 
61
- public class GetCountryCodeRequestData
62
- {
63
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
64
- public string? userId;
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
- public class ServerGetCountryCodeRequestData : GetCountryCodeRequestData
69
- {
70
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
71
- public new string userId;
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
- public class AdminGetCountryCodeRequestData : ServerGetCountryCodeRequestData
76
- {
77
- }
75
+ public class AdminGetCountryCodeRequestData : ServerGetCountryCodeRequestData
76
+ {
77
+ }
78
78
 
79
- public class GetCustomDataRequestData
80
- {
81
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
82
- public string? userId;
79
+ public class GetCustomDataRequestData
80
+ {
81
+ [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
82
+ public string? userId;
83
83
 
84
- [GNArrayDataMember(code = GNParameterCode.CustomDataKeys, isOptional = true, elementCls = typeof(string))]
85
- public List<string>? customDataKeys;
84
+ [GNArrayDataMember(code = GNParameterCode.CustomDataKeys, isOptional = true, elementCls = typeof(string))]
85
+ public List<string>? customDataKeys;
86
86
 
87
- }
87
+ }
88
88
 
89
- public class ServerGetCustomDataRequestData : GetCustomDataRequestData
90
- {
91
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
92
- public new string userId;
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
- public class AdminGetCustomDataRequestData : ServerGetCustomDataRequestData
97
- {
98
- }
96
+ public class AdminGetCustomDataRequestData : ServerGetCustomDataRequestData
97
+ {
98
+ }
99
99
 
100
- public class GetDisplayNameRequestData
101
- {
102
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
103
- public string? userId;
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
- public class ServerGetDisplayNameRequestData : GetDisplayNameRequestData
108
- {
109
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
110
- public new string userId;
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
- public class AdminGetDisplayNameRequestData : ServerGetDisplayNameRequestData
115
- {
116
- }
114
+ public class AdminGetDisplayNameRequestData : ServerGetDisplayNameRequestData
115
+ {
116
+ }
117
117
 
118
- public class GetEmailRequestData
119
- {
120
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
121
- public string? userId;
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
- public class ServerGetEmailRequestData : GetEmailRequestData
126
- {
127
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
128
- public new string userId;
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
- public class AdminGetEmailRequestData : ServerGetEmailRequestData
133
- {
134
- }
132
+ public class AdminGetEmailRequestData : ServerGetEmailRequestData
133
+ {
134
+ }
135
135
 
136
- public class GetExternalRequestData
137
- {
138
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
139
- public string? userId;
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
- public class ServerGetExternalRequestData : GetExternalRequestData
144
- {
145
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
146
- public new string userId;
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
- public class AdminGetExternalRequestData : ServerGetExternalRequestData
151
- {
152
- }
150
+ public class AdminGetExternalRequestData : ServerGetExternalRequestData
151
+ {
152
+ }
153
153
 
154
- public class GetIpAddressCreateRequestData
155
- {
156
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
157
- public string? userId;
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
- public class ServerGetIpAddressCreateRequestData : GetIpAddressCreateRequestData
162
- {
163
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
164
- public new string userId;
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
- public class AdminGetIpAddressCreateRequestData : ServerGetIpAddressCreateRequestData
169
- {
170
- }
168
+ public class AdminGetIpAddressCreateRequestData : ServerGetIpAddressCreateRequestData
169
+ {
170
+ }
171
171
 
172
- public class GetPlayerBanRequestData
173
- {
174
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
175
- public string? userId;
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
- public class ServerGetPlayerBanRequestData : GetPlayerBanRequestData
180
- {
181
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
182
- public new string userId;
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
- public class AdminGetPlayerBanRequestData : ServerGetPlayerBanRequestData
187
- {
188
- }
186
+ public class AdminGetPlayerBanRequestData : ServerGetPlayerBanRequestData
187
+ {
188
+ }
189
189
 
190
- public class GetPlayerCurrencyRequestData
191
- {
192
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
193
- public string? userId;
190
+ public class GetPlayerCurrencyRequestData
191
+ {
192
+ [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
193
+ public string? userId;
194
194
 
195
- [GNArrayDataMember(code = GNParameterCode.PlayerCurrencyKeys, isOptional = true, elementCls = typeof(string))]
196
- public List<string>? playerCurrencyKeys;
195
+ [GNArrayDataMember(code = GNParameterCode.PlayerCurrencyKeys, isOptional = true, elementCls = typeof(string))]
196
+ public List<string>? playerCurrencyKeys;
197
197
 
198
- }
198
+ }
199
199
 
200
- public class ServerGetPlayerCurrencyRequestData : GetPlayerCurrencyRequestData
201
- {
202
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
203
- public new string userId;
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
- public class AdminGetPlayerCurrencyRequestData : ServerGetPlayerCurrencyRequestData
208
- {
209
- }
207
+ public class AdminGetPlayerCurrencyRequestData : ServerGetPlayerCurrencyRequestData
208
+ {
209
+ }
210
210
 
211
- public class GetPlayerDataRequestData
212
- {
213
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
214
- public string? userId;
211
+ public class GetPlayerDataRequestData
212
+ {
213
+ [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
214
+ public string? userId;
215
215
 
216
- [GNArrayDataMember(code = GNParameterCode.PlayerDataKeys, isOptional = true, elementCls = typeof(string))]
217
- public List<string>? playerDataKeys;
216
+ [GNArrayDataMember(code = GNParameterCode.PlayerDataKeys, isOptional = true, elementCls = typeof(string))]
217
+ public List<string>? playerDataKeys;
218
218
 
219
- }
219
+ }
220
220
 
221
- public class ServerGetPlayerDataRequestData : GetPlayerDataRequestData
222
- {
223
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
224
- public new string userId;
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
- public class AdminGetPlayerDataRequestData : ServerGetPlayerDataRequestData
229
- {
230
- }
228
+ public class AdminGetPlayerDataRequestData : ServerGetPlayerDataRequestData
229
+ {
230
+ }
231
231
 
232
- public class GetPlayerInformationRequestData
233
- {
234
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
235
- public string? userId;
232
+ public class GetPlayerInformationRequestData
233
+ {
234
+ [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
235
+ public string? userId;
236
236
 
237
- [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
238
- public InfoRequestParam infoRequestParam;
237
+ [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
238
+ public InfoRequestParam infoRequestParam;
239
239
 
240
- }
240
+ }
241
241
 
242
- public class ServerGetPlayerInformationRequestData : GetPlayerInformationRequestData
243
- {
244
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
245
- public new string userId;
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
- public class AdminGetPlayerInformationRequestData : ServerGetPlayerInformationRequestData
250
- {
251
- }
249
+ public class AdminGetPlayerInformationRequestData : ServerGetPlayerInformationRequestData
250
+ {
251
+ }
252
252
 
253
- public class GetPlayerStatisticsRequestData
254
- {
255
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
256
- public string? userId;
253
+ public class GetPlayerStatisticsRequestData
254
+ {
255
+ [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
256
+ public string? userId;
257
257
 
258
- [GNArrayDataMember(code = GNParameterCode.PlayerStatisticsKeys, isOptional = true, elementCls = typeof(string))]
259
- public List<string>? playerStatisticsKeys;
258
+ [GNArrayDataMember(code = GNParameterCode.PlayerStatisticsKeys, isOptional = true, elementCls = typeof(string))]
259
+ public List<string>? playerStatisticsKeys;
260
260
 
261
- }
261
+ }
262
262
 
263
- public class ServerGetPlayerStatisticsRequestData : GetPlayerStatisticsRequestData
264
- {
265
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
266
- public new string userId;
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
- public class AdminGetPlayerStatisticsRequestData : ServerGetPlayerStatisticsRequestData
271
- {
272
- }
270
+ public class AdminGetPlayerStatisticsRequestData : ServerGetPlayerStatisticsRequestData
271
+ {
272
+ }
273
273
 
274
- public class GetPlayersWithAppleRequestData
275
- {
276
- [GNArrayDataMember(code = GNParameterCode.AppleIds, mustNonNull = true, elementCls = typeof(string))]
277
- public List<string> appleIds;
274
+ public class GetPlayersWithAppleRequestData
275
+ {
276
+ [GNArrayDataMember(code = GNParameterCode.AppleIds, mustNonNull = true, elementCls = typeof(string))]
277
+ public List<string> appleIds;
278
278
 
279
- [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
280
- public InfoRequestParam infoRequestParam;
279
+ [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
280
+ public InfoRequestParam infoRequestParam;
281
281
 
282
- }
282
+ }
283
283
 
284
- public class ServerGetPlayersWithAppleRequestData : GetPlayersWithAppleRequestData
285
- {
286
- }
284
+ public class ServerGetPlayersWithAppleRequestData : GetPlayersWithAppleRequestData
285
+ {
286
+ }
287
287
 
288
- public class AdminGetPlayersWithAppleRequestData : ServerGetPlayersWithAppleRequestData
289
- {
290
- }
288
+ public class AdminGetPlayersWithAppleRequestData : ServerGetPlayersWithAppleRequestData
289
+ {
290
+ }
291
291
 
292
- public class GetPlayersWithDisplayNameRequestData
293
- {
294
- [StringDataMember(code = GNParameterCode.Keyword, minLength = 2, maxLength = 32)]
295
- public string keyword;
292
+ public class GetPlayersWithDisplayNameRequestData
293
+ {
294
+ [StringDataMember(code = GNParameterCode.Keyword, minLength = 2, maxLength = 32)]
295
+ public string keyword;
296
296
 
297
- [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
298
- public InfoRequestParam infoRequestParam;
297
+ [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
298
+ public InfoRequestParam infoRequestParam;
299
299
 
300
- [NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
301
- public long? skip;
300
+ [NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
301
+ public int? skip;
302
302
 
303
- [NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
304
- public long? limit;
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
- public class ServerGetPlayersWithDisplayNameRequestData : GetPlayersWithDisplayNameRequestData
309
- {
310
- }
308
+ public class ServerGetPlayersWithDisplayNameRequestData : GetPlayersWithDisplayNameRequestData
309
+ {
310
+ }
311
311
 
312
- public class AdminGetPlayersWithDisplayNameRequestData : ServerGetPlayersWithDisplayNameRequestData
313
- {
314
- }
312
+ public class AdminGetPlayersWithDisplayNameRequestData : ServerGetPlayersWithDisplayNameRequestData
313
+ {
314
+ }
315
315
 
316
- public class GetPlayersWithFacebookRequestData
317
- {
318
- [GNArrayDataMember(code = GNParameterCode.FacebookIds, mustNonNull = true, elementCls = typeof(string))]
319
- public List<string> facebookIds;
316
+ public class GetPlayersWithFacebookRequestData
317
+ {
318
+ [GNArrayDataMember(code = GNParameterCode.FacebookIds, mustNonNull = true, elementCls = typeof(string))]
319
+ public List<string> facebookIds;
320
320
 
321
- [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
322
- public InfoRequestParam infoRequestParam;
321
+ [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
322
+ public InfoRequestParam infoRequestParam;
323
323
 
324
- }
324
+ }
325
325
 
326
- public class ServerGetPlayersWithFacebookRequestData : GetPlayersWithFacebookRequestData
327
- {
328
- }
326
+ public class ServerGetPlayersWithFacebookRequestData : GetPlayersWithFacebookRequestData
327
+ {
328
+ }
329
329
 
330
- public class AdminGetPlayersWithFacebookRequestData : ServerGetPlayersWithFacebookRequestData
331
- {
332
- }
330
+ public class AdminGetPlayersWithFacebookRequestData : ServerGetPlayersWithFacebookRequestData
331
+ {
332
+ }
333
333
 
334
- public class GetPlayersWithGenericServiceRequestData
335
- {
336
- [StringDataMember(code = GNParameterCode.ServiceName, minLength = 2, maxLength = 32, mustNonNull = true)]
337
- public string serviceName;
334
+ public class GetPlayersWithGenericServiceRequestData
335
+ {
336
+ [StringDataMember(code = GNParameterCode.ServiceName, minLength = 2, maxLength = 32, mustNonNull = true)]
337
+ public string serviceName;
338
338
 
339
- [GNArrayDataMember(code = GNParameterCode.GenericIds, mustNonNull = true, elementCls = typeof(string))]
340
- public List<string> genericIds;
339
+ [GNArrayDataMember(code = GNParameterCode.GenericIds, mustNonNull = true, elementCls = typeof(string))]
340
+ public List<string> genericIds;
341
341
 
342
- [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
343
- public InfoRequestParam infoRequestParam;
342
+ [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
343
+ public InfoRequestParam infoRequestParam;
344
344
 
345
- }
345
+ }
346
346
 
347
- public class ServerGetPlayersWithGenericServiceRequestData : GetPlayersWithGenericServiceRequestData
348
- {
349
- }
347
+ public class ServerGetPlayersWithGenericServiceRequestData : GetPlayersWithGenericServiceRequestData
348
+ {
349
+ }
350
350
 
351
- public class AdminGetPlayersWithGenericServiceRequestData : ServerGetPlayersWithGenericServiceRequestData
352
- {
353
- }
351
+ public class AdminGetPlayersWithGenericServiceRequestData : ServerGetPlayersWithGenericServiceRequestData
352
+ {
353
+ }
354
354
 
355
- public class GetPlayersWithGoogleRequestData
356
- {
357
- [GNArrayDataMember(code = GNParameterCode.GoogleIds, mustNonNull = true, elementCls = typeof(string))]
358
- public List<string> googleIds;
355
+ public class GetPlayersWithGoogleRequestData
356
+ {
357
+ [GNArrayDataMember(code = GNParameterCode.GoogleIds, mustNonNull = true, elementCls = typeof(string))]
358
+ public List<string> googleIds;
359
359
 
360
- [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
361
- public InfoRequestParam infoRequestParam;
360
+ [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
361
+ public InfoRequestParam infoRequestParam;
362
362
 
363
- }
363
+ }
364
364
 
365
- public class ServerGetPlayersWithGoogleRequestData : GetPlayersWithGoogleRequestData
366
- {
367
- }
365
+ public class ServerGetPlayersWithGoogleRequestData : GetPlayersWithGoogleRequestData
366
+ {
367
+ }
368
368
 
369
- public class AdminGetPlayersWithGoogleRequestData : ServerGetPlayersWithGoogleRequestData
370
- {
371
- }
369
+ public class AdminGetPlayersWithGoogleRequestData : ServerGetPlayersWithGoogleRequestData
370
+ {
371
+ }
372
372
 
373
- public class GetPlayersWithSegmentRequestData
374
- {
375
- [StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
376
- public string value;
373
+ public class GetPlayersWithGooglePlayGameServiceRequestData
374
+ {
375
+ [GNArrayDataMember(code = GNParameterCode.PlayerIds, mustNonNull = true, elementCls = typeof(string))]
376
+ public List<string> playerIds;
377
377
 
378
- [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
379
- public InfoRequestParam infoRequestParam;
378
+ [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
379
+ public InfoRequestParam infoRequestParam;
380
380
 
381
- [NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
382
- public long? skip;
381
+ }
383
382
 
384
- [NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
385
- public long? limit;
383
+ public class ServerGetPlayersWithGooglePlayGameServiceRequestData : GetPlayersWithGooglePlayGameServiceRequestData
384
+ {
385
+ }
386
386
 
387
- }
387
+ public class AdminGetPlayersWithGooglePlayGameServiceRequestData : ServerGetPlayersWithGooglePlayGameServiceRequestData
388
+ {
389
+ }
388
390
 
389
- public class ServerGetPlayersWithSegmentRequestData : GetPlayersWithSegmentRequestData
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
- public class AdminGetPlayersWithSegmentRequestData : ServerGetPlayersWithSegmentRequestData
394
- {
395
- }
396
+ [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
397
+ public InfoRequestParam infoRequestParam;
396
398
 
397
- public class GetPlayersWithTagRequestData
398
- {
399
- [StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
400
- public string key;
399
+ }
401
400
 
402
- [StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
403
- public string value;
401
+ public class ServerGetPlayersWithGameCenterRequestData : GetPlayersWithGameCenterRequestData
402
+ {
403
+ }
404
404
 
405
- [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
406
- public InfoRequestParam infoRequestParam;
405
+ public class AdminGetPlayersWithGameCenterRequestData : ServerGetPlayersWithGameCenterRequestData
406
+ {
407
+ }
407
408
 
408
- [NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
409
- public long? skip;
409
+ public class GetPlayersWithSegmentRequestData
410
+ {
411
+ [StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
412
+ public string value;
410
413
 
411
- [NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
412
- public long? limit;
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
- public class ServerGetPlayersWithTagRequestData : GetPlayersWithTagRequestData
417
- {
418
- }
420
+ [NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
421
+ public int? limit;
419
422
 
420
- public class AdminGetPlayersWithTagRequestData : ServerGetPlayersWithTagRequestData
421
- {
422
- }
423
+ }
423
424
 
424
- public class GetSegmentRequestData
425
- {
426
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
427
- public string? userId;
425
+ public class ServerGetPlayersWithSegmentRequestData : GetPlayersWithSegmentRequestData
426
+ {
427
+ }
428
428
 
429
- }
429
+ public class AdminGetPlayersWithSegmentRequestData : ServerGetPlayersWithSegmentRequestData
430
+ {
431
+ }
430
432
 
431
- public class ServerGetSegmentRequestData : GetSegmentRequestData
432
- {
433
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
434
- public new string userId;
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
- public class AdminGetSegmentRequestData : ServerGetSegmentRequestData
439
- {
440
- }
441
+ [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
442
+ public InfoRequestParam infoRequestParam;
441
443
 
442
- public class GetStatisticsLeaderboardAroundPlayerRequestData
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
- [StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
448
- public string key;
447
+ [NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
448
+ public int? limit;
449
449
 
450
- [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
451
- public InfoRequestParam infoRequestParam;
450
+ }
452
451
 
453
- [NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
454
- public long? skip;
452
+ public class ServerGetPlayersWithTagRequestData : GetPlayersWithTagRequestData
453
+ {
454
+ }
455
455
 
456
- [NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
457
- public long? limit;
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
- public class ServerGetStatisticsLeaderboardAroundPlayerRequestData : GetStatisticsLeaderboardAroundPlayerRequestData
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
- public class AdminGetStatisticsLeaderboardAroundPlayerRequestData : ServerGetStatisticsLeaderboardAroundPlayerRequestData
469
- {
470
- }
472
+ }
471
473
 
472
- public class GetStatisticsLeaderboardRequestData
473
- {
474
- [StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
475
- public string key;
474
+ public class AdminGetSegmentRequestData : ServerGetSegmentRequestData
475
+ {
476
+ }
476
477
 
477
- [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
478
- public InfoRequestParam infoRequestParam;
478
+ public class GetStatisticsLeaderboardAroundPlayerRequestData
479
+ {
480
+ [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
481
+ public string? userId;
479
482
 
480
- [NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
481
- public long? skip;
483
+ [StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
484
+ public string key;
482
485
 
483
- [NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
484
- public long? limit;
486
+ [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
487
+ public InfoRequestParam infoRequestParam;
485
488
 
486
- [BooleanDataMember(code = GNParameterCode.LoadFromCache, defaultValue = true, isOptional = true)]
487
- public bool? loadFromCache;
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
- public class ServerGetStatisticsLeaderboardRequestData : GetStatisticsLeaderboardRequestData
492
- {
493
- }
495
+ }
494
496
 
495
- public class AdminGetStatisticsLeaderboardRequestData : ServerGetStatisticsLeaderboardRequestData
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
- public class GetTagRequestData
500
- {
501
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
502
- public string? userId;
502
+ }
503
503
 
504
- [GNArrayDataMember(code = GNParameterCode.TagKeys, elementCls = typeof(string))]
505
- public List<string> tagKeys;
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
- public class ServerGetTagRequestData : GetTagRequestData
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
- public class AdminGetTagRequestData : ServerGetTagRequestData
517
- {
518
- }
519
+ [NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
520
+ public int? limit;
519
521
 
520
- public class GetTsCreateRequestData
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
- public class ServerGetTsCreateRequestData : GetTsCreateRequestData
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
- public class AdminGetTsCreateRequestData : ServerGetTsCreateRequestData
535
- {
536
- }
534
+ public class AdminGetStatisticsLeaderboardRequestData : ServerGetStatisticsLeaderboardRequestData
535
+ {
536
+ }
537
537
 
538
- public class GetTsLastLoginRequestData
539
- {
540
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
541
- public string? userId;
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
- public class ServerGetTsLastLoginRequestData : GetTsLastLoginRequestData
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
- public class AdminGetTsLastLoginRequestData : ServerGetTsLastLoginRequestData
553
- {
554
- }
553
+ }
555
554
 
556
- public class LinkAccountRequestData
557
- {
558
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
559
- public string? userId;
555
+ public class AdminGetTagRequestData : ServerGetTagRequestData
556
+ {
557
+ }
560
558
 
561
- [StringDataMember(code = GNParameterCode.Username, minLength = 6, maxLength = 32, mustNonNull = true)]
562
- public string username;
559
+ public class GetTsCreateRequestData
560
+ {
561
+ [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
562
+ public string? userId;
563
563
 
564
- [StringDataMember(code = GNParameterCode.Username, minLength = 6, maxLength = 64, mustNonNull = true)]
565
- public string password;
564
+ }
566
565
 
567
- [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
568
- public bool? forceLink;
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
- public class ServerLinkAccountRequestData : LinkAccountRequestData
573
- {
574
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
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
- public class AdminLinkAccountRequestData : ServerLinkAccountRequestData
580
- {
581
- }
582
+ }
582
583
 
583
- public class LinkAndroidDeviceIdRequestData
584
- {
585
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
586
- public string? userId;
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
- [StringDataMember(code = GNParameterCode.AndroidDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
589
- public string androidDeviceId;
589
+ }
590
590
 
591
- [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
592
- public bool? forceLink;
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
- public class ServerLinkAndroidDeviceIdRequestData : LinkAndroidDeviceIdRequestData
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
- public class AdminLinkAndroidDeviceIdRequestData : ServerLinkAndroidDeviceIdRequestData
604
- {
605
- }
606
+ [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
607
+ public bool? forceLink;
606
608
 
607
- public class LinkAppleRequestData
608
- {
609
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
610
- public string? userId;
609
+ }
611
610
 
612
- [StringDataMember(code = GNParameterCode.Token, minLength = 64, maxLength = 512, mustNonNull = true)]
613
- public string token;
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
- [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
616
- public bool? forceLink;
616
+ }
617
617
 
618
- }
618
+ public class AdminLinkAccountRequestData : ServerLinkAccountRequestData
619
+ {
620
+ }
619
621
 
620
- public class ServerLinkAppleRequestData : LinkAppleRequestData
621
- {
622
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
623
- public new string userId;
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
- public class AdminLinkAppleRequestData : ServerLinkAppleRequestData
628
- {
629
- }
630
+ [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
631
+ public bool? forceLink;
630
632
 
631
- public class LinkCustomDeviceIdRequestData
632
- {
633
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
634
- public string? userId;
633
+ }
635
634
 
636
- [StringDataMember(code = GNParameterCode.CustomDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
637
- public string customDeviceId;
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
- [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
640
- public bool? forceLink;
640
+ }
641
641
 
642
- }
642
+ public class AdminLinkAndroidDeviceIdRequestData : ServerLinkAndroidDeviceIdRequestData
643
+ {
644
+ }
643
645
 
644
- public class ServerLinkCustomDeviceIdRequestData : LinkCustomDeviceIdRequestData
645
- {
646
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
647
- public new string userId;
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
- public class AdminLinkCustomDeviceIdRequestData : ServerLinkCustomDeviceIdRequestData
652
- {
653
- }
654
+ [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
655
+ public bool? forceLink;
654
656
 
655
- public class LinkCustomIdRequestData
656
- {
657
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
658
- public string? userId;
657
+ }
659
658
 
660
- [StringDataMember(code = GNParameterCode.CustomId, minLength = 6, maxLength = 64, mustNonNull = true)]
661
- public string customId;
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
- [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
664
- public bool? forceLink;
664
+ }
665
665
 
666
- }
666
+ public class AdminLinkAppleRequestData : ServerLinkAppleRequestData
667
+ {
668
+ }
667
669
 
668
- public class ServerLinkCustomIdRequestData : LinkCustomIdRequestData
669
- {
670
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
671
- public new string userId;
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
- public class AdminLinkCustomIdRequestData : ServerLinkCustomIdRequestData
676
- {
677
- }
678
+ [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
679
+ public bool? forceLink;
678
680
 
679
- public class LinkEditorDeviceIdRequestData
680
- {
681
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
682
- public string? userId;
681
+ }
683
682
 
684
- [StringDataMember(code = GNParameterCode.EditorDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
685
- public string editorDeviceId;
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
- [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
688
- public bool? forceLink;
688
+ }
689
689
 
690
- }
690
+ public class AdminLinkCustomDeviceIdRequestData : ServerLinkCustomDeviceIdRequestData
691
+ {
692
+ }
691
693
 
692
- public class ServerLinkEditorDeviceIdRequestData : LinkEditorDeviceIdRequestData
693
- {
694
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
695
- public new string userId;
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
- public class AdminLinkEditorDeviceIdRequestData : ServerLinkEditorDeviceIdRequestData
700
- {
701
- }
702
+ [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
703
+ public bool? forceLink;
702
704
 
703
- public class LinkFacebookRequestData
704
- {
705
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
706
- public string? userId;
705
+ }
707
706
 
708
- [StringDataMember(code = GNParameterCode.Token, minLength = 64, maxLength = 512, mustNonNull = true)]
709
- public string token;
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
- [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
712
- public bool? forceLink;
712
+ }
713
713
 
714
- }
714
+ public class AdminLinkCustomIdRequestData : ServerLinkCustomIdRequestData
715
+ {
716
+ }
715
717
 
716
- public class ServerLinkFacebookRequestData : LinkFacebookRequestData
717
- {
718
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
719
- public new string userId;
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
- public class AdminLinkFacebookRequestData : ServerLinkFacebookRequestData
724
- {
725
- }
726
+ [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
727
+ public bool? forceLink;
726
728
 
727
- public class LinkGenericServiceRequestData
728
- {
729
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
730
- public string? userId;
729
+ }
731
730
 
732
- [StringDataMember(code = GNParameterCode.ServiceName, minLength = 6, maxLength = 32, mustNonNull = true)]
733
- public string serviceName;
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
- [GNHashtableDataMember(code = GNParameterCode.ServiceData, mustNonNull = true)]
736
- public GNHashtable serviceData;
736
+ }
737
737
 
738
- [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
739
- public bool? forceLink;
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
- public class ServerLinkGenericServiceRequestData : LinkGenericServiceRequestData
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
- public class AdminLinkGenericServiceRequestData : ServerLinkGenericServiceRequestData
751
- {
752
- }
753
+ }
753
754
 
754
- public class LinkGoogleRequestData
755
- {
756
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
757
- public string? userId;
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
- [StringDataMember(code = GNParameterCode.Token, maxLength = 512, minLength = 32, mustNonNull = true)]
760
- public string token;
760
+ }
761
761
 
762
- [NumberDataMember(code = GNParameterCode.Type, minValue = 1, maxValue = 2)]
763
- public double type;
762
+ public class AdminLinkFacebookRequestData : ServerLinkFacebookRequestData
763
+ {
764
+ }
764
765
 
765
- [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
766
- public bool? forceLink;
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
- public class ServerLinkGoogleRequestData : LinkGoogleRequestData
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
- public class AdminLinkGoogleRequestData : ServerLinkGoogleRequestData
778
- {
779
- }
780
+ }
780
781
 
781
- public class LinkiOSDeviceIdRequestData
782
- {
783
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
784
- public string? userId;
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
- [StringDataMember(code = GNParameterCode.iOSDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
787
- public string iOSDeviceId;
787
+ }
788
788
 
789
- [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
790
- public bool? forceLink;
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
- public class ServerLinkiOSDeviceIdRequestData : LinkiOSDeviceIdRequestData
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
- public class AdminLinkiOSDeviceIdRequestData : ServerLinkiOSDeviceIdRequestData
802
- {
803
- }
804
+ [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
805
+ public bool? forceLink;
804
806
 
805
- public class LinkLinuxDeviceIdRequestData
806
- {
807
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
808
- public string? userId;
807
+ }
809
808
 
810
- [StringDataMember(code = GNParameterCode.LinuxDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
811
- public string linuxDeviceId;
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
- [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
814
- public bool? forceLink;
814
+ }
815
815
 
816
- }
816
+ public class AdminLinkGoogleRequestData : ServerLinkGoogleRequestData
817
+ {
818
+ }
817
819
 
818
- public class ServerLinkLinuxDeviceIdRequestData : LinkLinuxDeviceIdRequestData
819
- {
820
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
821
- public new string userId;
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
- public class AdminLinkLinuxDeviceIdRequestData : ServerLinkLinuxDeviceIdRequestData
826
- {
827
- }
828
+ [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
829
+ public bool? forceLink;
828
830
 
829
- public class LinkMacOSDeviceIdRequestData
830
- {
831
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
832
- public string? userId;
831
+ }
833
832
 
834
- [StringDataMember(code = GNParameterCode.MacOSDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
835
- public string macOSDeviceId;
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
- [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
838
- public bool? forceLink;
838
+ }
839
839
 
840
- }
840
+ public class AdminLinkGooglePlayGameServiceRequestData : ServerLinkGooglePlayGameServiceRequestData
841
+ {
842
+ }
841
843
 
842
- public class ServerLinkMacOSDeviceIdRequestData : LinkMacOSDeviceIdRequestData
843
- {
844
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
845
- public new string userId;
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
- public class AdminLinkMacOSDeviceIdRequestData : ServerLinkMacOSDeviceIdRequestData
850
- {
851
- }
852
+ [StringDataMember(code = GNParameterCode.Name, minLength = 2, maxLength = 64, mustNonNull = true)]
853
+ public string name;
852
854
 
853
- public class LinkWindowsDeviceIdRequestData
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
- [StringDataMember(code = GNParameterCode.WindowsDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
859
- public string windowsDeviceId;
858
+ [StringDataMember(code = GNParameterCode.Signature, minLength = 2, maxLength = 512, mustNonNull = true)]
859
+ public string signature;
860
860
 
861
- [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
862
- public bool? forceLink;
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
- public class ServerLinkWindowsDeviceIdRequestData : LinkWindowsDeviceIdRequestData
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
- public class AdminLinkWindowsDeviceIdRequestData : ServerLinkWindowsDeviceIdRequestData
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
- public class LinkWindowsPhoneDeviceIdRequestData
878
- {
879
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
880
- public string? userId;
877
+ }
881
878
 
882
- [StringDataMember(code = GNParameterCode.WindowsPhoneDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
883
- public string windowsPhoneDeviceId;
879
+ public class AdminLinkGameCenterRequestData : ServerLinkGameCenterRequestData
880
+ {
881
+ }
884
882
 
885
- [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
886
- public bool? forceLink;
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
- public class ServerLinkWindowsPhoneDeviceIdRequestData : LinkWindowsPhoneDeviceIdRequestData
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
- public class AdminLinkWindowsPhoneDeviceIdRequestData : ServerLinkWindowsPhoneDeviceIdRequestData
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
- public class RemoveSegmentRequestData
902
- {
903
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
904
- public string? userId;
901
+ }
905
902
 
906
- [StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
907
- public string value;
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
- public class ServerRemoveSegmentRequestData : RemoveSegmentRequestData
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
- public class AdminRemoveSegmentRequestData : ServerRemoveSegmentRequestData
919
- {
920
- }
918
+ }
921
919
 
922
- public class RemoveTagRequestData
923
- {
924
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
925
- public string? userId;
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
- [StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
928
- public string key;
925
+ }
929
926
 
930
- }
927
+ public class AdminLinkLinuxDeviceIdRequestData : ServerLinkLinuxDeviceIdRequestData
928
+ {
929
+ }
931
930
 
932
- public class ServerRemoveTagRequestData : RemoveTagRequestData
933
- {
934
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
935
- public new string userId;
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
- public class AdminRemoveTagRequestData : ServerRemoveTagRequestData
940
- {
941
- }
939
+ [BooleanDataMember(code = GNParameterCode.ForceLink, isOptional = true, defaultValue = false)]
940
+ public bool? forceLink;
942
941
 
943
- public class ResetAccountPasswordRequestData
944
- {
945
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
946
- public string userId;
942
+ }
947
943
 
948
- [StringDataMember(code = GNParameterCode.Password, minLength = 6, maxLength = 64, mustNonNull = true)]
949
- public string password;
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
- public class ServerResetAccountPasswordRequestData : ResetAccountPasswordRequestData
954
- {
955
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
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
- public class AdminResetAccountPasswordRequestData : ServerResetAccountPasswordRequestData
961
- {
962
- }
960
+ [StringDataMember(code = GNParameterCode.WindowsDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
961
+ public string windowsDeviceId;
963
962
 
964
- public class SetAvatarRequestData
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
- [NumberDataMember(code = GNParameterCode.Type, mustInt = true)]
970
- public long type;
966
+ }
971
967
 
972
- [StringDataMember(code = GNParameterCode.Value, minLength = 1, maxLength = 128, mustNonNull = true)]
973
- public string value;
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
- public class ServerSetAvatarRequestData : SetAvatarRequestData
978
- {
979
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
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
- public class AdminSetAvatarRequestData : ServerSetAvatarRequestData
985
- {
986
- }
984
+ [StringDataMember(code = GNParameterCode.WindowsPhoneDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
985
+ public string windowsPhoneDeviceId;
987
986
 
988
- public class SetCountryCodeRequestData
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
- [StringDataMember(code = GNParameterCode.CountryCode, minLength = 2, maxLength = 32)]
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
- public class ServerSetCountryCodeRequestData : SetCountryCodeRequestData
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
- public class AdminSetCountryCodeRequestData : ServerSetCountryCodeRequestData
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
- public class SetCustomDataRequestData
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
- [GNArrayDataMember(code = GNParameterCode.CustomDatas, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(CustomDataParam))]
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
- public class ServerSetCustomDataRequestData : SetCustomDataRequestData
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
- public class AdminSetCustomDataRequestData : ServerSetCustomDataRequestData
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
- public class SetDisplayNameRequestData
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
- [StringDataMember(code = GNParameterCode.DisplayName, minLength = 5, maxLength = 32, mustNonNull = true)]
1036
- public string displayName;
1032
+ }
1037
1033
 
1038
- [BooleanDataMember(code = GNParameterCode.UniqueDisplayName, defaultValue = false, isOptional = true)]
1039
- public bool? uniqueDisplayName;
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
- public class ServerSetDisplayNameRequestData : SetDisplayNameRequestData
1044
- {
1045
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
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
- public class AdminSetDisplayNameRequestData : ServerSetDisplayNameRequestData
1051
- {
1052
- }
1050
+ [StringDataMember(code = GNParameterCode.Password, minLength = 6, maxLength = 64, mustNonNull = true)]
1051
+ public string password;
1053
1052
 
1054
- public class SetEmailRequestData
1055
- {
1056
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1057
- public string? userId;
1053
+ }
1058
1054
 
1059
- [StringDataMember(code = GNParameterCode.Email, minLength = 5, maxLength = 128, mustNonNull = true)]
1060
- public string email;
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
- public class ServerSetEmailRequestData : SetEmailRequestData
1065
- {
1066
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
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
- public class AdminSetEmailRequestData : ServerSetEmailRequestData
1072
- {
1073
- }
1071
+ [NumberDataMember(code = GNParameterCode.Type, mustInt = true)]
1072
+ public long type;
1074
1073
 
1075
- public class SetPlayerBanRequestData
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
- [NumberDataMember(code = GNParameterCode.TsExpire)]
1081
- public double tsExpire;
1077
+ }
1082
1078
 
1083
- [StringDataMember(code = GNParameterCode.Reason)]
1084
- public string reason;
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
- public class ServerSetPlayerBanRequestData : SetPlayerBanRequestData
1089
- {
1090
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
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
- public class AdminSetPlayerBanRequestData : ServerSetPlayerBanRequestData
1096
- {
1097
- }
1095
+ [StringDataMember(code = GNParameterCode.CountryCode, minLength = 2, maxLength = 32)]
1096
+ public string countryCode;
1098
1097
 
1099
- public class SetPlayerCurrencyRequestData
1100
- {
1101
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1102
- public string? userId;
1098
+ }
1103
1099
 
1104
- [GNArrayDataMember(code = GNParameterCode.PlayerCurrencies, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(PlayerCurrencyParam))]
1105
- public List<PlayerCurrencyParam> playerCurrencyParams;
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
- public class ServerSetPlayerCurrencyRequestData : SetPlayerCurrencyRequestData
1110
- {
1111
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
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
- public class AdminSetPlayerCurrencyRequestData : ServerSetPlayerCurrencyRequestData
1117
- {
1118
- }
1116
+ [GNArrayDataMember(code = GNParameterCode.CustomDatas, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(CustomDataParam))]
1117
+ public List<CustomDataParam> customData;
1119
1118
 
1120
- public class SetPlayerDataRequestData
1121
- {
1122
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1123
- public string? userId;
1119
+ }
1124
1120
 
1125
- [GNArrayDataMember(code = GNParameterCode.PlayerDatas, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(PlayerDataParam))]
1126
- public List<PlayerDataParam> playerDataParams;
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
- public class ServerSetPlayerDataRequestData : SetPlayerDataRequestData
1131
- {
1132
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
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
- public class AdminSetPlayerDataRequestData : ServerSetPlayerDataRequestData
1138
- {
1139
- }
1137
+ [StringDataMember(code = GNParameterCode.DisplayName, minLength = 5, maxLength = 32, mustNonNull = true)]
1138
+ public string displayName;
1140
1139
 
1141
- public class SetPlayerStatisticsRequestData
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
- [GNArrayDataMember(code = GNParameterCode.PlayerStatistics, minLength = 1, maxLength = 32, mustNonNull = true, elementCls = typeof(PlayerStatisticsParam))]
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
- public class ServerSetPlayerStatisticsRequestData : SetPlayerStatisticsRequestData
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
- public class AdminSetPlayerStatisticsRequestData : ServerSetPlayerStatisticsRequestData
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
- public class SetTagRequestData
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
- [StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
1168
- public string key;
1164
+ }
1169
1165
 
1170
- [StringDataMember(code = GNParameterCode.Value, minLength = 2, maxLength = 32, mustNonNull = true)]
1171
- public string value;
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
- public class ServerSetTagRequestData : SetTagRequestData
1176
- {
1177
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
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
- public class AdminSetTagRequestData : ServerSetTagRequestData
1183
- {
1184
- }
1182
+ [NumberDataMember(code = GNParameterCode.TsExpire)]
1183
+ public double tsExpire;
1185
1184
 
1186
- public class SetTsLastLoginRequestData
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
- public class ServerSetTsLastLoginRequestData : SetTsLastLoginRequestData
1194
- {
1195
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
1196
- public new string userId;
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
- public class AdminSetTsLastLoginRequestData : ServerSetTsLastLoginRequestData
1201
- {
1202
- }
1197
+ public class AdminSetPlayerBanRequestData : ServerSetPlayerBanRequestData
1198
+ {
1199
+ }
1203
1200
 
1204
- public class UnlinkAccountRequestData
1205
- {
1206
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1207
- public string? userId;
1201
+ public class SetPlayerCurrencyRequestData
1202
+ {
1203
+ [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1204
+ public string? userId;
1208
1205
 
1209
- [StringDataMember(code = GNParameterCode.Username, minLength = 6, maxLength = 32, mustNonNull = true)]
1210
- public string username;
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
- public class ServerUnlinkAccountRequestData : UnlinkAccountRequestData
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
- public class AdminUnlinkAccountRequestData : ServerUnlinkAccountRequestData
1222
- {
1223
- }
1219
+ }
1224
1220
 
1225
- public class UnlinkAndroidDeviceIdRequestData
1226
- {
1227
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1228
- public string? userId;
1221
+ public class AdminSetPlayerCurrencyRequestData : ServerSetPlayerCurrencyRequestData
1222
+ {
1223
+ }
1229
1224
 
1230
- [StringDataMember(code = GNParameterCode.AndroidDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
1231
- public string androidDeviceId;
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
- public class ServerUnlinkAndroidDeviceIdRequestData : UnlinkAndroidDeviceIdRequestData
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
- public class AdminUnlinkAndroidDeviceIdRequestData : ServerUnlinkAndroidDeviceIdRequestData
1243
- {
1244
- }
1240
+ }
1245
1241
 
1246
- public class UnlinkAppleRequestData
1247
- {
1248
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1249
- public string? userId;
1242
+ public class AdminSetPlayerDataRequestData : ServerSetPlayerDataRequestData
1243
+ {
1244
+ }
1250
1245
 
1251
- [StringDataMember(code = GNParameterCode.AppleId, minLength = 6, maxLength = 64, mustNonNull = true)]
1252
- public string appleId;
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
- public class ServerUnlinkAppleRequestData : UnlinkAppleRequestData
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
- public class AdminUnlinkAppleRequestData : ServerUnlinkAppleRequestData
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
- public class UnlinkCustomDeviceIdRequestData
1268
- {
1269
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1270
- public string? userId;
1264
+ }
1271
1265
 
1272
- [StringDataMember(code = GNParameterCode.CustomDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
1273
- public string customDeviceId;
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
- public class ServerUnlinkCustomDeviceIdRequestData : UnlinkCustomDeviceIdRequestData
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
- public class AdminUnlinkCustomDeviceIdRequestData : ServerUnlinkCustomDeviceIdRequestData
1285
- {
1286
- }
1281
+ }
1287
1282
 
1288
- public class UnlinkCustomIdRequestData
1289
- {
1290
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1291
- public string? userId;
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
- [StringDataMember(code = GNParameterCode.CustomId, minLength = 6, maxLength = 64, mustNonNull = true)]
1294
- public string customId;
1288
+ }
1295
1289
 
1296
- }
1290
+ public class AdminSetTagRequestData : ServerSetTagRequestData
1291
+ {
1292
+ }
1297
1293
 
1298
- public class ServerUnlinkCustomIdRequestData : UnlinkCustomIdRequestData
1299
- {
1300
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, mustNonNull = true)]
1301
- public new string userId;
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
- public class AdminUnlinkCustomIdRequestData : ServerUnlinkCustomIdRequestData
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
- public class UnlinkEditorDeviceIdRequestData
1310
- {
1311
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1312
- public string? userId;
1306
+ }
1313
1307
 
1314
- [StringDataMember(code = GNParameterCode.EditorDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
1315
- public string editorDeviceId;
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
- public class ServerUnlinkEditorDeviceIdRequestData : UnlinkEditorDeviceIdRequestData
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
- public class AdminUnlinkEditorDeviceIdRequestData : ServerUnlinkEditorDeviceIdRequestData
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
- public class UnlinkFacebookRequestData
1331
- {
1332
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1333
- public string? userId;
1327
+ }
1334
1328
 
1335
- [StringDataMember(code = GNParameterCode.FacebookId, minLength = 6, maxLength = 64, mustNonNull = true)]
1336
- public string facebookId;
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
- public class ServerUnlinkFacebookRequestData : UnlinkFacebookRequestData
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
- public class AdminUnlinkFacebookRequestData : ServerUnlinkFacebookRequestData
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
- public class UnlinkGenericServiceRequestData
1352
- {
1353
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1354
- public string? userId;
1348
+ }
1355
1349
 
1356
- [StringDataMember(code = GNParameterCode.ServiceName, minLength = 6, maxLength = 32, mustNonNull = true)]
1357
- public string serviceName;
1350
+ public class AdminUnlinkAndroidDeviceIdRequestData : ServerUnlinkAndroidDeviceIdRequestData
1351
+ {
1352
+ }
1358
1353
 
1359
- [StringDataMember(code = GNParameterCode.ServiceId, minLength = 6, maxLength = 64, mustNonNull = true)]
1360
- public string serviceId;
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
- public class ServerUnlinkGenericServiceRequestData : UnlinkGenericServiceRequestData
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
- public class AdminUnlinkGenericServiceRequestData : ServerUnlinkGenericServiceRequestData
1372
- {
1373
- }
1369
+ }
1374
1370
 
1375
- public class UnlinkGoogleRequestData
1376
- {
1377
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1378
- public string? userId;
1371
+ public class AdminUnlinkAppleRequestData : ServerUnlinkAppleRequestData
1372
+ {
1373
+ }
1379
1374
 
1380
- [StringDataMember(code = GNParameterCode.GoogleId, minLength = 6, maxLength = 32, mustNonNull = true)]
1381
- public string googleId;
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
- public class ServerUnlinkGoogleRequestData : UnlinkGoogleRequestData
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
- public class AdminUnlinkGoogleRequestData : ServerUnlinkGoogleRequestData
1393
- {
1394
- }
1390
+ }
1395
1391
 
1396
- public class UnlinkiOSDeviceIdRequestData
1397
- {
1398
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1399
- public string? userId;
1392
+ public class AdminUnlinkCustomDeviceIdRequestData : ServerUnlinkCustomDeviceIdRequestData
1393
+ {
1394
+ }
1400
1395
 
1401
- [StringDataMember(code = GNParameterCode.iOSDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
1402
- public string iOSDeviceId;
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
- public class ServerUnlinkiOSDeviceIdRequestData : UnlinkiOSDeviceIdRequestData
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
- public class AdminUnlinkiOSDeviceIdRequestData : ServerUnlinkiOSDeviceIdRequestData
1414
- {
1415
- }
1411
+ }
1416
1412
 
1417
- public class UnlinkLinuxDeviceIdRequestData
1418
- {
1419
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1420
- public string? userId;
1413
+ public class AdminUnlinkCustomIdRequestData : ServerUnlinkCustomIdRequestData
1414
+ {
1415
+ }
1421
1416
 
1422
- [StringDataMember(code = GNParameterCode.LinuxDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
1423
- public string linuxDeviceId;
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
- public class ServerUnlinkLinuxDeviceIdRequestData : UnlinkLinuxDeviceIdRequestData
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
- public class AdminUnlinkLinuxDeviceIdRequestData : ServerUnlinkLinuxDeviceIdRequestData
1435
- {
1436
- }
1432
+ }
1437
1433
 
1438
- public class UnlinkMacOSDeviceIdRequestData
1439
- {
1440
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1441
- public string? userId;
1434
+ public class AdminUnlinkEditorDeviceIdRequestData : ServerUnlinkEditorDeviceIdRequestData
1435
+ {
1436
+ }
1442
1437
 
1443
- [StringDataMember(code = GNParameterCode.MacOSDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
1444
- public string macOSDeviceId;
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
- public class ServerUnlinkMacOSDeviceIdRequestData : UnlinkMacOSDeviceIdRequestData
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
- public class AdminUnlinkMacOSDeviceIdRequestData : ServerUnlinkMacOSDeviceIdRequestData
1456
- {
1457
- }
1453
+ }
1458
1454
 
1459
- public class UnlinkWindowsDeviceIdRequestData
1460
- {
1461
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1462
- public string? userId;
1455
+ public class AdminUnlinkFacebookRequestData : ServerUnlinkFacebookRequestData
1456
+ {
1457
+ }
1463
1458
 
1464
- [StringDataMember(code = GNParameterCode.WindowsDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
1465
- public string windowsDeviceId;
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
- public class ServerUnlinkWindowsDeviceIdRequestData : UnlinkWindowsDeviceIdRequestData
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
- public class AdminUnlinkWindowsDeviceIdRequestData : ServerUnlinkWindowsDeviceIdRequestData
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
- public class UnlinkWindowsPhoneDeviceIdRequestData
1481
- {
1482
- [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1483
- public string? userId;
1477
+ }
1484
1478
 
1485
- [StringDataMember(code = GNParameterCode.WindowsPhoneDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
1486
- public string windowsPhoneDeviceId;
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
- public class ServerUnlinkWindowsPhoneDeviceIdRequestData : UnlinkWindowsPhoneDeviceIdRequestData
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
- public class AdminUnlinkWindowsPhoneDeviceIdRequestData : ServerUnlinkWindowsPhoneDeviceIdRequestData
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
- public partial class MasterPlayerModels
1504
- {
1505
- public class CustomDataParam
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
- [DataMember(code = GNParameterCode.Value)]
1511
- public object value;
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
- public class InfoRequestParam
1516
- {
1517
- [BooleanDataMember(code = GNParameterCode.External, isOptional = true, defaultValue = false)]
1518
- public bool? external;
1512
+ }
1519
1513
 
1520
- [BooleanDataMember(code = GNParameterCode.Segments, isOptional = true, defaultValue = false)]
1521
- public bool? segments;
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
- [BooleanDataMember(code = GNParameterCode.CustomDatas, isOptional = true, defaultValue = false)]
1524
- public bool? customDatas;
1519
+ }
1525
1520
 
1526
- [BooleanDataMember(code = GNParameterCode.DisplayName, isOptional = true, defaultValue = false)]
1527
- public bool? displayName;
1521
+ public class AdminUnlinkGooglePlayGameServiceRequestData : ServerUnlinkGooglePlayGameServiceRequestData
1522
+ {
1523
+ }
1528
1524
 
1529
- [BooleanDataMember(code = GNParameterCode.Avatar, isOptional = true, defaultValue = false)]
1530
- public bool? avatar;
1525
+ public class UnlinkGameCenterRequestData
1526
+ {
1527
+ [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1528
+ public string? userId;
1531
1529
 
1532
- [BooleanDataMember(code = GNParameterCode.TsCreate, isOptional = true, defaultValue = false)]
1533
- public bool? tsCreate;
1530
+ [StringDataMember(code = GNParameterCode.PlayerId, minLength = 6, maxLength = 64, mustNonNull = true)]
1531
+ public string playerId;
1534
1532
 
1535
- [BooleanDataMember(code = GNParameterCode.Tags, isOptional = true, defaultValue = false)]
1536
- public bool? tags;
1533
+ }
1537
1534
 
1538
- [BooleanDataMember(code = GNParameterCode.PlayerBan, isOptional = true, defaultValue = false)]
1539
- public bool? playerBan;
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
- [BooleanDataMember(code = GNParameterCode.PlayerCurrencies, isOptional = true, defaultValue = false)]
1542
- public bool? playerCurrencies;
1540
+ }
1543
1541
 
1544
- [BooleanDataMember(code = GNParameterCode.PlayerStatistics, isOptional = true, defaultValue = false)]
1545
- public bool? playerStatistics;
1542
+ public class AdminUnlinkGameCenterRequestData : ServerUnlinkGameCenterRequestData
1543
+ {
1544
+ }
1546
1545
 
1547
- [BooleanDataMember(code = GNParameterCode.PlayerDatas, isOptional = true, defaultValue = false)]
1548
- public bool? playerDatas;
1546
+ public class UnlinkiOSDeviceIdRequestData
1547
+ {
1548
+ [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1549
+ public string? userId;
1549
1550
 
1550
- [BooleanDataMember(code = GNParameterCode.IpAddressCreate, isOptional = true, defaultValue = false)]
1551
- public bool? ipAddressCreate;
1551
+ [StringDataMember(code = GNParameterCode.iOSDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
1552
+ public string iOSDeviceId;
1552
1553
 
1553
- [BooleanDataMember(code = GNParameterCode.CountryCode, isOptional = true, defaultValue = false)]
1554
- public bool? countryCode;
1554
+ }
1555
1555
 
1556
- [BooleanDataMember(code = GNParameterCode.Email, isOptional = true, defaultValue = false)]
1557
- public bool? email;
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
- [BooleanDataMember(code = GNParameterCode.TsLastLogin, isOptional = true, defaultValue = false)]
1560
- public bool? tsLastLogin;
1561
+ }
1561
1562
 
1562
- [GNArrayDataMember(code = GNParameterCode.PlayerDataKeys, isOptional = true, elementCls = typeof(string))]
1563
- public List<string>? playerDataKeys;
1563
+ public class AdminUnlinkiOSDeviceIdRequestData : ServerUnlinkiOSDeviceIdRequestData
1564
+ {
1565
+ }
1564
1566
 
1565
- [GNArrayDataMember(code = GNParameterCode.PlayerCurrencyKeys, isOptional = true, elementCls = typeof(string))]
1566
- public List<string>? playerCurrencyKeys;
1567
+ public class UnlinkLinuxDeviceIdRequestData
1568
+ {
1569
+ [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1570
+ public string? userId;
1567
1571
 
1568
- [GNArrayDataMember(code = GNParameterCode.PlayerStatisticsKeys, isOptional = true, elementCls = typeof(string))]
1569
- public List<string>? playerStatisticsKeys;
1572
+ [StringDataMember(code = GNParameterCode.LinuxDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
1573
+ public string linuxDeviceId;
1570
1574
 
1571
- [GNArrayDataMember(code = GNParameterCode.CustomDataKeys, isOptional = true, elementCls = typeof(string))]
1572
- public List<string>? customDataKeys;
1575
+ }
1573
1576
 
1574
- [GNArrayDataMember(code = GNParameterCode.TagKeys, isOptional = true, elementCls = typeof(string))]
1575
- public List<string>? tagKeys;
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
- public class PlayerCurrencyParam
1580
- {
1581
- [StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
1582
- public string key;
1584
+ public class AdminUnlinkLinuxDeviceIdRequestData : ServerUnlinkLinuxDeviceIdRequestData
1585
+ {
1586
+ }
1583
1587
 
1584
- [NumberDataMember(code = GNParameterCode.Amount)]
1585
- public double amount;
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
- public class PlayerDataParam
1590
- {
1591
- [StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
1592
- public string key;
1596
+ }
1593
1597
 
1594
- [DataMember(code = GNParameterCode.Value)]
1595
- public object value;
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
- public class PlayerStatisticsParam
1600
- {
1601
- [StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
1602
- public string key;
1605
+ public class AdminUnlinkMacOSDeviceIdRequestData : ServerUnlinkMacOSDeviceIdRequestData
1606
+ {
1607
+ }
1603
1608
 
1604
- [NumberDataMember(code = GNParameterCode.Value)]
1605
- public double value;
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
- public partial class MasterPlayerModels
1612
- {
1613
- public class ExternalItem
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
- [StringDataMember(code = GNParameterCode.AndroidDeviceId, isOptional = true)]
1621
- public string? androidDeviceId;
1624
+ }
1622
1625
 
1623
- [StringDataMember(code = GNParameterCode.iOSDeviceId, isOptional = true)]
1624
- public string? iOSDeviceId;
1626
+ public class AdminUnlinkWindowsDeviceIdRequestData : ServerUnlinkWindowsDeviceIdRequestData
1627
+ {
1628
+ }
1625
1629
 
1626
- [StringDataMember(code = GNParameterCode.WindowsPhoneDeviceId, isOptional = true)]
1627
- public string? windowsPhoneDeviceId;
1630
+ public class UnlinkWindowsPhoneDeviceIdRequestData
1631
+ {
1632
+ [StringDataMember(code = GNParameterCode.UserId, minLength = 10, maxLength = 10, isOptional = true)]
1633
+ public string? userId;
1628
1634
 
1629
- [StringDataMember(code = GNParameterCode.WindowsDeviceId, isOptional = true)]
1630
- public string? windowsDeviceId;
1635
+ [StringDataMember(code = GNParameterCode.WindowsPhoneDeviceId, minLength = 6, maxLength = 64, mustNonNull = true)]
1636
+ public string windowsPhoneDeviceId;
1631
1637
 
1632
- [StringDataMember(code = GNParameterCode.LinuxDeviceId, isOptional = true)]
1633
- public string? linuxDeviceId;
1638
+ }
1634
1639
 
1635
- [StringDataMember(code = GNParameterCode.MacOSDeviceId, isOptional = true)]
1636
- public string? macOSDeviceId;
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
- [StringDataMember(code = GNParameterCode.EditorDeviceId, isOptional = true)]
1639
- public string? editorDeviceId;
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
- public class Account
1644
- {
1645
- [StringDataMember(code = GNParameterCode.Username, isOptional = true)]
1646
- public string? username;
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
- public class Custom
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
- public class Apple
1658
- {
1659
- [StringDataMember(code = GNParameterCode.AppleId)]
1660
- public string appleId;
2093
+ [StringDataMember(code = GNParameterCode.DisplayName)]
2094
+ public string displayName;
1661
2095
 
1662
- [StringDataMember(code = GNParameterCode.Email)]
1663
- public string email;
2096
+ [StringDataMember(code = GNParameterCode.Email)]
2097
+ public string email;
1664
2098
 
1665
- }
2099
+ }
1666
2100
 
1667
- public class Google
1668
- {
1669
- [StringDataMember(code = GNParameterCode.GoogleId)]
1670
- public string googleId;
2101
+ public class GooglePlayGameService
2102
+ {
2103
+ [StringDataMember(code = GNParameterCode.PlayerId)]
2104
+ public string playerId;
1671
2105
 
1672
- [StringDataMember(code = GNParameterCode.DisplayName)]
1673
- public string displayName;
2106
+ [StringDataMember(code = GNParameterCode.DisplayName)]
2107
+ public string displayName;
1674
2108
 
1675
- [StringDataMember(code = GNParameterCode.Email)]
1676
- public string email;
2109
+ [StringDataMember(code = GNParameterCode.Email)]
2110
+ public string email;
1677
2111
 
1678
- }
2112
+ }
1679
2113
 
1680
- public class Facebook
1681
- {
1682
- [StringDataMember(code = GNParameterCode.FacebookId)]
1683
- public string facebookId;
2114
+ public class GameCenter
2115
+ {
2116
+ [StringDataMember(code = GNParameterCode.PlayerId)]
2117
+ public string playerId;
1684
2118
 
1685
- [StringDataMember(code = GNParameterCode.DisplayName)]
1686
- public string displayName;
2119
+ [StringDataMember(code = GNParameterCode.DisplayName)]
2120
+ public string displayName;
1687
2121
 
1688
- [StringDataMember(code = GNParameterCode.Email)]
1689
- public string email;
2122
+ [StringDataMember(code = GNParameterCode.Email)]
2123
+ public string email;
1690
2124
 
1691
- }
2125
+ }
1692
2126
 
1693
- public class GenericService
1694
- {
1695
- [StringDataMember(code = GNParameterCode.ServiceName)]
1696
- public string serviceName;
2127
+ public class Facebook
2128
+ {
2129
+ [StringDataMember(code = GNParameterCode.FacebookId)]
2130
+ public string facebookId;
1697
2131
 
1698
- [StringDataMember(code = GNParameterCode.ServiceId)]
1699
- public string serviceId;
2132
+ [StringDataMember(code = GNParameterCode.DisplayName)]
2133
+ public string displayName;
1700
2134
 
1701
- }
2135
+ [StringDataMember(code = GNParameterCode.Email)]
2136
+ public string email;
1702
2137
 
1703
- [GNHashtableDataMember(code = GNParameterCode.Device, isOptional = true)]
1704
- public Device? device;
2138
+ }
1705
2139
 
1706
- [GNHashtableDataMember(code = GNParameterCode.Account, isOptional = true)]
1707
- public Account? account;
2140
+ public class GenericService
2141
+ {
2142
+ [StringDataMember(code = GNParameterCode.ServiceName)]
2143
+ public string serviceName;
1708
2144
 
1709
- [GNHashtableDataMember(code = GNParameterCode.Custom, isOptional = true)]
1710
- public Custom? custom;
2145
+ [StringDataMember(code = GNParameterCode.ServiceId)]
2146
+ public string serviceId;
1711
2147
 
1712
- [GNHashtableDataMember(code = GNParameterCode.Apple, isOptional = true)]
1713
- public Apple? apple;
2148
+ }
1714
2149
 
1715
- [GNHashtableDataMember(code = GNParameterCode.Google, isOptional = true)]
1716
- public Google? google;
2150
+ [GNHashtableDataMember(code = GNParameterCode.Device, isOptional = true)]
2151
+ public Device? device;
1717
2152
 
1718
- [GNHashtableDataMember(code = GNParameterCode.Facebook, isOptional = true)]
1719
- public Facebook? facebook;
2153
+ [GNHashtableDataMember(code = GNParameterCode.Account, isOptional = true)]
2154
+ public Account? account;
1720
2155
 
1721
- [GNArrayDataMember(code = GNParameterCode.GenericService, isOptional = true, elementCls = typeof(GenericService))]
1722
- public List<GenericService> genericServices;
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
- public class InfoResponseParameters
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
- public ExternalItem? external;
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
- [GNArrayDataMember(code = GNParameterCode.Segments, isOptional = true, elementCls = typeof(string))]
1732
- public List<string>? segments;
2206
+ [GNHashtableDataMember(code = GNParameterCode.Avatar, isOptional = true)]
2207
+ public GenericModels.AvatarItem? avatar;
1733
2208
 
1734
- [GNArrayDataMember(code = GNParameterCode.CustomDatas, isOptional = true, elementCls = typeof(GenericModels.DataItem))]
1735
- public List<GenericModels.DataItem>? customDatas;
2209
+ [NumberDataMember(code = GNParameterCode.TsCreate, isOptional = true)]
2210
+ public long? tsCreate;
1736
2211
 
1737
- [StringDataMember(code = GNParameterCode.DisplayName, isOptional = true)]
1738
- public string? displayName;
2212
+ [GNArrayDataMember(code = GNParameterCode.Tags, isOptional = true, elementCls = typeof(GenericModels.TagItem))]
2213
+ public List<GenericModels.TagItem>? tags;
1739
2214
 
1740
- [GNHashtableDataMember(code = GNParameterCode.Avatar, isOptional = true)]
1741
- public GenericModels.AvatarItem? avatar;
2215
+ [GNHashtableDataMember(code = GNParameterCode.PlayerBan, isOptional = true)]
2216
+ public GenericModels.BanItem? playerBan;
1742
2217
 
1743
- [NumberDataMember(code = GNParameterCode.TsCreate, isOptional = true)]
1744
- public long? tsCreate;
2218
+ [GNArrayDataMember(code = GNParameterCode.PlayerDatas, isOptional = true, elementCls = typeof(GenericModels.DataItem))]
2219
+ public List<GenericModels.DataItem>? playerDatas;
1745
2220
 
1746
- [GNArrayDataMember(code = GNParameterCode.Tags, isOptional = true, elementCls = typeof(GenericModels.TagItem))]
1747
- public List<GenericModels.TagItem>? tags;
2221
+ [GNArrayDataMember(code = GNParameterCode.PlayerCurrencies, isOptional = true, elementCls = typeof(GenericModels.CurrencyItem))]
2222
+ public List<GenericModels.CurrencyItem>? playerCurrencies;
1748
2223
 
1749
- [GNHashtableDataMember(code = GNParameterCode.PlayerBan, isOptional = true)]
1750
- public GenericModels.BanItem? playerBan;
2224
+ [GNArrayDataMember(code = GNParameterCode.PlayerStatistics, isOptional = true, elementCls = typeof(GenericModels.StatisticsItem))]
2225
+ public List<GenericModels.StatisticsItem>? playerStatistics;
1751
2226
 
1752
- [GNArrayDataMember(code = GNParameterCode.PlayerDatas, isOptional = true, elementCls = typeof(GenericModels.DataItem))]
1753
- public List<GenericModels.DataItem>? playerDatas;
2227
+ [NumberDataMember(code = GNParameterCode.TsLastLogin, isOptional = true)]
2228
+ public long? tsLastLogin;
1754
2229
 
1755
- [GNArrayDataMember(code = GNParameterCode.PlayerCurrencies, isOptional = true, elementCls = typeof(GenericModels.CurrencyItem))]
1756
- public List<GenericModels.CurrencyItem>? playerCurrencies;
2230
+ [StringDataMember(code = GNParameterCode.IpAddressCreate, isOptional = true)]
2231
+ public string? ipAddressCreate;
1757
2232
 
1758
- [GNArrayDataMember(code = GNParameterCode.PlayerStatistics, isOptional = true, elementCls = typeof(GenericModels.StatisticsItem))]
1759
- public List<GenericModels.StatisticsItem>? playerStatistics;
2233
+ [StringDataMember(code = GNParameterCode.CountryCode, isOptional = true)]
2234
+ public string? countryCode;
1760
2235
 
1761
- [NumberDataMember(code = GNParameterCode.TsLastLogin, isOptional = true)]
1762
- public long? tsLastLogin;
2236
+ [StringDataMember(code = GNParameterCode.Email, isOptional = true)]
2237
+ public string? email;
1763
2238
 
1764
- [StringDataMember(code = GNParameterCode.IpAddressCreate, isOptional = true)]
1765
- public string? ipAddressCreate;
2239
+ [GNArrayDataMember(code = GNParameterCode.PushNotifications, isOptional = true, elementCls = typeof(MasterPlayerModels.PushNotificationItem))]
2240
+ public List<MasterPlayerModels.PushNotificationItem>? pushNotifications;
1766
2241
 
1767
- [StringDataMember(code = GNParameterCode.CountryCode, isOptional = true)]
1768
- public string? countryCode;
2242
+ }
1769
2243
 
1770
- [StringDataMember(code = GNParameterCode.Email, isOptional = true)]
1771
- public string? email;
2244
+ public class MasterPlayerResponseData
2245
+ {
2246
+ [GNHashtableDataMember(code = GNParameterCode.InfoResponseParameters)]
2247
+ public InfoResponseParameters infoResponseParameters;
1772
2248
 
1773
- }
2249
+ }
1774
2250
 
1775
- public class MasterPlayerResponseData
2251
+ public class MasterPlayerWithUserIdResponseData : MasterPlayerResponseData
1776
2252
  {
1777
- [GNHashtableDataMember(code = GNParameterCode.InfoResponseParameters)]
1778
- public InfoResponseParameters infoResponseParameters;
2253
+ [StringDataMember(code = GNParameterCode.UserId)]
2254
+ public string userId;
1779
2255
 
1780
- }
2256
+ }
1781
2257
 
1782
- public class MasterPlayerWithUserIdResponseData : MasterPlayerResponseData
1783
- {
1784
- [StringDataMember(code = GNParameterCode.UserId)]
1785
- public string userId;
2258
+ public class MasterPlayerWithAppleIdResponseData : MasterPlayerWithUserIdResponseData
2259
+ {
2260
+ [StringDataMember(code = GNParameterCode.AppleId)]
2261
+ public string appleId;
1786
2262
 
1787
- }
2263
+ }
1788
2264
 
1789
- public class MasterPlayerWithAppleIdResponseData : MasterPlayerWithUserIdResponseData
1790
- {
1791
- [StringDataMember(code = GNParameterCode.AppleId)]
1792
- public string appleId;
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
- public class GetPlayersWithAppleResponseData
2272
+ public class MasterPlayersWithUserIdResponseData
1797
2273
  {
1798
- [GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerWithAppleIdResponseData))]
1799
- public List<MasterPlayerWithAppleIdResponseData> results;
2274
+ [GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerWithUserIdResponseData))]
2275
+ public List<MasterPlayerWithUserIdResponseData> results;
1800
2276
 
1801
- }
2277
+ }
1802
2278
 
1803
- public class MasterPlayersWithUserIdResponseData
1804
- {
1805
- [GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerWithUserIdResponseData))]
1806
- public List<MasterPlayerWithUserIdResponseData> results;
2279
+ public class MasterPlayerWithFacebookIdResponseData : MasterPlayerWithUserIdResponseData
2280
+ {
2281
+ [StringDataMember(code = GNParameterCode.FacebookId)]
2282
+ public string facebookId;
1807
2283
 
1808
- }
2284
+ }
1809
2285
 
1810
- public class MasterPlayerWithFacebookIdResponseData : MasterPlayerWithUserIdResponseData
1811
- {
1812
- [StringDataMember(code = GNParameterCode.FacebookId)]
1813
- public string facebookId;
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
- public class GetPlayersWithFacebookResponseData
2293
+ public class MasterPlayerWithGenericServiceIdResponseData : MasterPlayerWithUserIdResponseData
1818
2294
  {
1819
- [GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerWithFacebookIdResponseData))]
1820
- public List<MasterPlayerWithFacebookIdResponseData> results;
2295
+ [StringDataMember(code = GNParameterCode.ServiceId)]
2296
+ public string serviceId;
1821
2297
 
1822
- }
2298
+ }
1823
2299
 
1824
- public class MasterPlayerWithGenericServiceIdResponseData : MasterPlayerWithUserIdResponseData
1825
- {
1826
- [StringDataMember(code = GNParameterCode.ServiceId)]
1827
- public string serviceId;
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
- public class GetPlayersWithGenericServiceResponseData
1832
- {
1833
- [GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerWithGenericServiceIdResponseData))]
1834
- public List<MasterPlayerWithGenericServiceIdResponseData> results;
2307
+ public class MasterPlayerWithGoogleIdResponseData : MasterPlayerWithUserIdResponseData
2308
+ {
2309
+ [StringDataMember(code = GNParameterCode.GoogleId)]
2310
+ public string googleId;
1835
2311
 
1836
- }
2312
+ }
1837
2313
 
1838
- public class MasterPlayerWithGoogleIdResponseData : MasterPlayerWithUserIdResponseData
1839
- {
1840
- [StringDataMember(code = GNParameterCode.GoogleId)]
1841
- public string googleId;
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
- public class GetPlayersWithGoogleResponseData
1846
- {
1847
- [GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerWithGoogleIdResponseData))]
1848
- public List<MasterPlayerWithGoogleIdResponseData> results;
2321
+ public class MasterPlayerWithPlayerIdResponseData : MasterPlayerWithUserIdResponseData
2322
+ {
2323
+ [StringDataMember(code = GNParameterCode.PlayerId)]
2324
+ public string playerId;
1849
2325
 
1850
- }
2326
+ }
1851
2327
 
1852
- public class MasterPlayerLeaderboardResponseData : MasterPlayerWithUserIdResponseData
1853
- {
1854
- [NumberDataMember(code = GNParameterCode.Position)]
1855
- public int position;
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
- public class GetStatisticsLeaderboardResponseData
2335
+ public class GetPlayersWithGameCenterResponseData
1860
2336
  {
1861
- [GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerLeaderboardResponseData))]
1862
- public List<MasterPlayerLeaderboardResponseData> results;
2337
+ [GNArrayDataMember(code = GNParameterCode.Results, elementCls = typeof(MasterPlayerWithPlayerIdResponseData))]
2338
+ public List<MasterPlayerWithPlayerIdResponseData> results;
1863
2339
 
1864
- }
2340
+ }
1865
2341
 
1866
- public class GetCurrencyLeaderboardRequestData
1867
- {
1868
- [StringDataMember(code = GNParameterCode.Key, minLength = 2, maxLength = 32, mustNonNull = true)]
1869
- public string key;
2342
+ public class MasterPlayerLeaderboardResponseData : MasterPlayerWithUserIdResponseData
2343
+ {
2344
+ [NumberDataMember(code = GNParameterCode.Position)]
2345
+ public int position;
1870
2346
 
1871
- [GNHashtableDataMember(code = GNParameterCode.InfoRequestParam, mustNonNull = true)]
1872
- public InfoRequestParam infoRequestParam;
2347
+ [NumberDataMember(code = GNParameterCode.BackupValue, isOptional = true)]
2348
+ public double? backupValue;
1873
2349
 
1874
- [NumberDataMember(code = GNParameterCode.Skip, defaultValue = 0, minValue = 0, mustInt = true, isOptional = true)]
1875
- public long? skip;
2350
+ }
1876
2351
 
1877
- [NumberDataMember(code = GNParameterCode.Limit, defaultValue = 10, minValue = 5, maxValue = 100, mustInt = true, isOptional = true)]
1878
- public long? limit;
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
- [BooleanDataMember(code = GNParameterCode.LoadFromCache, defaultValue = true, isOptional = true)]
1881
- public bool? loadFromCache;
2360
+ [NumberDataMember(code = GNParameterCode.Log)]
2361
+ public string log;
1882
2362
 
1883
- }
2363
+ [NumberDataMember(code = GNParameterCode.Key)]
2364
+ public string key;
1884
2365
 
1885
- public class ServerGetCurrencyLeaderboardRequestData : GetCurrencyLeaderboardRequestData
1886
- {
1887
- }
2366
+ [NumberDataMember(code = GNParameterCode.Amount)]
2367
+ public double amount;
1888
2368
 
1889
- public class AdminGetCurrencyLeaderboardRequestData : ServerGetCurrencyLeaderboardRequestData
1890
- {
1891
- }
2369
+ [NumberDataMember(code = GNParameterCode.StartValue)]
2370
+ public double startValue;
1892
2371
 
1893
- public class GetCurrencyLeaderboardResponseData
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
- public class EmptyResponseData
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
  }