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