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