@xmobitea/gn-typescript-client 2.6.13-tsc → 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 (400) hide show
  1. package/AGENTS.md +37 -0
  2. package/README.MD +420 -1
  3. package/dist/gearn.js.client.js +71354 -0
  4. package/dist/gearn.js.client.min.js +2 -0
  5. package/dist/gearn.js.client.min.js.LICENSE.txt +14 -0
  6. package/dist/index.d.ts +30 -0
  7. package/dist/index.js +58386 -339
  8. package/dist/runtime/GNNetwork.d.ts +687 -3
  9. package/dist/runtime/GNNetworkAuthenticateApi.d.ts +327 -0
  10. package/dist/runtime/GNNetworkCharacterPlayerApi.d.ts +1026 -0
  11. package/dist/runtime/GNNetworkCloudScriptApi.d.ts +141 -0
  12. package/dist/runtime/GNNetworkContentApi.d.ts +243 -0
  13. package/dist/runtime/GNNetworkDashboardApi.d.ts +221 -0
  14. package/dist/runtime/GNNetworkGamePlayerApi.d.ts +1033 -0
  15. package/dist/runtime/GNNetworkGroupApi.d.ts +783 -0
  16. package/dist/runtime/GNNetworkInventoryApi.d.ts +673 -0
  17. package/dist/runtime/GNNetworkMasterPlayerApi.d.ts +1614 -6
  18. package/dist/runtime/GNNetworkMultiplayerApi.d.ts +234 -0
  19. package/dist/runtime/GNNetworkStoreInventoryApi.d.ts +309 -0
  20. package/dist/runtime/common/Action0.d.ts +30 -0
  21. package/dist/runtime/common/Action1.d.ts +32 -0
  22. package/dist/runtime/common/Action2.d.ts +21 -0
  23. package/dist/runtime/common/Action3.d.ts +16 -0
  24. package/dist/runtime/common/Action4.d.ts +17 -0
  25. package/dist/runtime/common/GNData.d.ts +368 -0
  26. package/dist/runtime/config/GNServerSettings.d.ts +442 -12
  27. package/dist/runtime/constant/Commands.d.ts +80 -0
  28. package/dist/runtime/constant/EventCode.d.ts +48 -0
  29. package/dist/runtime/constant/OperationCode.d.ts +74 -1
  30. package/dist/runtime/constant/ReturnCode.d.ts +72 -0
  31. package/dist/runtime/constant/enumType/ExecuteResponseStatus.d.ts +31 -0
  32. package/dist/runtime/constant/enumType/FriendStatus.d.ts +39 -0
  33. package/dist/runtime/constant/enumType/GoogleLoginType.d.ts +23 -0
  34. package/dist/runtime/constant/enumType/GroupStatus.d.ts +32 -0
  35. package/dist/runtime/constant/enumType/InvalidMemberType.d.ts +75 -0
  36. package/dist/runtime/constant/enumType/ItemType.d.ts +23 -0
  37. package/dist/runtime/constant/enumType/MatchStatus.d.ts +30 -0
  38. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.d.ts +24 -0
  39. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.d.ts +34 -0
  40. package/dist/runtime/constant/enumType/OwnerType.d.ts +40 -0
  41. package/dist/runtime/constant/enumType/PermissionDataItem.d.ts +22 -0
  42. package/dist/runtime/constant/enumType/PushPlatformType.d.ts +18 -0
  43. package/dist/runtime/constant/enumType/RequestRole.d.ts +32 -0
  44. package/dist/runtime/constant/enumType/RequestType.d.ts +70 -0
  45. package/dist/runtime/constant/enumType/StoreItemType.d.ts +21 -0
  46. package/dist/runtime/constant/enumType/StoreReceiveType.d.ts +30 -0
  47. package/dist/runtime/constant/errorCode/ErrorCode.d.ts +190 -8
  48. package/dist/runtime/constant/parameterCode/ParameterCode.d.ts +35 -5
  49. package/dist/runtime/entity/DataMember.d.ts +338 -0
  50. package/dist/runtime/entity/GNMetadata.d.ts +101 -0
  51. package/dist/runtime/entity/InvalidMember.d.ts +28 -0
  52. package/dist/runtime/entity/OperationEvent.d.ts +49 -0
  53. package/dist/runtime/entity/OperationRequest.d.ts +108 -0
  54. package/dist/runtime/entity/OperationResponse.d.ts +110 -0
  55. package/dist/runtime/entity/models/AuthenticateModels.d.ts +115 -0
  56. package/dist/runtime/entity/models/AuthenticateRequestModels.d.ts +131 -0
  57. package/dist/runtime/entity/models/AuthenticateResponseModels.d.ts +131 -0
  58. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +625 -1
  59. package/dist/runtime/entity/models/CharacterPlayerRequestModels.d.ts +972 -0
  60. package/dist/runtime/entity/models/CharacterPlayerResponseModels.d.ts +332 -0
  61. package/dist/runtime/entity/models/CloudScriptModels.d.ts +109 -0
  62. package/dist/runtime/entity/models/CloudScriptRequestModels.d.ts +107 -0
  63. package/dist/runtime/entity/models/CloudScriptResponseModels.d.ts +46 -0
  64. package/dist/runtime/entity/models/ContentModels.d.ts +124 -0
  65. package/dist/runtime/entity/models/ContentRequestModels.d.ts +152 -0
  66. package/dist/runtime/entity/models/ContentResponseModels.d.ts +58 -0
  67. package/dist/runtime/entity/models/DashboardModels.d.ts +371 -8
  68. package/dist/runtime/entity/models/DashboardRequestModels.d.ts +172 -0
  69. package/dist/runtime/entity/models/DashboardResponseModels.d.ts +170 -0
  70. package/dist/runtime/entity/models/GamePlayerModels.d.ts +644 -1
  71. package/dist/runtime/entity/models/GamePlayerRequestModels.d.ts +959 -0
  72. package/dist/runtime/entity/models/GamePlayerResponseModels.d.ts +333 -1
  73. package/dist/runtime/entity/models/GenericModels.d.ts +94 -0
  74. package/dist/runtime/entity/models/GroupModels.d.ts +484 -2
  75. package/dist/runtime/entity/models/GroupRequestModels.d.ts +737 -0
  76. package/dist/runtime/entity/models/GroupResponseModels.d.ts +254 -0
  77. package/dist/runtime/entity/models/InventoryModels.d.ts +415 -0
  78. package/dist/runtime/entity/models/InventoryRequestModels.d.ts +629 -0
  79. package/dist/runtime/entity/models/InventoryResponseModels.d.ts +218 -0
  80. package/dist/runtime/entity/models/MasterPlayerModels.d.ts +1065 -3
  81. package/dist/runtime/entity/models/MasterPlayerRequestModels.d.ts +1560 -6
  82. package/dist/runtime/entity/models/MasterPlayerResponseModels.d.ts +532 -1
  83. package/dist/runtime/entity/models/MultiplayerModels.d.ts +199 -0
  84. package/dist/runtime/entity/models/MultiplayerRequestModels.d.ts +196 -0
  85. package/dist/runtime/entity/models/MultiplayerResponseModels.d.ts +74 -0
  86. package/dist/runtime/entity/models/StoreInventoryModels.d.ts +262 -0
  87. package/dist/runtime/entity/models/StoreInventoryRequestModels.d.ts +268 -0
  88. package/dist/runtime/entity/models/StoreInventoryResponseModels.d.ts +98 -0
  89. package/dist/runtime/entity/request/CustomOperationRequest.d.ts +99 -0
  90. package/dist/runtime/entity/response/CustomOperationResponse.d.ts +118 -0
  91. package/dist/runtime/entity/response/GetAuthInfoResponse.d.ts +53 -0
  92. package/dist/runtime/entity/response/HealthCheckResponse.d.ts +56 -0
  93. package/dist/runtime/entity/response/UploadFileResponse.d.ts +19 -0
  94. package/dist/runtime/helper/CodeHelper.d.ts +122 -0
  95. package/dist/runtime/helper/ConverterService.d.ts +74 -0
  96. package/dist/runtime/helper/EnumUtility.d.ts +63 -0
  97. package/dist/runtime/helper/GNSupport.d.ts +64 -4
  98. package/dist/runtime/helper/GNUtils.d.ts +54 -0
  99. package/dist/runtime/helper/MessagePackConverterService.d.ts +48 -0
  100. package/dist/runtime/helper/OperationHelper.d.ts +51 -0
  101. package/dist/runtime/helper/StorageService.d.ts +48 -8
  102. package/dist/runtime/logger/GNDebug.d.ts +117 -0
  103. package/dist/runtime/networking/AuthenticateStatus.d.ts +64 -0
  104. package/dist/runtime/networking/IPeer.d.ts +83 -0
  105. package/dist/runtime/networking/NetworkingPeer.d.ts +256 -1
  106. package/dist/runtime/networking/OperationPending.d.ts +112 -0
  107. package/dist/runtime/networking/PeerBase.d.ts +231 -0
  108. package/dist/runtime/networking/handler/IServerEventHandler.d.ts +84 -0
  109. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.d.ts +69 -0
  110. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.d.ts +49 -0
  111. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.d.ts +50 -0
  112. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.d.ts +41 -0
  113. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.d.ts +47 -0
  114. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.d.ts +46 -0
  115. package/dist/runtime/networking/http/HttpPeer.d.ts +173 -0
  116. package/dist/runtime/networking/http/NetworkingHttpPeerBase.d.ts +87 -0
  117. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.d.ts +113 -0
  118. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.d.ts +145 -0
  119. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.d.ts +198 -0
  120. package/dist/runtime/networking/socket/SocketPeer.d.ts +155 -0
  121. package/dist/runtime/typescript/ServiceUpdate.d.ts +46 -0
  122. package/docs/AI_CHEATSHEET.md +211 -0
  123. package/docs/COOKBOOK.md +912 -0
  124. package/docs/RULES.md +307 -0
  125. package/docs/ai-manifest.json +725 -0
  126. package/docs/guides/AUTHENTICATE.md +246 -0
  127. package/docs/guides/CHARACTER_PLAYER.md +439 -0
  128. package/docs/guides/CLOUDSCRIPT.md +335 -0
  129. package/docs/guides/COCOS_CREATOR_INTEGRATION.md +150 -0
  130. package/docs/guides/CONTENT.md +291 -0
  131. package/docs/guides/DASHBOARD.md +262 -0
  132. package/docs/guides/GAME_PLAYER.md +473 -0
  133. package/docs/guides/GROUP.md +412 -0
  134. package/docs/guides/INVENTORY.md +375 -0
  135. package/docs/guides/MASTER_PLAYER.md +458 -0
  136. package/docs/guides/MULTIPLAYER.md +303 -0
  137. package/docs/guides/STORE_INVENTORY.md +313 -0
  138. package/docs/llms-full.txt +43 -0
  139. package/docs/reference/API_AUTHENTICATE.md +75 -0
  140. package/docs/reference/API_CHARACTER_PLAYER.md +226 -0
  141. package/docs/reference/API_CLOUDSCRIPT.md +82 -0
  142. package/docs/reference/API_CONTENT.md +88 -0
  143. package/docs/reference/API_DASHBOARD.md +82 -0
  144. package/docs/reference/API_GAME_PLAYER.md +223 -0
  145. package/docs/reference/API_GROUP.md +187 -0
  146. package/docs/reference/API_INDEX.md +57 -0
  147. package/docs/reference/API_INVENTORY.md +169 -0
  148. package/docs/reference/API_MASTER_PLAYER.md +323 -0
  149. package/docs/reference/API_MULTIPLAYER.md +97 -0
  150. package/docs/reference/API_STORE_INVENTORY.md +109 -0
  151. package/docs/reference/CONFIG.md +107 -0
  152. package/docs/reference/DTO_INDEX.md +2543 -0
  153. package/docs/reference/ENUMS.md +433 -0
  154. package/docs/reference/ERROR_HANDLING.md +159 -0
  155. package/docs/reference/EVENTS.md +188 -0
  156. package/docs/reference/PERMISSION_RULES.md +55 -0
  157. package/docs/reference/dto/AUTHENTICATE.md +619 -0
  158. package/docs/reference/dto/CHARACTER_PLAYER.md +3686 -0
  159. package/docs/reference/dto/CLOUDSCRIPT.md +400 -0
  160. package/docs/reference/dto/CONTENT.md +548 -0
  161. package/docs/reference/dto/DASHBOARD.md +1980 -0
  162. package/docs/reference/dto/GAME_PLAYER.md +3631 -0
  163. package/docs/reference/dto/GENERIC.md +151 -0
  164. package/docs/reference/dto/GROUP.md +2842 -0
  165. package/docs/reference/dto/INVENTORY.md +2385 -0
  166. package/docs/reference/dto/MASTER_PLAYER.md +6024 -0
  167. package/docs/reference/dto/MULTIPLAYER.md +850 -0
  168. package/docs/reference/dto/STORE_INVENTORY.md +1262 -0
  169. package/llms.txt +47 -0
  170. package/package.json +11 -2
  171. package/GNServerSettings.debug.json +0 -21
  172. package/dist/runtime/GNNetwork.js +0 -273
  173. package/dist/runtime/GNNetworkAuthenticateApi.js +0 -122
  174. package/dist/runtime/GNNetworkCharacterPlayerApi.js +0 -968
  175. package/dist/runtime/GNNetworkCloudScriptApi.js +0 -104
  176. package/dist/runtime/GNNetworkContentApi.js +0 -140
  177. package/dist/runtime/GNNetworkDashboardApi.js +0 -170
  178. package/dist/runtime/GNNetworkGamePlayerApi.js +0 -950
  179. package/dist/runtime/GNNetworkGroupApi.js +0 -734
  180. package/dist/runtime/GNNetworkInventoryApi.js +0 -626
  181. package/dist/runtime/GNNetworkMasterPlayerApi.js +0 -1550
  182. package/dist/runtime/GNNetworkMultiplayerApi.js +0 -194
  183. package/dist/runtime/GNNetworkStoreInventoryApi.js +0 -266
  184. package/dist/runtime/common/Action0.js +0 -1
  185. package/dist/runtime/common/Action1.js +0 -1
  186. package/dist/runtime/common/Action2.js +0 -1
  187. package/dist/runtime/common/Action3.js +0 -1
  188. package/dist/runtime/common/Action4.js +0 -1
  189. package/dist/runtime/common/GNData.js +0 -209
  190. package/dist/runtime/config/GNServerSettings.js +0 -156
  191. package/dist/runtime/constant/Commands.js +0 -20
  192. package/dist/runtime/constant/EventCode.js +0 -8
  193. package/dist/runtime/constant/OperationCode.js +0 -221
  194. package/dist/runtime/constant/ReturnCode.js +0 -14
  195. package/dist/runtime/constant/enumType/ExecuteResponseStatus.js +0 -8
  196. package/dist/runtime/constant/enumType/FriendStatus.js +0 -7
  197. package/dist/runtime/constant/enumType/GoogleLoginType.js +0 -5
  198. package/dist/runtime/constant/enumType/GroupStatus.js +0 -7
  199. package/dist/runtime/constant/enumType/InvalidMemberType.js +0 -18
  200. package/dist/runtime/constant/enumType/ItemType.js +0 -5
  201. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +0 -6
  202. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +0 -8
  203. package/dist/runtime/constant/enumType/OwnerType.js +0 -9
  204. package/dist/runtime/constant/enumType/PermissionDataItem.js +0 -5
  205. package/dist/runtime/constant/enumType/PushPlatformType.js +0 -5
  206. package/dist/runtime/constant/enumType/RequestRole.js +0 -6
  207. package/dist/runtime/constant/enumType/RequestType.js +0 -15
  208. package/dist/runtime/constant/enumType/StoreItemType.js +0 -5
  209. package/dist/runtime/constant/enumType/StoreReceiveType.js +0 -8
  210. package/dist/runtime/constant/errorCode/ErrorCode.js +0 -52
  211. package/dist/runtime/constant/parameterCode/ParameterCode.js +0 -617
  212. package/dist/runtime/entity/DataMember.js +0 -208
  213. package/dist/runtime/entity/GNMetadata.js +0 -11
  214. package/dist/runtime/entity/InvalidMember.js +0 -1
  215. package/dist/runtime/entity/OperationEvent.js +0 -24
  216. package/dist/runtime/entity/OperationRequest.js +0 -42
  217. package/dist/runtime/entity/OperationResponse.js +0 -73
  218. package/dist/runtime/entity/models/AuthenticateModels.js +0 -426
  219. package/dist/runtime/entity/models/AuthenticateRequestModels.js +0 -188
  220. package/dist/runtime/entity/models/AuthenticateResponseModels.js +0 -131
  221. package/dist/runtime/entity/models/CharacterPlayerModels.js +0 -1433
  222. package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +0 -1386
  223. package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +0 -376
  224. package/dist/runtime/entity/models/CloudScriptModels.js +0 -197
  225. package/dist/runtime/entity/models/CloudScriptRequestModels.js +0 -138
  226. package/dist/runtime/entity/models/CloudScriptResponseModels.js +0 -40
  227. package/dist/runtime/entity/models/ContentModels.js +0 -203
  228. package/dist/runtime/entity/models/ContentRequestModels.js +0 -190
  229. package/dist/runtime/entity/models/ContentResponseModels.js +0 -54
  230. package/dist/runtime/entity/models/DashboardModels.js +0 -3002
  231. package/dist/runtime/entity/models/DashboardRequestModels.js +0 -268
  232. package/dist/runtime/entity/models/DashboardResponseModels.js +0 -187
  233. package/dist/runtime/entity/models/GamePlayerModels.js +0 -1591
  234. package/dist/runtime/entity/models/GamePlayerRequestModels.js +0 -1360
  235. package/dist/runtime/entity/models/GamePlayerResponseModels.js +0 -369
  236. package/dist/runtime/entity/models/GenericModels.js +0 -177
  237. package/dist/runtime/entity/models/GroupModels.js +0 -1135
  238. package/dist/runtime/entity/models/GroupRequestModels.js +0 -1048
  239. package/dist/runtime/entity/models/GroupResponseModels.js +0 -285
  240. package/dist/runtime/entity/models/InventoryModels.js +0 -915
  241. package/dist/runtime/entity/models/InventoryRequestModels.js +0 -892
  242. package/dist/runtime/entity/models/InventoryResponseModels.js +0 -243
  243. package/dist/runtime/entity/models/MasterPlayerModels.js +0 -2573
  244. package/dist/runtime/entity/models/MasterPlayerRequestModels.js +0 -2228
  245. package/dist/runtime/entity/models/MasterPlayerResponseModels.js +0 -607
  246. package/dist/runtime/entity/models/MultiplayerModels.js +0 -404
  247. package/dist/runtime/entity/models/MultiplayerRequestModels.js +0 -268
  248. package/dist/runtime/entity/models/MultiplayerResponseModels.js +0 -75
  249. package/dist/runtime/entity/models/StoreInventoryModels.js +0 -797
  250. package/dist/runtime/entity/models/StoreInventoryRequestModels.js +0 -372
  251. package/dist/runtime/entity/models/StoreInventoryResponseModels.js +0 -103
  252. package/dist/runtime/entity/request/CustomOperationRequest.js +0 -24
  253. package/dist/runtime/entity/response/CustomOperationResponse.js +0 -29
  254. package/dist/runtime/entity/response/GetAuthInfoResponse.js +0 -2
  255. package/dist/runtime/entity/response/HealthCheckResponse.js +0 -2
  256. package/dist/runtime/entity/response/UploadFileResponse.js +0 -2
  257. package/dist/runtime/helper/CodeHelper.js +0 -63
  258. package/dist/runtime/helper/ConverterService.js +0 -275
  259. package/dist/runtime/helper/EnumUtility.js +0 -33
  260. package/dist/runtime/helper/GNSupport.js +0 -47
  261. package/dist/runtime/helper/GNUtils.js +0 -72
  262. package/dist/runtime/helper/MessagePackConverterService.js +0 -9
  263. package/dist/runtime/helper/OperationHelper.js +0 -24
  264. package/dist/runtime/helper/StorageService.js +0 -62
  265. package/dist/runtime/logger/GNDebug.js +0 -29
  266. package/dist/runtime/networking/AuthenticateStatus.js +0 -14
  267. package/dist/runtime/networking/IPeer.js +0 -1
  268. package/dist/runtime/networking/NetworkingPeer.js +0 -210
  269. package/dist/runtime/networking/OperationPending.js +0 -53
  270. package/dist/runtime/networking/PeerBase.js +0 -161
  271. package/dist/runtime/networking/handler/IServerEventHandler.js +0 -13
  272. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +0 -39
  273. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +0 -39
  274. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +0 -39
  275. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +0 -39
  276. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +0 -35
  277. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +0 -43
  278. package/dist/runtime/networking/http/HttpPeer.js +0 -123
  279. package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +0 -9
  280. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +0 -179
  281. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +0 -130
  282. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +0 -165
  283. package/dist/runtime/networking/socket/SocketPeer.js +0 -115
  284. package/dist/runtime/typescript/ServiceUpdate.js +0 -22
  285. package/docs/COCOS_CREATOR_INTEGRATION.md +0 -116
  286. package/examples/cocos-creator/GearNExample.ts.txt +0 -176
  287. package/srcSwift/Package.swift +0 -32
  288. package/srcSwift/Sources/GearN/runtime/GNNetwork.swift +0 -530
  289. package/srcSwift/Sources/GearN/runtime/GNNetworkAuthenticateApi.swift +0 -178
  290. package/srcSwift/Sources/GearN/runtime/GNNetworkCharacterPlayerApi.swift +0 -1162
  291. package/srcSwift/Sources/GearN/runtime/GNNetworkCloudScriptApi.swift +0 -154
  292. package/srcSwift/Sources/GearN/runtime/GNNetworkContentApi.swift +0 -208
  293. package/srcSwift/Sources/GearN/runtime/GNNetworkDashboardApi.swift +0 -240
  294. package/srcSwift/Sources/GearN/runtime/GNNetworkGamePlayerApi.swift +0 -1369
  295. package/srcSwift/Sources/GearN/runtime/GNNetworkGroupApi.swift +0 -1100
  296. package/srcSwift/Sources/GearN/runtime/GNNetworkInventoryApi.swift +0 -937
  297. package/srcSwift/Sources/GearN/runtime/GNNetworkMasterPlayerApi.swift +0 -2323
  298. package/srcSwift/Sources/GearN/runtime/GNNetworkMultiplayerApi.swift +0 -298
  299. package/srcSwift/Sources/GearN/runtime/GNNetworkStoreInventoryApi.swift +0 -397
  300. package/srcSwift/Sources/GearN/runtime/common/Action0.swift +0 -3
  301. package/srcSwift/Sources/GearN/runtime/common/Action1.swift +0 -3
  302. package/srcSwift/Sources/GearN/runtime/common/Action2.swift +0 -3
  303. package/srcSwift/Sources/GearN/runtime/common/Action3.swift +0 -3
  304. package/srcSwift/Sources/GearN/runtime/common/Action4.swift +0 -3
  305. package/srcSwift/Sources/GearN/runtime/common/GNArray.swift +0 -204
  306. package/srcSwift/Sources/GearN/runtime/common/GNData.swift +0 -108
  307. package/srcSwift/Sources/GearN/runtime/common/GNHashtable.swift +0 -200
  308. package/srcSwift/Sources/GearN/runtime/config/GNServerSettings.swift +0 -95
  309. package/srcSwift/Sources/GearN/runtime/constant/Commands.swift +0 -28
  310. package/srcSwift/Sources/GearN/runtime/constant/EventCode.swift +0 -10
  311. package/srcSwift/Sources/GearN/runtime/constant/OperationCode.swift +0 -252
  312. package/srcSwift/Sources/GearN/runtime/constant/ReturnCode.swift +0 -19
  313. package/srcSwift/Sources/GearN/runtime/constant/enumType/ExecuteResponseStatus.swift +0 -9
  314. package/srcSwift/Sources/GearN/runtime/constant/enumType/FriendStatus.swift +0 -8
  315. package/srcSwift/Sources/GearN/runtime/constant/enumType/GoogleLoginType.swift +0 -6
  316. package/srcSwift/Sources/GearN/runtime/constant/enumType/GroupStatus.swift +0 -8
  317. package/srcSwift/Sources/GearN/runtime/constant/enumType/InvalidMemberType.swift +0 -19
  318. package/srcSwift/Sources/GearN/runtime/constant/enumType/ItemType.swift +0 -6
  319. package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingMemberStatus.swift +0 -7
  320. package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingTicketStatus.swift +0 -9
  321. package/srcSwift/Sources/GearN/runtime/constant/enumType/OwnerType.swift +0 -10
  322. package/srcSwift/Sources/GearN/runtime/constant/enumType/PermissionDataItem.swift +0 -6
  323. package/srcSwift/Sources/GearN/runtime/constant/enumType/PushPlatformType.swift +0 -6
  324. package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestRole.swift +0 -7
  325. package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestType.swift +0 -16
  326. package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreItemType.swift +0 -6
  327. package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreReceiveType.swift +0 -9
  328. package/srcSwift/Sources/GearN/runtime/constant/errorCode/ErrorCode.swift +0 -58
  329. package/srcSwift/Sources/GearN/runtime/constant/parameterCode/ParameterCode.swift +0 -672
  330. package/srcSwift/Sources/GearN/runtime/entity/DataMember.swift +0 -196
  331. package/srcSwift/Sources/GearN/runtime/entity/GNMetadata.swift +0 -9
  332. package/srcSwift/Sources/GearN/runtime/entity/InvalidMember.swift +0 -11
  333. package/srcSwift/Sources/GearN/runtime/entity/OperationEvent.swift +0 -38
  334. package/srcSwift/Sources/GearN/runtime/entity/OperationHelper.swift +0 -28
  335. package/srcSwift/Sources/GearN/runtime/entity/OperationRequest.swift +0 -62
  336. package/srcSwift/Sources/GearN/runtime/entity/OperationResponse.swift +0 -98
  337. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateModels.swift +0 -351
  338. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateRequestModels.swift +0 -81
  339. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateResponseModels.swift +0 -108
  340. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerModels.swift +0 -1045
  341. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerRequestModels.swift +0 -821
  342. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerResponseModels.swift +0 -588
  343. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptModels.swift +0 -187
  344. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptRequestModels.swift +0 -84
  345. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptResponseModels.swift +0 -59
  346. package/srcSwift/Sources/GearN/runtime/entity/models/ContentModels.swift +0 -195
  347. package/srcSwift/Sources/GearN/runtime/entity/models/ContentRequestModels.swift +0 -116
  348. package/srcSwift/Sources/GearN/runtime/entity/models/ContentResponseModels.swift +0 -81
  349. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardModels.swift +0 -426
  350. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardRequestModels.swift +0 -160
  351. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardResponseModels.swift +0 -82
  352. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerModels.swift +0 -1334
  353. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerRequestModels.swift +0 -643
  354. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerResponseModels.swift +0 -213
  355. package/srcSwift/Sources/GearN/runtime/entity/models/GenericModels.swift +0 -171
  356. package/srcSwift/Sources/GearN/runtime/entity/models/GroupModels.swift +0 -850
  357. package/srcSwift/Sources/GearN/runtime/entity/models/GroupRequestModels.swift +0 -485
  358. package/srcSwift/Sources/GearN/runtime/entity/models/GroupResponseModels.swift +0 -165
  359. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryModels.swift +0 -679
  360. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryRequestModels.swift +0 -413
  361. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryResponseModels.swift +0 -141
  362. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerModels.swift +0 -378
  363. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerRequestModels.swift +0 -147
  364. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerResponseModels.swift +0 -318
  365. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerModels.swift +0 -319
  366. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerRequestModels.swift +0 -125
  367. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerResponseModels.swift +0 -45
  368. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryModels.swift +0 -633
  369. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryRequestModels.swift +0 -173
  370. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryResponseModels.swift +0 -61
  371. package/srcSwift/Sources/GearN/runtime/entity/request/CustomOperationRequest.swift +0 -42
  372. package/srcSwift/Sources/GearN/runtime/entity/response/CustomOperationResponse.swift +0 -49
  373. package/srcSwift/Sources/GearN/runtime/entity/response/GetAuthInfoResponse.swift +0 -43
  374. package/srcSwift/Sources/GearN/runtime/entity/response/HealthCheckResponse.swift +0 -86
  375. package/srcSwift/Sources/GearN/runtime/entity/response/UploadFileResponse.swift +0 -15
  376. package/srcSwift/Sources/GearN/runtime/helper/CodeHelper.swift +0 -107
  377. package/srcSwift/Sources/GearN/runtime/helper/ConverterService.swift +0 -98
  378. package/srcSwift/Sources/GearN/runtime/helper/EnumUtility.swift +0 -34
  379. package/srcSwift/Sources/GearN/runtime/helper/GNSupport.swift +0 -41
  380. package/srcSwift/Sources/GearN/runtime/helper/GNUtils.swift +0 -66
  381. package/srcSwift/Sources/GearN/runtime/helper/MessagePackConverterService.swift +0 -21
  382. package/srcSwift/Sources/GearN/runtime/helper/StorageService.swift +0 -29
  383. package/srcSwift/Sources/GearN/runtime/logger/GNDebug.swift +0 -33
  384. package/srcSwift/Sources/GearN/runtime/networking/AuthenticateStatus.swift +0 -24
  385. package/srcSwift/Sources/GearN/runtime/networking/IPeer.swift +0 -8
  386. package/srcSwift/Sources/GearN/runtime/networking/NetworkingPeer.swift +0 -368
  387. package/srcSwift/Sources/GearN/runtime/networking/OperationPending.swift +0 -81
  388. package/srcSwift/Sources/GearN/runtime/networking/PeerBase.swift +0 -228
  389. package/srcSwift/Sources/GearN/runtime/networking/handler/IServerEventHandler.swift +0 -20
  390. package/srcSwift/Sources/GearN/runtime/networking/http/HttpPeer.swift +0 -226
  391. package/srcSwift/Sources/GearN/runtime/networking/http/HttpTypes.swift +0 -24
  392. package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingHttpPeerBase.swift +0 -13
  393. package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingPeerUrlSession.swift +0 -125
  394. package/srcSwift/Sources/GearN/runtime/networking/request/NetRequest.swift +0 -19
  395. package/srcSwift/Sources/GearN/runtime/networking/response/NetResponse.swift +0 -13
  396. package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingPeerSocketIOClient.swift +0 -244
  397. package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingSocketPeerBase.swift +0 -59
  398. package/srcSwift/Sources/GearN/runtime/networking/socket/SocketPeer.swift +0 -136
  399. package/tsconfig-build.cocos.json +0 -31
  400. package/webpack.config.cocos.mjs +0 -78
