@xmobitea/gn-typescript-client 2.6.13 → 2.6.14

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 (286) hide show
  1. package/AGENTS.md +37 -0
  2. package/README.MD +420 -1
  3. package/dist/gearn.js.client.js +25056 -1056
  4. package/dist/gearn.js.client.min.js +1 -1
  5. package/dist/index.d.ts +30 -0
  6. package/dist/index.js +24236 -212
  7. package/dist/runtime/GNNetwork.d.ts +687 -3
  8. package/dist/runtime/GNNetworkAuthenticateApi.d.ts +327 -0
  9. package/dist/runtime/GNNetworkCharacterPlayerApi.d.ts +1026 -0
  10. package/dist/runtime/GNNetworkCloudScriptApi.d.ts +141 -0
  11. package/dist/runtime/GNNetworkContentApi.d.ts +243 -0
  12. package/dist/runtime/GNNetworkDashboardApi.d.ts +221 -0
  13. package/dist/runtime/GNNetworkGamePlayerApi.d.ts +1033 -0
  14. package/dist/runtime/GNNetworkGroupApi.d.ts +783 -0
  15. package/dist/runtime/GNNetworkInventoryApi.d.ts +673 -0
  16. package/dist/runtime/GNNetworkMasterPlayerApi.d.ts +1614 -6
  17. package/dist/runtime/GNNetworkMultiplayerApi.d.ts +234 -0
  18. package/dist/runtime/GNNetworkStoreInventoryApi.d.ts +309 -0
  19. package/dist/runtime/common/Action0.d.ts +30 -0
  20. package/dist/runtime/common/Action1.d.ts +32 -0
  21. package/dist/runtime/common/Action2.d.ts +21 -0
  22. package/dist/runtime/common/Action3.d.ts +16 -0
  23. package/dist/runtime/common/Action4.d.ts +17 -0
  24. package/dist/runtime/common/GNData.d.ts +368 -0
  25. package/dist/runtime/config/GNServerSettings.d.ts +442 -12
  26. package/dist/runtime/constant/Commands.d.ts +80 -0
  27. package/dist/runtime/constant/EventCode.d.ts +48 -0
  28. package/dist/runtime/constant/OperationCode.d.ts +74 -1
  29. package/dist/runtime/constant/ReturnCode.d.ts +72 -0
  30. package/dist/runtime/constant/enumType/ExecuteResponseStatus.d.ts +31 -0
  31. package/dist/runtime/constant/enumType/FriendStatus.d.ts +39 -0
  32. package/dist/runtime/constant/enumType/GoogleLoginType.d.ts +23 -0
  33. package/dist/runtime/constant/enumType/GroupStatus.d.ts +32 -0
  34. package/dist/runtime/constant/enumType/InvalidMemberType.d.ts +75 -0
  35. package/dist/runtime/constant/enumType/ItemType.d.ts +23 -0
  36. package/dist/runtime/constant/enumType/MatchStatus.d.ts +30 -0
  37. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.d.ts +24 -0
  38. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.d.ts +34 -0
  39. package/dist/runtime/constant/enumType/OwnerType.d.ts +40 -0
  40. package/dist/runtime/constant/enumType/PermissionDataItem.d.ts +22 -0
  41. package/dist/runtime/constant/enumType/PushPlatformType.d.ts +18 -0
  42. package/dist/runtime/constant/enumType/RequestRole.d.ts +32 -0
  43. package/dist/runtime/constant/enumType/RequestType.d.ts +70 -0
  44. package/dist/runtime/constant/enumType/StoreItemType.d.ts +21 -0
  45. package/dist/runtime/constant/enumType/StoreReceiveType.d.ts +30 -0
  46. package/dist/runtime/constant/errorCode/ErrorCode.d.ts +190 -8
  47. package/dist/runtime/constant/parameterCode/ParameterCode.d.ts +35 -5
  48. package/dist/runtime/entity/DataMember.d.ts +338 -0
  49. package/dist/runtime/entity/GNMetadata.d.ts +101 -0
  50. package/dist/runtime/entity/InvalidMember.d.ts +28 -0
  51. package/dist/runtime/entity/OperationEvent.d.ts +49 -0
  52. package/dist/runtime/entity/OperationRequest.d.ts +108 -0
  53. package/dist/runtime/entity/OperationResponse.d.ts +110 -0
  54. package/dist/runtime/entity/models/AuthenticateModels.d.ts +115 -0
  55. package/dist/runtime/entity/models/AuthenticateRequestModels.d.ts +131 -0
  56. package/dist/runtime/entity/models/AuthenticateResponseModels.d.ts +131 -0
  57. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +625 -1
  58. package/dist/runtime/entity/models/CharacterPlayerRequestModels.d.ts +972 -0
  59. package/dist/runtime/entity/models/CharacterPlayerResponseModels.d.ts +332 -0
  60. package/dist/runtime/entity/models/CloudScriptModels.d.ts +109 -0
  61. package/dist/runtime/entity/models/CloudScriptRequestModels.d.ts +107 -0
  62. package/dist/runtime/entity/models/CloudScriptResponseModels.d.ts +46 -0
  63. package/dist/runtime/entity/models/ContentModels.d.ts +124 -0
  64. package/dist/runtime/entity/models/ContentRequestModels.d.ts +152 -0
  65. package/dist/runtime/entity/models/ContentResponseModels.d.ts +58 -0
  66. package/dist/runtime/entity/models/DashboardModels.d.ts +371 -8
  67. package/dist/runtime/entity/models/DashboardRequestModels.d.ts +172 -0
  68. package/dist/runtime/entity/models/DashboardResponseModels.d.ts +170 -0
  69. package/dist/runtime/entity/models/GamePlayerModels.d.ts +644 -1
  70. package/dist/runtime/entity/models/GamePlayerRequestModels.d.ts +959 -0
  71. package/dist/runtime/entity/models/GamePlayerResponseModels.d.ts +333 -1
  72. package/dist/runtime/entity/models/GenericModels.d.ts +94 -0
  73. package/dist/runtime/entity/models/GroupModels.d.ts +484 -2
  74. package/dist/runtime/entity/models/GroupRequestModels.d.ts +737 -0
  75. package/dist/runtime/entity/models/GroupResponseModels.d.ts +254 -0
  76. package/dist/runtime/entity/models/InventoryModels.d.ts +415 -0
  77. package/dist/runtime/entity/models/InventoryRequestModels.d.ts +629 -0
  78. package/dist/runtime/entity/models/InventoryResponseModels.d.ts +218 -0
  79. package/dist/runtime/entity/models/MasterPlayerModels.d.ts +1065 -3
  80. package/dist/runtime/entity/models/MasterPlayerRequestModels.d.ts +1560 -6
  81. package/dist/runtime/entity/models/MasterPlayerResponseModels.d.ts +532 -1
  82. package/dist/runtime/entity/models/MultiplayerModels.d.ts +199 -0
  83. package/dist/runtime/entity/models/MultiplayerRequestModels.d.ts +196 -0
  84. package/dist/runtime/entity/models/MultiplayerResponseModels.d.ts +74 -0
  85. package/dist/runtime/entity/models/StoreInventoryModels.d.ts +262 -0
  86. package/dist/runtime/entity/models/StoreInventoryRequestModels.d.ts +268 -0
  87. package/dist/runtime/entity/models/StoreInventoryResponseModels.d.ts +98 -0
  88. package/dist/runtime/entity/request/CustomOperationRequest.d.ts +99 -0
  89. package/dist/runtime/entity/response/CustomOperationResponse.d.ts +118 -0
  90. package/dist/runtime/entity/response/GetAuthInfoResponse.d.ts +53 -0
  91. package/dist/runtime/entity/response/HealthCheckResponse.d.ts +56 -0
  92. package/dist/runtime/entity/response/UploadFileResponse.d.ts +19 -0
  93. package/dist/runtime/helper/CodeHelper.d.ts +122 -0
  94. package/dist/runtime/helper/ConverterService.d.ts +74 -0
  95. package/dist/runtime/helper/EnumUtility.d.ts +63 -0
  96. package/dist/runtime/helper/GNSupport.d.ts +64 -4
  97. package/dist/runtime/helper/GNUtils.d.ts +54 -0
  98. package/dist/runtime/helper/MessagePackConverterService.d.ts +48 -0
  99. package/dist/runtime/helper/OperationHelper.d.ts +51 -0
  100. package/dist/runtime/helper/StorageService.d.ts +48 -8
  101. package/dist/runtime/logger/GNDebug.d.ts +117 -0
  102. package/dist/runtime/networking/AuthenticateStatus.d.ts +64 -0
  103. package/dist/runtime/networking/IPeer.d.ts +83 -0
  104. package/dist/runtime/networking/NetworkingPeer.d.ts +256 -1
  105. package/dist/runtime/networking/OperationPending.d.ts +112 -0
  106. package/dist/runtime/networking/PeerBase.d.ts +231 -0
  107. package/dist/runtime/networking/handler/IServerEventHandler.d.ts +84 -0
  108. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.d.ts +69 -0
  109. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.d.ts +49 -0
  110. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.d.ts +50 -0
  111. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.d.ts +41 -0
  112. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.d.ts +47 -0
  113. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.d.ts +46 -0
  114. package/dist/runtime/networking/http/HttpPeer.d.ts +173 -0
  115. package/dist/runtime/networking/http/NetworkingHttpPeerBase.d.ts +87 -0
  116. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.d.ts +113 -0
  117. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.d.ts +145 -0
  118. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.d.ts +198 -0
  119. package/dist/runtime/networking/socket/SocketPeer.d.ts +155 -0
  120. package/dist/runtime/typescript/ServiceUpdate.d.ts +46 -0
  121. package/docs/AI_CHEATSHEET.md +211 -0
  122. package/docs/COOKBOOK.md +912 -0
  123. package/docs/RULES.md +307 -0
  124. package/docs/ai-manifest.json +725 -0
  125. package/docs/guides/AUTHENTICATE.md +246 -0
  126. package/docs/guides/CHARACTER_PLAYER.md +439 -0
  127. package/docs/guides/CLOUDSCRIPT.md +335 -0
  128. package/docs/guides/COCOS_CREATOR_INTEGRATION.md +150 -0
  129. package/docs/guides/CONTENT.md +291 -0
  130. package/docs/guides/DASHBOARD.md +262 -0
  131. package/docs/guides/GAME_PLAYER.md +473 -0
  132. package/docs/guides/GROUP.md +412 -0
  133. package/docs/guides/INVENTORY.md +375 -0
  134. package/docs/guides/MASTER_PLAYER.md +458 -0
  135. package/docs/guides/MULTIPLAYER.md +303 -0
  136. package/docs/guides/STORE_INVENTORY.md +313 -0
  137. package/docs/llms-full.txt +43 -0
  138. package/docs/reference/API_AUTHENTICATE.md +75 -0
  139. package/docs/reference/API_CHARACTER_PLAYER.md +226 -0
  140. package/docs/reference/API_CLOUDSCRIPT.md +82 -0
  141. package/docs/reference/API_CONTENT.md +88 -0
  142. package/docs/reference/API_DASHBOARD.md +82 -0
  143. package/docs/reference/API_GAME_PLAYER.md +223 -0
  144. package/docs/reference/API_GROUP.md +187 -0
  145. package/docs/reference/API_INDEX.md +57 -0
  146. package/docs/reference/API_INVENTORY.md +169 -0
  147. package/docs/reference/API_MASTER_PLAYER.md +323 -0
  148. package/docs/reference/API_MULTIPLAYER.md +97 -0
  149. package/docs/reference/API_STORE_INVENTORY.md +109 -0
  150. package/docs/reference/CONFIG.md +107 -0
  151. package/docs/reference/DTO_INDEX.md +2543 -0
  152. package/docs/reference/ENUMS.md +433 -0
  153. package/docs/reference/ERROR_HANDLING.md +159 -0
  154. package/docs/reference/EVENTS.md +188 -0
  155. package/docs/reference/PERMISSION_RULES.md +55 -0
  156. package/docs/reference/dto/AUTHENTICATE.md +619 -0
  157. package/docs/reference/dto/CHARACTER_PLAYER.md +3686 -0
  158. package/docs/reference/dto/CLOUDSCRIPT.md +400 -0
  159. package/docs/reference/dto/CONTENT.md +548 -0
  160. package/docs/reference/dto/DASHBOARD.md +1980 -0
  161. package/docs/reference/dto/GAME_PLAYER.md +3631 -0
  162. package/docs/reference/dto/GENERIC.md +151 -0
  163. package/docs/reference/dto/GROUP.md +2842 -0
  164. package/docs/reference/dto/INVENTORY.md +2385 -0
  165. package/docs/reference/dto/MASTER_PLAYER.md +6024 -0
  166. package/docs/reference/dto/MULTIPLAYER.md +850 -0
  167. package/docs/reference/dto/STORE_INVENTORY.md +1262 -0
  168. package/llms.txt +47 -0
  169. package/package.json +12 -3
  170. package/GNServerSettings.debug.json +0 -21
  171. package/docs/COCOS_CREATOR_INTEGRATION.md +0 -116
  172. package/examples/cocos-creator/GearNExample.ts.txt +0 -176
  173. package/srcSwift/Package.swift +0 -32
  174. package/srcSwift/Sources/GearN/runtime/GNNetwork.swift +0 -530
  175. package/srcSwift/Sources/GearN/runtime/GNNetworkAuthenticateApi.swift +0 -178
  176. package/srcSwift/Sources/GearN/runtime/GNNetworkCharacterPlayerApi.swift +0 -1162
  177. package/srcSwift/Sources/GearN/runtime/GNNetworkCloudScriptApi.swift +0 -154
  178. package/srcSwift/Sources/GearN/runtime/GNNetworkContentApi.swift +0 -208
  179. package/srcSwift/Sources/GearN/runtime/GNNetworkDashboardApi.swift +0 -240
  180. package/srcSwift/Sources/GearN/runtime/GNNetworkGamePlayerApi.swift +0 -1369
  181. package/srcSwift/Sources/GearN/runtime/GNNetworkGroupApi.swift +0 -1100
  182. package/srcSwift/Sources/GearN/runtime/GNNetworkInventoryApi.swift +0 -937
  183. package/srcSwift/Sources/GearN/runtime/GNNetworkMasterPlayerApi.swift +0 -2323
  184. package/srcSwift/Sources/GearN/runtime/GNNetworkMultiplayerApi.swift +0 -298
  185. package/srcSwift/Sources/GearN/runtime/GNNetworkStoreInventoryApi.swift +0 -397
  186. package/srcSwift/Sources/GearN/runtime/common/Action0.swift +0 -3
  187. package/srcSwift/Sources/GearN/runtime/common/Action1.swift +0 -3
  188. package/srcSwift/Sources/GearN/runtime/common/Action2.swift +0 -3
  189. package/srcSwift/Sources/GearN/runtime/common/Action3.swift +0 -3
  190. package/srcSwift/Sources/GearN/runtime/common/Action4.swift +0 -3
  191. package/srcSwift/Sources/GearN/runtime/common/GNArray.swift +0 -204
  192. package/srcSwift/Sources/GearN/runtime/common/GNData.swift +0 -108
  193. package/srcSwift/Sources/GearN/runtime/common/GNHashtable.swift +0 -200
  194. package/srcSwift/Sources/GearN/runtime/config/GNServerSettings.swift +0 -95
  195. package/srcSwift/Sources/GearN/runtime/constant/Commands.swift +0 -28
  196. package/srcSwift/Sources/GearN/runtime/constant/EventCode.swift +0 -10
  197. package/srcSwift/Sources/GearN/runtime/constant/OperationCode.swift +0 -252
  198. package/srcSwift/Sources/GearN/runtime/constant/ReturnCode.swift +0 -19
  199. package/srcSwift/Sources/GearN/runtime/constant/enumType/ExecuteResponseStatus.swift +0 -9
  200. package/srcSwift/Sources/GearN/runtime/constant/enumType/FriendStatus.swift +0 -8
  201. package/srcSwift/Sources/GearN/runtime/constant/enumType/GoogleLoginType.swift +0 -6
  202. package/srcSwift/Sources/GearN/runtime/constant/enumType/GroupStatus.swift +0 -8
  203. package/srcSwift/Sources/GearN/runtime/constant/enumType/InvalidMemberType.swift +0 -19
  204. package/srcSwift/Sources/GearN/runtime/constant/enumType/ItemType.swift +0 -6
  205. package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingMemberStatus.swift +0 -7
  206. package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingTicketStatus.swift +0 -9
  207. package/srcSwift/Sources/GearN/runtime/constant/enumType/OwnerType.swift +0 -10
  208. package/srcSwift/Sources/GearN/runtime/constant/enumType/PermissionDataItem.swift +0 -6
  209. package/srcSwift/Sources/GearN/runtime/constant/enumType/PushPlatformType.swift +0 -6
  210. package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestRole.swift +0 -7
  211. package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestType.swift +0 -16
  212. package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreItemType.swift +0 -6
  213. package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreReceiveType.swift +0 -9
  214. package/srcSwift/Sources/GearN/runtime/constant/errorCode/ErrorCode.swift +0 -58
  215. package/srcSwift/Sources/GearN/runtime/constant/parameterCode/ParameterCode.swift +0 -672
  216. package/srcSwift/Sources/GearN/runtime/entity/DataMember.swift +0 -196
  217. package/srcSwift/Sources/GearN/runtime/entity/GNMetadata.swift +0 -9
  218. package/srcSwift/Sources/GearN/runtime/entity/InvalidMember.swift +0 -11
  219. package/srcSwift/Sources/GearN/runtime/entity/OperationEvent.swift +0 -38
  220. package/srcSwift/Sources/GearN/runtime/entity/OperationHelper.swift +0 -28
  221. package/srcSwift/Sources/GearN/runtime/entity/OperationRequest.swift +0 -62
  222. package/srcSwift/Sources/GearN/runtime/entity/OperationResponse.swift +0 -98
  223. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateModels.swift +0 -351
  224. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateRequestModels.swift +0 -81
  225. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateResponseModels.swift +0 -108
  226. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerModels.swift +0 -1045
  227. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerRequestModels.swift +0 -821
  228. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerResponseModels.swift +0 -588
  229. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptModels.swift +0 -187
  230. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptRequestModels.swift +0 -84
  231. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptResponseModels.swift +0 -59
  232. package/srcSwift/Sources/GearN/runtime/entity/models/ContentModels.swift +0 -195
  233. package/srcSwift/Sources/GearN/runtime/entity/models/ContentRequestModels.swift +0 -116
  234. package/srcSwift/Sources/GearN/runtime/entity/models/ContentResponseModels.swift +0 -81
  235. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardModels.swift +0 -426
  236. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardRequestModels.swift +0 -160
  237. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardResponseModels.swift +0 -82
  238. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerModels.swift +0 -1334
  239. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerRequestModels.swift +0 -643
  240. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerResponseModels.swift +0 -213
  241. package/srcSwift/Sources/GearN/runtime/entity/models/GenericModels.swift +0 -171
  242. package/srcSwift/Sources/GearN/runtime/entity/models/GroupModels.swift +0 -850
  243. package/srcSwift/Sources/GearN/runtime/entity/models/GroupRequestModels.swift +0 -485
  244. package/srcSwift/Sources/GearN/runtime/entity/models/GroupResponseModels.swift +0 -165
  245. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryModels.swift +0 -679
  246. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryRequestModels.swift +0 -413
  247. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryResponseModels.swift +0 -141
  248. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerModels.swift +0 -378
  249. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerRequestModels.swift +0 -147
  250. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerResponseModels.swift +0 -318
  251. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerModels.swift +0 -319
  252. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerRequestModels.swift +0 -125
  253. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerResponseModels.swift +0 -45
  254. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryModels.swift +0 -633
  255. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryRequestModels.swift +0 -173
  256. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryResponseModels.swift +0 -61
  257. package/srcSwift/Sources/GearN/runtime/entity/request/CustomOperationRequest.swift +0 -42
  258. package/srcSwift/Sources/GearN/runtime/entity/response/CustomOperationResponse.swift +0 -49
  259. package/srcSwift/Sources/GearN/runtime/entity/response/GetAuthInfoResponse.swift +0 -43
  260. package/srcSwift/Sources/GearN/runtime/entity/response/HealthCheckResponse.swift +0 -86
  261. package/srcSwift/Sources/GearN/runtime/entity/response/UploadFileResponse.swift +0 -15
  262. package/srcSwift/Sources/GearN/runtime/helper/CodeHelper.swift +0 -107
  263. package/srcSwift/Sources/GearN/runtime/helper/ConverterService.swift +0 -98
  264. package/srcSwift/Sources/GearN/runtime/helper/EnumUtility.swift +0 -34
  265. package/srcSwift/Sources/GearN/runtime/helper/GNSupport.swift +0 -41
  266. package/srcSwift/Sources/GearN/runtime/helper/GNUtils.swift +0 -66
  267. package/srcSwift/Sources/GearN/runtime/helper/MessagePackConverterService.swift +0 -21
  268. package/srcSwift/Sources/GearN/runtime/helper/StorageService.swift +0 -29
  269. package/srcSwift/Sources/GearN/runtime/logger/GNDebug.swift +0 -33
  270. package/srcSwift/Sources/GearN/runtime/networking/AuthenticateStatus.swift +0 -24
  271. package/srcSwift/Sources/GearN/runtime/networking/IPeer.swift +0 -8
  272. package/srcSwift/Sources/GearN/runtime/networking/NetworkingPeer.swift +0 -368
  273. package/srcSwift/Sources/GearN/runtime/networking/OperationPending.swift +0 -81
  274. package/srcSwift/Sources/GearN/runtime/networking/PeerBase.swift +0 -228
  275. package/srcSwift/Sources/GearN/runtime/networking/handler/IServerEventHandler.swift +0 -20
  276. package/srcSwift/Sources/GearN/runtime/networking/http/HttpPeer.swift +0 -226
  277. package/srcSwift/Sources/GearN/runtime/networking/http/HttpTypes.swift +0 -24
  278. package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingHttpPeerBase.swift +0 -13
  279. package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingPeerUrlSession.swift +0 -125
  280. package/srcSwift/Sources/GearN/runtime/networking/request/NetRequest.swift +0 -19
  281. package/srcSwift/Sources/GearN/runtime/networking/response/NetResponse.swift +0 -13
  282. package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingPeerSocketIOClient.swift +0 -244
  283. package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingSocketPeerBase.swift +0 -59
  284. package/srcSwift/Sources/GearN/runtime/networking/socket/SocketPeer.swift +0 -136
  285. package/tsconfig-build.cocos.json +0 -31
  286. package/webpack.config.cocos.mjs +0 -78
@@ -0,0 +1,3631 @@
1
+ # DTO Reference: GamePlayer
2
+
3
+ Game-player profile, friend/group relation, currency, statistics, segment, tag, social identity.
4
+
5
+ Related API reference: [API_GAME_PLAYER.md](../API_GAME_PLAYER.md).
6
+
7
+ Mỗi section bên dưới là 1 class DTO trong namespace `<Models>`. Field table cho biết: tên field, TS type, có `required` hay không (suy từ decorator `mustNonNull` / `isOptional` / dấu `?` trong declaration), doc comment, và ràng buộc length/range/default nếu có.
8
+
9
+ > **Cách dùng**: khi gọi `*Async()`, bạn truyền object literal matching các field required (+ optional nếu cần). SDK sẽ serialize field dựa trên decorator `@<Type>DataMember({ code })`. Response class expose `responseData` là instance của class `*ResponseData` tương ứng, đọc theo field name dưới đây.
10
+
11
+ ## Danh sách
12
+
13
+ - **GamePlayerModels** (from `GamePlayerModels.ts`)
14
+ - [InfoRequestParam](#inforequestparam)
15
+ - [CustomDataParam](#customdataparam)
16
+ - [GroupMemberParam](#groupmemberparam)
17
+ - [PlayerCurrencyParam](#playercurrencyparam)
18
+ - [PlayerDataParam](#playerdataparam)
19
+ - [PlayerStatisticsParam](#playerstatisticsparam)
20
+ - [AddPlayerFriendRequestData](#addplayerfriendrequestdata)
21
+ - [ServerAddPlayerFriendRequestData](#serveraddplayerfriendrequestdata)
22
+ - [AdminAddPlayerFriendRequestData](#adminaddplayerfriendrequestdata)
23
+ - [AddSegmentRequestData](#addsegmentrequestdata)
24
+ - [ServerAddSegmentRequestData](#serveraddsegmentrequestdata)
25
+ - [AdminAddSegmentRequestData](#adminaddsegmentrequestdata)
26
+ - [GetAvatarRequestData](#getavatarrequestdata)
27
+ - [ServerGetAvatarRequestData](#servergetavatarrequestdata)
28
+ - [AdminGetAvatarRequestData](#admingetavatarrequestdata)
29
+ - [GetCountryCodeRequestData](#getcountrycoderequestdata)
30
+ - [ServerGetCountryCodeRequestData](#servergetcountrycoderequestdata)
31
+ - [AdminGetCountryCodeRequestData](#admingetcountrycoderequestdata)
32
+ - [GetCustomDataRequestData](#getcustomdatarequestdata)
33
+ - [ServerGetCustomDataRequestData](#servergetcustomdatarequestdata)
34
+ - [AdminGetCustomDataRequestData](#admingetcustomdatarequestdata)
35
+ - [GetDisplayNameRequestData](#getdisplaynamerequestdata)
36
+ - [ServerGetDisplayNameRequestData](#servergetdisplaynamerequestdata)
37
+ - [AdminGetDisplayNameRequestData](#admingetdisplaynamerequestdata)
38
+ - [GetFriendStatisticsLeaderboardAroundPlayerRequestData](#getfriendstatisticsleaderboardaroundplayerrequestdata)
39
+ - [ServerGetFriendStatisticsLeaderboardAroundPlayerRequestData](#servergetfriendstatisticsleaderboardaroundplayerrequestdata)
40
+ - [AdminGetFriendStatisticsLeaderboardAroundPlayerRequestData](#admingetfriendstatisticsleaderboardaroundplayerrequestdata)
41
+ - [GetFriendStatisticsLeaderboardRequestData](#getfriendstatisticsleaderboardrequestdata)
42
+ - [ServerGetFriendStatisticsLeaderboardRequestData](#servergetfriendstatisticsleaderboardrequestdata)
43
+ - [AdminGetFriendStatisticsLeaderboardRequestData](#admingetfriendstatisticsleaderboardrequestdata)
44
+ - [GetIpAddressCreateRequestData](#getipaddresscreaterequestdata)
45
+ - [ServerGetIpAddressCreateRequestData](#servergetipaddresscreaterequestdata)
46
+ - [AdminGetIpAddressCreateRequestData](#admingetipaddresscreaterequestdata)
47
+ - [GetOnlineStatusRequestData](#getonlinestatusrequestdata)
48
+ - [ServerGetOnlineStatusRequestData](#servergetonlinestatusrequestdata)
49
+ - [AdminGetOnlineStatusRequestData](#admingetonlinestatusrequestdata)
50
+ - [GetPlayerBanRequestData](#getplayerbanrequestdata)
51
+ - [ServerGetPlayerBanRequestData](#servergetplayerbanrequestdata)
52
+ - [AdminGetPlayerBanRequestData](#admingetplayerbanrequestdata)
53
+ - [GetPlayerCharacterRequestData](#getplayercharacterrequestdata)
54
+ - [ServerGetPlayerCharacterRequestData](#servergetplayercharacterrequestdata)
55
+ - [AdminGetPlayerCharacterRequestData](#admingetplayercharacterrequestdata)
56
+ - [GetPlayerCurrencyRequestData](#getplayercurrencyrequestdata)
57
+ - [ServerGetPlayerCurrencyRequestData](#servergetplayercurrencyrequestdata)
58
+ - [AdminGetPlayerCurrencyRequestData](#admingetplayercurrencyrequestdata)
59
+ - [GetPlayerDataRequestData](#getplayerdatarequestdata)
60
+ - [ServerGetPlayerDataRequestData](#servergetplayerdatarequestdata)
61
+ - [AdminGetPlayerDataRequestData](#admingetplayerdatarequestdata)
62
+ - [GetPlayerFriendRequestData](#getplayerfriendrequestdata)
63
+ - [ServerGetPlayerFriendRequestData](#servergetplayerfriendrequestdata)
64
+ - [AdminGetPlayerFriendRequestData](#admingetplayerfriendrequestdata)
65
+ - [GetPlayerGroupRequestData](#getplayergrouprequestdata)
66
+ - [ServerGetPlayerGroupRequestData](#servergetplayergrouprequestdata)
67
+ - [AdminGetPlayerGroupRequestData](#admingetplayergrouprequestdata)
68
+ - [GetPlayerInformationRequestData](#getplayerinformationrequestdata)
69
+ - [ServerGetPlayerInformationRequestData](#servergetplayerinformationrequestdata)
70
+ - [AdminGetPlayerInformationRequestData](#admingetplayerinformationrequestdata)
71
+ - [GetPlayerInventoryRequestData](#getplayerinventoryrequestdata)
72
+ - [ServerGetPlayerInventoryRequestData](#servergetplayerinventoryrequestdata)
73
+ - [AdminGetPlayerInventoryRequestData](#admingetplayerinventoryrequestdata)
74
+ - [GetPlayerStatisticsRequestData](#getplayerstatisticsrequestdata)
75
+ - [ServerGetPlayerStatisticsRequestData](#servergetplayerstatisticsrequestdata)
76
+ - [AdminGetPlayerStatisticsRequestData](#admingetplayerstatisticsrequestdata)
77
+ - [GetPlayersWithDisplayNameRequestData](#getplayerswithdisplaynamerequestdata)
78
+ - [ServerGetPlayersWithDisplayNameRequestData](#servergetplayerswithdisplaynamerequestdata)
79
+ - [AdminGetPlayersWithDisplayNameRequestData](#admingetplayerswithdisplaynamerequestdata)
80
+ - [GetPlayersWithSegmentRequestData](#getplayerswithsegmentrequestdata)
81
+ - [ServerGetPlayersWithSegmentRequestData](#servergetplayerswithsegmentrequestdata)
82
+ - [AdminGetPlayersWithSegmentRequestData](#admingetplayerswithsegmentrequestdata)
83
+ - [GetPlayersWithTagRequestData](#getplayerswithtagrequestdata)
84
+ - [ServerGetPlayersWithTagRequestData](#servergetplayerswithtagrequestdata)
85
+ - [AdminGetPlayersWithTagRequestData](#admingetplayerswithtagrequestdata)
86
+ - [GetSegmentRequestData](#getsegmentrequestdata)
87
+ - [ServerGetSegmentRequestData](#servergetsegmentrequestdata)
88
+ - [AdminGetSegmentRequestData](#admingetsegmentrequestdata)
89
+ - [GetStatisticsLeaderboardAroundPlayerRequestData](#getstatisticsleaderboardaroundplayerrequestdata)
90
+ - [ServerGetStatisticsLeaderboardAroundPlayerRequestData](#servergetstatisticsleaderboardaroundplayerrequestdata)
91
+ - [AdminGetStatisticsLeaderboardAroundPlayerRequestData](#admingetstatisticsleaderboardaroundplayerrequestdata)
92
+ - [GetStatisticsLeaderboardRequestData](#getstatisticsleaderboardrequestdata)
93
+ - [ServerGetStatisticsLeaderboardRequestData](#servergetstatisticsleaderboardrequestdata)
94
+ - [AdminGetStatisticsLeaderboardRequestData](#admingetstatisticsleaderboardrequestdata)
95
+ - [GetCreateLeaderboardRequestData](#getcreateleaderboardrequestdata)
96
+ - [ServerGetCreateLeaderboardRequestData](#servergetcreateleaderboardrequestdata)
97
+ - [AdminGetCreateLeaderboardRequestData](#admingetcreateleaderboardrequestdata)
98
+ - [GetTagRequestData](#gettagrequestdata)
99
+ - [ServerGetTagRequestData](#servergettagrequestdata)
100
+ - [AdminGetTagRequestData](#admingettagrequestdata)
101
+ - [GetTsCreateRequestData](#gettscreaterequestdata)
102
+ - [ServerGetTsCreateRequestData](#servergettscreaterequestdata)
103
+ - [AdminGetTsCreateRequestData](#admingettscreaterequestdata)
104
+ - [GetTsLastLoginRequestData](#gettslastloginrequestdata)
105
+ - [ServerGetTsLastLoginRequestData](#servergettslastloginrequestdata)
106
+ - [AdminGetTsLastLoginRequestData](#admingettslastloginrequestdata)
107
+ - [CreateGroupRequestData](#creategrouprequestdata)
108
+ - [ServerCreateGroupRequestData](#servercreategrouprequestdata)
109
+ - [AdminCreateGroupRequestData](#admincreategrouprequestdata)
110
+ - [CreatePlayerCharacterRequestData](#createplayercharacterrequestdata)
111
+ - [ServerCreatePlayerCharacterRequestData](#servercreateplayercharacterrequestdata)
112
+ - [AdminCreatePlayerCharacterRequestData](#admincreateplayercharacterrequestdata)
113
+ - [CreatePlayerItemRequestData](#createplayeritemrequestdata)
114
+ - [ServerCreatePlayerItemRequestData](#servercreateplayeritemrequestdata)
115
+ - [AdminCreatePlayerItemRequestData](#admincreateplayeritemrequestdata)
116
+ - [JoinGroupRequestData](#joingrouprequestdata)
117
+ - [ServerJoinGroupRequestData](#serverjoingrouprequestdata)
118
+ - [AdminJoinGroupRequestData](#adminjoingrouprequestdata)
119
+ - [LeaveGroupRequestData](#leavegrouprequestdata)
120
+ - [ServerLeaveGroupRequestData](#serverleavegrouprequestdata)
121
+ - [AdminLeaveGroupRequestData](#adminleavegrouprequestdata)
122
+ - [RemovePlayerCharacterRequestData](#removeplayercharacterrequestdata)
123
+ - [ServerRemovePlayerCharacterRequestData](#serverremoveplayercharacterrequestdata)
124
+ - [AdminRemovePlayerCharacterRequestData](#adminremoveplayercharacterrequestdata)
125
+ - [RemovePlayerFriendRequestData](#removeplayerfriendrequestdata)
126
+ - [ServerRemovePlayerFriendRequestData](#serverremoveplayerfriendrequestdata)
127
+ - [AdminRemovePlayerFriendRequestData](#adminremoveplayerfriendrequestdata)
128
+ - [RemovePlayerItemRequestData](#removeplayeritemrequestdata)
129
+ - [ServerRemovePlayerItemRequestData](#serverremoveplayeritemrequestdata)
130
+ - [AdminRemovePlayerItemRequestData](#adminremoveplayeritemrequestdata)
131
+ - [RemoveSegmentRequestData](#removesegmentrequestdata)
132
+ - [ServerRemoveSegmentRequestData](#serverremovesegmentrequestdata)
133
+ - [AdminRemoveSegmentRequestData](#adminremovesegmentrequestdata)
134
+ - [RemoveTagRequestData](#removetagrequestdata)
135
+ - [ServerRemoveTagRequestData](#serverremovetagrequestdata)
136
+ - [AdminRemoveTagRequestData](#adminremovetagrequestdata)
137
+ - [SetAvatarRequestData](#setavatarrequestdata)
138
+ - [ServerSetAvatarRequestData](#serversetavatarrequestdata)
139
+ - [AdminSetAvatarRequestData](#adminsetavatarrequestdata)
140
+ - [SetCountryCodeRequestData](#setcountrycoderequestdata)
141
+ - [ServerSetCountryCodeRequestData](#serversetcountrycoderequestdata)
142
+ - [AdminSetCountryCodeRequestData](#adminsetcountrycoderequestdata)
143
+ - [SetCustomDataRequestData](#setcustomdatarequestdata)
144
+ - [ServerSetCustomDataRequestData](#serversetcustomdatarequestdata)
145
+ - [AdminSetCustomDataRequestData](#adminsetcustomdatarequestdata)
146
+ - [SetDisplayNameRequestData](#setdisplaynamerequestdata)
147
+ - [ServerSetDisplayNameRequestData](#serversetdisplaynamerequestdata)
148
+ - [AdminSetDisplayNameRequestData](#adminsetdisplaynamerequestdata)
149
+ - [SetPlayerBanRequestData](#setplayerbanrequestdata)
150
+ - [ServerSetPlayerBanRequestData](#serversetplayerbanrequestdata)
151
+ - [AdminSetPlayerBanRequestData](#adminsetplayerbanrequestdata)
152
+ - [ChangePlayerCurrencyRequestData](#changeplayercurrencyrequestdata)
153
+ - [ServerChangePlayerCurrencyRequestData](#serverchangeplayercurrencyrequestdata)
154
+ - [AdminChangePlayerCurrencyRequestData](#adminchangeplayercurrencyrequestdata)
155
+ - [SetPlayerDataRequestData](#setplayerdatarequestdata)
156
+ - [ServerSetPlayerDataRequestData](#serversetplayerdatarequestdata)
157
+ - [AdminSetPlayerDataRequestData](#adminsetplayerdatarequestdata)
158
+ - [ChangePlayerStatisticsRequestData](#changeplayerstatisticsrequestdata)
159
+ - [ServerChangePlayerStatisticsRequestData](#serverchangeplayerstatisticsrequestdata)
160
+ - [AdminChangePlayerStatisticsRequestData](#adminchangeplayerstatisticsrequestdata)
161
+ - [SetTagRequestData](#settagrequestdata)
162
+ - [ServerSetTagRequestData](#serversettagrequestdata)
163
+ - [AdminSetTagRequestData](#adminsettagrequestdata)
164
+ - [GetCurrencyLogRequestData](#getcurrencylogrequestdata)
165
+ - [ServerGetCurrencyLogRequestData](#servergetcurrencylogrequestdata)
166
+ - [AdminGetCurrencyLogRequestData](#admingetcurrencylogrequestdata)
167
+ - [GetStatisticsLogRequestData](#getstatisticslogrequestdata)
168
+ - [ServerGetStatisticsLogRequestData](#servergetstatisticslogrequestdata)
169
+ - [AdminGetStatisticsLogRequestData](#admingetstatisticslogrequestdata)
170
+ - [InfoResponseParameters](#inforesponseparameters)
171
+ - [GamePlayerResponseData](#gameplayerresponsedata)
172
+ - [GamePlayerWithUserIdResponseData](#gameplayerwithuseridresponsedata)
173
+ - [GamePlayerLeaderboardResponseData](#gameplayerleaderboardresponsedata)
174
+ - [GamePlayerLogResponseData](#gameplayerlogresponsedata)
175
+ - [GetStatisticsLeaderboardResponseData](#getstatisticsleaderboardresponsedata)
176
+ - [GetCurrencyLeaderboardResponseData](#getcurrencyleaderboardresponsedata)
177
+ - [GetLastLoginLeaderboardResponseData](#getlastloginleaderboardresponsedata)
178
+ - [GetCreateLeaderboardResponseData](#getcreateleaderboardresponsedata)
179
+ - [GamePlayersWithUserIdResponseData](#gameplayerswithuseridresponsedata)
180
+ - [OnlineStatusResponseData](#onlinestatusresponsedata)
181
+ - [GetCurrencyLeaderboardRequestData](#getcurrencyleaderboardrequestdata)
182
+ - [ServerGetCurrencyLeaderboardRequestData](#servergetcurrencyleaderboardrequestdata)
183
+ - [AdminGetCurrencyLeaderboardRequestData](#admingetcurrencyleaderboardrequestdata)
184
+ - [GetLastLoginLeaderboardRequestData](#getlastloginleaderboardrequestdata)
185
+ - [ServerGetLastLoginLeaderboardRequestData](#servergetlastloginleaderboardrequestdata)
186
+ - [AdminGetLastLoginLeaderboardRequestData](#admingetlastloginleaderboardrequestdata)
187
+ - [GetStatisticsLogResponseData](#getstatisticslogresponsedata)
188
+ - [GetCurrencyLogResponseData](#getcurrencylogresponsedata)
189
+ - [EmptyResponseData](#emptyresponsedata)
190
+ - **GamePlayerRequestModels** (from `GamePlayerRequestModels.ts`)
191
+ - [AddPlayerFriendOperationRequest](#addplayerfriendoperationrequest)
192
+ - [ServerAddPlayerFriendOperationRequest](#serveraddplayerfriendoperationrequest)
193
+ - [AdminAddPlayerFriendOperationRequest](#adminaddplayerfriendoperationrequest)
194
+ - [AddSegmentOperationRequest](#addsegmentoperationrequest)
195
+ - [ServerAddSegmentOperationRequest](#serveraddsegmentoperationrequest)
196
+ - [AdminAddSegmentOperationRequest](#adminaddsegmentoperationrequest)
197
+ - [GetAvatarOperationRequest](#getavataroperationrequest)
198
+ - [ServerGetAvatarOperationRequest](#servergetavataroperationrequest)
199
+ - [AdminGetAvatarOperationRequest](#admingetavataroperationrequest)
200
+ - [GetCountryCodeOperationRequest](#getcountrycodeoperationrequest)
201
+ - [ServerGetCountryCodeOperationRequest](#servergetcountrycodeoperationrequest)
202
+ - [AdminGetCountryCodeOperationRequest](#admingetcountrycodeoperationrequest)
203
+ - [GetCustomDataOperationRequest](#getcustomdataoperationrequest)
204
+ - [ServerGetCustomDataOperationRequest](#servergetcustomdataoperationrequest)
205
+ - [AdminGetCustomDataOperationRequest](#admingetcustomdataoperationrequest)
206
+ - [GetDisplayNameOperationRequest](#getdisplaynameoperationrequest)
207
+ - [ServerGetDisplayNameOperationRequest](#servergetdisplaynameoperationrequest)
208
+ - [AdminGetDisplayNameOperationRequest](#admingetdisplaynameoperationrequest)
209
+ - [GetFriendStatisticsLeaderboardAroundPlayerOperationRequest](#getfriendstatisticsleaderboardaroundplayeroperationrequest)
210
+ - [ServerGetFriendStatisticsLeaderboardAroundPlayerOperationRequest](#servergetfriendstatisticsleaderboardaroundplayeroperationrequest)
211
+ - [AdminGetFriendStatisticsLeaderboardAroundPlayerOperationRequest](#admingetfriendstatisticsleaderboardaroundplayeroperationrequest)
212
+ - [GetFriendStatisticsLeaderboardOperationRequest](#getfriendstatisticsleaderboardoperationrequest)
213
+ - [ServerGetFriendStatisticsLeaderboardOperationRequest](#servergetfriendstatisticsleaderboardoperationrequest)
214
+ - [AdminGetFriendStatisticsLeaderboardOperationRequest](#admingetfriendstatisticsleaderboardoperationrequest)
215
+ - [GetIpAddressCreateOperationRequest](#getipaddresscreateoperationrequest)
216
+ - [ServerGetIpAddressCreateOperationRequest](#servergetipaddresscreateoperationrequest)
217
+ - [AdminGetIpAddressCreateOperationRequest](#admingetipaddresscreateoperationrequest)
218
+ - [GetOnlineStatusOperationRequest](#getonlinestatusoperationrequest)
219
+ - [ServerGetOnlineStatusOperationRequest](#servergetonlinestatusoperationrequest)
220
+ - [AdminGetOnlineStatusOperationRequest](#admingetonlinestatusoperationrequest)
221
+ - [GetPlayerBanOperationRequest](#getplayerbanoperationrequest)
222
+ - [ServerGetPlayerBanOperationRequest](#servergetplayerbanoperationrequest)
223
+ - [AdminGetPlayerBanOperationRequest](#admingetplayerbanoperationrequest)
224
+ - [GetPlayerCharacterOperationRequest](#getplayercharacteroperationrequest)
225
+ - [ServerGetPlayerCharacterOperationRequest](#servergetplayercharacteroperationrequest)
226
+ - [AdminGetPlayerCharacterOperationRequest](#admingetplayercharacteroperationrequest)
227
+ - [GetPlayerCurrencyOperationRequest](#getplayercurrencyoperationrequest)
228
+ - [ServerGetPlayerCurrencyOperationRequest](#servergetplayercurrencyoperationrequest)
229
+ - [AdminGetPlayerCurrencyOperationRequest](#admingetplayercurrencyoperationrequest)
230
+ - [GetPlayerDataOperationRequest](#getplayerdataoperationrequest)
231
+ - [ServerGetPlayerDataOperationRequest](#servergetplayerdataoperationrequest)
232
+ - [AdminGetPlayerDataOperationRequest](#admingetplayerdataoperationrequest)
233
+ - [GetPlayerFriendOperationRequest](#getplayerfriendoperationrequest)
234
+ - [ServerGetPlayerFriendOperationRequest](#servergetplayerfriendoperationrequest)
235
+ - [AdminGetPlayerFriendOperationRequest](#admingetplayerfriendoperationrequest)
236
+ - [GetPlayerGroupOperationRequest](#getplayergroupoperationrequest)
237
+ - [ServerGetPlayerGroupOperationRequest](#servergetplayergroupoperationrequest)
238
+ - [AdminGetPlayerGroupOperationRequest](#admingetplayergroupoperationrequest)
239
+ - [GetPlayerInformationOperationRequest](#getplayerinformationoperationrequest)
240
+ - [ServerGetPlayerInformationOperationRequest](#servergetplayerinformationoperationrequest)
241
+ - [AdminGetPlayerInformationOperationRequest](#admingetplayerinformationoperationrequest)
242
+ - [GetPlayerInventoryOperationRequest](#getplayerinventoryoperationrequest)
243
+ - [ServerGetPlayerInventoryOperationRequest](#servergetplayerinventoryoperationrequest)
244
+ - [AdminGetPlayerInventoryOperationRequest](#admingetplayerinventoryoperationrequest)
245
+ - [GetPlayerStatisticsOperationRequest](#getplayerstatisticsoperationrequest)
246
+ - [ServerGetPlayerStatisticsOperationRequest](#servergetplayerstatisticsoperationrequest)
247
+ - [AdminGetPlayerStatisticsOperationRequest](#admingetplayerstatisticsoperationrequest)
248
+ - [GetPlayersWithDisplayNameOperationRequest](#getplayerswithdisplaynameoperationrequest)
249
+ - [ServerGetPlayersWithDisplayNameOperationRequest](#servergetplayerswithdisplaynameoperationrequest)
250
+ - [AdminGetPlayersWithDisplayNameOperationRequest](#admingetplayerswithdisplaynameoperationrequest)
251
+ - [GetPlayersWithSegmentOperationRequest](#getplayerswithsegmentoperationrequest)
252
+ - [ServerGetPlayersWithSegmentOperationRequest](#servergetplayerswithsegmentoperationrequest)
253
+ - [AdminGetPlayersWithSegmentOperationRequest](#admingetplayerswithsegmentoperationrequest)
254
+ - [GetPlayersWithTagOperationRequest](#getplayerswithtagoperationrequest)
255
+ - [ServerGetPlayersWithTagOperationRequest](#servergetplayerswithtagoperationrequest)
256
+ - [AdminGetPlayersWithTagOperationRequest](#admingetplayerswithtagoperationrequest)
257
+ - [GetSegmentOperationRequest](#getsegmentoperationrequest)
258
+ - [ServerGetSegmentOperationRequest](#servergetsegmentoperationrequest)
259
+ - [AdminGetSegmentOperationRequest](#admingetsegmentoperationrequest)
260
+ - [GetStatisticsLeaderboardAroundPlayerOperationRequest](#getstatisticsleaderboardaroundplayeroperationrequest)
261
+ - [ServerGetStatisticsLeaderboardAroundPlayerOperationRequest](#servergetstatisticsleaderboardaroundplayeroperationrequest)
262
+ - [AdminGetStatisticsLeaderboardAroundPlayerOperationRequest](#admingetstatisticsleaderboardaroundplayeroperationrequest)
263
+ - [GetStatisticsLeaderboardOperationRequest](#getstatisticsleaderboardoperationrequest)
264
+ - [ServerGetStatisticsLeaderboardOperationRequest](#servergetstatisticsleaderboardoperationrequest)
265
+ - [AdminGetStatisticsLeaderboardOperationRequest](#admingetstatisticsleaderboardoperationrequest)
266
+ - [GetTagOperationRequest](#gettagoperationrequest)
267
+ - [ServerGetTagOperationRequest](#servergettagoperationrequest)
268
+ - [AdminGetTagOperationRequest](#admingettagoperationrequest)
269
+ - [GetTsCreateOperationRequest](#gettscreateoperationrequest)
270
+ - [ServerGetTsCreateOperationRequest](#servergettscreateoperationrequest)
271
+ - [AdminGetTsCreateOperationRequest](#admingettscreateoperationrequest)
272
+ - [GetTsLastLoginOperationRequest](#gettslastloginoperationrequest)
273
+ - [ServerGetTsLastLoginOperationRequest](#servergettslastloginoperationrequest)
274
+ - [AdminGetTsLastLoginOperationRequest](#admingettslastloginoperationrequest)
275
+ - [CreateGroupOperationRequest](#creategroupoperationrequest)
276
+ - [ServerCreateGroupOperationRequest](#servercreategroupoperationrequest)
277
+ - [AdminCreateGroupOperationRequest](#admincreategroupoperationrequest)
278
+ - [CreatePlayerCharacterOperationRequest](#createplayercharacteroperationrequest)
279
+ - [ServerCreatePlayerCharacterOperationRequest](#servercreateplayercharacteroperationrequest)
280
+ - [AdminCreatePlayerCharacterOperationRequest](#admincreateplayercharacteroperationrequest)
281
+ - [CreatePlayerItemOperationRequest](#createplayeritemoperationrequest)
282
+ - [ServerCreatePlayerItemOperationRequest](#servercreateplayeritemoperationrequest)
283
+ - [AdminCreatePlayerItemOperationRequest](#admincreateplayeritemoperationrequest)
284
+ - [JoinGroupOperationRequest](#joingroupoperationrequest)
285
+ - [ServerJoinGroupOperationRequest](#serverjoingroupoperationrequest)
286
+ - [AdminJoinGroupOperationRequest](#adminjoingroupoperationrequest)
287
+ - [LeaveGroupOperationRequest](#leavegroupoperationrequest)
288
+ - [ServerLeaveGroupOperationRequest](#serverleavegroupoperationrequest)
289
+ - [AdminLeaveGroupOperationRequest](#adminleavegroupoperationrequest)
290
+ - [RemovePlayerCharacterOperationRequest](#removeplayercharacteroperationrequest)
291
+ - [ServerRemovePlayerCharacterOperationRequest](#serverremoveplayercharacteroperationrequest)
292
+ - [AdminRemovePlayerCharacterOperationRequest](#adminremoveplayercharacteroperationrequest)
293
+ - [RemovePlayerFriendOperationRequest](#removeplayerfriendoperationrequest)
294
+ - [ServerRemovePlayerFriendOperationRequest](#serverremoveplayerfriendoperationrequest)
295
+ - [AdminRemovePlayerFriendOperationRequest](#adminremoveplayerfriendoperationrequest)
296
+ - [RemovePlayerItemOperationRequest](#removeplayeritemoperationrequest)
297
+ - [ServerRemovePlayerItemOperationRequest](#serverremoveplayeritemoperationrequest)
298
+ - [AdminRemovePlayerItemOperationRequest](#adminremoveplayeritemoperationrequest)
299
+ - [RemoveSegmentOperationRequest](#removesegmentoperationrequest)
300
+ - [ServerRemoveSegmentOperationRequest](#serverremovesegmentoperationrequest)
301
+ - [AdminRemoveSegmentOperationRequest](#adminremovesegmentoperationrequest)
302
+ - [RemoveTagOperationRequest](#removetagoperationrequest)
303
+ - [ServerRemoveTagOperationRequest](#serverremovetagoperationrequest)
304
+ - [AdminRemoveTagOperationRequest](#adminremovetagoperationrequest)
305
+ - [SetAvatarOperationRequest](#setavataroperationrequest)
306
+ - [ServerSetAvatarOperationRequest](#serversetavataroperationrequest)
307
+ - [AdminSetAvatarOperationRequest](#adminsetavataroperationrequest)
308
+ - [SetCountryCodeOperationRequest](#setcountrycodeoperationrequest)
309
+ - [ServerSetCountryCodeOperationRequest](#serversetcountrycodeoperationrequest)
310
+ - [AdminSetCountryCodeOperationRequest](#adminsetcountrycodeoperationrequest)
311
+ - [SetCustomDataOperationRequest](#setcustomdataoperationrequest)
312
+ - [ServerSetCustomDataOperationRequest](#serversetcustomdataoperationrequest)
313
+ - [AdminSetCustomDataOperationRequest](#adminsetcustomdataoperationrequest)
314
+ - [SetDisplayNameOperationRequest](#setdisplaynameoperationrequest)
315
+ - [ServerSetDisplayNameOperationRequest](#serversetdisplaynameoperationrequest)
316
+ - [AdminSetDisplayNameOperationRequest](#adminsetdisplaynameoperationrequest)
317
+ - [SetPlayerBanOperationRequest](#setplayerbanoperationrequest)
318
+ - [ServerSetPlayerBanOperationRequest](#serversetplayerbanoperationrequest)
319
+ - [AdminSetPlayerBanOperationRequest](#adminsetplayerbanoperationrequest)
320
+ - [ChangePlayerCurrencyOperationRequest](#changeplayercurrencyoperationrequest)
321
+ - [ServerChangePlayerCurrencyOperationRequest](#serverchangeplayercurrencyoperationrequest)
322
+ - [AdminChangePlayerCurrencyOperationRequest](#adminchangeplayercurrencyoperationrequest)
323
+ - [SetPlayerDataOperationRequest](#setplayerdataoperationrequest)
324
+ - [ServerSetPlayerDataOperationRequest](#serversetplayerdataoperationrequest)
325
+ - [AdminSetPlayerDataOperationRequest](#adminsetplayerdataoperationrequest)
326
+ - [ChangePlayerStatisticsOperationRequest](#changeplayerstatisticsoperationrequest)
327
+ - [ServerChangePlayerStatisticsOperationRequest](#serverchangeplayerstatisticsoperationrequest)
328
+ - [AdminChangePlayerStatisticsOperationRequest](#adminchangeplayerstatisticsoperationrequest)
329
+ - [SetTagOperationRequest](#settagoperationrequest)
330
+ - [ServerSetTagOperationRequest](#serversettagoperationrequest)
331
+ - [AdminSetTagOperationRequest](#adminsettagoperationrequest)
332
+ - [GetCurrencyLeaderboardOperationRequest](#getcurrencyleaderboardoperationrequest)
333
+ - [ServerGetCurrencyLeaderboardOperationRequest](#servergetcurrencyleaderboardoperationrequest)
334
+ - [AdminGetCurrencyLeaderboardOperationRequest](#admingetcurrencyleaderboardoperationrequest)
335
+ - [GetLastLoginLeaderboardOperationRequest](#getlastloginleaderboardoperationrequest)
336
+ - [ServerGetLastLoginLeaderboardOperationRequest](#servergetlastloginleaderboardoperationrequest)
337
+ - [AdminGetLastLoginLeaderboardOperationRequest](#admingetlastloginleaderboardoperationrequest)
338
+ - [GetCreateLeaderboardOperationRequest](#getcreateleaderboardoperationrequest)
339
+ - [ServerGetCreateLeaderboardOperationRequest](#servergetcreateleaderboardoperationrequest)
340
+ - [AdminGetCreateLeaderboardOperationRequest](#admingetcreateleaderboardoperationrequest)
341
+ - [GetStatisticsLogOperationRequest](#getstatisticslogoperationrequest)
342
+ - [ServerGetStatisticsLogOperationRequest](#servergetstatisticslogoperationrequest)
343
+ - [AdminGetStatisticsLogOperationRequest](#admingetstatisticslogoperationrequest)
344
+ - [GetCurrencyLogOperationRequest](#getcurrencylogoperationrequest)
345
+ - [ServerGetCurrencyLogOperationRequest](#servergetcurrencylogoperationrequest)
346
+ - [AdminGetCurrencyLogOperationRequest](#admingetcurrencylogoperationrequest)
347
+ - **GamePlayerResponseModels** (from `GamePlayerResponseModels.ts`)
348
+ - [AddPlayerFriendOperationResponse](#addplayerfriendoperationresponse)
349
+ - [AddSegmentOperationResponse](#addsegmentoperationresponse)
350
+ - [GetAvatarOperationResponse](#getavataroperationresponse)
351
+ - [GetCountryCodeOperationResponse](#getcountrycodeoperationresponse)
352
+ - [GetCustomDataOperationResponse](#getcustomdataoperationresponse)
353
+ - [GetDisplayNameOperationResponse](#getdisplaynameoperationresponse)
354
+ - [GetFriendStatisticsLeaderboardAroundPlayerOperationResponse](#getfriendstatisticsleaderboardaroundplayeroperationresponse)
355
+ - [GetFriendStatisticsLeaderboardOperationResponse](#getfriendstatisticsleaderboardoperationresponse)
356
+ - [GetIpAddressCreateOperationResponse](#getipaddresscreateoperationresponse)
357
+ - [GetOnlineStatusOperationResponse](#getonlinestatusoperationresponse)
358
+ - [GetPlayerBanOperationResponse](#getplayerbanoperationresponse)
359
+ - [GetPlayerCharacterOperationResponse](#getplayercharacteroperationresponse)
360
+ - [GetPlayerCurrencyOperationResponse](#getplayercurrencyoperationresponse)
361
+ - [GetPlayerDataOperationResponse](#getplayerdataoperationresponse)
362
+ - [GetPlayerFriendOperationResponse](#getplayerfriendoperationresponse)
363
+ - [GetPlayerGroupOperationResponse](#getplayergroupoperationresponse)
364
+ - [GetPlayerInformationOperationResponse](#getplayerinformationoperationresponse)
365
+ - [GetPlayerInventoryOperationResponse](#getplayerinventoryoperationresponse)
366
+ - [GetPlayerStatisticsOperationResponse](#getplayerstatisticsoperationresponse)
367
+ - [GetPlayersWithDisplayNameOperationResponse](#getplayerswithdisplaynameoperationresponse)
368
+ - [GetPlayersWithSegmentOperationResponse](#getplayerswithsegmentoperationresponse)
369
+ - [GetPlayersWithTagOperationResponse](#getplayerswithtagoperationresponse)
370
+ - [GetSegmentOperationResponse](#getsegmentoperationresponse)
371
+ - [GetStatisticsLeaderboardAroundPlayerOperationResponse](#getstatisticsleaderboardaroundplayeroperationresponse)
372
+ - [GetStatisticsLeaderboardOperationResponse](#getstatisticsleaderboardoperationresponse)
373
+ - [GetTagOperationResponse](#gettagoperationresponse)
374
+ - [GetTsCreateOperationResponse](#gettscreateoperationresponse)
375
+ - [GetTsLastLoginOperationResponse](#gettslastloginoperationresponse)
376
+ - [CreateGroupOperationResponse](#creategroupoperationresponse)
377
+ - [CreatePlayerCharacterOperationResponse](#createplayercharacteroperationresponse)
378
+ - [CreatePlayerItemOperationResponse](#createplayeritemoperationresponse)
379
+ - [JoinGroupOperationResponse](#joingroupoperationresponse)
380
+ - [LeaveGroupOperationResponse](#leavegroupoperationresponse)
381
+ - [RemovePlayerCharacterOperationResponse](#removeplayercharacteroperationresponse)
382
+ - [RemovePlayerFriendOperationResponse](#removeplayerfriendoperationresponse)
383
+ - [RemovePlayerItemOperationResponse](#removeplayeritemoperationresponse)
384
+ - [RemoveSegmentOperationResponse](#removesegmentoperationresponse)
385
+ - [RemoveTagOperationResponse](#removetagoperationresponse)
386
+ - [SetAvatarOperationResponse](#setavataroperationresponse)
387
+ - [SetCountryCodeOperationResponse](#setcountrycodeoperationresponse)
388
+ - [SetCustomDataOperationResponse](#setcustomdataoperationresponse)
389
+ - [SetDisplayNameOperationResponse](#setdisplaynameoperationresponse)
390
+ - [SetPlayerBanOperationResponse](#setplayerbanoperationresponse)
391
+ - [ChangePlayerCurrencyOperationResponse](#changeplayercurrencyoperationresponse)
392
+ - [SetPlayerDataOperationResponse](#setplayerdataoperationresponse)
393
+ - [ChangePlayerStatisticsOperationResponse](#changeplayerstatisticsoperationresponse)
394
+ - [SetTagOperationResponse](#settagoperationresponse)
395
+ - [GetCurrencyLeaderboardOperationResponse](#getcurrencyleaderboardoperationresponse)
396
+ - [GetLastLoginLeaderboardOperationResponse](#getlastloginleaderboardoperationresponse)
397
+ - [GetCreateLeaderboardOperationResponse](#getcreateleaderboardoperationresponse)
398
+ - [GetStatisticsLogOperationResponse](#getstatisticslogoperationresponse)
399
+ - [GetCurrencyLogOperationResponse](#getcurrencylogoperationresponse)
400
+
401
+ ---
402
+
403
+ ## Namespace `GamePlayerModels`
404
+
405
+ ### InfoRequestParam
406
+
407
+ Selects which optional game-player fields and lightweight relations should be returned. Boolean flags default to `false`; key arrays narrow list-style fields to specific keys only.
408
+
409
+ | Field | Type | Required | Notes |
410
+ |-------|------|----------|-------|
411
+ | `segments` | `boolean` | no | _default=false_ |
412
+ | `customDatas` | `boolean` | no | _default=false_ |
413
+ | `displayName` | `boolean` | no | _default=false_ |
414
+ | `avatar` | `boolean` | no | _default=false_ |
415
+ | `tsCreate` | `boolean` | no | _default=false_ |
416
+ | `tags` | `boolean` | no | _default=false_ |
417
+ | `playerBan` | `boolean` | no | _default=false_ |
418
+ | `playerCurrencies` | `boolean` | no | _default=false_ |
419
+ | `playerStatistics` | `boolean` | no | _default=false_ |
420
+ | `playerDatas` | `boolean` | no | _default=false_ |
421
+ | `ipAddressCreate` | `boolean` | no | _default=false_ |
422
+ | `countryCode` | `boolean` | no | _default=false_ |
423
+ | `tsLastLogin` | `boolean` | no | _default=false_ |
424
+ | `playerCharacters` | `boolean` | no | Includes relation items for characters owned by the player, optionally filtered by `characterCatalogIds`. — _default=false_ |
425
+ | `playerInventories` | `boolean` | no | Includes relation items for inventory owned by the player, optionally filtered by `itemCatalogIds`. — _default=false_ |
426
+ | `playerGroups` | `boolean` | no | Includes relation items for groups joined or owned by the player, optionally filtered by `groupCatalogIds`. — _default=false_ |
427
+ | `playerFriends` | `boolean` | no | Includes relation items for friends attached to the player, optionally filtered by `friendCatalogIds`. — _default=false_ |
428
+ | `playerDataKeys` | `Array<string>` | no | _elementCls=String_ |
429
+ | `playerCurrencyKeys` | `Array<string>` | no | _elementCls=String_ |
430
+ | `playerStatisticsKeys` | `Array<string>` | no | _elementCls=String_ |
431
+ | `customDataKeys` | `Array<string>` | no | _elementCls=String_ |
432
+ | `tagKeys` | `Array<string>` | no | _elementCls=String_ |
433
+ | `characterCatalogIds` | `Array<string>` | no | Restricts `playerCharacters` to relation items whose catalog IDs match this list. — _elementCls=String_ |
434
+ | `itemCatalogIds` | `Array<string>` | no | Restricts `playerInventories` to relation items whose catalog IDs match this list. — _elementCls=String_ |
435
+ | `groupCatalogIds` | `Array<string>` | no | Restricts `playerGroups` to relation items whose catalog IDs match this list. — _elementCls=String_ |
436
+ | `friendCatalogIds` | `Array<string>` | no | Restricts `playerFriends` to relation items whose catalog IDs match this list. — _elementCls=String_ |
437
+
438
+ ### CustomDataParam
439
+
440
+ Defines the reusable parameter block CustomDataParam.
441
+
442
+ | Field | Type | Required | Notes |
443
+ |-------|------|----------|-------|
444
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
445
+ | `value` | `any` | yes | — |
446
+
447
+ ### GroupMemberParam
448
+
449
+ Describes one game-player member included when creating a group.
450
+
451
+ | Field | Type | Required | Notes |
452
+ |-------|------|----------|-------|
453
+ | `userId` | `string` | yes | _minLength=10, maxLength=10_ |
454
+
455
+ ### PlayerCurrencyParam
456
+
457
+ Defines the reusable parameter block PlayerCurrencyParam.
458
+
459
+ | Field | Type | Required | Notes |
460
+ |-------|------|----------|-------|
461
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
462
+ | `amount` | `number` | yes | — |
463
+
464
+ ### PlayerDataParam
465
+
466
+ Defines the reusable parameter block PlayerDataParam.
467
+
468
+ | Field | Type | Required | Notes |
469
+ |-------|------|----------|-------|
470
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
471
+ | `value` | `any` | yes | — |
472
+
473
+ ### PlayerStatisticsParam
474
+
475
+ Defines the reusable parameter block PlayerStatisticsParam.
476
+
477
+ | Field | Type | Required | Notes |
478
+ |-------|------|----------|-------|
479
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
480
+ | `value` | `number` | yes | — |
481
+
482
+ ### AddPlayerFriendRequestData
483
+
484
+ Creates a friend relation between the current or target game player and another game player.
485
+
486
+ | Field | Type | Required | Notes |
487
+ |-------|------|----------|-------|
488
+ | `userId` | `string` | no | Optional self-target shortcut on the client route. — _minLength=10, maxLength=10_ |
489
+ | `friendId` | `string` | yes | Target friend user ID. — _minLength=10, maxLength=10_ |
490
+ | `catalogId` | `string` | yes | Friend catalog used to create the relation record. — _minLength=2, maxLength=32_ |
491
+
492
+ ### ServerAddPlayerFriendRequestData
493
+
494
+ Extends: `AddPlayerFriendRequestData`
495
+
496
+ Defines the request payload for ServerAddPlayerFriend.
497
+
498
+ _Không có field public (payload rỗng)._
499
+
500
+ ### AdminAddPlayerFriendRequestData
501
+
502
+ Extends: `ServerAddPlayerFriendRequestData`
503
+
504
+ Defines the request payload for AdminAddPlayerFriend.
505
+
506
+ _Không có field public (payload rỗng)._
507
+
508
+ ### AddSegmentRequestData
509
+
510
+ Defines the request payload for AddSegment.
511
+
512
+ | Field | Type | Required | Notes |
513
+ |-------|------|----------|-------|
514
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
515
+ | `value` | `string` | yes | _minLength=6, maxLength=32_ |
516
+
517
+ ### ServerAddSegmentRequestData
518
+
519
+ Extends: `AddSegmentRequestData`
520
+
521
+ Defines the request payload for ServerAddSegment.
522
+
523
+ _Không có field public (payload rỗng)._
524
+
525
+ ### AdminAddSegmentRequestData
526
+
527
+ Extends: `ServerAddSegmentRequestData`
528
+
529
+ Defines the request payload for AdminAddSegment.
530
+
531
+ _Không có field public (payload rỗng)._
532
+
533
+ ### GetAvatarRequestData
534
+
535
+ Defines the request payload for GetAvatar.
536
+
537
+ | Field | Type | Required | Notes |
538
+ |-------|------|----------|-------|
539
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
540
+
541
+ ### ServerGetAvatarRequestData
542
+
543
+ Extends: `GetAvatarRequestData`
544
+
545
+ Defines the request payload for ServerGetAvatar.
546
+
547
+ _Không có field public (payload rỗng)._
548
+
549
+ ### AdminGetAvatarRequestData
550
+
551
+ Extends: `ServerGetAvatarRequestData`
552
+
553
+ Defines the request payload for AdminGetAvatar.
554
+
555
+ _Không có field public (payload rỗng)._
556
+
557
+ ### GetCountryCodeRequestData
558
+
559
+ Defines the request payload for GetCountryCode.
560
+
561
+ | Field | Type | Required | Notes |
562
+ |-------|------|----------|-------|
563
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
564
+
565
+ ### ServerGetCountryCodeRequestData
566
+
567
+ Extends: `GetCountryCodeRequestData`
568
+
569
+ Defines the request payload for ServerGetCountryCode.
570
+
571
+ _Không có field public (payload rỗng)._
572
+
573
+ ### AdminGetCountryCodeRequestData
574
+
575
+ Extends: `ServerGetCountryCodeRequestData`
576
+
577
+ Defines the request payload for AdminGetCountryCode.
578
+
579
+ _Không có field public (payload rỗng)._
580
+
581
+ ### GetCustomDataRequestData
582
+
583
+ Defines the request payload for GetCustomData.
584
+
585
+ | Field | Type | Required | Notes |
586
+ |-------|------|----------|-------|
587
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
588
+ | `customDataKeys` | `Array<string>` | no | _elementCls=String_ |
589
+
590
+ ### ServerGetCustomDataRequestData
591
+
592
+ Extends: `GetCustomDataRequestData`
593
+
594
+ Defines the request payload for ServerGetCustomData.
595
+
596
+ _Không có field public (payload rỗng)._
597
+
598
+ ### AdminGetCustomDataRequestData
599
+
600
+ Extends: `ServerGetCustomDataRequestData`
601
+
602
+ Defines the request payload for AdminGetCustomData.
603
+
604
+ _Không có field public (payload rỗng)._
605
+
606
+ ### GetDisplayNameRequestData
607
+
608
+ Defines the request payload for GetDisplayName.
609
+
610
+ | Field | Type | Required | Notes |
611
+ |-------|------|----------|-------|
612
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
613
+
614
+ ### ServerGetDisplayNameRequestData
615
+
616
+ Extends: `GetDisplayNameRequestData`
617
+
618
+ Defines the request payload for ServerGetDisplayName.
619
+
620
+ _Không có field public (payload rỗng)._
621
+
622
+ ### AdminGetDisplayNameRequestData
623
+
624
+ Extends: `ServerGetDisplayNameRequestData`
625
+
626
+ Defines the request payload for AdminGetDisplayName.
627
+
628
+ _Không có field public (payload rỗng)._
629
+
630
+ ### GetFriendStatisticsLeaderboardAroundPlayerRequestData
631
+
632
+ Defines the request payload for GetFriendStatisticsLeaderboardAroundPlayer.
633
+
634
+ | Field | Type | Required | Notes |
635
+ |-------|------|----------|-------|
636
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
637
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
638
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
639
+ | `skip` | `number` | no | _min=0, default=0_ |
640
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
641
+ | `loadFromCache` | `boolean` | no | _default=true_ |
642
+
643
+ ### ServerGetFriendStatisticsLeaderboardAroundPlayerRequestData
644
+
645
+ Extends: `GetFriendStatisticsLeaderboardAroundPlayerRequestData`
646
+
647
+ Defines the request payload for ServerGetFriendStatisticsLeaderboardAroundPlayer.
648
+
649
+ _Không có field public (payload rỗng)._
650
+
651
+ ### AdminGetFriendStatisticsLeaderboardAroundPlayerRequestData
652
+
653
+ Extends: `ServerGetFriendStatisticsLeaderboardAroundPlayerRequestData`
654
+
655
+ Defines the request payload for AdminGetFriendStatisticsLeaderboardAroundPlayer.
656
+
657
+ _Không có field public (payload rỗng)._
658
+
659
+ ### GetFriendStatisticsLeaderboardRequestData
660
+
661
+ Defines the request payload for GetFriendStatisticsLeaderboard.
662
+
663
+ | Field | Type | Required | Notes |
664
+ |-------|------|----------|-------|
665
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
666
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
667
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
668
+ | `skip` | `number` | no | _min=0, default=0_ |
669
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
670
+ | `loadFromCache` | `boolean` | no | _default=true_ |
671
+
672
+ ### ServerGetFriendStatisticsLeaderboardRequestData
673
+
674
+ Extends: `GetFriendStatisticsLeaderboardRequestData`
675
+
676
+ Defines the request payload for ServerGetFriendStatisticsLeaderboard.
677
+
678
+ _Không có field public (payload rỗng)._
679
+
680
+ ### AdminGetFriendStatisticsLeaderboardRequestData
681
+
682
+ Extends: `ServerGetFriendStatisticsLeaderboardRequestData`
683
+
684
+ Defines the request payload for AdminGetFriendStatisticsLeaderboard.
685
+
686
+ _Không có field public (payload rỗng)._
687
+
688
+ ### GetIpAddressCreateRequestData
689
+
690
+ Defines the request payload for GetIpAddressCreate.
691
+
692
+ | Field | Type | Required | Notes |
693
+ |-------|------|----------|-------|
694
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
695
+
696
+ ### ServerGetIpAddressCreateRequestData
697
+
698
+ Extends: `GetIpAddressCreateRequestData`
699
+
700
+ Defines the request payload for ServerGetIpAddressCreate.
701
+
702
+ _Không có field public (payload rỗng)._
703
+
704
+ ### AdminGetIpAddressCreateRequestData
705
+
706
+ Extends: `ServerGetIpAddressCreateRequestData`
707
+
708
+ Defines the request payload for AdminGetIpAddressCreate.
709
+
710
+ _Không có field public (payload rỗng)._
711
+
712
+ ### GetOnlineStatusRequestData
713
+
714
+ Defines the request payload for GetOnlineStatus.
715
+
716
+ | Field | Type | Required | Notes |
717
+ |-------|------|----------|-------|
718
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
719
+
720
+ ### ServerGetOnlineStatusRequestData
721
+
722
+ Extends: `GetOnlineStatusRequestData`
723
+
724
+ Defines the request payload for ServerGetOnlineStatus.
725
+
726
+ _Không có field public (payload rỗng)._
727
+
728
+ ### AdminGetOnlineStatusRequestData
729
+
730
+ Extends: `ServerGetOnlineStatusRequestData`
731
+
732
+ Defines the request payload for AdminGetOnlineStatus.
733
+
734
+ _Không có field public (payload rỗng)._
735
+
736
+ ### GetPlayerBanRequestData
737
+
738
+ Defines the request payload for GetPlayerBan.
739
+
740
+ | Field | Type | Required | Notes |
741
+ |-------|------|----------|-------|
742
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
743
+
744
+ ### ServerGetPlayerBanRequestData
745
+
746
+ Extends: `GetPlayerBanRequestData`
747
+
748
+ Defines the request payload for ServerGetPlayerBan.
749
+
750
+ _Không có field public (payload rỗng)._
751
+
752
+ ### AdminGetPlayerBanRequestData
753
+
754
+ Extends: `ServerGetPlayerBanRequestData`
755
+
756
+ Defines the request payload for AdminGetPlayerBan.
757
+
758
+ _Không có field public (payload rỗng)._
759
+
760
+ ### GetPlayerCharacterRequestData
761
+
762
+ Defines the request payload for GetPlayerCharacter.
763
+
764
+ | Field | Type | Required | Notes |
765
+ |-------|------|----------|-------|
766
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
767
+ | `characterCatalogIds` | `Array<string>` | no | _elementCls=String_ |
768
+
769
+ ### ServerGetPlayerCharacterRequestData
770
+
771
+ Extends: `GetPlayerCharacterRequestData`
772
+
773
+ Defines the request payload for ServerGetPlayerCharacter.
774
+
775
+ _Không có field public (payload rỗng)._
776
+
777
+ ### AdminGetPlayerCharacterRequestData
778
+
779
+ Extends: `ServerGetPlayerCharacterRequestData`
780
+
781
+ Defines the request payload for AdminGetPlayerCharacter.
782
+
783
+ _Không có field public (payload rỗng)._
784
+
785
+ ### GetPlayerCurrencyRequestData
786
+
787
+ Defines the request payload for GetPlayerCurrency.
788
+
789
+ | Field | Type | Required | Notes |
790
+ |-------|------|----------|-------|
791
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
792
+ | `playerCurrencyKeys` | `Array<string>` | no | _elementCls=String_ |
793
+
794
+ ### ServerGetPlayerCurrencyRequestData
795
+
796
+ Extends: `GetPlayerCurrencyRequestData`
797
+
798
+ Defines the request payload for ServerGetPlayerCurrency.
799
+
800
+ _Không có field public (payload rỗng)._
801
+
802
+ ### AdminGetPlayerCurrencyRequestData
803
+
804
+ Extends: `ServerGetPlayerCurrencyRequestData`
805
+
806
+ Defines the request payload for AdminGetPlayerCurrency.
807
+
808
+ _Không có field public (payload rỗng)._
809
+
810
+ ### GetPlayerDataRequestData
811
+
812
+ Defines the request payload for GetPlayerData.
813
+
814
+ | Field | Type | Required | Notes |
815
+ |-------|------|----------|-------|
816
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
817
+ | `playerDataKeys` | `Array<string>` | no | _elementCls=String_ |
818
+
819
+ ### ServerGetPlayerDataRequestData
820
+
821
+ Extends: `GetPlayerDataRequestData`
822
+
823
+ Defines the request payload for ServerGetPlayerData.
824
+
825
+ _Không có field public (payload rỗng)._
826
+
827
+ ### AdminGetPlayerDataRequestData
828
+
829
+ Extends: `ServerGetPlayerDataRequestData`
830
+
831
+ Defines the request payload for AdminGetPlayerData.
832
+
833
+ _Không có field public (payload rỗng)._
834
+
835
+ ### GetPlayerFriendRequestData
836
+
837
+ Defines the request payload for GetPlayerFriend.
838
+
839
+ | Field | Type | Required | Notes |
840
+ |-------|------|----------|-------|
841
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
842
+ | `friendCatalogIds` | `Array<string>` | no | _elementCls=String_ |
843
+
844
+ ### ServerGetPlayerFriendRequestData
845
+
846
+ Extends: `GetPlayerFriendRequestData`
847
+
848
+ Defines the request payload for ServerGetPlayerFriend.
849
+
850
+ _Không có field public (payload rỗng)._
851
+
852
+ ### AdminGetPlayerFriendRequestData
853
+
854
+ Extends: `ServerGetPlayerFriendRequestData`
855
+
856
+ Defines the request payload for AdminGetPlayerFriend.
857
+
858
+ _Không có field public (payload rỗng)._
859
+
860
+ ### GetPlayerGroupRequestData
861
+
862
+ Defines the request payload for GetPlayerGroup.
863
+
864
+ | Field | Type | Required | Notes |
865
+ |-------|------|----------|-------|
866
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
867
+ | `groupCatalogIds` | `Array<string>` | no | _elementCls=String_ |
868
+
869
+ ### ServerGetPlayerGroupRequestData
870
+
871
+ Extends: `GetPlayerGroupRequestData`
872
+
873
+ Defines the request payload for ServerGetPlayerGroup.
874
+
875
+ _Không có field public (payload rỗng)._
876
+
877
+ ### AdminGetPlayerGroupRequestData
878
+
879
+ Extends: `ServerGetPlayerGroupRequestData`
880
+
881
+ Defines the request payload for AdminGetPlayerGroup.
882
+
883
+ _Không có field public (payload rỗng)._
884
+
885
+ ### GetPlayerInformationRequestData
886
+
887
+ Reads the current or target game-player profile using the requested projection. On the client route, omit `userId` to target the authenticated player itself.
888
+
889
+ | Field | Type | Required | Notes |
890
+ |-------|------|----------|-------|
891
+ | `userId` | `string` | no | Optional self-target shortcut on the client route. — _minLength=10, maxLength=10_ |
892
+ | `infoRequestParam` | `InfoRequestParam` | yes | Required field projection that controls which optional data is returned. |
893
+
894
+ ### ServerGetPlayerInformationRequestData
895
+
896
+ Extends: `GetPlayerInformationRequestData`
897
+
898
+ Reads a specific target game player on a trusted route.
899
+
900
+ | Field | Type | Required | Notes |
901
+ |-------|------|----------|-------|
902
+ | `createPlayerIfNotExists` | `boolean` | no | Allows the backend to create the missing game-player record before returning it. — _default=false_ |
903
+
904
+ ### AdminGetPlayerInformationRequestData
905
+
906
+ Extends: `ServerGetPlayerInformationRequestData`
907
+
908
+ Defines the request payload for AdminGetPlayerInformation.
909
+
910
+ _Không có field public (payload rỗng)._
911
+
912
+ ### GetPlayerInventoryRequestData
913
+
914
+ Defines the request payload for GetPlayerInventory.
915
+
916
+ | Field | Type | Required | Notes |
917
+ |-------|------|----------|-------|
918
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
919
+ | `itemCatalogIds` | `Array<string>` | no | _elementCls=String_ |
920
+
921
+ ### ServerGetPlayerInventoryRequestData
922
+
923
+ Extends: `GetPlayerInventoryRequestData`
924
+
925
+ Defines the request payload for ServerGetPlayerInventory.
926
+
927
+ _Không có field public (payload rỗng)._
928
+
929
+ ### AdminGetPlayerInventoryRequestData
930
+
931
+ Extends: `ServerGetPlayerInventoryRequestData`
932
+
933
+ Defines the request payload for AdminGetPlayerInventory.
934
+
935
+ _Không có field public (payload rỗng)._
936
+
937
+ ### GetPlayerStatisticsRequestData
938
+
939
+ Defines the request payload for GetPlayerStatistics.
940
+
941
+ | Field | Type | Required | Notes |
942
+ |-------|------|----------|-------|
943
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
944
+ | `statisticsKeys` | `Array<string>` | no | _elementCls=String_ |
945
+
946
+ ### ServerGetPlayerStatisticsRequestData
947
+
948
+ Extends: `GetPlayerStatisticsRequestData`
949
+
950
+ Defines the request payload for ServerGetPlayerStatistics.
951
+
952
+ _Không có field public (payload rỗng)._
953
+
954
+ ### AdminGetPlayerStatisticsRequestData
955
+
956
+ Extends: `ServerGetPlayerStatisticsRequestData`
957
+
958
+ Defines the request payload for AdminGetPlayerStatistics.
959
+
960
+ _Không có field public (payload rỗng)._
961
+
962
+ ### GetPlayersWithDisplayNameRequestData
963
+
964
+ Defines the request payload for GetPlayersWithDisplayName.
965
+
966
+ | Field | Type | Required | Notes |
967
+ |-------|------|----------|-------|
968
+ | `keyword` | `string` | yes | _minLength=2, maxLength=32_ |
969
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
970
+ | `skip` | `number` | no | _min=0, default=0_ |
971
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
972
+
973
+ ### ServerGetPlayersWithDisplayNameRequestData
974
+
975
+ Extends: `GetPlayersWithDisplayNameRequestData`
976
+
977
+ Defines the request payload for ServerGetPlayersWithDisplayName.
978
+
979
+ _Không có field public (payload rỗng)._
980
+
981
+ ### AdminGetPlayersWithDisplayNameRequestData
982
+
983
+ Extends: `ServerGetPlayersWithDisplayNameRequestData`
984
+
985
+ Defines the request payload for AdminGetPlayersWithDisplayName.
986
+
987
+ _Không có field public (payload rỗng)._
988
+
989
+ ### GetPlayersWithSegmentRequestData
990
+
991
+ Defines the request payload for GetPlayersWithSegment.
992
+
993
+ | Field | Type | Required | Notes |
994
+ |-------|------|----------|-------|
995
+ | `value` | `string` | yes | _minLength=2, maxLength=32_ |
996
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
997
+ | `skip` | `number` | no | _min=0, default=0_ |
998
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
999
+
1000
+ ### ServerGetPlayersWithSegmentRequestData
1001
+
1002
+ Extends: `GetPlayersWithSegmentRequestData`
1003
+
1004
+ Defines the request payload for ServerGetPlayersWithSegment.
1005
+
1006
+ _Không có field public (payload rỗng)._
1007
+
1008
+ ### AdminGetPlayersWithSegmentRequestData
1009
+
1010
+ Extends: `ServerGetPlayersWithSegmentRequestData`
1011
+
1012
+ Defines the request payload for AdminGetPlayersWithSegment.
1013
+
1014
+ _Không có field public (payload rỗng)._
1015
+
1016
+ ### GetPlayersWithTagRequestData
1017
+
1018
+ Defines the request payload for GetPlayersWithTag.
1019
+
1020
+ | Field | Type | Required | Notes |
1021
+ |-------|------|----------|-------|
1022
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
1023
+ | `value` | `string` | yes | _minLength=2, maxLength=32_ |
1024
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
1025
+ | `skip` | `number` | no | _min=0, default=0_ |
1026
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
1027
+
1028
+ ### ServerGetPlayersWithTagRequestData
1029
+
1030
+ Extends: `GetPlayersWithTagRequestData`
1031
+
1032
+ Defines the request payload for ServerGetPlayersWithTag.
1033
+
1034
+ _Không có field public (payload rỗng)._
1035
+
1036
+ ### AdminGetPlayersWithTagRequestData
1037
+
1038
+ Extends: `ServerGetPlayersWithTagRequestData`
1039
+
1040
+ Defines the request payload for AdminGetPlayersWithTag.
1041
+
1042
+ _Không có field public (payload rỗng)._
1043
+
1044
+ ### GetSegmentRequestData
1045
+
1046
+ Defines the request payload for GetSegment.
1047
+
1048
+ | Field | Type | Required | Notes |
1049
+ |-------|------|----------|-------|
1050
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1051
+
1052
+ ### ServerGetSegmentRequestData
1053
+
1054
+ Extends: `GetSegmentRequestData`
1055
+
1056
+ Defines the request payload for ServerGetSegment.
1057
+
1058
+ _Không có field public (payload rỗng)._
1059
+
1060
+ ### AdminGetSegmentRequestData
1061
+
1062
+ Extends: `ServerGetSegmentRequestData`
1063
+
1064
+ Defines the request payload for AdminGetSegment.
1065
+
1066
+ _Không có field public (payload rỗng)._
1067
+
1068
+ ### GetStatisticsLeaderboardAroundPlayerRequestData
1069
+
1070
+ Defines the request payload for GetStatisticsLeaderboardAroundPlayer.
1071
+
1072
+ | Field | Type | Required | Notes |
1073
+ |-------|------|----------|-------|
1074
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1075
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
1076
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
1077
+ | `skip` | `number` | no | _min=0, default=0_ |
1078
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
1079
+ | `loadFromCache` | `boolean` | no | _default=true_ |
1080
+
1081
+ ### ServerGetStatisticsLeaderboardAroundPlayerRequestData
1082
+
1083
+ Extends: `GetStatisticsLeaderboardAroundPlayerRequestData`
1084
+
1085
+ Defines the request payload for ServerGetStatisticsLeaderboardAroundPlayer.
1086
+
1087
+ _Không có field public (payload rỗng)._
1088
+
1089
+ ### AdminGetStatisticsLeaderboardAroundPlayerRequestData
1090
+
1091
+ Extends: `ServerGetStatisticsLeaderboardAroundPlayerRequestData`
1092
+
1093
+ Defines the request payload for AdminGetStatisticsLeaderboardAroundPlayer.
1094
+
1095
+ _Không có field public (payload rỗng)._
1096
+
1097
+ ### GetStatisticsLeaderboardRequestData
1098
+
1099
+ Defines the request payload for GetStatisticsLeaderboard.
1100
+
1101
+ | Field | Type | Required | Notes |
1102
+ |-------|------|----------|-------|
1103
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
1104
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
1105
+ | `skip` | `number` | no | _min=0, default=0_ |
1106
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
1107
+ | `loadFromCache` | `boolean` | no | _default=true_ |
1108
+ | `version` | `string` | yes | _minLength=2, maxLength=32_ |
1109
+
1110
+ ### ServerGetStatisticsLeaderboardRequestData
1111
+
1112
+ Extends: `GetStatisticsLeaderboardRequestData`
1113
+
1114
+ Defines the request payload for ServerGetStatisticsLeaderboard.
1115
+
1116
+ _Không có field public (payload rỗng)._
1117
+
1118
+ ### AdminGetStatisticsLeaderboardRequestData
1119
+
1120
+ Extends: `ServerGetStatisticsLeaderboardRequestData`
1121
+
1122
+ Defines the request payload for AdminGetStatisticsLeaderboard.
1123
+
1124
+ _Không có field public (payload rỗng)._
1125
+
1126
+ ### GetCreateLeaderboardRequestData
1127
+
1128
+ Defines the request payload for GetCreateLeaderboard.
1129
+
1130
+ | Field | Type | Required | Notes |
1131
+ |-------|------|----------|-------|
1132
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
1133
+ | `skip` | `number` | no | _min=0, default=0_ |
1134
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
1135
+ | `loadFromCache` | `boolean` | no | _default=true_ |
1136
+
1137
+ ### ServerGetCreateLeaderboardRequestData
1138
+
1139
+ Extends: `GetCreateLeaderboardRequestData`
1140
+
1141
+ Defines the request payload for ServerGetCreateLeaderboard.
1142
+
1143
+ _Không có field public (payload rỗng)._
1144
+
1145
+ ### AdminGetCreateLeaderboardRequestData
1146
+
1147
+ Extends: `ServerGetCreateLeaderboardRequestData`
1148
+
1149
+ Defines the request payload for AdminGetCreateLeaderboard.
1150
+
1151
+ _Không có field public (payload rỗng)._
1152
+
1153
+ ### GetTagRequestData
1154
+
1155
+ Defines the request payload for GetTag.
1156
+
1157
+ | Field | Type | Required | Notes |
1158
+ |-------|------|----------|-------|
1159
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1160
+ | `tagKeys` | `Array<string>` | yes | _elementCls=String_ |
1161
+
1162
+ ### ServerGetTagRequestData
1163
+
1164
+ Extends: `GetTagRequestData`
1165
+
1166
+ Defines the request payload for ServerGetTag.
1167
+
1168
+ _Không có field public (payload rỗng)._
1169
+
1170
+ ### AdminGetTagRequestData
1171
+
1172
+ Extends: `ServerGetTagRequestData`
1173
+
1174
+ Defines the request payload for AdminGetTag.
1175
+
1176
+ _Không có field public (payload rỗng)._
1177
+
1178
+ ### GetTsCreateRequestData
1179
+
1180
+ Defines the request payload for GetTsCreate.
1181
+
1182
+ | Field | Type | Required | Notes |
1183
+ |-------|------|----------|-------|
1184
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1185
+
1186
+ ### ServerGetTsCreateRequestData
1187
+
1188
+ Extends: `GetTsCreateRequestData`
1189
+
1190
+ Defines the request payload for ServerGetTsCreate.
1191
+
1192
+ _Không có field public (payload rỗng)._
1193
+
1194
+ ### AdminGetTsCreateRequestData
1195
+
1196
+ Extends: `ServerGetTsCreateRequestData`
1197
+
1198
+ Defines the request payload for AdminGetTsCreate.
1199
+
1200
+ _Không có field public (payload rỗng)._
1201
+
1202
+ ### GetTsLastLoginRequestData
1203
+
1204
+ Defines the request payload for GetTsLastLogin.
1205
+
1206
+ | Field | Type | Required | Notes |
1207
+ |-------|------|----------|-------|
1208
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1209
+
1210
+ ### ServerGetTsLastLoginRequestData
1211
+
1212
+ Extends: `GetTsLastLoginRequestData`
1213
+
1214
+ Defines the request payload for ServerGetTsLastLogin.
1215
+
1216
+ _Không có field public (payload rỗng)._
1217
+
1218
+ ### AdminGetTsLastLoginRequestData
1219
+
1220
+ Extends: `ServerGetTsLastLoginRequestData`
1221
+
1222
+ Defines the request payload for AdminGetTsLastLogin.
1223
+
1224
+ _Không có field public (payload rỗng)._
1225
+
1226
+ ### CreateGroupRequestData
1227
+
1228
+ Creates a group owned by or attached to the current or target game player.
1229
+
1230
+ | Field | Type | Required | Notes |
1231
+ |-------|------|----------|-------|
1232
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1233
+ | `catalogId` | `string` | yes | _minLength=2, maxLength=32_ |
1234
+ | `groupMembers` | `Array<GroupMemberParam>` | no | Additional game-player members expressed as user IDs, not character IDs. — _elementCls=GroupMemberParam_ |
1235
+ | `displayName` | `string` | no | _default=""_ |
1236
+
1237
+ ### ServerCreateGroupRequestData
1238
+
1239
+ Extends: `CreateGroupRequestData`
1240
+
1241
+ Defines the request payload for ServerCreateGroup.
1242
+
1243
+ _Không có field public (payload rỗng)._
1244
+
1245
+ ### AdminCreateGroupRequestData
1246
+
1247
+ Extends: `ServerCreateGroupRequestData`
1248
+
1249
+ Defines the request payload for AdminCreateGroup.
1250
+
1251
+ _Không có field public (payload rỗng)._
1252
+
1253
+ ### CreatePlayerCharacterRequestData
1254
+
1255
+ Defines the request payload for CreatePlayerCharacter.
1256
+
1257
+ | Field | Type | Required | Notes |
1258
+ |-------|------|----------|-------|
1259
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1260
+ | `catalogId` | `string` | yes | _minLength=2, maxLength=32_ |
1261
+ | `displayName` | `string` | yes | _default=""_ |
1262
+ | `uniqueDisplayName` | `boolean` | no | _default=false_ |
1263
+
1264
+ ### ServerCreatePlayerCharacterRequestData
1265
+
1266
+ Extends: `CreatePlayerCharacterRequestData`
1267
+
1268
+ Defines the request payload for ServerCreatePlayerCharacter.
1269
+
1270
+ _Không có field public (payload rỗng)._
1271
+
1272
+ ### AdminCreatePlayerCharacterRequestData
1273
+
1274
+ Extends: `ServerCreatePlayerCharacterRequestData`
1275
+
1276
+ Defines the request payload for AdminCreatePlayerCharacter.
1277
+
1278
+ _Không có field public (payload rỗng)._
1279
+
1280
+ ### CreatePlayerItemRequestData
1281
+
1282
+ Defines the request payload for CreatePlayerItem.
1283
+
1284
+ | Field | Type | Required | Notes |
1285
+ |-------|------|----------|-------|
1286
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1287
+ | `catalogId` | `string` | yes | _minLength=2, maxLength=32_ |
1288
+ | `classId` | `string` | yes | _minLength=2, maxLength=32_ |
1289
+ | `displayName` | `string` | no | _default=""_ |
1290
+ | `amount` | `number` | no | _default=1_ |
1291
+
1292
+ ### ServerCreatePlayerItemRequestData
1293
+
1294
+ Extends: `CreatePlayerItemRequestData`
1295
+
1296
+ Defines the request payload for ServerCreatePlayerItem.
1297
+
1298
+ _Không có field public (payload rỗng)._
1299
+
1300
+ ### AdminCreatePlayerItemRequestData
1301
+
1302
+ Extends: `ServerCreatePlayerItemRequestData`
1303
+
1304
+ Defines the request payload for AdminCreatePlayerItem.
1305
+
1306
+ _Không có field public (payload rỗng)._
1307
+
1308
+ ### JoinGroupRequestData
1309
+
1310
+ Defines the request payload for JoinGroup.
1311
+
1312
+ | Field | Type | Required | Notes |
1313
+ |-------|------|----------|-------|
1314
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1315
+ | `groupId` | `string` | yes | _minLength=10, maxLength=10_ |
1316
+
1317
+ ### ServerJoinGroupRequestData
1318
+
1319
+ Extends: `JoinGroupRequestData`
1320
+
1321
+ Defines the request payload for ServerJoinGroup.
1322
+
1323
+ _Không có field public (payload rỗng)._
1324
+
1325
+ ### AdminJoinGroupRequestData
1326
+
1327
+ Extends: `ServerJoinGroupRequestData`
1328
+
1329
+ Defines the request payload for AdminJoinGroup.
1330
+
1331
+ _Không có field public (payload rỗng)._
1332
+
1333
+ ### LeaveGroupRequestData
1334
+
1335
+ Defines the request payload for LeaveGroup.
1336
+
1337
+ | Field | Type | Required | Notes |
1338
+ |-------|------|----------|-------|
1339
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1340
+ | `groupId` | `string` | yes | _minLength=10, maxLength=10_ |
1341
+
1342
+ ### ServerLeaveGroupRequestData
1343
+
1344
+ Extends: `LeaveGroupRequestData`
1345
+
1346
+ Defines the request payload for ServerLeaveGroup.
1347
+
1348
+ _Không có field public (payload rỗng)._
1349
+
1350
+ ### AdminLeaveGroupRequestData
1351
+
1352
+ Extends: `ServerLeaveGroupRequestData`
1353
+
1354
+ Defines the request payload for AdminLeaveGroup.
1355
+
1356
+ _Không có field public (payload rỗng)._
1357
+
1358
+ ### RemovePlayerCharacterRequestData
1359
+
1360
+ Defines the request payload for RemovePlayerCharacter.
1361
+
1362
+ | Field | Type | Required | Notes |
1363
+ |-------|------|----------|-------|
1364
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1365
+ | `characterId` | `string` | yes | _minLength=11, maxLength=11_ |
1366
+
1367
+ ### ServerRemovePlayerCharacterRequestData
1368
+
1369
+ Extends: `RemovePlayerCharacterRequestData`
1370
+
1371
+ Defines the request payload for ServerRemovePlayerCharacter.
1372
+
1373
+ _Không có field public (payload rỗng)._
1374
+
1375
+ ### AdminRemovePlayerCharacterRequestData
1376
+
1377
+ Extends: `ServerRemovePlayerCharacterRequestData`
1378
+
1379
+ Defines the request payload for AdminRemovePlayerCharacter.
1380
+
1381
+ _Không có field public (payload rỗng)._
1382
+
1383
+ ### RemovePlayerFriendRequestData
1384
+
1385
+ Defines the request payload for RemovePlayerFriend.
1386
+
1387
+ | Field | Type | Required | Notes |
1388
+ |-------|------|----------|-------|
1389
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1390
+ | `friendId` | `string` | yes | _minLength=10, maxLength=10_ |
1391
+
1392
+ ### ServerRemovePlayerFriendRequestData
1393
+
1394
+ Extends: `RemovePlayerFriendRequestData`
1395
+
1396
+ Defines the request payload for ServerRemovePlayerFriend.
1397
+
1398
+ _Không có field public (payload rỗng)._
1399
+
1400
+ ### AdminRemovePlayerFriendRequestData
1401
+
1402
+ Extends: `ServerRemovePlayerFriendRequestData`
1403
+
1404
+ Defines the request payload for AdminRemovePlayerFriend.
1405
+
1406
+ _Không có field public (payload rỗng)._
1407
+
1408
+ ### RemovePlayerItemRequestData
1409
+
1410
+ Defines the request payload for RemovePlayerItem.
1411
+
1412
+ | Field | Type | Required | Notes |
1413
+ |-------|------|----------|-------|
1414
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1415
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
1416
+
1417
+ ### ServerRemovePlayerItemRequestData
1418
+
1419
+ Extends: `RemovePlayerItemRequestData`
1420
+
1421
+ Defines the request payload for ServerRemovePlayerItem.
1422
+
1423
+ _Không có field public (payload rỗng)._
1424
+
1425
+ ### AdminRemovePlayerItemRequestData
1426
+
1427
+ Extends: `ServerRemovePlayerItemRequestData`
1428
+
1429
+ Defines the request payload for AdminRemovePlayerItem.
1430
+
1431
+ _Không có field public (payload rỗng)._
1432
+
1433
+ ### RemoveSegmentRequestData
1434
+
1435
+ Defines the request payload for RemoveSegment.
1436
+
1437
+ | Field | Type | Required | Notes |
1438
+ |-------|------|----------|-------|
1439
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1440
+ | `value` | `string` | yes | _minLength=2, maxLength=32_ |
1441
+
1442
+ ### ServerRemoveSegmentRequestData
1443
+
1444
+ Extends: `RemoveSegmentRequestData`
1445
+
1446
+ Defines the request payload for ServerRemoveSegment.
1447
+
1448
+ _Không có field public (payload rỗng)._
1449
+
1450
+ ### AdminRemoveSegmentRequestData
1451
+
1452
+ Extends: `ServerRemoveSegmentRequestData`
1453
+
1454
+ Defines the request payload for AdminRemoveSegment.
1455
+
1456
+ _Không có field public (payload rỗng)._
1457
+
1458
+ ### RemoveTagRequestData
1459
+
1460
+ Defines the request payload for RemoveTag.
1461
+
1462
+ | Field | Type | Required | Notes |
1463
+ |-------|------|----------|-------|
1464
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1465
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
1466
+
1467
+ ### ServerRemoveTagRequestData
1468
+
1469
+ Extends: `RemoveTagRequestData`
1470
+
1471
+ Defines the request payload for ServerRemoveTag.
1472
+
1473
+ _Không có field public (payload rỗng)._
1474
+
1475
+ ### AdminRemoveTagRequestData
1476
+
1477
+ Extends: `ServerRemoveTagRequestData`
1478
+
1479
+ Defines the request payload for AdminRemoveTag.
1480
+
1481
+ _Không có field public (payload rỗng)._
1482
+
1483
+ ### SetAvatarRequestData
1484
+
1485
+ Defines the request payload for SetAvatar.
1486
+
1487
+ | Field | Type | Required | Notes |
1488
+ |-------|------|----------|-------|
1489
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1490
+ | `type` | `number` | yes | — |
1491
+ | `value` | `string` | yes | _minLength=1, maxLength=128_ |
1492
+
1493
+ ### ServerSetAvatarRequestData
1494
+
1495
+ Extends: `SetAvatarRequestData`
1496
+
1497
+ Defines the request payload for ServerSetAvatar.
1498
+
1499
+ _Không có field public (payload rỗng)._
1500
+
1501
+ ### AdminSetAvatarRequestData
1502
+
1503
+ Extends: `ServerSetAvatarRequestData`
1504
+
1505
+ Defines the request payload for AdminSetAvatar.
1506
+
1507
+ _Không có field public (payload rỗng)._
1508
+
1509
+ ### SetCountryCodeRequestData
1510
+
1511
+ Defines the request payload for SetCountryCode.
1512
+
1513
+ | Field | Type | Required | Notes |
1514
+ |-------|------|----------|-------|
1515
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1516
+ | `countryCode` | `string` | yes | _minLength=2, maxLength=32_ |
1517
+
1518
+ ### ServerSetCountryCodeRequestData
1519
+
1520
+ Extends: `SetCountryCodeRequestData`
1521
+
1522
+ Defines the request payload for ServerSetCountryCode.
1523
+
1524
+ _Không có field public (payload rỗng)._
1525
+
1526
+ ### AdminSetCountryCodeRequestData
1527
+
1528
+ Extends: `ServerSetCountryCodeRequestData`
1529
+
1530
+ Defines the request payload for AdminSetCountryCode.
1531
+
1532
+ _Không có field public (payload rỗng)._
1533
+
1534
+ ### SetCustomDataRequestData
1535
+
1536
+ Defines the request payload for SetCustomData.
1537
+
1538
+ | Field | Type | Required | Notes |
1539
+ |-------|------|----------|-------|
1540
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1541
+ | `customDatas` | `Array<CustomDataParam>` | yes | _minLength=1, maxLength=32, elementCls=CustomDataParam_ |
1542
+
1543
+ ### ServerSetCustomDataRequestData
1544
+
1545
+ Extends: `SetCustomDataRequestData`
1546
+
1547
+ Defines the request payload for ServerSetCustomData.
1548
+
1549
+ _Không có field public (payload rỗng)._
1550
+
1551
+ ### AdminSetCustomDataRequestData
1552
+
1553
+ Extends: `ServerSetCustomDataRequestData`
1554
+
1555
+ Defines the request payload for AdminSetCustomData.
1556
+
1557
+ _Không có field public (payload rỗng)._
1558
+
1559
+ ### SetDisplayNameRequestData
1560
+
1561
+ Defines the request payload for SetDisplayName.
1562
+
1563
+ | Field | Type | Required | Notes |
1564
+ |-------|------|----------|-------|
1565
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1566
+ | `displayName` | `string` | yes | _minLength=5, maxLength=32_ |
1567
+ | `uniqueDisplayName` | `boolean` | no | _default=false_ |
1568
+
1569
+ ### ServerSetDisplayNameRequestData
1570
+
1571
+ Extends: `SetDisplayNameRequestData`
1572
+
1573
+ Defines the request payload for ServerSetDisplayName.
1574
+
1575
+ _Không có field public (payload rỗng)._
1576
+
1577
+ ### AdminSetDisplayNameRequestData
1578
+
1579
+ Extends: `ServerSetDisplayNameRequestData`
1580
+
1581
+ Defines the request payload for AdminSetDisplayName.
1582
+
1583
+ _Không có field public (payload rỗng)._
1584
+
1585
+ ### SetPlayerBanRequestData
1586
+
1587
+ Defines the request payload for SetPlayerBan.
1588
+
1589
+ | Field | Type | Required | Notes |
1590
+ |-------|------|----------|-------|
1591
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1592
+ | `tsExpire` | `number` | yes | — |
1593
+ | `reason` | `string` | yes | — |
1594
+
1595
+ ### ServerSetPlayerBanRequestData
1596
+
1597
+ Extends: `SetPlayerBanRequestData`
1598
+
1599
+ Defines the request payload for ServerSetPlayerBan.
1600
+
1601
+ _Không có field public (payload rỗng)._
1602
+
1603
+ ### AdminSetPlayerBanRequestData
1604
+
1605
+ Extends: `ServerSetPlayerBanRequestData`
1606
+
1607
+ Defines the request payload for AdminSetPlayerBan.
1608
+
1609
+ _Không có field public (payload rỗng)._
1610
+
1611
+ ### ChangePlayerCurrencyRequestData
1612
+
1613
+ Defines the request payload for ChangePlayerCurrency.
1614
+
1615
+ | Field | Type | Required | Notes |
1616
+ |-------|------|----------|-------|
1617
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1618
+ | `playerCurrencies` | `Array<PlayerCurrencyParam>` | yes | _minLength=1, maxLength=32, elementCls=PlayerCurrencyParam_ |
1619
+ | `log` | `string` | yes | _minLength=1, maxLength=256_ |
1620
+
1621
+ ### ServerChangePlayerCurrencyRequestData
1622
+
1623
+ Extends: `ChangePlayerCurrencyRequestData`
1624
+
1625
+ Defines the request payload for ServerChangePlayerCurrency.
1626
+
1627
+ _Không có field public (payload rỗng)._
1628
+
1629
+ ### AdminChangePlayerCurrencyRequestData
1630
+
1631
+ Extends: `ServerChangePlayerCurrencyRequestData`
1632
+
1633
+ Defines the request payload for AdminChangePlayerCurrency.
1634
+
1635
+ _Không có field public (payload rỗng)._
1636
+
1637
+ ### SetPlayerDataRequestData
1638
+
1639
+ Defines the request payload for SetPlayerData.
1640
+
1641
+ | Field | Type | Required | Notes |
1642
+ |-------|------|----------|-------|
1643
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1644
+ | `playerDatas` | `Array<PlayerDataParam>` | yes | _minLength=1, maxLength=32, elementCls=PlayerDataParam_ |
1645
+
1646
+ ### ServerSetPlayerDataRequestData
1647
+
1648
+ Extends: `SetPlayerDataRequestData`
1649
+
1650
+ Defines the request payload for ServerSetPlayerData.
1651
+
1652
+ _Không có field public (payload rỗng)._
1653
+
1654
+ ### AdminSetPlayerDataRequestData
1655
+
1656
+ Extends: `ServerSetPlayerDataRequestData`
1657
+
1658
+ Defines the request payload for AdminSetPlayerData.
1659
+
1660
+ _Không có field public (payload rỗng)._
1661
+
1662
+ ### ChangePlayerStatisticsRequestData
1663
+
1664
+ Defines the request payload for ChangePlayerStatistics.
1665
+
1666
+ | Field | Type | Required | Notes |
1667
+ |-------|------|----------|-------|
1668
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1669
+ | `playerStatistics` | `Array<PlayerStatisticsParam>` | yes | _minLength=1, maxLength=32, elementCls=PlayerStatisticsParam_ |
1670
+ | `log` | `string` | yes | _minLength=1, maxLength=256_ |
1671
+
1672
+ ### ServerChangePlayerStatisticsRequestData
1673
+
1674
+ Extends: `ChangePlayerStatisticsRequestData`
1675
+
1676
+ Defines the request payload for ServerChangePlayerStatistics.
1677
+
1678
+ _Không có field public (payload rỗng)._
1679
+
1680
+ ### AdminChangePlayerStatisticsRequestData
1681
+
1682
+ Extends: `ServerChangePlayerStatisticsRequestData`
1683
+
1684
+ Defines the request payload for AdminChangePlayerStatistics.
1685
+
1686
+ _Không có field public (payload rỗng)._
1687
+
1688
+ ### SetTagRequestData
1689
+
1690
+ Defines the request payload for SetTag.
1691
+
1692
+ | Field | Type | Required | Notes |
1693
+ |-------|------|----------|-------|
1694
+ | `userId` | `string` | no | _minLength=10, maxLength=10_ |
1695
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
1696
+ | `value` | `string` | yes | _minLength=2, maxLength=32_ |
1697
+
1698
+ ### ServerSetTagRequestData
1699
+
1700
+ Extends: `SetTagRequestData`
1701
+
1702
+ Defines the request payload for ServerSetTag.
1703
+
1704
+ _Không có field public (payload rỗng)._
1705
+
1706
+ ### AdminSetTagRequestData
1707
+
1708
+ Extends: `ServerSetTagRequestData`
1709
+
1710
+ Defines the request payload for AdminSetTag.
1711
+
1712
+ _Không có field public (payload rỗng)._
1713
+
1714
+ ### GetCurrencyLogRequestData
1715
+
1716
+ Reads currency change logs for the current or target game player. Pagination is token-based rather than skip-based.
1717
+
1718
+ | Field | Type | Required | Notes |
1719
+ |-------|------|----------|-------|
1720
+ | `keys` | `Array<string>` | yes | _minLength=1, maxLength=32, elementCls=String_ |
1721
+ | `userId` | `string` | yes | Optional self-target shortcut on the client route. — _minLength=10, maxLength=10_ |
1722
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
1723
+ | `token` | `string` | yes | Continuation token returned by the previous page. — _minLength=24, maxLength=24_ |
1724
+
1725
+ ### ServerGetCurrencyLogRequestData
1726
+
1727
+ Extends: `GetCurrencyLogRequestData`
1728
+
1729
+ Defines the request payload for ServerGetCurrencyLog.
1730
+
1731
+ _Không có field public (payload rỗng)._
1732
+
1733
+ ### AdminGetCurrencyLogRequestData
1734
+
1735
+ Extends: `ServerGetCurrencyLogRequestData`
1736
+
1737
+ Defines the request payload for AdminGetCurrencyLog.
1738
+
1739
+ _Không có field public (payload rỗng)._
1740
+
1741
+ ### GetStatisticsLogRequestData
1742
+
1743
+ Reads statistic change logs for the current or target game player. Pagination is token-based rather than skip-based.
1744
+
1745
+ | Field | Type | Required | Notes |
1746
+ |-------|------|----------|-------|
1747
+ | `keys` | `Array<string>` | yes | _minLength=1, maxLength=32, elementCls=String_ |
1748
+ | `userId` | `string` | yes | Optional self-target shortcut on the client route. — _minLength=10, maxLength=10_ |
1749
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
1750
+ | `token` | `string` | yes | Continuation token returned by the previous page. — _minLength=24, maxLength=24_ |
1751
+
1752
+ ### ServerGetStatisticsLogRequestData
1753
+
1754
+ Extends: `GetStatisticsLogRequestData`
1755
+
1756
+ Defines the request payload for ServerGetStatisticsLog.
1757
+
1758
+ _Không có field public (payload rỗng)._
1759
+
1760
+ ### AdminGetStatisticsLogRequestData
1761
+
1762
+ Extends: `ServerGetStatisticsLogRequestData`
1763
+
1764
+ Defines the request payload for AdminGetStatisticsLog.
1765
+
1766
+ _Không có field public (payload rỗng)._
1767
+
1768
+ ### InfoResponseParameters
1769
+
1770
+ Contains the optional fields requested through `InfoRequestParam`.
1771
+
1772
+ | Field | Type | Required | Notes |
1773
+ |-------|------|----------|-------|
1774
+ | `segments` | `Array<string>` | no | _elementCls=String_ |
1775
+ | `customDatas` | `Array<GenericModels.DataItem>` | no | _elementCls=GenericModels.DataItem_ |
1776
+ | `displayName` | `string` | no | — |
1777
+ | `avatar` | `GenericModels.AvatarItem` | no | — |
1778
+ | `tsCreate` | `number` | no | — |
1779
+ | `tags` | `Array<GenericModels.TagItem>` | no | _elementCls=GenericModels.TagItem_ |
1780
+ | `playerBan` | `GenericModels.BanItem` | no | — |
1781
+ | `playerDatas` | `Array<GenericModels.DataItem>` | no | _elementCls=GenericModels.DataItem_ |
1782
+ | `playerCurrencies` | `Array<GenericModels.CurrencyItem>` | no | _elementCls=GenericModels.CurrencyItem_ |
1783
+ | `playerStatistics` | `Array<GenericModels.StatisticsItem>` | no | _elementCls=GenericModels.StatisticsItem_ |
1784
+ | `playerCharacters` | `Array<GenericModels.CharacterItem>` | no | Lightweight relation items for owned character players, not full character snapshots. — _elementCls=GenericModels.CharacterItem_ |
1785
+ | `playerInventories` | `Array<GenericModels.InventoryItem>` | no | Lightweight relation items for inventory owned by the player. — _elementCls=GenericModels.InventoryItem_ |
1786
+ | `playerGroups` | `Array<GenericModels.GroupItem>` | no | Lightweight relation items for groups attached to the player. — _elementCls=GenericModels.GroupItem_ |
1787
+ | `playerFriends` | `Array<GenericModels.FriendItem>` | no | Lightweight relation items for friends attached to the player. — _elementCls=GenericModels.FriendItem_ |
1788
+ | `tsLastLogin` | `number` | no | — |
1789
+ | `ipAddressCreate` | `string` | no | — |
1790
+ | `countryCode` | `string` | no | — |
1791
+
1792
+ ### GamePlayerResponseData
1793
+
1794
+ Base game-player response envelope.
1795
+
1796
+ | Field | Type | Required | Notes |
1797
+ |-------|------|----------|-------|
1798
+ | `infoResponseParameters` | `InfoResponseParameters` | yes | Optional field bag controlled by the corresponding `InfoRequestParam`. |
1799
+
1800
+ ### GamePlayerWithUserIdResponseData
1801
+
1802
+ Extends: `GamePlayerResponseData`
1803
+
1804
+ Game-player envelope that also exposes the resolved game-player user ID.
1805
+
1806
+ | Field | Type | Required | Notes |
1807
+ |-------|------|----------|-------|
1808
+ | `userId` | `string` | yes | — |
1809
+
1810
+ ### GamePlayerLeaderboardResponseData
1811
+
1812
+ Extends: `GamePlayerWithUserIdResponseData`
1813
+
1814
+ Defines the response payload for GamePlayerLeaderboard.
1815
+
1816
+ | Field | Type | Required | Notes |
1817
+ |-------|------|----------|-------|
1818
+ | `position` | `number` | yes | — |
1819
+ | `backupValue` | `number` | no | — |
1820
+
1821
+ ### GamePlayerLogResponseData
1822
+
1823
+ Defines the response payload for GamePlayerLog.
1824
+
1825
+ | Field | Type | Required | Notes |
1826
+ |-------|------|----------|-------|
1827
+ | `userId` | `string` | yes | — |
1828
+ | `tsCreate` | `number` | yes | — |
1829
+ | `log` | `string` | yes | — |
1830
+ | `key` | `string` | yes | — |
1831
+ | `amount` | `number` | yes | — |
1832
+ | `startValue` | `number` | yes | — |
1833
+ | `finalValue` | `number` | yes | — |
1834
+
1835
+ ### GetStatisticsLeaderboardResponseData
1836
+
1837
+ Defines the response payload for GetStatisticsLeaderboard.
1838
+
1839
+ | Field | Type | Required | Notes |
1840
+ |-------|------|----------|-------|
1841
+ | `results` | `Array<GamePlayerLeaderboardResponseData>` | yes | _elementCls=GamePlayerLeaderboardResponseData_ |
1842
+ | `tsCreate` | `number` | no | — |
1843
+
1844
+ ### GetCurrencyLeaderboardResponseData
1845
+
1846
+ Defines the response payload for GetCurrencyLeaderboard.
1847
+
1848
+ | Field | Type | Required | Notes |
1849
+ |-------|------|----------|-------|
1850
+ | `results` | `Array<GamePlayerLeaderboardResponseData>` | yes | _elementCls=GamePlayerLeaderboardResponseData_ |
1851
+
1852
+ ### GetLastLoginLeaderboardResponseData
1853
+
1854
+ Defines the response payload for GetLastLoginLeaderboard.
1855
+
1856
+ | Field | Type | Required | Notes |
1857
+ |-------|------|----------|-------|
1858
+ | `results` | `Array<GamePlayerLeaderboardResponseData>` | yes | _elementCls=GamePlayerLeaderboardResponseData_ |
1859
+
1860
+ ### GetCreateLeaderboardResponseData
1861
+
1862
+ Defines the response payload for GetCreateLeaderboard.
1863
+
1864
+ | Field | Type | Required | Notes |
1865
+ |-------|------|----------|-------|
1866
+ | `results` | `Array<GamePlayerLeaderboardResponseData>` | yes | _elementCls=GamePlayerLeaderboardResponseData_ |
1867
+
1868
+ ### GamePlayersWithUserIdResponseData
1869
+
1870
+ Defines the response payload for GamePlayersWithUserId.
1871
+
1872
+ | Field | Type | Required | Notes |
1873
+ |-------|------|----------|-------|
1874
+ | `results` | `Array<GamePlayerWithUserIdResponseData>` | yes | _elementCls=GamePlayerWithUserIdResponseData_ |
1875
+
1876
+ ### OnlineStatusResponseData
1877
+
1878
+ Reports the latest known login timestamp and active socket identity for a player.
1879
+
1880
+ | Field | Type | Required | Notes |
1881
+ |-------|------|----------|-------|
1882
+ | `tsLastLogin` | `number` | yes | — |
1883
+ | `socketId` | `string` | yes | — |
1884
+
1885
+ ### GetCurrencyLeaderboardRequestData
1886
+
1887
+ Defines the request payload for GetCurrencyLeaderboard.
1888
+
1889
+ | Field | Type | Required | Notes |
1890
+ |-------|------|----------|-------|
1891
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
1892
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
1893
+ | `skip` | `number` | no | _min=0, default=0_ |
1894
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
1895
+ | `loadFromCache` | `boolean` | no | _default=true_ |
1896
+
1897
+ ### ServerGetCurrencyLeaderboardRequestData
1898
+
1899
+ Extends: `GetCurrencyLeaderboardRequestData`
1900
+
1901
+ Defines the request payload for ServerGetCurrencyLeaderboard.
1902
+
1903
+ _Không có field public (payload rỗng)._
1904
+
1905
+ ### AdminGetCurrencyLeaderboardRequestData
1906
+
1907
+ Extends: `ServerGetCurrencyLeaderboardRequestData`
1908
+
1909
+ Defines the request payload for AdminGetCurrencyLeaderboard.
1910
+
1911
+ _Không có field public (payload rỗng)._
1912
+
1913
+ ### GetLastLoginLeaderboardRequestData
1914
+
1915
+ Defines the request payload for GetLastLoginLeaderboard.
1916
+
1917
+ | Field | Type | Required | Notes |
1918
+ |-------|------|----------|-------|
1919
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
1920
+ | `skip` | `number` | no | _min=0, default=0_ |
1921
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
1922
+ | `loadFromCache` | `boolean` | no | _default=true_ |
1923
+
1924
+ ### ServerGetLastLoginLeaderboardRequestData
1925
+
1926
+ Extends: `GetLastLoginLeaderboardRequestData`
1927
+
1928
+ Defines the request payload for ServerGetLastLoginLeaderboard.
1929
+
1930
+ _Không có field public (payload rỗng)._
1931
+
1932
+ ### AdminGetLastLoginLeaderboardRequestData
1933
+
1934
+ Extends: `ServerGetLastLoginLeaderboardRequestData`
1935
+
1936
+ Defines the request payload for AdminGetLastLoginLeaderboard.
1937
+
1938
+ _Không có field public (payload rỗng)._
1939
+
1940
+ ### GetStatisticsLogResponseData
1941
+
1942
+ Returns one page of statistics logs.
1943
+
1944
+ | Field | Type | Required | Notes |
1945
+ |-------|------|----------|-------|
1946
+ | `results` | `Array<GamePlayerLogResponseData>` | yes | _elementCls=GamePlayerLogResponseData_ |
1947
+ | `token` | `string` | no | Continuation token for the next page, or `undefined` when pagination is exhausted. |
1948
+
1949
+ ### GetCurrencyLogResponseData
1950
+
1951
+ Returns one page of currency logs.
1952
+
1953
+ | Field | Type | Required | Notes |
1954
+ |-------|------|----------|-------|
1955
+ | `results` | `Array<GamePlayerLogResponseData>` | yes | _elementCls=GamePlayerLogResponseData_ |
1956
+ | `token` | `string` | no | Continuation token for the next page, or `undefined` when pagination is exhausted. |
1957
+
1958
+ ### EmptyResponseData
1959
+
1960
+ Defines an intentionally empty response payload.
1961
+
1962
+ _Không có field public (payload rỗng)._
1963
+
1964
+ ## Namespace `GamePlayerRequestModels`
1965
+
1966
+ ### AddPlayerFriendOperationRequest
1967
+
1968
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.AddPlayerFriendRequestData>`
1969
+
1970
+ Maps the AddPlayerFriend operation to a typed request wrapper.
1971
+
1972
+ _Không có field public (payload rỗng)._
1973
+
1974
+ ### ServerAddPlayerFriendOperationRequest
1975
+
1976
+ Extends: `AddPlayerFriendOperationRequest`
1977
+
1978
+ Maps the ServerAddPlayerFriend operation to a typed request wrapper.
1979
+
1980
+ _Không có field public (payload rỗng)._
1981
+
1982
+ ### AdminAddPlayerFriendOperationRequest
1983
+
1984
+ Extends: `AddPlayerFriendOperationRequest`
1985
+
1986
+ Maps the AdminAddPlayerFriend operation to a typed request wrapper.
1987
+
1988
+ _Không có field public (payload rỗng)._
1989
+
1990
+ ### AddSegmentOperationRequest
1991
+
1992
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.AddSegmentRequestData>`
1993
+
1994
+ Maps the AddSegment operation to a typed request wrapper.
1995
+
1996
+ _Không có field public (payload rỗng)._
1997
+
1998
+ ### ServerAddSegmentOperationRequest
1999
+
2000
+ Extends: `AddSegmentOperationRequest`
2001
+
2002
+ Maps the ServerAddSegment operation to a typed request wrapper.
2003
+
2004
+ _Không có field public (payload rỗng)._
2005
+
2006
+ ### AdminAddSegmentOperationRequest
2007
+
2008
+ Extends: `AddSegmentOperationRequest`
2009
+
2010
+ Maps the AdminAddSegment operation to a typed request wrapper.
2011
+
2012
+ _Không có field public (payload rỗng)._
2013
+
2014
+ ### GetAvatarOperationRequest
2015
+
2016
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetAvatarRequestData>`
2017
+
2018
+ Maps the GetAvatar operation to a typed request wrapper.
2019
+
2020
+ _Không có field public (payload rỗng)._
2021
+
2022
+ ### ServerGetAvatarOperationRequest
2023
+
2024
+ Extends: `GetAvatarOperationRequest`
2025
+
2026
+ Maps the ServerGetAvatar operation to a typed request wrapper.
2027
+
2028
+ _Không có field public (payload rỗng)._
2029
+
2030
+ ### AdminGetAvatarOperationRequest
2031
+
2032
+ Extends: `GetAvatarOperationRequest`
2033
+
2034
+ Maps the AdminGetAvatar operation to a typed request wrapper.
2035
+
2036
+ _Không có field public (payload rỗng)._
2037
+
2038
+ ### GetCountryCodeOperationRequest
2039
+
2040
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetCountryCodeRequestData>`
2041
+
2042
+ Maps the GetCountryCode operation to a typed request wrapper.
2043
+
2044
+ _Không có field public (payload rỗng)._
2045
+
2046
+ ### ServerGetCountryCodeOperationRequest
2047
+
2048
+ Extends: `GetCountryCodeOperationRequest`
2049
+
2050
+ Maps the ServerGetCountryCode operation to a typed request wrapper.
2051
+
2052
+ _Không có field public (payload rỗng)._
2053
+
2054
+ ### AdminGetCountryCodeOperationRequest
2055
+
2056
+ Extends: `GetCountryCodeOperationRequest`
2057
+
2058
+ Maps the AdminGetCountryCode operation to a typed request wrapper.
2059
+
2060
+ _Không có field public (payload rỗng)._
2061
+
2062
+ ### GetCustomDataOperationRequest
2063
+
2064
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetCustomDataRequestData>`
2065
+
2066
+ Maps the GetCustomData operation to a typed request wrapper.
2067
+
2068
+ _Không có field public (payload rỗng)._
2069
+
2070
+ ### ServerGetCustomDataOperationRequest
2071
+
2072
+ Extends: `GetCustomDataOperationRequest`
2073
+
2074
+ Maps the ServerGetCustomData operation to a typed request wrapper.
2075
+
2076
+ _Không có field public (payload rỗng)._
2077
+
2078
+ ### AdminGetCustomDataOperationRequest
2079
+
2080
+ Extends: `GetCustomDataOperationRequest`
2081
+
2082
+ Maps the AdminGetCustomData operation to a typed request wrapper.
2083
+
2084
+ _Không có field public (payload rỗng)._
2085
+
2086
+ ### GetDisplayNameOperationRequest
2087
+
2088
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetDisplayNameRequestData>`
2089
+
2090
+ Maps the GetDisplayName operation to a typed request wrapper.
2091
+
2092
+ _Không có field public (payload rỗng)._
2093
+
2094
+ ### ServerGetDisplayNameOperationRequest
2095
+
2096
+ Extends: `GetDisplayNameOperationRequest`
2097
+
2098
+ Maps the ServerGetDisplayName operation to a typed request wrapper.
2099
+
2100
+ _Không có field public (payload rỗng)._
2101
+
2102
+ ### AdminGetDisplayNameOperationRequest
2103
+
2104
+ Extends: `GetDisplayNameOperationRequest`
2105
+
2106
+ Maps the AdminGetDisplayName operation to a typed request wrapper.
2107
+
2108
+ _Không có field public (payload rỗng)._
2109
+
2110
+ ### GetFriendStatisticsLeaderboardAroundPlayerOperationRequest
2111
+
2112
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetFriendStatisticsLeaderboardAroundPlayerRequestData>`
2113
+
2114
+ Maps the GetFriendStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
2115
+
2116
+ _Không có field public (payload rỗng)._
2117
+
2118
+ ### ServerGetFriendStatisticsLeaderboardAroundPlayerOperationRequest
2119
+
2120
+ Extends: `GetFriendStatisticsLeaderboardAroundPlayerOperationRequest`
2121
+
2122
+ Maps the ServerGetFriendStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
2123
+
2124
+ _Không có field public (payload rỗng)._
2125
+
2126
+ ### AdminGetFriendStatisticsLeaderboardAroundPlayerOperationRequest
2127
+
2128
+ Extends: `GetFriendStatisticsLeaderboardAroundPlayerOperationRequest`
2129
+
2130
+ Maps the AdminGetFriendStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
2131
+
2132
+ _Không có field public (payload rỗng)._
2133
+
2134
+ ### GetFriendStatisticsLeaderboardOperationRequest
2135
+
2136
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetFriendStatisticsLeaderboardRequestData>`
2137
+
2138
+ Maps the GetFriendStatisticsLeaderboard operation to a typed request wrapper.
2139
+
2140
+ _Không có field public (payload rỗng)._
2141
+
2142
+ ### ServerGetFriendStatisticsLeaderboardOperationRequest
2143
+
2144
+ Extends: `GetFriendStatisticsLeaderboardOperationRequest`
2145
+
2146
+ Maps the ServerGetFriendStatisticsLeaderboard operation to a typed request wrapper.
2147
+
2148
+ _Không có field public (payload rỗng)._
2149
+
2150
+ ### AdminGetFriendStatisticsLeaderboardOperationRequest
2151
+
2152
+ Extends: `GetFriendStatisticsLeaderboardOperationRequest`
2153
+
2154
+ Maps the AdminGetFriendStatisticsLeaderboard operation to a typed request wrapper.
2155
+
2156
+ _Không có field public (payload rỗng)._
2157
+
2158
+ ### GetIpAddressCreateOperationRequest
2159
+
2160
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetIpAddressCreateRequestData>`
2161
+
2162
+ Maps the GetIpAddressCreate operation to a typed request wrapper.
2163
+
2164
+ _Không có field public (payload rỗng)._
2165
+
2166
+ ### ServerGetIpAddressCreateOperationRequest
2167
+
2168
+ Extends: `GetIpAddressCreateOperationRequest`
2169
+
2170
+ Maps the ServerGetIpAddressCreate operation to a typed request wrapper.
2171
+
2172
+ _Không có field public (payload rỗng)._
2173
+
2174
+ ### AdminGetIpAddressCreateOperationRequest
2175
+
2176
+ Extends: `GetIpAddressCreateOperationRequest`
2177
+
2178
+ Maps the AdminGetIpAddressCreate operation to a typed request wrapper.
2179
+
2180
+ _Không có field public (payload rỗng)._
2181
+
2182
+ ### GetOnlineStatusOperationRequest
2183
+
2184
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetOnlineStatusRequestData>`
2185
+
2186
+ Maps the GetOnlineStatus operation to a typed request wrapper.
2187
+
2188
+ _Không có field public (payload rỗng)._
2189
+
2190
+ ### ServerGetOnlineStatusOperationRequest
2191
+
2192
+ Extends: `GetOnlineStatusOperationRequest`
2193
+
2194
+ Maps the ServerGetOnlineStatus operation to a typed request wrapper.
2195
+
2196
+ _Không có field public (payload rỗng)._
2197
+
2198
+ ### AdminGetOnlineStatusOperationRequest
2199
+
2200
+ Extends: `GetOnlineStatusOperationRequest`
2201
+
2202
+ Maps the AdminGetOnlineStatus operation to a typed request wrapper.
2203
+
2204
+ _Không có field public (payload rỗng)._
2205
+
2206
+ ### GetPlayerBanOperationRequest
2207
+
2208
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetPlayerBanRequestData>`
2209
+
2210
+ Maps the GetPlayerBan operation to a typed request wrapper.
2211
+
2212
+ _Không có field public (payload rỗng)._
2213
+
2214
+ ### ServerGetPlayerBanOperationRequest
2215
+
2216
+ Extends: `GetPlayerBanOperationRequest`
2217
+
2218
+ Maps the ServerGetPlayerBan operation to a typed request wrapper.
2219
+
2220
+ _Không có field public (payload rỗng)._
2221
+
2222
+ ### AdminGetPlayerBanOperationRequest
2223
+
2224
+ Extends: `GetPlayerBanOperationRequest`
2225
+
2226
+ Maps the AdminGetPlayerBan operation to a typed request wrapper.
2227
+
2228
+ _Không có field public (payload rỗng)._
2229
+
2230
+ ### GetPlayerCharacterOperationRequest
2231
+
2232
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetPlayerCharacterRequestData>`
2233
+
2234
+ Maps the GetPlayerCharacter operation to a typed request wrapper.
2235
+
2236
+ _Không có field public (payload rỗng)._
2237
+
2238
+ ### ServerGetPlayerCharacterOperationRequest
2239
+
2240
+ Extends: `GetPlayerCharacterOperationRequest`
2241
+
2242
+ Maps the ServerGetPlayerCharacter operation to a typed request wrapper.
2243
+
2244
+ _Không có field public (payload rỗng)._
2245
+
2246
+ ### AdminGetPlayerCharacterOperationRequest
2247
+
2248
+ Extends: `GetPlayerCharacterOperationRequest`
2249
+
2250
+ Maps the AdminGetPlayerCharacter operation to a typed request wrapper.
2251
+
2252
+ _Không có field public (payload rỗng)._
2253
+
2254
+ ### GetPlayerCurrencyOperationRequest
2255
+
2256
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetPlayerCurrencyRequestData>`
2257
+
2258
+ Maps the GetPlayerCurrency operation to a typed request wrapper.
2259
+
2260
+ _Không có field public (payload rỗng)._
2261
+
2262
+ ### ServerGetPlayerCurrencyOperationRequest
2263
+
2264
+ Extends: `GetPlayerCurrencyOperationRequest`
2265
+
2266
+ Maps the ServerGetPlayerCurrency operation to a typed request wrapper.
2267
+
2268
+ _Không có field public (payload rỗng)._
2269
+
2270
+ ### AdminGetPlayerCurrencyOperationRequest
2271
+
2272
+ Extends: `GetPlayerCurrencyOperationRequest`
2273
+
2274
+ Maps the AdminGetPlayerCurrency operation to a typed request wrapper.
2275
+
2276
+ _Không có field public (payload rỗng)._
2277
+
2278
+ ### GetPlayerDataOperationRequest
2279
+
2280
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetPlayerDataRequestData>`
2281
+
2282
+ Maps the GetPlayerData operation to a typed request wrapper.
2283
+
2284
+ _Không có field public (payload rỗng)._
2285
+
2286
+ ### ServerGetPlayerDataOperationRequest
2287
+
2288
+ Extends: `GetPlayerDataOperationRequest`
2289
+
2290
+ Maps the ServerGetPlayerData operation to a typed request wrapper.
2291
+
2292
+ _Không có field public (payload rỗng)._
2293
+
2294
+ ### AdminGetPlayerDataOperationRequest
2295
+
2296
+ Extends: `GetPlayerDataOperationRequest`
2297
+
2298
+ Maps the AdminGetPlayerData operation to a typed request wrapper.
2299
+
2300
+ _Không có field public (payload rỗng)._
2301
+
2302
+ ### GetPlayerFriendOperationRequest
2303
+
2304
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetPlayerFriendRequestData>`
2305
+
2306
+ Maps the GetPlayerFriend operation to a typed request wrapper.
2307
+
2308
+ _Không có field public (payload rỗng)._
2309
+
2310
+ ### ServerGetPlayerFriendOperationRequest
2311
+
2312
+ Extends: `GetPlayerFriendOperationRequest`
2313
+
2314
+ Maps the ServerGetPlayerFriend operation to a typed request wrapper.
2315
+
2316
+ _Không có field public (payload rỗng)._
2317
+
2318
+ ### AdminGetPlayerFriendOperationRequest
2319
+
2320
+ Extends: `GetPlayerFriendOperationRequest`
2321
+
2322
+ Maps the AdminGetPlayerFriend operation to a typed request wrapper.
2323
+
2324
+ _Không có field public (payload rỗng)._
2325
+
2326
+ ### GetPlayerGroupOperationRequest
2327
+
2328
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetPlayerGroupRequestData>`
2329
+
2330
+ Maps the GetPlayerGroup operation to a typed request wrapper.
2331
+
2332
+ _Không có field public (payload rỗng)._
2333
+
2334
+ ### ServerGetPlayerGroupOperationRequest
2335
+
2336
+ Extends: `GetPlayerGroupOperationRequest`
2337
+
2338
+ Maps the ServerGetPlayerGroup operation to a typed request wrapper.
2339
+
2340
+ _Không có field public (payload rỗng)._
2341
+
2342
+ ### AdminGetPlayerGroupOperationRequest
2343
+
2344
+ Extends: `GetPlayerGroupOperationRequest`
2345
+
2346
+ Maps the AdminGetPlayerGroup operation to a typed request wrapper.
2347
+
2348
+ _Không có field public (payload rỗng)._
2349
+
2350
+ ### GetPlayerInformationOperationRequest
2351
+
2352
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetPlayerInformationRequestData>`
2353
+
2354
+ Maps the GetPlayerInformation operation to a typed request wrapper.
2355
+
2356
+ _Không có field public (payload rỗng)._
2357
+
2358
+ ### ServerGetPlayerInformationOperationRequest
2359
+
2360
+ Extends: `GetPlayerInformationOperationRequest`
2361
+
2362
+ Maps the ServerGetPlayerInformation operation to a typed request wrapper.
2363
+
2364
+ _Không có field public (payload rỗng)._
2365
+
2366
+ ### AdminGetPlayerInformationOperationRequest
2367
+
2368
+ Extends: `GetPlayerInformationOperationRequest`
2369
+
2370
+ Maps the AdminGetPlayerInformation operation to a typed request wrapper.
2371
+
2372
+ _Không có field public (payload rỗng)._
2373
+
2374
+ ### GetPlayerInventoryOperationRequest
2375
+
2376
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetPlayerInventoryRequestData>`
2377
+
2378
+ Maps the GetPlayerInventory operation to a typed request wrapper.
2379
+
2380
+ _Không có field public (payload rỗng)._
2381
+
2382
+ ### ServerGetPlayerInventoryOperationRequest
2383
+
2384
+ Extends: `GetPlayerInventoryOperationRequest`
2385
+
2386
+ Maps the ServerGetPlayerInventory operation to a typed request wrapper.
2387
+
2388
+ _Không có field public (payload rỗng)._
2389
+
2390
+ ### AdminGetPlayerInventoryOperationRequest
2391
+
2392
+ Extends: `GetPlayerInventoryOperationRequest`
2393
+
2394
+ Maps the AdminGetPlayerInventory operation to a typed request wrapper.
2395
+
2396
+ _Không có field public (payload rỗng)._
2397
+
2398
+ ### GetPlayerStatisticsOperationRequest
2399
+
2400
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetPlayerStatisticsRequestData>`
2401
+
2402
+ Maps the GetPlayerStatistics operation to a typed request wrapper.
2403
+
2404
+ _Không có field public (payload rỗng)._
2405
+
2406
+ ### ServerGetPlayerStatisticsOperationRequest
2407
+
2408
+ Extends: `GetPlayerStatisticsOperationRequest`
2409
+
2410
+ Maps the ServerGetPlayerStatistics operation to a typed request wrapper.
2411
+
2412
+ _Không có field public (payload rỗng)._
2413
+
2414
+ ### AdminGetPlayerStatisticsOperationRequest
2415
+
2416
+ Extends: `GetPlayerStatisticsOperationRequest`
2417
+
2418
+ Maps the AdminGetPlayerStatistics operation to a typed request wrapper.
2419
+
2420
+ _Không có field public (payload rỗng)._
2421
+
2422
+ ### GetPlayersWithDisplayNameOperationRequest
2423
+
2424
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetPlayersWithDisplayNameRequestData>`
2425
+
2426
+ Maps the GetPlayersWithDisplayName operation to a typed request wrapper.
2427
+
2428
+ _Không có field public (payload rỗng)._
2429
+
2430
+ ### ServerGetPlayersWithDisplayNameOperationRequest
2431
+
2432
+ Extends: `GetPlayersWithDisplayNameOperationRequest`
2433
+
2434
+ Maps the ServerGetPlayersWithDisplayName operation to a typed request wrapper.
2435
+
2436
+ _Không có field public (payload rỗng)._
2437
+
2438
+ ### AdminGetPlayersWithDisplayNameOperationRequest
2439
+
2440
+ Extends: `GetPlayersWithDisplayNameOperationRequest`
2441
+
2442
+ Maps the AdminGetPlayersWithDisplayName operation to a typed request wrapper.
2443
+
2444
+ _Không có field public (payload rỗng)._
2445
+
2446
+ ### GetPlayersWithSegmentOperationRequest
2447
+
2448
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetPlayersWithSegmentRequestData>`
2449
+
2450
+ Maps the GetPlayersWithSegment operation to a typed request wrapper.
2451
+
2452
+ _Không có field public (payload rỗng)._
2453
+
2454
+ ### ServerGetPlayersWithSegmentOperationRequest
2455
+
2456
+ Extends: `GetPlayersWithSegmentOperationRequest`
2457
+
2458
+ Maps the ServerGetPlayersWithSegment operation to a typed request wrapper.
2459
+
2460
+ _Không có field public (payload rỗng)._
2461
+
2462
+ ### AdminGetPlayersWithSegmentOperationRequest
2463
+
2464
+ Extends: `GetPlayersWithSegmentOperationRequest`
2465
+
2466
+ Maps the AdminGetPlayersWithSegment operation to a typed request wrapper.
2467
+
2468
+ _Không có field public (payload rỗng)._
2469
+
2470
+ ### GetPlayersWithTagOperationRequest
2471
+
2472
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetPlayersWithTagRequestData>`
2473
+
2474
+ Maps the GetPlayersWithTag operation to a typed request wrapper.
2475
+
2476
+ _Không có field public (payload rỗng)._
2477
+
2478
+ ### ServerGetPlayersWithTagOperationRequest
2479
+
2480
+ Extends: `GetPlayersWithTagOperationRequest`
2481
+
2482
+ Maps the ServerGetPlayersWithTag operation to a typed request wrapper.
2483
+
2484
+ _Không có field public (payload rỗng)._
2485
+
2486
+ ### AdminGetPlayersWithTagOperationRequest
2487
+
2488
+ Extends: `GetPlayersWithTagOperationRequest`
2489
+
2490
+ Maps the AdminGetPlayersWithTag operation to a typed request wrapper.
2491
+
2492
+ _Không có field public (payload rỗng)._
2493
+
2494
+ ### GetSegmentOperationRequest
2495
+
2496
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetSegmentRequestData>`
2497
+
2498
+ Maps the GetSegment operation to a typed request wrapper.
2499
+
2500
+ _Không có field public (payload rỗng)._
2501
+
2502
+ ### ServerGetSegmentOperationRequest
2503
+
2504
+ Extends: `GetSegmentOperationRequest`
2505
+
2506
+ Maps the ServerGetSegment operation to a typed request wrapper.
2507
+
2508
+ _Không có field public (payload rỗng)._
2509
+
2510
+ ### AdminGetSegmentOperationRequest
2511
+
2512
+ Extends: `GetSegmentOperationRequest`
2513
+
2514
+ Maps the AdminGetSegment operation to a typed request wrapper.
2515
+
2516
+ _Không có field public (payload rỗng)._
2517
+
2518
+ ### GetStatisticsLeaderboardAroundPlayerOperationRequest
2519
+
2520
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData>`
2521
+
2522
+ Maps the GetStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
2523
+
2524
+ _Không có field public (payload rỗng)._
2525
+
2526
+ ### ServerGetStatisticsLeaderboardAroundPlayerOperationRequest
2527
+
2528
+ Extends: `GetStatisticsLeaderboardAroundPlayerOperationRequest`
2529
+
2530
+ Maps the ServerGetStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
2531
+
2532
+ _Không có field public (payload rỗng)._
2533
+
2534
+ ### AdminGetStatisticsLeaderboardAroundPlayerOperationRequest
2535
+
2536
+ Extends: `GetStatisticsLeaderboardAroundPlayerOperationRequest`
2537
+
2538
+ Maps the AdminGetStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
2539
+
2540
+ _Không có field public (payload rỗng)._
2541
+
2542
+ ### GetStatisticsLeaderboardOperationRequest
2543
+
2544
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetStatisticsLeaderboardRequestData>`
2545
+
2546
+ Maps the GetStatisticsLeaderboard operation to a typed request wrapper.
2547
+
2548
+ _Không có field public (payload rỗng)._
2549
+
2550
+ ### ServerGetStatisticsLeaderboardOperationRequest
2551
+
2552
+ Extends: `GetStatisticsLeaderboardOperationRequest`
2553
+
2554
+ Maps the ServerGetStatisticsLeaderboard operation to a typed request wrapper.
2555
+
2556
+ _Không có field public (payload rỗng)._
2557
+
2558
+ ### AdminGetStatisticsLeaderboardOperationRequest
2559
+
2560
+ Extends: `GetStatisticsLeaderboardOperationRequest`
2561
+
2562
+ Maps the AdminGetStatisticsLeaderboard operation to a typed request wrapper.
2563
+
2564
+ _Không có field public (payload rỗng)._
2565
+
2566
+ ### GetTagOperationRequest
2567
+
2568
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetTagRequestData>`
2569
+
2570
+ Maps the GetTag operation to a typed request wrapper.
2571
+
2572
+ _Không có field public (payload rỗng)._
2573
+
2574
+ ### ServerGetTagOperationRequest
2575
+
2576
+ Extends: `GetTagOperationRequest`
2577
+
2578
+ Maps the ServerGetTag operation to a typed request wrapper.
2579
+
2580
+ _Không có field public (payload rỗng)._
2581
+
2582
+ ### AdminGetTagOperationRequest
2583
+
2584
+ Extends: `GetTagOperationRequest`
2585
+
2586
+ Maps the AdminGetTag operation to a typed request wrapper.
2587
+
2588
+ _Không có field public (payload rỗng)._
2589
+
2590
+ ### GetTsCreateOperationRequest
2591
+
2592
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetTsCreateRequestData>`
2593
+
2594
+ Maps the GetTsCreate operation to a typed request wrapper.
2595
+
2596
+ _Không có field public (payload rỗng)._
2597
+
2598
+ ### ServerGetTsCreateOperationRequest
2599
+
2600
+ Extends: `GetTsCreateOperationRequest`
2601
+
2602
+ Maps the ServerGetTsCreate operation to a typed request wrapper.
2603
+
2604
+ _Không có field public (payload rỗng)._
2605
+
2606
+ ### AdminGetTsCreateOperationRequest
2607
+
2608
+ Extends: `GetTsCreateOperationRequest`
2609
+
2610
+ Maps the AdminGetTsCreate operation to a typed request wrapper.
2611
+
2612
+ _Không có field public (payload rỗng)._
2613
+
2614
+ ### GetTsLastLoginOperationRequest
2615
+
2616
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetTsLastLoginRequestData>`
2617
+
2618
+ Maps the GetTsLastLogin operation to a typed request wrapper.
2619
+
2620
+ _Không có field public (payload rỗng)._
2621
+
2622
+ ### ServerGetTsLastLoginOperationRequest
2623
+
2624
+ Extends: `GetTsLastLoginOperationRequest`
2625
+
2626
+ Maps the ServerGetTsLastLogin operation to a typed request wrapper.
2627
+
2628
+ _Không có field public (payload rỗng)._
2629
+
2630
+ ### AdminGetTsLastLoginOperationRequest
2631
+
2632
+ Extends: `GetTsLastLoginOperationRequest`
2633
+
2634
+ Maps the AdminGetTsLastLogin operation to a typed request wrapper.
2635
+
2636
+ _Không có field public (payload rỗng)._
2637
+
2638
+ ### CreateGroupOperationRequest
2639
+
2640
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.CreateGroupRequestData>`
2641
+
2642
+ Maps the CreateGroup operation to a typed request wrapper.
2643
+
2644
+ _Không có field public (payload rỗng)._
2645
+
2646
+ ### ServerCreateGroupOperationRequest
2647
+
2648
+ Extends: `CreateGroupOperationRequest`
2649
+
2650
+ Maps the ServerCreateGroup operation to a typed request wrapper.
2651
+
2652
+ _Không có field public (payload rỗng)._
2653
+
2654
+ ### AdminCreateGroupOperationRequest
2655
+
2656
+ Extends: `CreateGroupOperationRequest`
2657
+
2658
+ Maps the AdminCreateGroup operation to a typed request wrapper.
2659
+
2660
+ _Không có field public (payload rỗng)._
2661
+
2662
+ ### CreatePlayerCharacterOperationRequest
2663
+
2664
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.CreatePlayerCharacterRequestData>`
2665
+
2666
+ Maps the CreatePlayerCharacter operation to a typed request wrapper.
2667
+
2668
+ _Không có field public (payload rỗng)._
2669
+
2670
+ ### ServerCreatePlayerCharacterOperationRequest
2671
+
2672
+ Extends: `CreatePlayerCharacterOperationRequest`
2673
+
2674
+ Maps the ServerCreatePlayerCharacter operation to a typed request wrapper.
2675
+
2676
+ _Không có field public (payload rỗng)._
2677
+
2678
+ ### AdminCreatePlayerCharacterOperationRequest
2679
+
2680
+ Extends: `CreatePlayerCharacterOperationRequest`
2681
+
2682
+ Maps the AdminCreatePlayerCharacter operation to a typed request wrapper.
2683
+
2684
+ _Không có field public (payload rỗng)._
2685
+
2686
+ ### CreatePlayerItemOperationRequest
2687
+
2688
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.CreatePlayerItemRequestData>`
2689
+
2690
+ Maps the CreatePlayerItem operation to a typed request wrapper.
2691
+
2692
+ _Không có field public (payload rỗng)._
2693
+
2694
+ ### ServerCreatePlayerItemOperationRequest
2695
+
2696
+ Extends: `CreatePlayerItemOperationRequest`
2697
+
2698
+ Maps the ServerCreatePlayerItem operation to a typed request wrapper.
2699
+
2700
+ _Không có field public (payload rỗng)._
2701
+
2702
+ ### AdminCreatePlayerItemOperationRequest
2703
+
2704
+ Extends: `CreatePlayerItemOperationRequest`
2705
+
2706
+ Maps the AdminCreatePlayerItem operation to a typed request wrapper.
2707
+
2708
+ _Không có field public (payload rỗng)._
2709
+
2710
+ ### JoinGroupOperationRequest
2711
+
2712
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.JoinGroupRequestData>`
2713
+
2714
+ Maps the JoinGroup operation to a typed request wrapper.
2715
+
2716
+ _Không có field public (payload rỗng)._
2717
+
2718
+ ### ServerJoinGroupOperationRequest
2719
+
2720
+ Extends: `JoinGroupOperationRequest`
2721
+
2722
+ Maps the ServerJoinGroup operation to a typed request wrapper.
2723
+
2724
+ _Không có field public (payload rỗng)._
2725
+
2726
+ ### AdminJoinGroupOperationRequest
2727
+
2728
+ Extends: `JoinGroupOperationRequest`
2729
+
2730
+ Maps the AdminJoinGroup operation to a typed request wrapper.
2731
+
2732
+ _Không có field public (payload rỗng)._
2733
+
2734
+ ### LeaveGroupOperationRequest
2735
+
2736
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.LeaveGroupRequestData>`
2737
+
2738
+ Maps the LeaveGroup operation to a typed request wrapper.
2739
+
2740
+ _Không có field public (payload rỗng)._
2741
+
2742
+ ### ServerLeaveGroupOperationRequest
2743
+
2744
+ Extends: `LeaveGroupOperationRequest`
2745
+
2746
+ Maps the ServerLeaveGroup operation to a typed request wrapper.
2747
+
2748
+ _Không có field public (payload rỗng)._
2749
+
2750
+ ### AdminLeaveGroupOperationRequest
2751
+
2752
+ Extends: `LeaveGroupOperationRequest`
2753
+
2754
+ Maps the AdminLeaveGroup operation to a typed request wrapper.
2755
+
2756
+ _Không có field public (payload rỗng)._
2757
+
2758
+ ### RemovePlayerCharacterOperationRequest
2759
+
2760
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.RemovePlayerCharacterRequestData>`
2761
+
2762
+ Maps the RemovePlayerCharacter operation to a typed request wrapper.
2763
+
2764
+ _Không có field public (payload rỗng)._
2765
+
2766
+ ### ServerRemovePlayerCharacterOperationRequest
2767
+
2768
+ Extends: `RemovePlayerCharacterOperationRequest`
2769
+
2770
+ Maps the ServerRemovePlayerCharacter operation to a typed request wrapper.
2771
+
2772
+ _Không có field public (payload rỗng)._
2773
+
2774
+ ### AdminRemovePlayerCharacterOperationRequest
2775
+
2776
+ Extends: `RemovePlayerCharacterOperationRequest`
2777
+
2778
+ Maps the AdminRemovePlayerCharacter operation to a typed request wrapper.
2779
+
2780
+ _Không có field public (payload rỗng)._
2781
+
2782
+ ### RemovePlayerFriendOperationRequest
2783
+
2784
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.RemovePlayerFriendRequestData>`
2785
+
2786
+ Maps the RemovePlayerFriend operation to a typed request wrapper.
2787
+
2788
+ _Không có field public (payload rỗng)._
2789
+
2790
+ ### ServerRemovePlayerFriendOperationRequest
2791
+
2792
+ Extends: `RemovePlayerFriendOperationRequest`
2793
+
2794
+ Maps the ServerRemovePlayerFriend operation to a typed request wrapper.
2795
+
2796
+ _Không có field public (payload rỗng)._
2797
+
2798
+ ### AdminRemovePlayerFriendOperationRequest
2799
+
2800
+ Extends: `RemovePlayerFriendOperationRequest`
2801
+
2802
+ Maps the AdminRemovePlayerFriend operation to a typed request wrapper.
2803
+
2804
+ _Không có field public (payload rỗng)._
2805
+
2806
+ ### RemovePlayerItemOperationRequest
2807
+
2808
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.RemovePlayerItemRequestData>`
2809
+
2810
+ Maps the RemovePlayerItem operation to a typed request wrapper.
2811
+
2812
+ _Không có field public (payload rỗng)._
2813
+
2814
+ ### ServerRemovePlayerItemOperationRequest
2815
+
2816
+ Extends: `RemovePlayerItemOperationRequest`
2817
+
2818
+ Maps the ServerRemovePlayerItem operation to a typed request wrapper.
2819
+
2820
+ _Không có field public (payload rỗng)._
2821
+
2822
+ ### AdminRemovePlayerItemOperationRequest
2823
+
2824
+ Extends: `RemovePlayerItemOperationRequest`
2825
+
2826
+ Maps the AdminRemovePlayerItem operation to a typed request wrapper.
2827
+
2828
+ _Không có field public (payload rỗng)._
2829
+
2830
+ ### RemoveSegmentOperationRequest
2831
+
2832
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.RemoveSegmentRequestData>`
2833
+
2834
+ Maps the RemoveSegment operation to a typed request wrapper.
2835
+
2836
+ _Không có field public (payload rỗng)._
2837
+
2838
+ ### ServerRemoveSegmentOperationRequest
2839
+
2840
+ Extends: `RemoveSegmentOperationRequest`
2841
+
2842
+ Maps the ServerRemoveSegment operation to a typed request wrapper.
2843
+
2844
+ _Không có field public (payload rỗng)._
2845
+
2846
+ ### AdminRemoveSegmentOperationRequest
2847
+
2848
+ Extends: `RemoveSegmentOperationRequest`
2849
+
2850
+ Maps the AdminRemoveSegment operation to a typed request wrapper.
2851
+
2852
+ _Không có field public (payload rỗng)._
2853
+
2854
+ ### RemoveTagOperationRequest
2855
+
2856
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.RemoveTagRequestData>`
2857
+
2858
+ Maps the RemoveTag operation to a typed request wrapper.
2859
+
2860
+ _Không có field public (payload rỗng)._
2861
+
2862
+ ### ServerRemoveTagOperationRequest
2863
+
2864
+ Extends: `RemoveTagOperationRequest`
2865
+
2866
+ Maps the ServerRemoveTag operation to a typed request wrapper.
2867
+
2868
+ _Không có field public (payload rỗng)._
2869
+
2870
+ ### AdminRemoveTagOperationRequest
2871
+
2872
+ Extends: `RemoveTagOperationRequest`
2873
+
2874
+ Maps the AdminRemoveTag operation to a typed request wrapper.
2875
+
2876
+ _Không có field public (payload rỗng)._
2877
+
2878
+ ### SetAvatarOperationRequest
2879
+
2880
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.SetAvatarRequestData>`
2881
+
2882
+ Maps the SetAvatar operation to a typed request wrapper.
2883
+
2884
+ _Không có field public (payload rỗng)._
2885
+
2886
+ ### ServerSetAvatarOperationRequest
2887
+
2888
+ Extends: `SetAvatarOperationRequest`
2889
+
2890
+ Maps the ServerSetAvatar operation to a typed request wrapper.
2891
+
2892
+ _Không có field public (payload rỗng)._
2893
+
2894
+ ### AdminSetAvatarOperationRequest
2895
+
2896
+ Extends: `SetAvatarOperationRequest`
2897
+
2898
+ Maps the AdminSetAvatar operation to a typed request wrapper.
2899
+
2900
+ _Không có field public (payload rỗng)._
2901
+
2902
+ ### SetCountryCodeOperationRequest
2903
+
2904
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.SetCountryCodeRequestData>`
2905
+
2906
+ Maps the SetCountryCode operation to a typed request wrapper.
2907
+
2908
+ _Không có field public (payload rỗng)._
2909
+
2910
+ ### ServerSetCountryCodeOperationRequest
2911
+
2912
+ Extends: `SetCountryCodeOperationRequest`
2913
+
2914
+ Maps the ServerSetCountryCode operation to a typed request wrapper.
2915
+
2916
+ _Không có field public (payload rỗng)._
2917
+
2918
+ ### AdminSetCountryCodeOperationRequest
2919
+
2920
+ Extends: `SetCountryCodeOperationRequest`
2921
+
2922
+ Maps the AdminSetCountryCode operation to a typed request wrapper.
2923
+
2924
+ _Không có field public (payload rỗng)._
2925
+
2926
+ ### SetCustomDataOperationRequest
2927
+
2928
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.SetCustomDataRequestData>`
2929
+
2930
+ Maps the SetCustomData operation to a typed request wrapper.
2931
+
2932
+ _Không có field public (payload rỗng)._
2933
+
2934
+ ### ServerSetCustomDataOperationRequest
2935
+
2936
+ Extends: `SetCustomDataOperationRequest`
2937
+
2938
+ Maps the ServerSetCustomData operation to a typed request wrapper.
2939
+
2940
+ _Không có field public (payload rỗng)._
2941
+
2942
+ ### AdminSetCustomDataOperationRequest
2943
+
2944
+ Extends: `SetCustomDataOperationRequest`
2945
+
2946
+ Maps the AdminSetCustomData operation to a typed request wrapper.
2947
+
2948
+ _Không có field public (payload rỗng)._
2949
+
2950
+ ### SetDisplayNameOperationRequest
2951
+
2952
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.SetDisplayNameRequestData>`
2953
+
2954
+ Maps the SetDisplayName operation to a typed request wrapper.
2955
+
2956
+ _Không có field public (payload rỗng)._
2957
+
2958
+ ### ServerSetDisplayNameOperationRequest
2959
+
2960
+ Extends: `SetDisplayNameOperationRequest`
2961
+
2962
+ Maps the ServerSetDisplayName operation to a typed request wrapper.
2963
+
2964
+ _Không có field public (payload rỗng)._
2965
+
2966
+ ### AdminSetDisplayNameOperationRequest
2967
+
2968
+ Extends: `SetDisplayNameOperationRequest`
2969
+
2970
+ Maps the AdminSetDisplayName operation to a typed request wrapper.
2971
+
2972
+ _Không có field public (payload rỗng)._
2973
+
2974
+ ### SetPlayerBanOperationRequest
2975
+
2976
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.SetPlayerBanRequestData>`
2977
+
2978
+ Maps the SetPlayerBan operation to a typed request wrapper.
2979
+
2980
+ _Không có field public (payload rỗng)._
2981
+
2982
+ ### ServerSetPlayerBanOperationRequest
2983
+
2984
+ Extends: `SetPlayerBanOperationRequest`
2985
+
2986
+ Maps the ServerSetPlayerBan operation to a typed request wrapper.
2987
+
2988
+ _Không có field public (payload rỗng)._
2989
+
2990
+ ### AdminSetPlayerBanOperationRequest
2991
+
2992
+ Extends: `SetPlayerBanOperationRequest`
2993
+
2994
+ Maps the AdminSetPlayerBan operation to a typed request wrapper.
2995
+
2996
+ _Không có field public (payload rỗng)._
2997
+
2998
+ ### ChangePlayerCurrencyOperationRequest
2999
+
3000
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.ChangePlayerCurrencyRequestData>`
3001
+
3002
+ Maps the ChangePlayerCurrency operation to a typed request wrapper.
3003
+
3004
+ _Không có field public (payload rỗng)._
3005
+
3006
+ ### ServerChangePlayerCurrencyOperationRequest
3007
+
3008
+ Extends: `ChangePlayerCurrencyOperationRequest`
3009
+
3010
+ Maps the ServerChangePlayerCurrency operation to a typed request wrapper.
3011
+
3012
+ _Không có field public (payload rỗng)._
3013
+
3014
+ ### AdminChangePlayerCurrencyOperationRequest
3015
+
3016
+ Extends: `ChangePlayerCurrencyOperationRequest`
3017
+
3018
+ Maps the AdminChangePlayerCurrency operation to a typed request wrapper.
3019
+
3020
+ _Không có field public (payload rỗng)._
3021
+
3022
+ ### SetPlayerDataOperationRequest
3023
+
3024
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.SetPlayerDataRequestData>`
3025
+
3026
+ Maps the SetPlayerData operation to a typed request wrapper.
3027
+
3028
+ _Không có field public (payload rỗng)._
3029
+
3030
+ ### ServerSetPlayerDataOperationRequest
3031
+
3032
+ Extends: `SetPlayerDataOperationRequest`
3033
+
3034
+ Maps the ServerSetPlayerData operation to a typed request wrapper.
3035
+
3036
+ _Không có field public (payload rỗng)._
3037
+
3038
+ ### AdminSetPlayerDataOperationRequest
3039
+
3040
+ Extends: `SetPlayerDataOperationRequest`
3041
+
3042
+ Maps the AdminSetPlayerData operation to a typed request wrapper.
3043
+
3044
+ _Không có field public (payload rỗng)._
3045
+
3046
+ ### ChangePlayerStatisticsOperationRequest
3047
+
3048
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.ChangePlayerStatisticsRequestData>`
3049
+
3050
+ Maps the ChangePlayerStatistics operation to a typed request wrapper.
3051
+
3052
+ _Không có field public (payload rỗng)._
3053
+
3054
+ ### ServerChangePlayerStatisticsOperationRequest
3055
+
3056
+ Extends: `ChangePlayerStatisticsOperationRequest`
3057
+
3058
+ Maps the ServerChangePlayerStatistics operation to a typed request wrapper.
3059
+
3060
+ _Không có field public (payload rỗng)._
3061
+
3062
+ ### AdminChangePlayerStatisticsOperationRequest
3063
+
3064
+ Extends: `ChangePlayerStatisticsOperationRequest`
3065
+
3066
+ Maps the AdminChangePlayerStatistics operation to a typed request wrapper.
3067
+
3068
+ _Không có field public (payload rỗng)._
3069
+
3070
+ ### SetTagOperationRequest
3071
+
3072
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.SetTagRequestData>`
3073
+
3074
+ Maps the SetTag operation to a typed request wrapper.
3075
+
3076
+ _Không có field public (payload rỗng)._
3077
+
3078
+ ### ServerSetTagOperationRequest
3079
+
3080
+ Extends: `SetTagOperationRequest`
3081
+
3082
+ Maps the ServerSetTag operation to a typed request wrapper.
3083
+
3084
+ _Không có field public (payload rỗng)._
3085
+
3086
+ ### AdminSetTagOperationRequest
3087
+
3088
+ Extends: `SetTagOperationRequest`
3089
+
3090
+ Maps the AdminSetTag operation to a typed request wrapper.
3091
+
3092
+ _Không có field public (payload rỗng)._
3093
+
3094
+ ### GetCurrencyLeaderboardOperationRequest
3095
+
3096
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetCurrencyLeaderboardRequestData>`
3097
+
3098
+ Maps the GetCurrencyLeaderboard operation to a typed request wrapper.
3099
+
3100
+ _Không có field public (payload rỗng)._
3101
+
3102
+ ### ServerGetCurrencyLeaderboardOperationRequest
3103
+
3104
+ Extends: `GetCurrencyLeaderboardOperationRequest`
3105
+
3106
+ Maps the ServerGetCurrencyLeaderboard operation to a typed request wrapper.
3107
+
3108
+ _Không có field public (payload rỗng)._
3109
+
3110
+ ### AdminGetCurrencyLeaderboardOperationRequest
3111
+
3112
+ Extends: `GetCurrencyLeaderboardOperationRequest`
3113
+
3114
+ Maps the AdminGetCurrencyLeaderboard operation to a typed request wrapper.
3115
+
3116
+ _Không có field public (payload rỗng)._
3117
+
3118
+ ### GetLastLoginLeaderboardOperationRequest
3119
+
3120
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetLastLoginLeaderboardRequestData>`
3121
+
3122
+ Maps the GetLastLoginLeaderboard operation to a typed request wrapper.
3123
+
3124
+ _Không có field public (payload rỗng)._
3125
+
3126
+ ### ServerGetLastLoginLeaderboardOperationRequest
3127
+
3128
+ Extends: `GetLastLoginLeaderboardOperationRequest`
3129
+
3130
+ Maps the ServerGetLastLoginLeaderboard operation to a typed request wrapper.
3131
+
3132
+ _Không có field public (payload rỗng)._
3133
+
3134
+ ### AdminGetLastLoginLeaderboardOperationRequest
3135
+
3136
+ Extends: `GetLastLoginLeaderboardOperationRequest`
3137
+
3138
+ Maps the AdminGetLastLoginLeaderboard operation to a typed request wrapper.
3139
+
3140
+ _Không có field public (payload rỗng)._
3141
+
3142
+ ### GetCreateLeaderboardOperationRequest
3143
+
3144
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetCreateLeaderboardRequestData>`
3145
+
3146
+ Maps the GetCreateLeaderboard operation to a typed request wrapper.
3147
+
3148
+ _Không có field public (payload rỗng)._
3149
+
3150
+ ### ServerGetCreateLeaderboardOperationRequest
3151
+
3152
+ Extends: `GetCreateLeaderboardOperationRequest`
3153
+
3154
+ Maps the ServerGetCreateLeaderboard operation to a typed request wrapper.
3155
+
3156
+ _Không có field public (payload rỗng)._
3157
+
3158
+ ### AdminGetCreateLeaderboardOperationRequest
3159
+
3160
+ Extends: `GetCreateLeaderboardOperationRequest`
3161
+
3162
+ Maps the AdminGetCreateLeaderboard operation to a typed request wrapper.
3163
+
3164
+ _Không có field public (payload rỗng)._
3165
+
3166
+ ### GetStatisticsLogOperationRequest
3167
+
3168
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetStatisticsLogRequestData>`
3169
+
3170
+ Maps the GetStatisticsLog operation to a typed request wrapper.
3171
+
3172
+ _Không có field public (payload rỗng)._
3173
+
3174
+ ### ServerGetStatisticsLogOperationRequest
3175
+
3176
+ Extends: `GetStatisticsLogOperationRequest`
3177
+
3178
+ Maps the ServerGetStatisticsLog operation to a typed request wrapper.
3179
+
3180
+ _Không có field public (payload rỗng)._
3181
+
3182
+ ### AdminGetStatisticsLogOperationRequest
3183
+
3184
+ Extends: `GetStatisticsLogOperationRequest`
3185
+
3186
+ Maps the AdminGetStatisticsLog operation to a typed request wrapper.
3187
+
3188
+ _Không có field public (payload rỗng)._
3189
+
3190
+ ### GetCurrencyLogOperationRequest
3191
+
3192
+ Extends: `CustomOperationRequestAbstract<GamePlayerModels.GetCurrencyLogRequestData>`
3193
+
3194
+ Maps the GetCurrencyLog operation to a typed request wrapper.
3195
+
3196
+ _Không có field public (payload rỗng)._
3197
+
3198
+ ### ServerGetCurrencyLogOperationRequest
3199
+
3200
+ Extends: `GetCurrencyLogOperationRequest`
3201
+
3202
+ Maps the ServerGetCurrencyLog operation to a typed request wrapper.
3203
+
3204
+ _Không có field public (payload rỗng)._
3205
+
3206
+ ### AdminGetCurrencyLogOperationRequest
3207
+
3208
+ Extends: `GetCurrencyLogOperationRequest`
3209
+
3210
+ Maps the AdminGetCurrencyLog operation to a typed request wrapper.
3211
+
3212
+ _Không có field public (payload rỗng)._
3213
+
3214
+ ## Namespace `GamePlayerResponseModels`
3215
+
3216
+ ### AddPlayerFriendOperationResponse
3217
+
3218
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData>`
3219
+
3220
+ Maps the AddPlayerFriend operation to a typed response wrapper.
3221
+
3222
+ _Không có field public (payload rỗng)._
3223
+
3224
+ ### AddSegmentOperationResponse
3225
+
3226
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData>`
3227
+
3228
+ Maps the AddSegment operation to a typed response wrapper.
3229
+
3230
+ _Không có field public (payload rỗng)._
3231
+
3232
+ ### GetAvatarOperationResponse
3233
+
3234
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3235
+
3236
+ Maps the GetAvatar operation to a typed response wrapper.
3237
+
3238
+ _Không có field public (payload rỗng)._
3239
+
3240
+ ### GetCountryCodeOperationResponse
3241
+
3242
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3243
+
3244
+ Maps the GetCountryCode operation to a typed response wrapper.
3245
+
3246
+ _Không có field public (payload rỗng)._
3247
+
3248
+ ### GetCustomDataOperationResponse
3249
+
3250
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3251
+
3252
+ Maps the GetCustomData operation to a typed response wrapper.
3253
+
3254
+ _Không có field public (payload rỗng)._
3255
+
3256
+ ### GetDisplayNameOperationResponse
3257
+
3258
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3259
+
3260
+ Maps the GetDisplayName operation to a typed response wrapper.
3261
+
3262
+ _Không có field public (payload rỗng)._
3263
+
3264
+ ### GetFriendStatisticsLeaderboardAroundPlayerOperationResponse
3265
+
3266
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GetStatisticsLeaderboardResponseData>`
3267
+
3268
+ Maps the GetFriendStatisticsLeaderboardAroundPlayer operation to a typed response wrapper.
3269
+
3270
+ _Không có field public (payload rỗng)._
3271
+
3272
+ ### GetFriendStatisticsLeaderboardOperationResponse
3273
+
3274
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GetStatisticsLeaderboardResponseData>`
3275
+
3276
+ Maps the GetFriendStatisticsLeaderboard operation to a typed response wrapper.
3277
+
3278
+ _Không có field public (payload rỗng)._
3279
+
3280
+ ### GetIpAddressCreateOperationResponse
3281
+
3282
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3283
+
3284
+ Maps the GetIpAddressCreate operation to a typed response wrapper.
3285
+
3286
+ _Không có field public (payload rỗng)._
3287
+
3288
+ ### GetOnlineStatusOperationResponse
3289
+
3290
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.OnlineStatusResponseData>`
3291
+
3292
+ Maps the GetOnlineStatus operation to a typed response wrapper.
3293
+
3294
+ _Không có field public (payload rỗng)._
3295
+
3296
+ ### GetPlayerBanOperationResponse
3297
+
3298
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3299
+
3300
+ Maps the GetPlayerBan operation to a typed response wrapper.
3301
+
3302
+ _Không có field public (payload rỗng)._
3303
+
3304
+ ### GetPlayerCharacterOperationResponse
3305
+
3306
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3307
+
3308
+ Maps the GetPlayerCharacter operation to a typed response wrapper.
3309
+
3310
+ _Không có field public (payload rỗng)._
3311
+
3312
+ ### GetPlayerCurrencyOperationResponse
3313
+
3314
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3315
+
3316
+ Maps the GetPlayerCurrency operation to a typed response wrapper.
3317
+
3318
+ _Không có field public (payload rỗng)._
3319
+
3320
+ ### GetPlayerDataOperationResponse
3321
+
3322
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3323
+
3324
+ Maps the GetPlayerData operation to a typed response wrapper.
3325
+
3326
+ _Không có field public (payload rỗng)._
3327
+
3328
+ ### GetPlayerFriendOperationResponse
3329
+
3330
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3331
+
3332
+ Maps the GetPlayerFriend operation to a typed response wrapper.
3333
+
3334
+ _Không có field public (payload rỗng)._
3335
+
3336
+ ### GetPlayerGroupOperationResponse
3337
+
3338
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3339
+
3340
+ Maps the GetPlayerGroup operation to a typed response wrapper.
3341
+
3342
+ _Không có field public (payload rỗng)._
3343
+
3344
+ ### GetPlayerInformationOperationResponse
3345
+
3346
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3347
+
3348
+ Maps the GetPlayerInformation operation to a typed response wrapper.
3349
+
3350
+ _Không có field public (payload rỗng)._
3351
+
3352
+ ### GetPlayerInventoryOperationResponse
3353
+
3354
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3355
+
3356
+ Maps the GetPlayerInventory operation to a typed response wrapper.
3357
+
3358
+ _Không có field public (payload rỗng)._
3359
+
3360
+ ### GetPlayerStatisticsOperationResponse
3361
+
3362
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3363
+
3364
+ Maps the GetPlayerStatistics operation to a typed response wrapper.
3365
+
3366
+ _Không có field public (payload rỗng)._
3367
+
3368
+ ### GetPlayersWithDisplayNameOperationResponse
3369
+
3370
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayersWithUserIdResponseData>`
3371
+
3372
+ Maps the GetPlayersWithDisplayName operation to a typed response wrapper.
3373
+
3374
+ _Không có field public (payload rỗng)._
3375
+
3376
+ ### GetPlayersWithSegmentOperationResponse
3377
+
3378
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayersWithUserIdResponseData>`
3379
+
3380
+ Maps the GetPlayersWithSegment operation to a typed response wrapper.
3381
+
3382
+ _Không có field public (payload rỗng)._
3383
+
3384
+ ### GetPlayersWithTagOperationResponse
3385
+
3386
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayersWithUserIdResponseData>`
3387
+
3388
+ Maps the GetPlayersWithTag operation to a typed response wrapper.
3389
+
3390
+ _Không có field public (payload rỗng)._
3391
+
3392
+ ### GetSegmentOperationResponse
3393
+
3394
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3395
+
3396
+ Maps the GetSegment operation to a typed response wrapper.
3397
+
3398
+ _Không có field public (payload rỗng)._
3399
+
3400
+ ### GetStatisticsLeaderboardAroundPlayerOperationResponse
3401
+
3402
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GetStatisticsLeaderboardResponseData>`
3403
+
3404
+ Maps the GetStatisticsLeaderboardAroundPlayer operation to a typed response wrapper.
3405
+
3406
+ _Không có field public (payload rỗng)._
3407
+
3408
+ ### GetStatisticsLeaderboardOperationResponse
3409
+
3410
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GetStatisticsLeaderboardResponseData>`
3411
+
3412
+ Maps the GetStatisticsLeaderboard operation to a typed response wrapper.
3413
+
3414
+ _Không có field public (payload rỗng)._
3415
+
3416
+ ### GetTagOperationResponse
3417
+
3418
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3419
+
3420
+ Maps the GetTag operation to a typed response wrapper.
3421
+
3422
+ _Không có field public (payload rỗng)._
3423
+
3424
+ ### GetTsCreateOperationResponse
3425
+
3426
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3427
+
3428
+ Maps the GetTsCreate operation to a typed response wrapper.
3429
+
3430
+ _Không có field public (payload rỗng)._
3431
+
3432
+ ### GetTsLastLoginOperationResponse
3433
+
3434
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3435
+
3436
+ Maps the GetTsLastLogin operation to a typed response wrapper.
3437
+
3438
+ _Không có field public (payload rỗng)._
3439
+
3440
+ ### CreateGroupOperationResponse
3441
+
3442
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3443
+
3444
+ Maps the CreateGroup operation to a typed response wrapper.
3445
+
3446
+ _Không có field public (payload rỗng)._
3447
+
3448
+ ### CreatePlayerCharacterOperationResponse
3449
+
3450
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3451
+
3452
+ Maps the CreatePlayerCharacter operation to a typed response wrapper.
3453
+
3454
+ _Không có field public (payload rỗng)._
3455
+
3456
+ ### CreatePlayerItemOperationResponse
3457
+
3458
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3459
+
3460
+ Maps the CreatePlayerItem operation to a typed response wrapper.
3461
+
3462
+ _Không có field public (payload rỗng)._
3463
+
3464
+ ### JoinGroupOperationResponse
3465
+
3466
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData>`
3467
+
3468
+ Maps the JoinGroup operation to a typed response wrapper.
3469
+
3470
+ _Không có field public (payload rỗng)._
3471
+
3472
+ ### LeaveGroupOperationResponse
3473
+
3474
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData>`
3475
+
3476
+ Maps the LeaveGroup operation to a typed response wrapper.
3477
+
3478
+ _Không có field public (payload rỗng)._
3479
+
3480
+ ### RemovePlayerCharacterOperationResponse
3481
+
3482
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData>`
3483
+
3484
+ Maps the RemovePlayerCharacter operation to a typed response wrapper.
3485
+
3486
+ _Không có field public (payload rỗng)._
3487
+
3488
+ ### RemovePlayerFriendOperationResponse
3489
+
3490
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData>`
3491
+
3492
+ Maps the RemovePlayerFriend operation to a typed response wrapper.
3493
+
3494
+ _Không có field public (payload rỗng)._
3495
+
3496
+ ### RemovePlayerItemOperationResponse
3497
+
3498
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData>`
3499
+
3500
+ Maps the RemovePlayerItem operation to a typed response wrapper.
3501
+
3502
+ _Không có field public (payload rỗng)._
3503
+
3504
+ ### RemoveSegmentOperationResponse
3505
+
3506
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData>`
3507
+
3508
+ Maps the RemoveSegment operation to a typed response wrapper.
3509
+
3510
+ _Không có field public (payload rỗng)._
3511
+
3512
+ ### RemoveTagOperationResponse
3513
+
3514
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData>`
3515
+
3516
+ Maps the RemoveTag operation to a typed response wrapper.
3517
+
3518
+ _Không có field public (payload rỗng)._
3519
+
3520
+ ### SetAvatarOperationResponse
3521
+
3522
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData>`
3523
+
3524
+ Maps the SetAvatar operation to a typed response wrapper.
3525
+
3526
+ _Không có field public (payload rỗng)._
3527
+
3528
+ ### SetCountryCodeOperationResponse
3529
+
3530
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData>`
3531
+
3532
+ Maps the SetCountryCode operation to a typed response wrapper.
3533
+
3534
+ _Không có field public (payload rỗng)._
3535
+
3536
+ ### SetCustomDataOperationResponse
3537
+
3538
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3539
+
3540
+ Maps the SetCustomData operation to a typed response wrapper.
3541
+
3542
+ _Không có field public (payload rỗng)._
3543
+
3544
+ ### SetDisplayNameOperationResponse
3545
+
3546
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData>`
3547
+
3548
+ Maps the SetDisplayName operation to a typed response wrapper.
3549
+
3550
+ _Không có field public (payload rỗng)._
3551
+
3552
+ ### SetPlayerBanOperationResponse
3553
+
3554
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData>`
3555
+
3556
+ Maps the SetPlayerBan operation to a typed response wrapper.
3557
+
3558
+ _Không có field public (payload rỗng)._
3559
+
3560
+ ### ChangePlayerCurrencyOperationResponse
3561
+
3562
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3563
+
3564
+ Maps the ChangePlayerCurrency operation to a typed response wrapper.
3565
+
3566
+ _Không có field public (payload rỗng)._
3567
+
3568
+ ### SetPlayerDataOperationResponse
3569
+
3570
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3571
+
3572
+ Maps the SetPlayerData operation to a typed response wrapper.
3573
+
3574
+ _Không có field public (payload rỗng)._
3575
+
3576
+ ### ChangePlayerStatisticsOperationResponse
3577
+
3578
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GamePlayerResponseData>`
3579
+
3580
+ Maps the ChangePlayerStatistics operation to a typed response wrapper.
3581
+
3582
+ _Không có field public (payload rỗng)._
3583
+
3584
+ ### SetTagOperationResponse
3585
+
3586
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.EmptyResponseData>`
3587
+
3588
+ Maps the SetTag operation to a typed response wrapper.
3589
+
3590
+ _Không có field public (payload rỗng)._
3591
+
3592
+ ### GetCurrencyLeaderboardOperationResponse
3593
+
3594
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GetCurrencyLeaderboardResponseData>`
3595
+
3596
+ Maps the GetCurrencyLeaderboard operation to a typed response wrapper.
3597
+
3598
+ _Không có field public (payload rỗng)._
3599
+
3600
+ ### GetLastLoginLeaderboardOperationResponse
3601
+
3602
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GetLastLoginLeaderboardResponseData>`
3603
+
3604
+ Maps the GetLastLoginLeaderboard operation to a typed response wrapper.
3605
+
3606
+ _Không có field public (payload rỗng)._
3607
+
3608
+ ### GetCreateLeaderboardOperationResponse
3609
+
3610
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GetCreateLeaderboardResponseData>`
3611
+
3612
+ Maps the GetCreateLeaderboard operation to a typed response wrapper.
3613
+
3614
+ _Không có field public (payload rỗng)._
3615
+
3616
+ ### GetStatisticsLogOperationResponse
3617
+
3618
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GetStatisticsLogResponseData>`
3619
+
3620
+ Maps the GetStatisticsLog operation to a typed response wrapper.
3621
+
3622
+ _Không có field public (payload rỗng)._
3623
+
3624
+ ### GetCurrencyLogOperationResponse
3625
+
3626
+ Extends: `CustomOperationResponseAbstract<GamePlayerModels.GetCurrencyLogResponseData>`
3627
+
3628
+ Maps the GetCurrencyLog operation to a typed response wrapper.
3629
+
3630
+ _Không có field public (payload rỗng)._
3631
+