@@ -0,0 +1,2385 @@
1
+ # DTO Reference: Inventory
2
+
3
+ Inventory item metadata, ownership, amount, statistics, activity log.
4
+
5
+ Related API reference: [API_INVENTORY.md](../API_INVENTORY.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
+ - **InventoryModels** (from `InventoryModels.ts`)
14
+ - [CustomDataParam](#customdataparam)
15
+ - [InfoRequestParam](#inforequestparam)
16
+ - [ItemDataParam](#itemdataparam)
17
+ - [ItemStatisticsParam](#itemstatisticsparam)
18
+ - [AddSegmentRequestData](#addsegmentrequestdata)
19
+ - [ServerAddSegmentRequestData](#serveraddsegmentrequestdata)
20
+ - [AdminAddSegmentRequestData](#adminaddsegmentrequestdata)
21
+ - [GetAmountRequestData](#getamountrequestdata)
22
+ - [ServerGetAmountRequestData](#servergetamountrequestdata)
23
+ - [AdminGetAmountRequestData](#admingetamountrequestdata)
24
+ - [GetAvatarRequestData](#getavatarrequestdata)
25
+ - [ServerGetAvatarRequestData](#servergetavatarrequestdata)
26
+ - [AdminGetAvatarRequestData](#admingetavatarrequestdata)
27
+ - [GetCatalogIdRequestData](#getcatalogidrequestdata)
28
+ - [ServerGetCatalogIdRequestData](#servergetcatalogidrequestdata)
29
+ - [AdminGetCatalogIdRequestData](#admingetcatalogidrequestdata)
30
+ - [GetClassIdRequestData](#getclassidrequestdata)
31
+ - [ServerGetClassIdRequestData](#servergetclassidrequestdata)
32
+ - [AdminGetClassIdRequestData](#admingetclassidrequestdata)
33
+ - [GetCustomDataRequestData](#getcustomdatarequestdata)
34
+ - [ServerGetCustomDataRequestData](#servergetcustomdatarequestdata)
35
+ - [AdminGetCustomDataRequestData](#admingetcustomdatarequestdata)
36
+ - [GetDisplayNameRequestData](#getdisplaynamerequestdata)
37
+ - [ServerGetDisplayNameRequestData](#servergetdisplaynamerequestdata)
38
+ - [AdminGetDisplayNameRequestData](#admingetdisplaynamerequestdata)
39
+ - [GetItemDataRequestData](#getitemdatarequestdata)
40
+ - [ServerGetItemDataRequestData](#servergetitemdatarequestdata)
41
+ - [AdminGetItemDataRequestData](#admingetitemdatarequestdata)
42
+ - [GetItemInformationRequestData](#getiteminformationrequestdata)
43
+ - [ServerGetItemInformationRequestData](#servergetiteminformationrequestdata)
44
+ - [AdminGetItemInformationRequestData](#admingetiteminformationrequestdata)
45
+ - [GetItemStatisticsRequestData](#getitemstatisticsrequestdata)
46
+ - [ServerGetItemStatisticsRequestData](#servergetitemstatisticsrequestdata)
47
+ - [AdminGetItemStatisticsRequestData](#admingetitemstatisticsrequestdata)
48
+ - [GetItemsWithDisplayNameRequestData](#getitemswithdisplaynamerequestdata)
49
+ - [ServerGetItemsWithDisplayNameRequestData](#servergetitemswithdisplaynamerequestdata)
50
+ - [AdminGetItemsWithDisplayNameRequestData](#admingetitemswithdisplaynamerequestdata)
51
+ - [GetItemsWithSegmentRequestData](#getitemswithsegmentrequestdata)
52
+ - [ServerGetItemsWithSegmentRequestData](#servergetitemswithsegmentrequestdata)
53
+ - [AdminGetItemsWithSegmentRequestData](#admingetitemswithsegmentrequestdata)
54
+ - [GetItemsWithTagRequestData](#getitemswithtagrequestdata)
55
+ - [ServerGetItemsWithTagRequestData](#servergetitemswithtagrequestdata)
56
+ - [AdminGetItemsWithTagRequestData](#admingetitemswithtagrequestdata)
57
+ - [GetItemTypeRequestData](#getitemtyperequestdata)
58
+ - [ServerGetItemTypeRequestData](#servergetitemtyperequestdata)
59
+ - [AdminGetItemTypeRequestData](#admingetitemtyperequestdata)
60
+ - [GetOwnerRequestData](#getownerrequestdata)
61
+ - [ServerGetOwnerRequestData](#servergetownerrequestdata)
62
+ - [AdminGetOwnerRequestData](#admingetownerrequestdata)
63
+ - [GetRemoveStatusRequestData](#getremovestatusrequestdata)
64
+ - [ServerGetRemoveStatusRequestData](#servergetremovestatusrequestdata)
65
+ - [AdminGetRemoveStatusRequestData](#admingetremovestatusrequestdata)
66
+ - [GetSegmentRequestData](#getsegmentrequestdata)
67
+ - [ServerGetSegmentRequestData](#servergetsegmentrequestdata)
68
+ - [AdminGetSegmentRequestData](#admingetsegmentrequestdata)
69
+ - [GetStatisticsLeaderboardAroundItemRequestData](#getstatisticsleaderboardarounditemrequestdata)
70
+ - [ServerGetStatisticsLeaderboardAroundItemRequestData](#servergetstatisticsleaderboardarounditemrequestdata)
71
+ - [AdminGetStatisticsLeaderboardAroundItemRequestData](#admingetstatisticsleaderboardarounditemrequestdata)
72
+ - [GetStatisticsLeaderboardRequestData](#getstatisticsleaderboardrequestdata)
73
+ - [ServerGetStatisticsLeaderboardRequestData](#servergetstatisticsleaderboardrequestdata)
74
+ - [AdminGetStatisticsLeaderboardRequestData](#admingetstatisticsleaderboardrequestdata)
75
+ - [GetCreateLeaderboardRequestData](#getcreateleaderboardrequestdata)
76
+ - [ServerGetCreateLeaderboardRequestData](#servergetcreateleaderboardrequestdata)
77
+ - [AdminGetCreateLeaderboardRequestData](#admingetcreateleaderboardrequestdata)
78
+ - [GetTagRequestData](#gettagrequestdata)
79
+ - [ServerGetTagRequestData](#servergettagrequestdata)
80
+ - [AdminGetTagRequestData](#admingettagrequestdata)
81
+ - [GetTsCreateRequestData](#gettscreaterequestdata)
82
+ - [ServerGetTsCreateRequestData](#servergettscreaterequestdata)
83
+ - [AdminGetTsCreateRequestData](#admingettscreaterequestdata)
84
+ - [RemoveSegmentRequestData](#removesegmentrequestdata)
85
+ - [ServerRemoveSegmentRequestData](#serverremovesegmentrequestdata)
86
+ - [AdminRemoveSegmentRequestData](#adminremovesegmentrequestdata)
87
+ - [RemoveTagRequestData](#removetagrequestdata)
88
+ - [ServerRemoveTagRequestData](#serverremovetagrequestdata)
89
+ - [AdminRemoveTagRequestData](#adminremovetagrequestdata)
90
+ - [SetAmountRequestData](#setamountrequestdata)
91
+ - [ServerSetAmountRequestData](#serversetamountrequestdata)
92
+ - [AdminSetAmountRequestData](#adminsetamountrequestdata)
93
+ - [SetAvatarRequestData](#setavatarrequestdata)
94
+ - [ServerSetAvatarRequestData](#serversetavatarrequestdata)
95
+ - [AdminSetAvatarRequestData](#adminsetavatarrequestdata)
96
+ - [SetCustomDataRequestData](#setcustomdatarequestdata)
97
+ - [ServerSetCustomDataRequestData](#serversetcustomdatarequestdata)
98
+ - [AdminSetCustomDataRequestData](#adminsetcustomdatarequestdata)
99
+ - [SetDisplayNameRequestData](#setdisplaynamerequestdata)
100
+ - [ServerSetDisplayNameRequestData](#serversetdisplaynamerequestdata)
101
+ - [AdminSetDisplayNameRequestData](#adminsetdisplaynamerequestdata)
102
+ - [SetItemDataRequestData](#setitemdatarequestdata)
103
+ - [ServerSetItemDataRequestData](#serversetitemdatarequestdata)
104
+ - [AdminSetItemDataRequestData](#adminsetitemdatarequestdata)
105
+ - [ChangeItemStatisticsRequestData](#changeitemstatisticsrequestdata)
106
+ - [ServerChangeItemStatisticsRequestData](#serverchangeitemstatisticsrequestdata)
107
+ - [AdminChangeItemStatisticsRequestData](#adminchangeitemstatisticsrequestdata)
108
+ - [SetOwnerRequestData](#setownerrequestdata)
109
+ - [ServerSetOwnerRequestData](#serversetownerrequestdata)
110
+ - [AdminSetOwnerRequestData](#adminsetownerrequestdata)
111
+ - [SetRemoveStatusRequestData](#setremovestatusrequestdata)
112
+ - [ServerSetRemoveStatusRequestData](#serversetremovestatusrequestdata)
113
+ - [AdminSetRemoveStatusRequestData](#adminsetremovestatusrequestdata)
114
+ - [SetTagRequestData](#settagrequestdata)
115
+ - [ServerSetTagRequestData](#serversettagrequestdata)
116
+ - [AdminSetTagRequestData](#adminsettagrequestdata)
117
+ - [GetStatisticsLogRequestData](#getstatisticslogrequestdata)
118
+ - [ServerGetStatisticsLogRequestData](#servergetstatisticslogrequestdata)
119
+ - [AdminGetStatisticsLogRequestData](#admingetstatisticslogrequestdata)
120
+ - [InfoResponseParameters](#inforesponseparameters)
121
+ - [InventoryResponseData](#inventoryresponsedata)
122
+ - [InventoryWithItemIdResponseData](#inventorywithitemidresponsedata)
123
+ - [InventoryLeaderboardResponseData](#inventoryleaderboardresponsedata)
124
+ - [InventoryLogResponseData](#inventorylogresponsedata)
125
+ - [GetStatisticsLeaderboardResponseData](#getstatisticsleaderboardresponsedata)
126
+ - [InventoriesWithItemIdResponseData](#inventorieswithitemidresponsedata)
127
+ - [GetCreateLeaderboardResponseData](#getcreateleaderboardresponsedata)
128
+ - [GetStatisticsLogResponseData](#getstatisticslogresponsedata)
129
+ - [EmptyResponseData](#emptyresponsedata)
130
+ - **InventoryRequestModels** (from `InventoryRequestModels.ts`)
131
+ - [AddSegmentOperationRequest](#addsegmentoperationrequest)
132
+ - [ServerAddSegmentOperationRequest](#serveraddsegmentoperationrequest)
133
+ - [AdminAddSegmentOperationRequest](#adminaddsegmentoperationrequest)
134
+ - [GetAmountOperationRequest](#getamountoperationrequest)
135
+ - [ServerGetAmountOperationRequest](#servergetamountoperationrequest)
136
+ - [AdminGetAmountOperationRequest](#admingetamountoperationrequest)
137
+ - [GetAvatarOperationRequest](#getavataroperationrequest)
138
+ - [ServerGetAvatarOperationRequest](#servergetavataroperationrequest)
139
+ - [AdminGetAvatarOperationRequest](#admingetavataroperationrequest)
140
+ - [GetCatalogIdOperationRequest](#getcatalogidoperationrequest)
141
+ - [ServerGetCatalogIdOperationRequest](#servergetcatalogidoperationrequest)
142
+ - [AdminGetCatalogIdOperationRequest](#admingetcatalogidoperationrequest)
143
+ - [GetClassIdOperationRequest](#getclassidoperationrequest)
144
+ - [ServerGetClassIdOperationRequest](#servergetclassidoperationrequest)
145
+ - [AdminGetClassIdOperationRequest](#admingetclassidoperationrequest)
146
+ - [GetCustomDataOperationRequest](#getcustomdataoperationrequest)
147
+ - [ServerGetCustomDataOperationRequest](#servergetcustomdataoperationrequest)
148
+ - [AdminGetCustomDataOperationRequest](#admingetcustomdataoperationrequest)
149
+ - [GetDisplayNameOperationRequest](#getdisplaynameoperationrequest)
150
+ - [ServerGetDisplayNameOperationRequest](#servergetdisplaynameoperationrequest)
151
+ - [AdminGetDisplayNameOperationRequest](#admingetdisplaynameoperationrequest)
152
+ - [GetItemDataOperationRequest](#getitemdataoperationrequest)
153
+ - [ServerGetItemDataOperationRequest](#servergetitemdataoperationrequest)
154
+ - [AdminGetItemDataOperationRequest](#admingetitemdataoperationrequest)
155
+ - [GetItemInformationOperationRequest](#getiteminformationoperationrequest)
156
+ - [ServerGetItemInformationOperationRequest](#servergetiteminformationoperationrequest)
157
+ - [AdminGetItemInformationOperationRequest](#admingetiteminformationoperationrequest)
158
+ - [GetItemStatisticsOperationRequest](#getitemstatisticsoperationrequest)
159
+ - [ServerGetItemStatisticsOperationRequest](#servergetitemstatisticsoperationrequest)
160
+ - [AdminGetItemStatisticsOperationRequest](#admingetitemstatisticsoperationrequest)
161
+ - [GetItemsWithDisplayNameOperationRequest](#getitemswithdisplaynameoperationrequest)
162
+ - [ServerGetItemsWithDisplayNameOperationRequest](#servergetitemswithdisplaynameoperationrequest)
163
+ - [AdminGetItemsWithDisplayNameOperationRequest](#admingetitemswithdisplaynameoperationrequest)
164
+ - [GetItemsWithSegmentOperationRequest](#getitemswithsegmentoperationrequest)
165
+ - [ServerGetItemsWithSegmentOperationRequest](#servergetitemswithsegmentoperationrequest)
166
+ - [AdminGetItemsWithSegmentOperationRequest](#admingetitemswithsegmentoperationrequest)
167
+ - [GetItemsWithTagOperationRequest](#getitemswithtagoperationrequest)
168
+ - [ServerGetItemsWithTagOperationRequest](#servergetitemswithtagoperationrequest)
169
+ - [AdminGetItemsWithTagOperationRequest](#admingetitemswithtagoperationrequest)
170
+ - [GetItemTypeOperationRequest](#getitemtypeoperationrequest)
171
+ - [ServerGetItemTypeOperationRequest](#servergetitemtypeoperationrequest)
172
+ - [AdminGetItemTypeOperationRequest](#admingetitemtypeoperationrequest)
173
+ - [GetOwnerOperationRequest](#getowneroperationrequest)
174
+ - [ServerGetOwnerOperationRequest](#servergetowneroperationrequest)
175
+ - [AdminGetOwnerOperationRequest](#admingetowneroperationrequest)
176
+ - [GetRemoveStatusOperationRequest](#getremovestatusoperationrequest)
177
+ - [ServerGetRemoveStatusOperationRequest](#servergetremovestatusoperationrequest)
178
+ - [AdminGetRemoveStatusOperationRequest](#admingetremovestatusoperationrequest)
179
+ - [GetSegmentOperationRequest](#getsegmentoperationrequest)
180
+ - [ServerGetSegmentOperationRequest](#servergetsegmentoperationrequest)
181
+ - [AdminGetSegmentOperationRequest](#admingetsegmentoperationrequest)
182
+ - [GetStatisticsLeaderboardAroundItemOperationRequest](#getstatisticsleaderboardarounditemoperationrequest)
183
+ - [ServerGetStatisticsLeaderboardAroundItemOperationRequest](#servergetstatisticsleaderboardarounditemoperationrequest)
184
+ - [AdminGetStatisticsLeaderboardAroundItemOperationRequest](#admingetstatisticsleaderboardarounditemoperationrequest)
185
+ - [GetStatisticsLeaderboardOperationRequest](#getstatisticsleaderboardoperationrequest)
186
+ - [ServerGetStatisticsLeaderboardOperationRequest](#servergetstatisticsleaderboardoperationrequest)
187
+ - [AdminGetStatisticsLeaderboardOperationRequest](#admingetstatisticsleaderboardoperationrequest)
188
+ - [GetTagOperationRequest](#gettagoperationrequest)
189
+ - [ServerGetTagOperationRequest](#servergettagoperationrequest)
190
+ - [AdminGetTagOperationRequest](#admingettagoperationrequest)
191
+ - [GetTsCreateOperationRequest](#gettscreateoperationrequest)
192
+ - [ServerGetTsCreateOperationRequest](#servergettscreateoperationrequest)
193
+ - [AdminGetTsCreateOperationRequest](#admingettscreateoperationrequest)
194
+ - [RemoveSegmentOperationRequest](#removesegmentoperationrequest)
195
+ - [ServerRemoveSegmentOperationRequest](#serverremovesegmentoperationrequest)
196
+ - [AdminRemoveSegmentOperationRequest](#adminremovesegmentoperationrequest)
197
+ - [RemoveTagOperationRequest](#removetagoperationrequest)
198
+ - [ServerRemoveTagOperationRequest](#serverremovetagoperationrequest)
199
+ - [AdminRemoveTagOperationRequest](#adminremovetagoperationrequest)
200
+ - [SetAmountOperationRequest](#setamountoperationrequest)
201
+ - [ServerSetAmountOperationRequest](#serversetamountoperationrequest)
202
+ - [AdminSetAmountOperationRequest](#adminsetamountoperationrequest)
203
+ - [SetAvatarOperationRequest](#setavataroperationrequest)
204
+ - [ServerSetAvatarOperationRequest](#serversetavataroperationrequest)
205
+ - [AdminSetAvatarOperationRequest](#adminsetavataroperationrequest)
206
+ - [SetCustomDataOperationRequest](#setcustomdataoperationrequest)
207
+ - [ServerSetCustomDataOperationRequest](#serversetcustomdataoperationrequest)
208
+ - [AdminSetCustomDataOperationRequest](#adminsetcustomdataoperationrequest)
209
+ - [SetDisplayNameOperationRequest](#setdisplaynameoperationrequest)
210
+ - [ServerSetDisplayNameOperationRequest](#serversetdisplaynameoperationrequest)
211
+ - [AdminSetDisplayNameOperationRequest](#adminsetdisplaynameoperationrequest)
212
+ - [SetItemDataOperationRequest](#setitemdataoperationrequest)
213
+ - [ServerSetItemDataOperationRequest](#serversetitemdataoperationrequest)
214
+ - [AdminSetItemDataOperationRequest](#adminsetitemdataoperationrequest)
215
+ - [ChangeItemStatisticsOperationRequest](#changeitemstatisticsoperationrequest)
216
+ - [ServerChangeItemStatisticsOperationRequest](#serverchangeitemstatisticsoperationrequest)
217
+ - [AdminChangeItemStatisticsOperationRequest](#adminchangeitemstatisticsoperationrequest)
218
+ - [SetOwnerOperationRequest](#setowneroperationrequest)
219
+ - [ServerSetOwnerOperationRequest](#serversetowneroperationrequest)
220
+ - [AdminSetOwnerOperationRequest](#adminsetowneroperationrequest)
221
+ - [SetRemoveStatusOperationRequest](#setremovestatusoperationrequest)
222
+ - [ServerSetRemoveStatusOperationRequest](#serversetremovestatusoperationrequest)
223
+ - [AdminSetRemoveStatusOperationRequest](#adminsetremovestatusoperationrequest)
224
+ - [SetTagOperationRequest](#settagoperationrequest)
225
+ - [ServerSetTagOperationRequest](#serversettagoperationrequest)
226
+ - [AdminSetTagOperationRequest](#adminsettagoperationrequest)
227
+ - [GetCreateLeaderboardOperationRequest](#getcreateleaderboardoperationrequest)
228
+ - [ServerGetCreateLeaderboardOperationRequest](#servergetcreateleaderboardoperationrequest)
229
+ - [AdminGetCreateLeaderboardOperationRequest](#admingetcreateleaderboardoperationrequest)
230
+ - [GetStatisticsLogOperationRequest](#getstatisticslogoperationrequest)
231
+ - [ServerGetStatisticsLogOperationRequest](#servergetstatisticslogoperationrequest)
232
+ - [AdminGetStatisticsLogOperationRequest](#admingetstatisticslogoperationrequest)
233
+ - **InventoryResponseModels** (from `InventoryResponseModels.ts`)
234
+ - [AddSegmentOperationResponse](#addsegmentoperationresponse)
235
+ - [GetAmountOperationResponse](#getamountoperationresponse)
236
+ - [GetAvatarOperationResponse](#getavataroperationresponse)
237
+ - [GetCatalogIdOperationResponse](#getcatalogidoperationresponse)
238
+ - [GetClassIdOperationResponse](#getclassidoperationresponse)
239
+ - [GetCustomDataOperationResponse](#getcustomdataoperationresponse)
240
+ - [GetDisplayNameOperationResponse](#getdisplaynameoperationresponse)
241
+ - [GetItemDataOperationResponse](#getitemdataoperationresponse)
242
+ - [GetItemInformationOperationResponse](#getiteminformationoperationresponse)
243
+ - [GetItemStatisticsOperationResponse](#getitemstatisticsoperationresponse)
244
+ - [GetItemsWithDisplayNameOperationResponse](#getitemswithdisplaynameoperationresponse)
245
+ - [GetItemsWithSegmentOperationResponse](#getitemswithsegmentoperationresponse)
246
+ - [GetItemsWithTagOperationResponse](#getitemswithtagoperationresponse)
247
+ - [GetItemTypeOperationResponse](#getitemtypeoperationresponse)
248
+ - [GetOwnerOperationResponse](#getowneroperationresponse)
249
+ - [GetRemoveStatusOperationResponse](#getremovestatusoperationresponse)
250
+ - [GetSegmentOperationResponse](#getsegmentoperationresponse)
251
+ - [GetStatisticsLeaderboardAroundItemOperationResponse](#getstatisticsleaderboardarounditemoperationresponse)
252
+ - [GetStatisticsLeaderboardOperationResponse](#getstatisticsleaderboardoperationresponse)
253
+ - [GetTagOperationResponse](#gettagoperationresponse)
254
+ - [GetTsCreateOperationResponse](#gettscreateoperationresponse)
255
+ - [RemoveSegmentOperationResponse](#removesegmentoperationresponse)
256
+ - [RemoveTagOperationResponse](#removetagoperationresponse)
257
+ - [SetAmountOperationResponse](#setamountoperationresponse)
258
+ - [SetAvatarOperationResponse](#setavataroperationresponse)
259
+ - [SetCustomDataOperationResponse](#setcustomdataoperationresponse)
260
+ - [SetDisplayNameOperationResponse](#setdisplaynameoperationresponse)
261
+ - [SetItemDataOperationResponse](#setitemdataoperationresponse)
262
+ - [ChangeItemStatisticsOperationResponse](#changeitemstatisticsoperationresponse)
263
+ - [SetOwnerOperationResponse](#setowneroperationresponse)
264
+ - [SetRemoveStatusOperationResponse](#setremovestatusoperationresponse)
265
+ - [SetTagOperationResponse](#settagoperationresponse)
266
+ - [GetCreateLeaderboardOperationResponse](#getcreateleaderboardoperationresponse)
267
+ - [GetStatisticsLogOperationResponse](#getstatisticslogoperationresponse)
268
+
269
+ ---
270
+
271
+ ## Namespace `InventoryModels`
272
+
273
+ ### CustomDataParam
274
+
275
+ Defines the reusable parameter block CustomDataParam.
276
+
277
+ | Field | Type | Required | Notes |
278
+ |-------|------|----------|-------|
279
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
280
+ | `value` | `any` | yes | — |
281
+
282
+ ### InfoRequestParam
283
+
284
+ Selects which optional inventory fields should be returned in `infoResponseParameters`. Boolean flags default to `false`; key arrays narrow list-style fields to specific keys only.
285
+
286
+ | Field | Type | Required | Notes |
287
+ |-------|------|----------|-------|
288
+ | `catalogId` | `boolean` | no | Includes the catalog ID from which this inventory item was created. — _default=false_ |
289
+ | `classId` | `boolean` | no | Includes the class ID of the inventory item. — _default=false_ |
290
+ | `itemType` | `boolean` | no | Includes the item type mapped by the public `ItemType` enum. — _default=false_ |
291
+ | `amount` | `boolean` | no | Includes the current item amount. — _default=false_ |
292
+ | `owner` | `boolean` | no | Includes the current owner descriptor. — _default=false_ |
293
+ | `removeStatus` | `boolean` | no | _default=false_ |
294
+ | `segments` | `boolean` | no | _default=false_ |
295
+ | `customDatas` | `boolean` | no | _default=false_ |
296
+ | `displayName` | `boolean` | no | _default=false_ |
297
+ | `avatar` | `boolean` | no | _default=false_ |
298
+ | `tsCreate` | `boolean` | no | _default=false_ |
299
+ | `tags` | `boolean` | no | _default=false_ |
300
+ | `itemStatistics` | `boolean` | no | _default=false_ |
301
+ | `itemDatas` | `boolean` | no | _default=false_ |
302
+ | `itemDataKeys` | `Array<string>` | no | Restricts `itemDatas` to the specified keys when that field is requested. — _elementCls=String_ |
303
+ | `itemStatisticsKeys` | `Array<string>` | no | Restricts `itemStatistics` to the specified statistic keys when that field is requested. — _elementCls=String_ |
304
+ | `customDataKeys` | `Array<string>` | no | _elementCls=String_ |
305
+ | `tagKeys` | `Array<string>` | no | _elementCls=String_ |
306
+
307
+ ### ItemDataParam
308
+
309
+ Defines the reusable parameter block ItemDataParam.
310
+
311
+ | Field | Type | Required | Notes |
312
+ |-------|------|----------|-------|
313
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
314
+ | `value` | `any` | yes | — |
315
+
316
+ ### ItemStatisticsParam
317
+
318
+ Defines the reusable parameter block ItemStatisticsParam.
319
+
320
+ | Field | Type | Required | Notes |
321
+ |-------|------|----------|-------|
322
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
323
+ | `value` | `number` | yes | — |
324
+
325
+ ### AddSegmentRequestData
326
+
327
+ Defines the request payload for AddSegment.
328
+
329
+ | Field | Type | Required | Notes |
330
+ |-------|------|----------|-------|
331
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
332
+ | `value` | `string` | yes | _minLength=6, maxLength=32_ |
333
+
334
+ ### ServerAddSegmentRequestData
335
+
336
+ Extends: `AddSegmentRequestData`
337
+
338
+ Defines the request payload for ServerAddSegment.
339
+
340
+ _Không có field public (payload rỗng)._
341
+
342
+ ### AdminAddSegmentRequestData
343
+
344
+ Extends: `ServerAddSegmentRequestData`
345
+
346
+ Defines the request payload for AdminAddSegment.
347
+
348
+ _Không có field public (payload rỗng)._
349
+
350
+ ### GetAmountRequestData
351
+
352
+ Defines the request payload for GetAmount.
353
+
354
+ | Field | Type | Required | Notes |
355
+ |-------|------|----------|-------|
356
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
357
+
358
+ ### ServerGetAmountRequestData
359
+
360
+ Extends: `GetAmountRequestData`
361
+
362
+ Defines the request payload for ServerGetAmount.
363
+
364
+ _Không có field public (payload rỗng)._
365
+
366
+ ### AdminGetAmountRequestData
367
+
368
+ Extends: `ServerGetAmountRequestData`
369
+
370
+ Defines the request payload for AdminGetAmount.
371
+
372
+ _Không có field public (payload rỗng)._
373
+
374
+ ### GetAvatarRequestData
375
+
376
+ Defines the request payload for GetAvatar.
377
+
378
+ | Field | Type | Required | Notes |
379
+ |-------|------|----------|-------|
380
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
381
+
382
+ ### ServerGetAvatarRequestData
383
+
384
+ Extends: `GetAvatarRequestData`
385
+
386
+ Defines the request payload for ServerGetAvatar.
387
+
388
+ _Không có field public (payload rỗng)._
389
+
390
+ ### AdminGetAvatarRequestData
391
+
392
+ Extends: `ServerGetAvatarRequestData`
393
+
394
+ Defines the request payload for AdminGetAvatar.
395
+
396
+ _Không có field public (payload rỗng)._
397
+
398
+ ### GetCatalogIdRequestData
399
+
400
+ Defines the request payload for GetCatalogId.
401
+
402
+ | Field | Type | Required | Notes |
403
+ |-------|------|----------|-------|
404
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
405
+
406
+ ### ServerGetCatalogIdRequestData
407
+
408
+ Extends: `GetCatalogIdRequestData`
409
+
410
+ Defines the request payload for ServerGetCatalogId.
411
+
412
+ _Không có field public (payload rỗng)._
413
+
414
+ ### AdminGetCatalogIdRequestData
415
+
416
+ Extends: `ServerGetCatalogIdRequestData`
417
+
418
+ Defines the request payload for AdminGetCatalogId.
419
+
420
+ _Không có field public (payload rỗng)._
421
+
422
+ ### GetClassIdRequestData
423
+
424
+ Defines the request payload for GetClassId.
425
+
426
+ | Field | Type | Required | Notes |
427
+ |-------|------|----------|-------|
428
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
429
+
430
+ ### ServerGetClassIdRequestData
431
+
432
+ Extends: `GetClassIdRequestData`
433
+
434
+ Defines the request payload for ServerGetClassId.
435
+
436
+ _Không có field public (payload rỗng)._
437
+
438
+ ### AdminGetClassIdRequestData
439
+
440
+ Extends: `ServerGetClassIdRequestData`
441
+
442
+ Defines the request payload for AdminGetClassId.
443
+
444
+ _Không có field public (payload rỗng)._
445
+
446
+ ### GetCustomDataRequestData
447
+
448
+ Defines the request payload for GetCustomData.
449
+
450
+ | Field | Type | Required | Notes |
451
+ |-------|------|----------|-------|
452
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
453
+ | `customDataKeys` | `Array<string>` | no | _elementCls=String_ |
454
+
455
+ ### ServerGetCustomDataRequestData
456
+
457
+ Extends: `GetCustomDataRequestData`
458
+
459
+ Defines the request payload for ServerGetCustomData.
460
+
461
+ _Không có field public (payload rỗng)._
462
+
463
+ ### AdminGetCustomDataRequestData
464
+
465
+ Extends: `ServerGetCustomDataRequestData`
466
+
467
+ Defines the request payload for AdminGetCustomData.
468
+
469
+ _Không có field public (payload rỗng)._
470
+
471
+ ### GetDisplayNameRequestData
472
+
473
+ Defines the request payload for GetDisplayName.
474
+
475
+ | Field | Type | Required | Notes |
476
+ |-------|------|----------|-------|
477
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
478
+
479
+ ### ServerGetDisplayNameRequestData
480
+
481
+ Extends: `GetDisplayNameRequestData`
482
+
483
+ Defines the request payload for ServerGetDisplayName.
484
+
485
+ _Không có field public (payload rỗng)._
486
+
487
+ ### AdminGetDisplayNameRequestData
488
+
489
+ Extends: `ServerGetDisplayNameRequestData`
490
+
491
+ Defines the request payload for AdminGetDisplayName.
492
+
493
+ _Không có field public (payload rỗng)._
494
+
495
+ ### GetItemDataRequestData
496
+
497
+ Defines the request payload for GetItemData.
498
+
499
+ | Field | Type | Required | Notes |
500
+ |-------|------|----------|-------|
501
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
502
+ | `itemDataKeys` | `Array<string>` | no | _elementCls=String_ |
503
+
504
+ ### ServerGetItemDataRequestData
505
+
506
+ Extends: `GetItemDataRequestData`
507
+
508
+ Defines the request payload for ServerGetItemData.
509
+
510
+ _Không có field public (payload rỗng)._
511
+
512
+ ### AdminGetItemDataRequestData
513
+
514
+ Extends: `ServerGetItemDataRequestData`
515
+
516
+ Defines the request payload for AdminGetItemData.
517
+
518
+ _Không có field public (payload rỗng)._
519
+
520
+ ### GetItemInformationRequestData
521
+
522
+ Defines the request payload for GetItemInformation.
523
+
524
+ | Field | Type | Required | Notes |
525
+ |-------|------|----------|-------|
526
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
527
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
528
+
529
+ ### ServerGetItemInformationRequestData
530
+
531
+ Extends: `GetItemInformationRequestData`
532
+
533
+ Defines the request payload for ServerGetItemInformation.
534
+
535
+ _Không có field public (payload rỗng)._
536
+
537
+ ### AdminGetItemInformationRequestData
538
+
539
+ Extends: `ServerGetItemInformationRequestData`
540
+
541
+ Defines the request payload for AdminGetItemInformation.
542
+
543
+ _Không có field public (payload rỗng)._
544
+
545
+ ### GetItemStatisticsRequestData
546
+
547
+ Reads statistics for one inventory item. Note that this request uses `statisticsKeys`, while `InfoRequestParam` uses `itemStatisticsKeys`.
548
+
549
+ | Field | Type | Required | Notes |
550
+ |-------|------|----------|-------|
551
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
552
+ | `statisticsKeys` | `Array<string>` | no | _elementCls=String_ |
553
+
554
+ ### ServerGetItemStatisticsRequestData
555
+
556
+ Extends: `GetItemStatisticsRequestData`
557
+
558
+ Defines the request payload for ServerGetItemStatistics.
559
+
560
+ _Không có field public (payload rỗng)._
561
+
562
+ ### AdminGetItemStatisticsRequestData
563
+
564
+ Extends: `ServerGetItemStatisticsRequestData`
565
+
566
+ Defines the request payload for AdminGetItemStatistics.
567
+
568
+ _Không có field public (payload rỗng)._
569
+
570
+ ### GetItemsWithDisplayNameRequestData
571
+
572
+ Defines the request payload for GetItemsWithDisplayName.
573
+
574
+ | Field | Type | Required | Notes |
575
+ |-------|------|----------|-------|
576
+ | `keyword` | `string` | yes | _minLength=2, maxLength=32_ |
577
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
578
+ | `skip` | `number` | no | _min=0, default=0_ |
579
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
580
+
581
+ ### ServerGetItemsWithDisplayNameRequestData
582
+
583
+ Extends: `GetItemsWithDisplayNameRequestData`
584
+
585
+ Defines the request payload for ServerGetItemsWithDisplayName.
586
+
587
+ _Không có field public (payload rỗng)._
588
+
589
+ ### AdminGetItemsWithDisplayNameRequestData
590
+
591
+ Extends: `ServerGetItemsWithDisplayNameRequestData`
592
+
593
+ Defines the request payload for AdminGetItemsWithDisplayName.
594
+
595
+ _Không có field public (payload rỗng)._
596
+
597
+ ### GetItemsWithSegmentRequestData
598
+
599
+ Defines the request payload for GetItemsWithSegment.
600
+
601
+ | Field | Type | Required | Notes |
602
+ |-------|------|----------|-------|
603
+ | `value` | `string` | yes | _minLength=2, maxLength=32_ |
604
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
605
+ | `skip` | `number` | no | _min=0, default=0_ |
606
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
607
+
608
+ ### ServerGetItemsWithSegmentRequestData
609
+
610
+ Extends: `GetItemsWithSegmentRequestData`
611
+
612
+ Defines the request payload for ServerGetItemsWithSegment.
613
+
614
+ _Không có field public (payload rỗng)._
615
+
616
+ ### AdminGetItemsWithSegmentRequestData
617
+
618
+ Extends: `ServerGetItemsWithSegmentRequestData`
619
+
620
+ Defines the request payload for AdminGetItemsWithSegment.
621
+
622
+ _Không có field public (payload rỗng)._
623
+
624
+ ### GetItemsWithTagRequestData
625
+
626
+ Defines the request payload for GetItemsWithTag.
627
+
628
+ | Field | Type | Required | Notes |
629
+ |-------|------|----------|-------|
630
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
631
+ | `value` | `string` | yes | _minLength=2, maxLength=32_ |
632
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
633
+ | `skip` | `number` | no | _min=0, default=0_ |
634
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
635
+
636
+ ### ServerGetItemsWithTagRequestData
637
+
638
+ Extends: `GetItemsWithTagRequestData`
639
+
640
+ Defines the request payload for ServerGetItemsWithTag.
641
+
642
+ _Không có field public (payload rỗng)._
643
+
644
+ ### AdminGetItemsWithTagRequestData
645
+
646
+ Extends: `ServerGetItemsWithTagRequestData`
647
+
648
+ Defines the request payload for AdminGetItemsWithTag.
649
+
650
+ _Không có field public (payload rỗng)._
651
+
652
+ ### GetItemTypeRequestData
653
+
654
+ Defines the request payload for GetItemType.
655
+
656
+ | Field | Type | Required | Notes |
657
+ |-------|------|----------|-------|
658
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
659
+
660
+ ### ServerGetItemTypeRequestData
661
+
662
+ Extends: `GetItemTypeRequestData`
663
+
664
+ Defines the request payload for ServerGetItemType.
665
+
666
+ _Không có field public (payload rỗng)._
667
+
668
+ ### AdminGetItemTypeRequestData
669
+
670
+ Extends: `ServerGetItemTypeRequestData`
671
+
672
+ Defines the request payload for AdminGetItemType.
673
+
674
+ _Không có field public (payload rỗng)._
675
+
676
+ ### GetOwnerRequestData
677
+
678
+ Defines the request payload for GetOwner.
679
+
680
+ | Field | Type | Required | Notes |
681
+ |-------|------|----------|-------|
682
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
683
+
684
+ ### ServerGetOwnerRequestData
685
+
686
+ Extends: `GetOwnerRequestData`
687
+
688
+ Defines the request payload for ServerGetOwner.
689
+
690
+ _Không có field public (payload rỗng)._
691
+
692
+ ### AdminGetOwnerRequestData
693
+
694
+ Extends: `ServerGetOwnerRequestData`
695
+
696
+ Defines the request payload for AdminGetOwner.
697
+
698
+ _Không có field public (payload rỗng)._
699
+
700
+ ### GetRemoveStatusRequestData
701
+
702
+ Defines the request payload for GetRemoveStatus.
703
+
704
+ | Field | Type | Required | Notes |
705
+ |-------|------|----------|-------|
706
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
707
+
708
+ ### ServerGetRemoveStatusRequestData
709
+
710
+ Extends: `GetRemoveStatusRequestData`
711
+
712
+ Defines the request payload for ServerGetRemoveStatus.
713
+
714
+ _Không có field public (payload rỗng)._
715
+
716
+ ### AdminGetRemoveStatusRequestData
717
+
718
+ Extends: `ServerGetRemoveStatusRequestData`
719
+
720
+ Defines the request payload for AdminGetRemoveStatus.
721
+
722
+ _Không có field public (payload rỗng)._
723
+
724
+ ### GetSegmentRequestData
725
+
726
+ Defines the request payload for GetSegment.
727
+
728
+ | Field | Type | Required | Notes |
729
+ |-------|------|----------|-------|
730
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
731
+
732
+ ### ServerGetSegmentRequestData
733
+
734
+ Extends: `GetSegmentRequestData`
735
+
736
+ Defines the request payload for ServerGetSegment.
737
+
738
+ _Không có field public (payload rỗng)._
739
+
740
+ ### AdminGetSegmentRequestData
741
+
742
+ Extends: `ServerGetSegmentRequestData`
743
+
744
+ Defines the request payload for AdminGetSegment.
745
+
746
+ _Không có field public (payload rỗng)._
747
+
748
+ ### GetStatisticsLeaderboardAroundItemRequestData
749
+
750
+ Defines the request payload for GetStatisticsLeaderboardAroundItem.
751
+
752
+ | Field | Type | Required | Notes |
753
+ |-------|------|----------|-------|
754
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
755
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
756
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
757
+ | `skip` | `number` | no | _min=0, default=0_ |
758
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
759
+ | `loadFromCache` | `boolean` | no | _default=true_ |
760
+ | `catalogId` | `string` | yes | _minLength=2, maxLength=32_ |
761
+
762
+ ### ServerGetStatisticsLeaderboardAroundItemRequestData
763
+
764
+ Extends: `GetStatisticsLeaderboardAroundItemRequestData`
765
+
766
+ Defines the request payload for ServerGetStatisticsLeaderboardAroundItem.
767
+
768
+ _Không có field public (payload rỗng)._
769
+
770
+ ### AdminGetStatisticsLeaderboardAroundItemRequestData
771
+
772
+ Extends: `ServerGetStatisticsLeaderboardAroundItemRequestData`
773
+
774
+ Defines the request payload for AdminGetStatisticsLeaderboardAroundItem.
775
+
776
+ _Không có field public (payload rỗng)._
777
+
778
+ ### GetStatisticsLeaderboardRequestData
779
+
780
+ Defines the request payload for GetStatisticsLeaderboard.
781
+
782
+ | Field | Type | Required | Notes |
783
+ |-------|------|----------|-------|
784
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
785
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
786
+ | `skip` | `number` | no | _min=0, default=0_ |
787
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
788
+ | `loadFromCache` | `boolean` | no | _default=true_ |
789
+ | `version` | `string` | yes | _minLength=2, maxLength=32_ |
790
+ | `catalogId` | `string` | yes | _minLength=2, maxLength=32_ |
791
+
792
+ ### ServerGetStatisticsLeaderboardRequestData
793
+
794
+ Extends: `GetStatisticsLeaderboardRequestData`
795
+
796
+ Defines the request payload for ServerGetStatisticsLeaderboard.
797
+
798
+ _Không có field public (payload rỗng)._
799
+
800
+ ### AdminGetStatisticsLeaderboardRequestData
801
+
802
+ Extends: `ServerGetStatisticsLeaderboardRequestData`
803
+
804
+ Defines the request payload for AdminGetStatisticsLeaderboard.
805
+
806
+ _Không có field public (payload rỗng)._
807
+
808
+ ### GetCreateLeaderboardRequestData
809
+
810
+ Defines the request payload for GetCreateLeaderboard.
811
+
812
+ | Field | Type | Required | Notes |
813
+ |-------|------|----------|-------|
814
+ | `infoRequestParam` | `InfoRequestParam` | yes | — |
815
+ | `skip` | `number` | no | _min=0, default=0_ |
816
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
817
+ | `loadFromCache` | `boolean` | no | _default=true_ |
818
+
819
+ ### ServerGetCreateLeaderboardRequestData
820
+
821
+ Extends: `GetCreateLeaderboardRequestData`
822
+
823
+ Defines the request payload for ServerGetCreateLeaderboard.
824
+
825
+ _Không có field public (payload rỗng)._
826
+
827
+ ### AdminGetCreateLeaderboardRequestData
828
+
829
+ Extends: `ServerGetCreateLeaderboardRequestData`
830
+
831
+ Defines the request payload for AdminGetCreateLeaderboard.
832
+
833
+ _Không có field public (payload rỗng)._
834
+
835
+ ### GetTagRequestData
836
+
837
+ Defines the request payload for GetTag.
838
+
839
+ | Field | Type | Required | Notes |
840
+ |-------|------|----------|-------|
841
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
842
+ | `tagKeys` | `Array<string>` | yes | _elementCls=String_ |
843
+
844
+ ### ServerGetTagRequestData
845
+
846
+ Extends: `GetTagRequestData`
847
+
848
+ Defines the request payload for ServerGetTag.
849
+
850
+ _Không có field public (payload rỗng)._
851
+
852
+ ### AdminGetTagRequestData
853
+
854
+ Extends: `ServerGetTagRequestData`
855
+
856
+ Defines the request payload for AdminGetTag.
857
+
858
+ _Không có field public (payload rỗng)._
859
+
860
+ ### GetTsCreateRequestData
861
+
862
+ Defines the request payload for GetTsCreate.
863
+
864
+ | Field | Type | Required | Notes |
865
+ |-------|------|----------|-------|
866
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
867
+
868
+ ### ServerGetTsCreateRequestData
869
+
870
+ Extends: `GetTsCreateRequestData`
871
+
872
+ Defines the request payload for ServerGetTsCreate.
873
+
874
+ _Không có field public (payload rỗng)._
875
+
876
+ ### AdminGetTsCreateRequestData
877
+
878
+ Extends: `ServerGetTsCreateRequestData`
879
+
880
+ Defines the request payload for AdminGetTsCreate.
881
+
882
+ _Không có field public (payload rỗng)._
883
+
884
+ ### RemoveSegmentRequestData
885
+
886
+ Defines the request payload for RemoveSegment.
887
+
888
+ | Field | Type | Required | Notes |
889
+ |-------|------|----------|-------|
890
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
891
+ | `value` | `string` | yes | _minLength=2, maxLength=32_ |
892
+
893
+ ### ServerRemoveSegmentRequestData
894
+
895
+ Extends: `RemoveSegmentRequestData`
896
+
897
+ Defines the request payload for ServerRemoveSegment.
898
+
899
+ _Không có field public (payload rỗng)._
900
+
901
+ ### AdminRemoveSegmentRequestData
902
+
903
+ Extends: `ServerRemoveSegmentRequestData`
904
+
905
+ Defines the request payload for AdminRemoveSegment.
906
+
907
+ _Không có field public (payload rỗng)._
908
+
909
+ ### RemoveTagRequestData
910
+
911
+ Defines the request payload for RemoveTag.
912
+
913
+ | Field | Type | Required | Notes |
914
+ |-------|------|----------|-------|
915
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
916
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
917
+
918
+ ### ServerRemoveTagRequestData
919
+
920
+ Extends: `RemoveTagRequestData`
921
+
922
+ Defines the request payload for ServerRemoveTag.
923
+
924
+ _Không có field public (payload rỗng)._
925
+
926
+ ### AdminRemoveTagRequestData
927
+
928
+ Extends: `ServerRemoveTagRequestData`
929
+
930
+ Defines the request payload for AdminRemoveTag.
931
+
932
+ _Không có field public (payload rỗng)._
933
+
934
+ ### SetAmountRequestData
935
+
936
+ Replaces the stored amount with an absolute value. Use `ChangeItemStatistics` for statistics deltas; this contract is not a delta operation.
937
+
938
+ | Field | Type | Required | Notes |
939
+ |-------|------|----------|-------|
940
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
941
+ | `amount` | `number` | yes | — |
942
+
943
+ ### ServerSetAmountRequestData
944
+
945
+ Extends: `SetAmountRequestData`
946
+
947
+ Defines the request payload for ServerSetAmount.
948
+
949
+ _Không có field public (payload rỗng)._
950
+
951
+ ### AdminSetAmountRequestData
952
+
953
+ Extends: `ServerSetAmountRequestData`
954
+
955
+ Defines the request payload for AdminSetAmount.
956
+
957
+ _Không có field public (payload rỗng)._
958
+
959
+ ### SetAvatarRequestData
960
+
961
+ Defines the request payload for SetAvatar.
962
+
963
+ | Field | Type | Required | Notes |
964
+ |-------|------|----------|-------|
965
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
966
+ | `type` | `number` | yes | — |
967
+ | `value` | `string` | yes | _minLength=1, maxLength=128_ |
968
+
969
+ ### ServerSetAvatarRequestData
970
+
971
+ Extends: `SetAvatarRequestData`
972
+
973
+ Defines the request payload for ServerSetAvatar.
974
+
975
+ _Không có field public (payload rỗng)._
976
+
977
+ ### AdminSetAvatarRequestData
978
+
979
+ Extends: `ServerSetAvatarRequestData`
980
+
981
+ Defines the request payload for AdminSetAvatar.
982
+
983
+ _Không có field public (payload rỗng)._
984
+
985
+ ### SetCustomDataRequestData
986
+
987
+ Defines the request payload for SetCustomData.
988
+
989
+ | Field | Type | Required | Notes |
990
+ |-------|------|----------|-------|
991
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
992
+ | `customDatas` | `Array<CustomDataParam>` | yes | _minLength=1, maxLength=32, elementCls=CustomDataParam_ |
993
+
994
+ ### ServerSetCustomDataRequestData
995
+
996
+ Extends: `SetCustomDataRequestData`
997
+
998
+ Defines the request payload for ServerSetCustomData.
999
+
1000
+ _Không có field public (payload rỗng)._
1001
+
1002
+ ### AdminSetCustomDataRequestData
1003
+
1004
+ Extends: `ServerSetCustomDataRequestData`
1005
+
1006
+ Defines the request payload for AdminSetCustomData.
1007
+
1008
+ _Không có field public (payload rỗng)._
1009
+
1010
+ ### SetDisplayNameRequestData
1011
+
1012
+ Defines the request payload for SetDisplayName.
1013
+
1014
+ | Field | Type | Required | Notes |
1015
+ |-------|------|----------|-------|
1016
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
1017
+ | `displayName` | `string` | yes | _minLength=5, maxLength=32_ |
1018
+
1019
+ ### ServerSetDisplayNameRequestData
1020
+
1021
+ Extends: `SetDisplayNameRequestData`
1022
+
1023
+ Defines the request payload for ServerSetDisplayName.
1024
+
1025
+ _Không có field public (payload rỗng)._
1026
+
1027
+ ### AdminSetDisplayNameRequestData
1028
+
1029
+ Extends: `ServerSetDisplayNameRequestData`
1030
+
1031
+ Defines the request payload for AdminSetDisplayName.
1032
+
1033
+ _Không có field public (payload rỗng)._
1034
+
1035
+ ### SetItemDataRequestData
1036
+
1037
+ Defines the request payload for SetItemData.
1038
+
1039
+ | Field | Type | Required | Notes |
1040
+ |-------|------|----------|-------|
1041
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
1042
+ | `itemDatas` | `Array<ItemDataParam>` | yes | _minLength=1, maxLength=32, elementCls=ItemDataParam_ |
1043
+
1044
+ ### ServerSetItemDataRequestData
1045
+
1046
+ Extends: `SetItemDataRequestData`
1047
+
1048
+ Defines the request payload for ServerSetItemData.
1049
+
1050
+ _Không có field public (payload rỗng)._
1051
+
1052
+ ### AdminSetItemDataRequestData
1053
+
1054
+ Extends: `ServerSetItemDataRequestData`
1055
+
1056
+ Defines the request payload for AdminSetItemData.
1057
+
1058
+ _Không có field public (payload rỗng)._
1059
+
1060
+ ### ChangeItemStatisticsRequestData
1061
+
1062
+ Applies delta updates to one or more item statistics.
1063
+
1064
+ | Field | Type | Required | Notes |
1065
+ |-------|------|----------|-------|
1066
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
1067
+ | `itemStatistics` | `Array<ItemStatisticsParam>` | yes | _minLength=1, maxLength=32, elementCls=ItemStatisticsParam_ |
1068
+ | `log` | `string` | yes | _minLength=1, maxLength=256_ |
1069
+
1070
+ ### ServerChangeItemStatisticsRequestData
1071
+
1072
+ Extends: `ChangeItemStatisticsRequestData`
1073
+
1074
+ Defines the request payload for ServerChangeItemStatistics.
1075
+
1076
+ _Không có field public (payload rỗng)._
1077
+
1078
+ ### AdminChangeItemStatisticsRequestData
1079
+
1080
+ Extends: `ServerChangeItemStatisticsRequestData`
1081
+
1082
+ Defines the request payload for AdminChangeItemStatistics.
1083
+
1084
+ _Không có field public (payload rỗng)._
1085
+
1086
+ ### SetOwnerRequestData
1087
+
1088
+ Transfers ownership of the inventory item to a different owner.
1089
+
1090
+ | Field | Type | Required | Notes |
1091
+ |-------|------|----------|-------|
1092
+ | `itemId` | `string` | yes | _minLength=11, maxLength=11_ |
1093
+ | `newOwnerId` | `string` | yes | New owner identifier matching the selected `newOwnerType`. — _minLength=10, maxLength=12_ |
1094
+ | `newOwnerType` | `number` | yes | New owner type mapped by the public `OwnerType` enum. |
1095
+
1096
+ ### ServerSetOwnerRequestData
1097
+
1098
+ Extends: `SetOwnerRequestData`
1099
+
1100
+ Defines the request payload for ServerSetOwner.
1101
+
1102
+ _Không có field public (payload rỗng)._
1103
+
1104
+ ### AdminSetOwnerRequestData
1105
+
1106
+ Extends: `ServerSetOwnerRequestData`
1107
+
1108
+ Defines the request payload for AdminSetOwner.
1109
+
1110
+ _Không có field public (payload rỗng)._
1111
+
1112
+ ### SetRemoveStatusRequestData
1113
+
1114
+ Defines the request payload for SetRemoveStatus.
1115
+
1116
+ | Field | Type | Required | Notes |
1117
+ |-------|------|----------|-------|
1118
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
1119
+ | `reason` | `string` | no | _default=""_ |
1120
+
1121
+ ### ServerSetRemoveStatusRequestData
1122
+
1123
+ Extends: `SetRemoveStatusRequestData`
1124
+
1125
+ Defines the request payload for ServerSetRemoveStatus.
1126
+
1127
+ _Không có field public (payload rỗng)._
1128
+
1129
+ ### AdminSetRemoveStatusRequestData
1130
+
1131
+ Extends: `ServerSetRemoveStatusRequestData`
1132
+
1133
+ Defines the request payload for AdminSetRemoveStatus.
1134
+
1135
+ _Không có field public (payload rỗng)._
1136
+
1137
+ ### SetTagRequestData
1138
+
1139
+ Defines the request payload for SetTag.
1140
+
1141
+ | Field | Type | Required | Notes |
1142
+ |-------|------|----------|-------|
1143
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
1144
+ | `key` | `string` | yes | _minLength=2, maxLength=32_ |
1145
+ | `value` | `string` | yes | _minLength=2, maxLength=32_ |
1146
+
1147
+ ### ServerSetTagRequestData
1148
+
1149
+ Extends: `SetTagRequestData`
1150
+
1151
+ Defines the request payload for ServerSetTag.
1152
+
1153
+ _Không có field public (payload rỗng)._
1154
+
1155
+ ### AdminSetTagRequestData
1156
+
1157
+ Extends: `ServerSetTagRequestData`
1158
+
1159
+ Defines the request payload for AdminSetTag.
1160
+
1161
+ _Không có field public (payload rỗng)._
1162
+
1163
+ ### GetStatisticsLogRequestData
1164
+
1165
+ Reads statistic change logs for one inventory item. Pagination is token-based rather than skip-based.
1166
+
1167
+ | Field | Type | Required | Notes |
1168
+ |-------|------|----------|-------|
1169
+ | `keys` | `Array<string>` | yes | _minLength=1, maxLength=32, elementCls=String_ |
1170
+ | `itemId` | `string` | yes | _minLength=12, maxLength=12_ |
1171
+ | `limit` | `number` | no | _min=1, max=100, default=10_ |
1172
+ | `token` | `string` | yes | Continuation token returned by the previous page. — _minLength=24, maxLength=24_ |
1173
+
1174
+ ### ServerGetStatisticsLogRequestData
1175
+
1176
+ Extends: `GetStatisticsLogRequestData`
1177
+
1178
+ Defines the request payload for ServerGetStatisticsLog.
1179
+
1180
+ _Không có field public (payload rỗng)._
1181
+
1182
+ ### AdminGetStatisticsLogRequestData
1183
+
1184
+ Extends: `ServerGetStatisticsLogRequestData`
1185
+
1186
+ Defines the request payload for AdminGetStatisticsLog.
1187
+
1188
+ _Không có field public (payload rỗng)._
1189
+
1190
+ ### InfoResponseParameters
1191
+
1192
+ Contains the optional fields requested through `InfoRequestParam`.
1193
+
1194
+ | Field | Type | Required | Notes |
1195
+ |-------|------|----------|-------|
1196
+ | `catalogId` | `string` | no | — |
1197
+ | `classId` | `string` | no | — |
1198
+ | `itemType` | `number` | no | — |
1199
+ | `amount` | `number` | no | — |
1200
+ | `owner` | `GenericModels.OwnerItem` | no | Owner descriptor mapped by the public `OwnerType` enum. |
1201
+ | `removeStatus` | `GenericModels.RemoveStatusItem` | no | — |
1202
+ | `segments` | `Array<string>` | no | _elementCls=String_ |
1203
+ | `customDatas` | `Array<GenericModels.DataItem>` | no | _elementCls=GenericModels.DataItem_ |
1204
+ | `displayName` | `string` | no | — |
1205
+ | `avatar` | `GenericModels.AvatarItem` | no | — |
1206
+ | `tsCreate` | `number` | no | — |
1207
+ | `tags` | `Array<GenericModels.TagItem>` | no | _elementCls=GenericModels.TagItem_ |
1208
+ | `itemDatas` | `Array<GenericModels.DataItem>` | no | _elementCls=GenericModels.DataItem_ |
1209
+ | `itemStatistics` | `Array<GenericModels.StatisticsItem>` | no | _elementCls=GenericModels.StatisticsItem_ |
1210
+
1211
+ ### InventoryResponseData
1212
+
1213
+ Base inventory response envelope.
1214
+
1215
+ | Field | Type | Required | Notes |
1216
+ |-------|------|----------|-------|
1217
+ | `infoResponseParameters` | `InfoResponseParameters` | yes | Optional field bag controlled by the corresponding `InfoRequestParam`. |
1218
+
1219
+ ### InventoryWithItemIdResponseData
1220
+
1221
+ Extends: `InventoryResponseData`
1222
+
1223
+ Inventory envelope that also exposes the resolved item ID.
1224
+
1225
+ | Field | Type | Required | Notes |
1226
+ |-------|------|----------|-------|
1227
+ | `itemId` | `string` | yes | — |
1228
+
1229
+ ### InventoryLeaderboardResponseData
1230
+
1231
+ Extends: `InventoryWithItemIdResponseData`
1232
+
1233
+ Defines the response payload for InventoryLeaderboard.
1234
+
1235
+ | Field | Type | Required | Notes |
1236
+ |-------|------|----------|-------|
1237
+ | `position` | `number` | yes | — |
1238
+ | `backupValue` | `number` | no | — |
1239
+
1240
+ ### InventoryLogResponseData
1241
+
1242
+ Describes one inventory-statistics change log entry.
1243
+
1244
+ | Field | Type | Required | Notes |
1245
+ |-------|------|----------|-------|
1246
+ | `itemId` | `string` | yes | — |
1247
+ | `tsCreate` | `number` | yes | — |
1248
+ | `log` | `string` | yes | — |
1249
+ | `key` | `string` | yes | — |
1250
+ | `amount` | `number` | yes | — |
1251
+ | `startValue` | `number` | yes | — |
1252
+ | `finalValue` | `number` | yes | — |
1253
+
1254
+ ### GetStatisticsLeaderboardResponseData
1255
+
1256
+ Defines the response payload for GetStatisticsLeaderboard.
1257
+
1258
+ | Field | Type | Required | Notes |
1259
+ |-------|------|----------|-------|
1260
+ | `results` | `Array<InventoryLeaderboardResponseData>` | yes | _elementCls=InventoryLeaderboardResponseData_ |
1261
+ | `tsCreate` | `number` | no | — |
1262
+
1263
+ ### InventoriesWithItemIdResponseData
1264
+
1265
+ Defines the response payload for InventoriesWithItemId.
1266
+
1267
+ | Field | Type | Required | Notes |
1268
+ |-------|------|----------|-------|
1269
+ | `results` | `Array<InventoryWithItemIdResponseData>` | yes | _elementCls=InventoryWithItemIdResponseData_ |
1270
+
1271
+ ### GetCreateLeaderboardResponseData
1272
+
1273
+ Defines the response payload for GetCreateLeaderboard.
1274
+
1275
+ | Field | Type | Required | Notes |
1276
+ |-------|------|----------|-------|
1277
+ | `results` | `Array<InventoryLeaderboardResponseData>` | yes | _elementCls=InventoryLeaderboardResponseData_ |
1278
+
1279
+ ### GetStatisticsLogResponseData
1280
+
1281
+ Returns one page of inventory statistics logs.
1282
+
1283
+ | Field | Type | Required | Notes |
1284
+ |-------|------|----------|-------|
1285
+ | `results` | `Array<InventoryLogResponseData>` | yes | _elementCls=InventoryLogResponseData_ |
1286
+ | `token` | `string` | no | Continuation token for the next page, or `undefined` when pagination is exhausted. |
1287
+
1288
+ ### EmptyResponseData
1289
+
1290
+ Defines an intentionally empty response payload.
1291
+
1292
+ _Không có field public (payload rỗng)._
1293
+
1294
+ ## Namespace `InventoryRequestModels`
1295
+
1296
+ ### AddSegmentOperationRequest
1297
+
1298
+ Extends: `CustomOperationRequestAbstract<InventoryModels.AddSegmentRequestData>`
1299
+
1300
+ Maps the AddSegment operation to a typed request wrapper.
1301
+
1302
+ _Không có field public (payload rỗng)._
1303
+
1304
+ ### ServerAddSegmentOperationRequest
1305
+
1306
+ Extends: `AddSegmentOperationRequest`
1307
+
1308
+ Maps the ServerAddSegment operation to a typed request wrapper.
1309
+
1310
+ _Không có field public (payload rỗng)._
1311
+
1312
+ ### AdminAddSegmentOperationRequest
1313
+
1314
+ Extends: `AddSegmentOperationRequest`
1315
+
1316
+ Maps the AdminAddSegment operation to a typed request wrapper.
1317
+
1318
+ _Không có field public (payload rỗng)._
1319
+
1320
+ ### GetAmountOperationRequest
1321
+
1322
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetAmountRequestData>`
1323
+
1324
+ Maps the GetAmount operation to a typed request wrapper.
1325
+
1326
+ _Không có field public (payload rỗng)._
1327
+
1328
+ ### ServerGetAmountOperationRequest
1329
+
1330
+ Extends: `GetAmountOperationRequest`
1331
+
1332
+ Maps the ServerGetAmount operation to a typed request wrapper.
1333
+
1334
+ _Không có field public (payload rỗng)._
1335
+
1336
+ ### AdminGetAmountOperationRequest
1337
+
1338
+ Extends: `GetAmountOperationRequest`
1339
+
1340
+ Maps the AdminGetAmount operation to a typed request wrapper.
1341
+
1342
+ _Không có field public (payload rỗng)._
1343
+
1344
+ ### GetAvatarOperationRequest
1345
+
1346
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetAvatarRequestData>`
1347
+
1348
+ Maps the GetAvatar operation to a typed request wrapper.
1349
+
1350
+ _Không có field public (payload rỗng)._
1351
+
1352
+ ### ServerGetAvatarOperationRequest
1353
+
1354
+ Extends: `GetAvatarOperationRequest`
1355
+
1356
+ Maps the ServerGetAvatar operation to a typed request wrapper.
1357
+
1358
+ _Không có field public (payload rỗng)._
1359
+
1360
+ ### AdminGetAvatarOperationRequest
1361
+
1362
+ Extends: `GetAvatarOperationRequest`
1363
+
1364
+ Maps the AdminGetAvatar operation to a typed request wrapper.
1365
+
1366
+ _Không có field public (payload rỗng)._
1367
+
1368
+ ### GetCatalogIdOperationRequest
1369
+
1370
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetCatalogIdRequestData>`
1371
+
1372
+ Maps the GetCatalogId operation to a typed request wrapper.
1373
+
1374
+ _Không có field public (payload rỗng)._
1375
+
1376
+ ### ServerGetCatalogIdOperationRequest
1377
+
1378
+ Extends: `GetCatalogIdOperationRequest`
1379
+
1380
+ Maps the ServerGetCatalogId operation to a typed request wrapper.
1381
+
1382
+ _Không có field public (payload rỗng)._
1383
+
1384
+ ### AdminGetCatalogIdOperationRequest
1385
+
1386
+ Extends: `GetCatalogIdOperationRequest`
1387
+
1388
+ Maps the AdminGetCatalogId operation to a typed request wrapper.
1389
+
1390
+ _Không có field public (payload rỗng)._
1391
+
1392
+ ### GetClassIdOperationRequest
1393
+
1394
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetClassIdRequestData>`
1395
+
1396
+ Maps the GetClassId operation to a typed request wrapper.
1397
+
1398
+ _Không có field public (payload rỗng)._
1399
+
1400
+ ### ServerGetClassIdOperationRequest
1401
+
1402
+ Extends: `GetClassIdOperationRequest`
1403
+
1404
+ Maps the ServerGetClassId operation to a typed request wrapper.
1405
+
1406
+ _Không có field public (payload rỗng)._
1407
+
1408
+ ### AdminGetClassIdOperationRequest
1409
+
1410
+ Extends: `GetClassIdOperationRequest`
1411
+
1412
+ Maps the AdminGetClassId operation to a typed request wrapper.
1413
+
1414
+ _Không có field public (payload rỗng)._
1415
+
1416
+ ### GetCustomDataOperationRequest
1417
+
1418
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetCustomDataRequestData>`
1419
+
1420
+ Maps the GetCustomData operation to a typed request wrapper.
1421
+
1422
+ _Không có field public (payload rỗng)._
1423
+
1424
+ ### ServerGetCustomDataOperationRequest
1425
+
1426
+ Extends: `GetCustomDataOperationRequest`
1427
+
1428
+ Maps the ServerGetCustomData operation to a typed request wrapper.
1429
+
1430
+ _Không có field public (payload rỗng)._
1431
+
1432
+ ### AdminGetCustomDataOperationRequest
1433
+
1434
+ Extends: `GetCustomDataOperationRequest`
1435
+
1436
+ Maps the AdminGetCustomData operation to a typed request wrapper.
1437
+
1438
+ _Không có field public (payload rỗng)._
1439
+
1440
+ ### GetDisplayNameOperationRequest
1441
+
1442
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetDisplayNameRequestData>`
1443
+
1444
+ Maps the GetDisplayName operation to a typed request wrapper.
1445
+
1446
+ _Không có field public (payload rỗng)._
1447
+
1448
+ ### ServerGetDisplayNameOperationRequest
1449
+
1450
+ Extends: `GetDisplayNameOperationRequest`
1451
+
1452
+ Maps the ServerGetDisplayName operation to a typed request wrapper.
1453
+
1454
+ _Không có field public (payload rỗng)._
1455
+
1456
+ ### AdminGetDisplayNameOperationRequest
1457
+
1458
+ Extends: `GetDisplayNameOperationRequest`
1459
+
1460
+ Maps the AdminGetDisplayName operation to a typed request wrapper.
1461
+
1462
+ _Không có field public (payload rỗng)._
1463
+
1464
+ ### GetItemDataOperationRequest
1465
+
1466
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetItemDataRequestData>`
1467
+
1468
+ Maps the GetItemData operation to a typed request wrapper.
1469
+
1470
+ _Không có field public (payload rỗng)._
1471
+
1472
+ ### ServerGetItemDataOperationRequest
1473
+
1474
+ Extends: `GetItemDataOperationRequest`
1475
+
1476
+ Maps the ServerGetItemData operation to a typed request wrapper.
1477
+
1478
+ _Không có field public (payload rỗng)._
1479
+
1480
+ ### AdminGetItemDataOperationRequest
1481
+
1482
+ Extends: `GetItemDataOperationRequest`
1483
+
1484
+ Maps the AdminGetItemData operation to a typed request wrapper.
1485
+
1486
+ _Không có field public (payload rỗng)._
1487
+
1488
+ ### GetItemInformationOperationRequest
1489
+
1490
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetItemInformationRequestData>`
1491
+
1492
+ Maps the GetItemInformation operation to a typed request wrapper.
1493
+
1494
+ _Không có field public (payload rỗng)._
1495
+
1496
+ ### ServerGetItemInformationOperationRequest
1497
+
1498
+ Extends: `GetItemInformationOperationRequest`
1499
+
1500
+ Maps the ServerGetItemInformation operation to a typed request wrapper.
1501
+
1502
+ _Không có field public (payload rỗng)._
1503
+
1504
+ ### AdminGetItemInformationOperationRequest
1505
+
1506
+ Extends: `GetItemInformationOperationRequest`
1507
+
1508
+ Maps the AdminGetItemInformation operation to a typed request wrapper.
1509
+
1510
+ _Không có field public (payload rỗng)._
1511
+
1512
+ ### GetItemStatisticsOperationRequest
1513
+
1514
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetItemStatisticsRequestData>`
1515
+
1516
+ Maps the GetItemStatistics operation to a typed request wrapper.
1517
+
1518
+ _Không có field public (payload rỗng)._
1519
+
1520
+ ### ServerGetItemStatisticsOperationRequest
1521
+
1522
+ Extends: `GetItemStatisticsOperationRequest`
1523
+
1524
+ Maps the ServerGetItemStatistics operation to a typed request wrapper.
1525
+
1526
+ _Không có field public (payload rỗng)._
1527
+
1528
+ ### AdminGetItemStatisticsOperationRequest
1529
+
1530
+ Extends: `GetItemStatisticsOperationRequest`
1531
+
1532
+ Maps the AdminGetItemStatistics operation to a typed request wrapper.
1533
+
1534
+ _Không có field public (payload rỗng)._
1535
+
1536
+ ### GetItemsWithDisplayNameOperationRequest
1537
+
1538
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetItemsWithDisplayNameRequestData>`
1539
+
1540
+ Maps the GetItemsWithDisplayName operation to a typed request wrapper.
1541
+
1542
+ _Không có field public (payload rỗng)._
1543
+
1544
+ ### ServerGetItemsWithDisplayNameOperationRequest
1545
+
1546
+ Extends: `GetItemsWithDisplayNameOperationRequest`
1547
+
1548
+ Maps the ServerGetItemsWithDisplayName operation to a typed request wrapper.
1549
+
1550
+ _Không có field public (payload rỗng)._
1551
+
1552
+ ### AdminGetItemsWithDisplayNameOperationRequest
1553
+
1554
+ Extends: `GetItemsWithDisplayNameOperationRequest`
1555
+
1556
+ Maps the AdminGetItemsWithDisplayName operation to a typed request wrapper.
1557
+
1558
+ _Không có field public (payload rỗng)._
1559
+
1560
+ ### GetItemsWithSegmentOperationRequest
1561
+
1562
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetItemsWithSegmentRequestData>`
1563
+
1564
+ Maps the GetItemsWithSegment operation to a typed request wrapper.
1565
+
1566
+ _Không có field public (payload rỗng)._
1567
+
1568
+ ### ServerGetItemsWithSegmentOperationRequest
1569
+
1570
+ Extends: `GetItemsWithSegmentOperationRequest`
1571
+
1572
+ Maps the ServerGetItemsWithSegment operation to a typed request wrapper.
1573
+
1574
+ _Không có field public (payload rỗng)._
1575
+
1576
+ ### AdminGetItemsWithSegmentOperationRequest
1577
+
1578
+ Extends: `GetItemsWithSegmentOperationRequest`
1579
+
1580
+ Maps the AdminGetItemsWithSegment operation to a typed request wrapper.
1581
+
1582
+ _Không có field public (payload rỗng)._
1583
+
1584
+ ### GetItemsWithTagOperationRequest
1585
+
1586
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetItemsWithTagRequestData>`
1587
+
1588
+ Maps the GetItemsWithTag operation to a typed request wrapper.
1589
+
1590
+ _Không có field public (payload rỗng)._
1591
+
1592
+ ### ServerGetItemsWithTagOperationRequest
1593
+
1594
+ Extends: `GetItemsWithTagOperationRequest`
1595
+
1596
+ Maps the ServerGetItemsWithTag operation to a typed request wrapper.
1597
+
1598
+ _Không có field public (payload rỗng)._
1599
+
1600
+ ### AdminGetItemsWithTagOperationRequest
1601
+
1602
+ Extends: `GetItemsWithTagOperationRequest`
1603
+
1604
+ Maps the AdminGetItemsWithTag operation to a typed request wrapper.
1605
+
1606
+ _Không có field public (payload rỗng)._
1607
+
1608
+ ### GetItemTypeOperationRequest
1609
+
1610
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetItemTypeRequestData>`
1611
+
1612
+ Maps the GetItemType operation to a typed request wrapper.
1613
+
1614
+ _Không có field public (payload rỗng)._
1615
+
1616
+ ### ServerGetItemTypeOperationRequest
1617
+
1618
+ Extends: `GetItemTypeOperationRequest`
1619
+
1620
+ Maps the ServerGetItemType operation to a typed request wrapper.
1621
+
1622
+ _Không có field public (payload rỗng)._
1623
+
1624
+ ### AdminGetItemTypeOperationRequest
1625
+
1626
+ Extends: `GetItemTypeOperationRequest`
1627
+
1628
+ Maps the AdminGetItemType operation to a typed request wrapper.
1629
+
1630
+ _Không có field public (payload rỗng)._
1631
+
1632
+ ### GetOwnerOperationRequest
1633
+
1634
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetOwnerRequestData>`
1635
+
1636
+ Maps the GetOwner operation to a typed request wrapper.
1637
+
1638
+ _Không có field public (payload rỗng)._
1639
+
1640
+ ### ServerGetOwnerOperationRequest
1641
+
1642
+ Extends: `GetOwnerOperationRequest`
1643
+
1644
+ Maps the ServerGetOwner operation to a typed request wrapper.
1645
+
1646
+ _Không có field public (payload rỗng)._
1647
+
1648
+ ### AdminGetOwnerOperationRequest
1649
+
1650
+ Extends: `GetOwnerOperationRequest`
1651
+
1652
+ Maps the AdminGetOwner operation to a typed request wrapper.
1653
+
1654
+ _Không có field public (payload rỗng)._
1655
+
1656
+ ### GetRemoveStatusOperationRequest
1657
+
1658
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetRemoveStatusRequestData>`
1659
+
1660
+ Maps the GetRemoveStatus operation to a typed request wrapper.
1661
+
1662
+ _Không có field public (payload rỗng)._
1663
+
1664
+ ### ServerGetRemoveStatusOperationRequest
1665
+
1666
+ Extends: `GetRemoveStatusOperationRequest`
1667
+
1668
+ Maps the ServerGetRemoveStatus operation to a typed request wrapper.
1669
+
1670
+ _Không có field public (payload rỗng)._
1671
+
1672
+ ### AdminGetRemoveStatusOperationRequest
1673
+
1674
+ Extends: `GetRemoveStatusOperationRequest`
1675
+
1676
+ Maps the AdminGetRemoveStatus operation to a typed request wrapper.
1677
+
1678
+ _Không có field public (payload rỗng)._
1679
+
1680
+ ### GetSegmentOperationRequest
1681
+
1682
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetSegmentRequestData>`
1683
+
1684
+ Maps the GetSegment operation to a typed request wrapper.
1685
+
1686
+ _Không có field public (payload rỗng)._
1687
+
1688
+ ### ServerGetSegmentOperationRequest
1689
+
1690
+ Extends: `GetSegmentOperationRequest`
1691
+
1692
+ Maps the ServerGetSegment operation to a typed request wrapper.
1693
+
1694
+ _Không có field public (payload rỗng)._
1695
+
1696
+ ### AdminGetSegmentOperationRequest
1697
+
1698
+ Extends: `GetSegmentOperationRequest`
1699
+
1700
+ Maps the AdminGetSegment operation to a typed request wrapper.
1701
+
1702
+ _Không có field public (payload rỗng)._
1703
+
1704
+ ### GetStatisticsLeaderboardAroundItemOperationRequest
1705
+
1706
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetStatisticsLeaderboardAroundItemRequestData>`
1707
+
1708
+ Maps the GetStatisticsLeaderboardAroundItem operation to a typed request wrapper.
1709
+
1710
+ _Không có field public (payload rỗng)._
1711
+
1712
+ ### ServerGetStatisticsLeaderboardAroundItemOperationRequest
1713
+
1714
+ Extends: `GetStatisticsLeaderboardAroundItemOperationRequest`
1715
+
1716
+ Maps the ServerGetStatisticsLeaderboardAroundItem operation to a typed request wrapper.
1717
+
1718
+ _Không có field public (payload rỗng)._
1719
+
1720
+ ### AdminGetStatisticsLeaderboardAroundItemOperationRequest
1721
+
1722
+ Extends: `GetStatisticsLeaderboardAroundItemOperationRequest`
1723
+
1724
+ Maps the AdminGetStatisticsLeaderboardAroundItem operation to a typed request wrapper.
1725
+
1726
+ _Không có field public (payload rỗng)._
1727
+
1728
+ ### GetStatisticsLeaderboardOperationRequest
1729
+
1730
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetStatisticsLeaderboardRequestData>`
1731
+
1732
+ Maps the GetStatisticsLeaderboard operation to a typed request wrapper.
1733
+
1734
+ _Không có field public (payload rỗng)._
1735
+
1736
+ ### ServerGetStatisticsLeaderboardOperationRequest
1737
+
1738
+ Extends: `GetStatisticsLeaderboardOperationRequest`
1739
+
1740
+ Maps the ServerGetStatisticsLeaderboard operation to a typed request wrapper.
1741
+
1742
+ _Không có field public (payload rỗng)._
1743
+
1744
+ ### AdminGetStatisticsLeaderboardOperationRequest
1745
+
1746
+ Extends: `GetStatisticsLeaderboardOperationRequest`
1747
+
1748
+ Maps the AdminGetStatisticsLeaderboard operation to a typed request wrapper.
1749
+
1750
+ _Không có field public (payload rỗng)._
1751
+
1752
+ ### GetTagOperationRequest
1753
+
1754
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetTagRequestData>`
1755
+
1756
+ Maps the GetTag operation to a typed request wrapper.
1757
+
1758
+ _Không có field public (payload rỗng)._
1759
+
1760
+ ### ServerGetTagOperationRequest
1761
+
1762
+ Extends: `GetTagOperationRequest`
1763
+
1764
+ Maps the ServerGetTag operation to a typed request wrapper.
1765
+
1766
+ _Không có field public (payload rỗng)._
1767
+
1768
+ ### AdminGetTagOperationRequest
1769
+
1770
+ Extends: `GetTagOperationRequest`
1771
+
1772
+ Maps the AdminGetTag operation to a typed request wrapper.
1773
+
1774
+ _Không có field public (payload rỗng)._
1775
+
1776
+ ### GetTsCreateOperationRequest
1777
+
1778
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetTsCreateRequestData>`
1779
+
1780
+ Maps the GetTsCreate operation to a typed request wrapper.
1781
+
1782
+ _Không có field public (payload rỗng)._
1783
+
1784
+ ### ServerGetTsCreateOperationRequest
1785
+
1786
+ Extends: `GetTsCreateOperationRequest`
1787
+
1788
+ Maps the ServerGetTsCreate operation to a typed request wrapper.
1789
+
1790
+ _Không có field public (payload rỗng)._
1791
+
1792
+ ### AdminGetTsCreateOperationRequest
1793
+
1794
+ Extends: `GetTsCreateOperationRequest`
1795
+
1796
+ Maps the AdminGetTsCreate operation to a typed request wrapper.
1797
+
1798
+ _Không có field public (payload rỗng)._
1799
+
1800
+ ### RemoveSegmentOperationRequest
1801
+
1802
+ Extends: `CustomOperationRequestAbstract<InventoryModels.RemoveSegmentRequestData>`
1803
+
1804
+ Maps the RemoveSegment operation to a typed request wrapper.
1805
+
1806
+ _Không có field public (payload rỗng)._
1807
+
1808
+ ### ServerRemoveSegmentOperationRequest
1809
+
1810
+ Extends: `RemoveSegmentOperationRequest`
1811
+
1812
+ Maps the ServerRemoveSegment operation to a typed request wrapper.
1813
+
1814
+ _Không có field public (payload rỗng)._
1815
+
1816
+ ### AdminRemoveSegmentOperationRequest
1817
+
1818
+ Extends: `RemoveSegmentOperationRequest`
1819
+
1820
+ Maps the AdminRemoveSegment operation to a typed request wrapper.
1821
+
1822
+ _Không có field public (payload rỗng)._
1823
+
1824
+ ### RemoveTagOperationRequest
1825
+
1826
+ Extends: `CustomOperationRequestAbstract<InventoryModels.RemoveTagRequestData>`
1827
+
1828
+ Maps the RemoveTag operation to a typed request wrapper.
1829
+
1830
+ _Không có field public (payload rỗng)._
1831
+
1832
+ ### ServerRemoveTagOperationRequest
1833
+
1834
+ Extends: `RemoveTagOperationRequest`
1835
+
1836
+ Maps the ServerRemoveTag operation to a typed request wrapper.
1837
+
1838
+ _Không có field public (payload rỗng)._
1839
+
1840
+ ### AdminRemoveTagOperationRequest
1841
+
1842
+ Extends: `RemoveTagOperationRequest`
1843
+
1844
+ Maps the AdminRemoveTag operation to a typed request wrapper.
1845
+
1846
+ _Không có field public (payload rỗng)._
1847
+
1848
+ ### SetAmountOperationRequest
1849
+
1850
+ Extends: `CustomOperationRequestAbstract<InventoryModels.SetAmountRequestData>`
1851
+
1852
+ Maps the SetAmount operation to a typed request wrapper.
1853
+
1854
+ _Không có field public (payload rỗng)._
1855
+
1856
+ ### ServerSetAmountOperationRequest
1857
+
1858
+ Extends: `SetAmountOperationRequest`
1859
+
1860
+ Maps the ServerSetAmount operation to a typed request wrapper.
1861
+
1862
+ _Không có field public (payload rỗng)._
1863
+
1864
+ ### AdminSetAmountOperationRequest
1865
+
1866
+ Extends: `SetAmountOperationRequest`
1867
+
1868
+ Maps the AdminSetAmount operation to a typed request wrapper.
1869
+
1870
+ _Không có field public (payload rỗng)._
1871
+
1872
+ ### SetAvatarOperationRequest
1873
+
1874
+ Extends: `CustomOperationRequestAbstract<InventoryModels.SetAvatarRequestData>`
1875
+
1876
+ Maps the SetAvatar operation to a typed request wrapper.
1877
+
1878
+ _Không có field public (payload rỗng)._
1879
+
1880
+ ### ServerSetAvatarOperationRequest
1881
+
1882
+ Extends: `SetAvatarOperationRequest`
1883
+
1884
+ Maps the ServerSetAvatar operation to a typed request wrapper.
1885
+
1886
+ _Không có field public (payload rỗng)._
1887
+
1888
+ ### AdminSetAvatarOperationRequest
1889
+
1890
+ Extends: `SetAvatarOperationRequest`
1891
+
1892
+ Maps the AdminSetAvatar operation to a typed request wrapper.
1893
+
1894
+ _Không có field public (payload rỗng)._
1895
+
1896
+ ### SetCustomDataOperationRequest
1897
+
1898
+ Extends: `CustomOperationRequestAbstract<InventoryModels.SetCustomDataRequestData>`
1899
+
1900
+ Maps the SetCustomData operation to a typed request wrapper.
1901
+
1902
+ _Không có field public (payload rỗng)._
1903
+
1904
+ ### ServerSetCustomDataOperationRequest
1905
+
1906
+ Extends: `SetCustomDataOperationRequest`
1907
+
1908
+ Maps the ServerSetCustomData operation to a typed request wrapper.
1909
+
1910
+ _Không có field public (payload rỗng)._
1911
+
1912
+ ### AdminSetCustomDataOperationRequest
1913
+
1914
+ Extends: `SetCustomDataOperationRequest`
1915
+
1916
+ Maps the AdminSetCustomData operation to a typed request wrapper.
1917
+
1918
+ _Không có field public (payload rỗng)._
1919
+
1920
+ ### SetDisplayNameOperationRequest
1921
+
1922
+ Extends: `CustomOperationRequestAbstract<InventoryModels.SetDisplayNameRequestData>`
1923
+
1924
+ Maps the SetDisplayName operation to a typed request wrapper.
1925
+
1926
+ _Không có field public (payload rỗng)._
1927
+
1928
+ ### ServerSetDisplayNameOperationRequest
1929
+
1930
+ Extends: `SetDisplayNameOperationRequest`
1931
+
1932
+ Maps the ServerSetDisplayName operation to a typed request wrapper.
1933
+
1934
+ _Không có field public (payload rỗng)._
1935
+
1936
+ ### AdminSetDisplayNameOperationRequest
1937
+
1938
+ Extends: `SetDisplayNameOperationRequest`
1939
+
1940
+ Maps the AdminSetDisplayName operation to a typed request wrapper.
1941
+
1942
+ _Không có field public (payload rỗng)._
1943
+
1944
+ ### SetItemDataOperationRequest
1945
+
1946
+ Extends: `CustomOperationRequestAbstract<InventoryModels.SetItemDataRequestData>`
1947
+
1948
+ Maps the SetItemData operation to a typed request wrapper.
1949
+
1950
+ _Không có field public (payload rỗng)._
1951
+
1952
+ ### ServerSetItemDataOperationRequest
1953
+
1954
+ Extends: `SetItemDataOperationRequest`
1955
+
1956
+ Maps the ServerSetItemData operation to a typed request wrapper.
1957
+
1958
+ _Không có field public (payload rỗng)._
1959
+
1960
+ ### AdminSetItemDataOperationRequest
1961
+
1962
+ Extends: `SetItemDataOperationRequest`
1963
+
1964
+ Maps the AdminSetItemData operation to a typed request wrapper.
1965
+
1966
+ _Không có field public (payload rỗng)._
1967
+
1968
+ ### ChangeItemStatisticsOperationRequest
1969
+
1970
+ Extends: `CustomOperationRequestAbstract<InventoryModels.ChangeItemStatisticsRequestData>`
1971
+
1972
+ Maps the ChangeItemStatistics operation to a typed request wrapper.
1973
+
1974
+ _Không có field public (payload rỗng)._
1975
+
1976
+ ### ServerChangeItemStatisticsOperationRequest
1977
+
1978
+ Extends: `ChangeItemStatisticsOperationRequest`
1979
+
1980
+ Maps the ServerChangeItemStatistics operation to a typed request wrapper.
1981
+
1982
+ _Không có field public (payload rỗng)._
1983
+
1984
+ ### AdminChangeItemStatisticsOperationRequest
1985
+
1986
+ Extends: `ChangeItemStatisticsOperationRequest`
1987
+
1988
+ Maps the AdminChangeItemStatistics operation to a typed request wrapper.
1989
+
1990
+ _Không có field public (payload rỗng)._
1991
+
1992
+ ### SetOwnerOperationRequest
1993
+
1994
+ Extends: `CustomOperationRequestAbstract<InventoryModels.SetOwnerRequestData>`
1995
+
1996
+ Maps the SetOwner operation to a typed request wrapper.
1997
+
1998
+ _Không có field public (payload rỗng)._
1999
+
2000
+ ### ServerSetOwnerOperationRequest
2001
+
2002
+ Extends: `SetOwnerOperationRequest`
2003
+
2004
+ Maps the ServerSetOwner operation to a typed request wrapper.
2005
+
2006
+ _Không có field public (payload rỗng)._
2007
+
2008
+ ### AdminSetOwnerOperationRequest
2009
+
2010
+ Extends: `SetOwnerOperationRequest`
2011
+
2012
+ Maps the AdminSetOwner operation to a typed request wrapper.
2013
+
2014
+ _Không có field public (payload rỗng)._
2015
+
2016
+ ### SetRemoveStatusOperationRequest
2017
+
2018
+ Extends: `CustomOperationRequestAbstract<InventoryModels.SetRemoveStatusRequestData>`
2019
+
2020
+ Maps the SetRemoveStatus operation to a typed request wrapper.
2021
+
2022
+ _Không có field public (payload rỗng)._
2023
+
2024
+ ### ServerSetRemoveStatusOperationRequest
2025
+
2026
+ Extends: `SetRemoveStatusOperationRequest`
2027
+
2028
+ Maps the ServerSetRemoveStatus operation to a typed request wrapper.
2029
+
2030
+ _Không có field public (payload rỗng)._
2031
+
2032
+ ### AdminSetRemoveStatusOperationRequest
2033
+
2034
+ Extends: `SetRemoveStatusOperationRequest`
2035
+
2036
+ Maps the AdminSetRemoveStatus operation to a typed request wrapper.
2037
+
2038
+ _Không có field public (payload rỗng)._
2039
+
2040
+ ### SetTagOperationRequest
2041
+
2042
+ Extends: `CustomOperationRequestAbstract<InventoryModels.SetTagRequestData>`
2043
+
2044
+ Maps the SetTag operation to a typed request wrapper.
2045
+
2046
+ _Không có field public (payload rỗng)._
2047
+
2048
+ ### ServerSetTagOperationRequest
2049
+
2050
+ Extends: `SetTagOperationRequest`
2051
+
2052
+ Maps the ServerSetTag operation to a typed request wrapper.
2053
+
2054
+ _Không có field public (payload rỗng)._
2055
+
2056
+ ### AdminSetTagOperationRequest
2057
+
2058
+ Extends: `SetTagOperationRequest`
2059
+
2060
+ Maps the AdminSetTag operation to a typed request wrapper.
2061
+
2062
+ _Không có field public (payload rỗng)._
2063
+
2064
+ ### GetCreateLeaderboardOperationRequest
2065
+
2066
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetCreateLeaderboardRequestData>`
2067
+
2068
+ Maps the GetCreateLeaderboard operation to a typed request wrapper.
2069
+
2070
+ _Không có field public (payload rỗng)._
2071
+
2072
+ ### ServerGetCreateLeaderboardOperationRequest
2073
+
2074
+ Extends: `GetCreateLeaderboardOperationRequest`
2075
+
2076
+ Maps the ServerGetCreateLeaderboard operation to a typed request wrapper.
2077
+
2078
+ _Không có field public (payload rỗng)._
2079
+
2080
+ ### AdminGetCreateLeaderboardOperationRequest
2081
+
2082
+ Extends: `GetCreateLeaderboardOperationRequest`
2083
+
2084
+ Maps the AdminGetCreateLeaderboard operation to a typed request wrapper.
2085
+
2086
+ _Không có field public (payload rỗng)._
2087
+
2088
+ ### GetStatisticsLogOperationRequest
2089
+
2090
+ Extends: `CustomOperationRequestAbstract<InventoryModels.GetStatisticsLogRequestData>`
2091
+
2092
+ Maps the GetStatisticsLog operation to a typed request wrapper.
2093
+
2094
+ _Không có field public (payload rỗng)._
2095
+
2096
+ ### ServerGetStatisticsLogOperationRequest
2097
+
2098
+ Extends: `GetStatisticsLogOperationRequest`
2099
+
2100
+ Maps the ServerGetStatisticsLog operation to a typed request wrapper.
2101
+
2102
+ _Không có field public (payload rỗng)._
2103
+
2104
+ ### AdminGetStatisticsLogOperationRequest
2105
+
2106
+ Extends: `GetStatisticsLogOperationRequest`
2107
+
2108
+ Maps the AdminGetStatisticsLog operation to a typed request wrapper.
2109
+
2110
+ _Không có field public (payload rỗng)._
2111
+
2112
+ ## Namespace `InventoryResponseModels`
2113
+
2114
+ ### AddSegmentOperationResponse
2115
+
2116
+ Extends: `CustomOperationResponseAbstract<InventoryModels.EmptyResponseData>`
2117
+
2118
+ Maps the AddSegment operation to a typed response wrapper.
2119
+
2120
+ _Không có field public (payload rỗng)._
2121
+
2122
+ ### GetAmountOperationResponse
2123
+
2124
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2125
+
2126
+ Maps the GetAmount operation to a typed response wrapper.
2127
+
2128
+ _Không có field public (payload rỗng)._
2129
+
2130
+ ### GetAvatarOperationResponse
2131
+
2132
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2133
+
2134
+ Maps the GetAvatar operation to a typed response wrapper.
2135
+
2136
+ _Không có field public (payload rỗng)._
2137
+
2138
+ ### GetCatalogIdOperationResponse
2139
+
2140
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2141
+
2142
+ Maps the GetCatalogId operation to a typed response wrapper.
2143
+
2144
+ _Không có field public (payload rỗng)._
2145
+
2146
+ ### GetClassIdOperationResponse
2147
+
2148
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2149
+
2150
+ Maps the GetClassId operation to a typed response wrapper.
2151
+
2152
+ _Không có field public (payload rỗng)._
2153
+
2154
+ ### GetCustomDataOperationResponse
2155
+
2156
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2157
+
2158
+ Maps the GetCustomData operation to a typed response wrapper.
2159
+
2160
+ _Không có field public (payload rỗng)._
2161
+
2162
+ ### GetDisplayNameOperationResponse
2163
+
2164
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2165
+
2166
+ Maps the GetDisplayName operation to a typed response wrapper.
2167
+
2168
+ _Không có field public (payload rỗng)._
2169
+
2170
+ ### GetItemDataOperationResponse
2171
+
2172
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2173
+
2174
+ Maps the GetItemData operation to a typed response wrapper.
2175
+
2176
+ _Không có field public (payload rỗng)._
2177
+
2178
+ ### GetItemInformationOperationResponse
2179
+
2180
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2181
+
2182
+ Maps the GetItemInformation operation to a typed response wrapper.
2183
+
2184
+ _Không có field public (payload rỗng)._
2185
+
2186
+ ### GetItemStatisticsOperationResponse
2187
+
2188
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2189
+
2190
+ Maps the GetItemStatistics operation to a typed response wrapper.
2191
+
2192
+ _Không có field public (payload rỗng)._
2193
+
2194
+ ### GetItemsWithDisplayNameOperationResponse
2195
+
2196
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoriesWithItemIdResponseData>`
2197
+
2198
+ Maps the GetItemsWithDisplayName operation to a typed response wrapper.
2199
+
2200
+ _Không có field public (payload rỗng)._
2201
+
2202
+ ### GetItemsWithSegmentOperationResponse
2203
+
2204
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoriesWithItemIdResponseData>`
2205
+
2206
+ Maps the GetItemsWithSegment operation to a typed response wrapper.
2207
+
2208
+ _Không có field public (payload rỗng)._
2209
+
2210
+ ### GetItemsWithTagOperationResponse
2211
+
2212
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoriesWithItemIdResponseData>`
2213
+
2214
+ Maps the GetItemsWithTag operation to a typed response wrapper.
2215
+
2216
+ _Không có field public (payload rỗng)._
2217
+
2218
+ ### GetItemTypeOperationResponse
2219
+
2220
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2221
+
2222
+ Maps the GetItemType operation to a typed response wrapper.
2223
+
2224
+ _Không có field public (payload rỗng)._
2225
+
2226
+ ### GetOwnerOperationResponse
2227
+
2228
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2229
+
2230
+ Maps the GetOwner operation to a typed response wrapper.
2231
+
2232
+ _Không có field public (payload rỗng)._
2233
+
2234
+ ### GetRemoveStatusOperationResponse
2235
+
2236
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2237
+
2238
+ Maps the GetRemoveStatus operation to a typed response wrapper.
2239
+
2240
+ _Không có field public (payload rỗng)._
2241
+
2242
+ ### GetSegmentOperationResponse
2243
+
2244
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2245
+
2246
+ Maps the GetSegment operation to a typed response wrapper.
2247
+
2248
+ _Không có field public (payload rỗng)._
2249
+
2250
+ ### GetStatisticsLeaderboardAroundItemOperationResponse
2251
+
2252
+ Extends: `CustomOperationResponseAbstract<InventoryModels.GetStatisticsLeaderboardResponseData>`
2253
+
2254
+ Maps the GetStatisticsLeaderboardAroundItem operation to a typed response wrapper.
2255
+
2256
+ _Không có field public (payload rỗng)._
2257
+
2258
+ ### GetStatisticsLeaderboardOperationResponse
2259
+
2260
+ Extends: `CustomOperationResponseAbstract<InventoryModels.GetStatisticsLeaderboardResponseData>`
2261
+
2262
+ Maps the GetStatisticsLeaderboard operation to a typed response wrapper.
2263
+
2264
+ _Không có field public (payload rỗng)._
2265
+
2266
+ ### GetTagOperationResponse
2267
+
2268
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2269
+
2270
+ Maps the GetTag operation to a typed response wrapper.
2271
+
2272
+ _Không có field public (payload rỗng)._
2273
+
2274
+ ### GetTsCreateOperationResponse
2275
+
2276
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2277
+
2278
+ Maps the GetTsCreate operation to a typed response wrapper.
2279
+
2280
+ _Không có field public (payload rỗng)._
2281
+
2282
+ ### RemoveSegmentOperationResponse
2283
+
2284
+ Extends: `CustomOperationResponseAbstract<InventoryModels.EmptyResponseData>`
2285
+
2286
+ Maps the RemoveSegment operation to a typed response wrapper.
2287
+
2288
+ _Không có field public (payload rỗng)._
2289
+
2290
+ ### RemoveTagOperationResponse
2291
+
2292
+ Extends: `CustomOperationResponseAbstract<InventoryModels.EmptyResponseData>`
2293
+
2294
+ Maps the RemoveTag operation to a typed response wrapper.
2295
+
2296
+ _Không có field public (payload rỗng)._
2297
+
2298
+ ### SetAmountOperationResponse
2299
+
2300
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2301
+
2302
+ Maps the SetAmount operation to a typed response wrapper.
2303
+
2304
+ _Không có field public (payload rỗng)._
2305
+
2306
+ ### SetAvatarOperationResponse
2307
+
2308
+ Extends: `CustomOperationResponseAbstract<InventoryModels.EmptyResponseData>`
2309
+
2310
+ Maps the SetAvatar operation to a typed response wrapper.
2311
+
2312
+ _Không có field public (payload rỗng)._
2313
+
2314
+ ### SetCustomDataOperationResponse
2315
+
2316
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2317
+
2318
+ Maps the SetCustomData operation to a typed response wrapper.
2319
+
2320
+ _Không có field public (payload rỗng)._
2321
+
2322
+ ### SetDisplayNameOperationResponse
2323
+
2324
+ Extends: `CustomOperationResponseAbstract<InventoryModels.EmptyResponseData>`
2325
+
2326
+ Maps the SetDisplayName operation to a typed response wrapper.
2327
+
2328
+ _Không có field public (payload rỗng)._
2329
+
2330
+ ### SetItemDataOperationResponse
2331
+
2332
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2333
+
2334
+ Maps the SetItemData operation to a typed response wrapper.
2335
+
2336
+ _Không có field public (payload rỗng)._
2337
+
2338
+ ### ChangeItemStatisticsOperationResponse
2339
+
2340
+ Extends: `CustomOperationResponseAbstract<InventoryModels.InventoryResponseData>`
2341
+
2342
+ Maps the ChangeItemStatistics operation to a typed response wrapper.
2343
+
2344
+ _Không có field public (payload rỗng)._
2345
+
2346
+ ### SetOwnerOperationResponse
2347
+
2348
+ Extends: `CustomOperationResponseAbstract<InventoryModels.EmptyResponseData>`
2349
+
2350
+ Maps the SetOwner operation to a typed response wrapper.
2351
+
2352
+ _Không có field public (payload rỗng)._
2353
+
2354
+ ### SetRemoveStatusOperationResponse
2355
+
2356
+ Extends: `CustomOperationResponseAbstract<InventoryModels.EmptyResponseData>`
2357
+
2358
+ Maps the SetRemoveStatus operation to a typed response wrapper.
2359
+
2360
+ _Không có field public (payload rỗng)._
2361
+
2362
+ ### SetTagOperationResponse
2363
+
2364
+ Extends: `CustomOperationResponseAbstract<InventoryModels.EmptyResponseData>`
2365
+
2366
+ Maps the SetTag operation to a typed response wrapper.
2367
+
2368
+ _Không có field public (payload rỗng)._
2369
+
2370
+ ### GetCreateLeaderboardOperationResponse
2371
+
2372
+ Extends: `CustomOperationResponseAbstract<InventoryModels.GetCreateLeaderboardResponseData>`
2373
+
2374
+ Maps the GetCreateLeaderboard operation to a typed response wrapper.
2375
+
2376
+ _Không có field public (payload rỗng)._
2377
+
2378
+ ### GetStatisticsLogOperationResponse
2379
+
2380
+ Extends: `CustomOperationResponseAbstract<InventoryModels.GetStatisticsLogResponseData>`
2381
+
2382
+ Maps the GetStatisticsLog operation to a typed response wrapper.
2383
+
2384
+ _Không có field public (payload rỗng)._
2385
+