@xmobitea/gn-typescript-client 2.6.12 → 2.6.13-tsc

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 (241) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/dist/index.js +339 -34236
  3. package/dist/runtime/GNNetwork.d.ts +1 -1
  4. package/dist/runtime/GNNetwork.js +273 -0
  5. package/dist/runtime/GNNetworkAuthenticateApi.js +122 -0
  6. package/dist/runtime/GNNetworkCharacterPlayerApi.js +968 -0
  7. package/dist/runtime/GNNetworkCloudScriptApi.js +104 -0
  8. package/dist/runtime/GNNetworkContentApi.js +140 -0
  9. package/dist/runtime/GNNetworkDashboardApi.js +170 -0
  10. package/dist/runtime/GNNetworkGamePlayerApi.js +950 -0
  11. package/dist/runtime/GNNetworkGroupApi.js +734 -0
  12. package/dist/runtime/GNNetworkInventoryApi.js +626 -0
  13. package/dist/runtime/GNNetworkMasterPlayerApi.js +1550 -0
  14. package/dist/runtime/GNNetworkMultiplayerApi.js +194 -0
  15. package/dist/runtime/GNNetworkStoreInventoryApi.js +266 -0
  16. package/dist/runtime/common/Action0.js +1 -0
  17. package/dist/runtime/common/Action1.js +1 -0
  18. package/dist/runtime/common/Action2.js +1 -0
  19. package/dist/runtime/common/Action3.js +1 -0
  20. package/dist/runtime/common/Action4.js +1 -0
  21. package/dist/runtime/common/GNData.js +209 -0
  22. package/dist/runtime/config/GNServerSettings.js +156 -0
  23. package/dist/runtime/constant/Commands.js +20 -0
  24. package/dist/runtime/constant/EventCode.js +8 -0
  25. package/dist/runtime/constant/OperationCode.js +221 -0
  26. package/dist/runtime/constant/ReturnCode.js +14 -0
  27. package/dist/runtime/constant/enumType/ExecuteResponseStatus.js +8 -0
  28. package/dist/runtime/constant/enumType/FriendStatus.js +7 -0
  29. package/dist/runtime/constant/enumType/GoogleLoginType.js +5 -0
  30. package/dist/runtime/constant/enumType/GroupStatus.js +7 -0
  31. package/dist/runtime/constant/enumType/InvalidMemberType.js +18 -0
  32. package/dist/runtime/constant/enumType/ItemType.js +5 -0
  33. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +6 -0
  34. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +8 -0
  35. package/dist/runtime/constant/enumType/OwnerType.js +9 -0
  36. package/dist/runtime/constant/enumType/PermissionDataItem.js +5 -0
  37. package/dist/runtime/constant/enumType/PushPlatformType.js +5 -0
  38. package/dist/runtime/constant/enumType/RequestRole.js +6 -0
  39. package/dist/runtime/constant/enumType/RequestType.js +15 -0
  40. package/dist/runtime/constant/enumType/StoreItemType.js +5 -0
  41. package/dist/runtime/constant/enumType/StoreReceiveType.js +8 -0
  42. package/dist/runtime/constant/errorCode/ErrorCode.js +52 -0
  43. package/dist/runtime/constant/parameterCode/ParameterCode.js +617 -0
  44. package/dist/runtime/entity/DataMember.js +208 -0
  45. package/dist/runtime/entity/GNMetadata.js +11 -0
  46. package/dist/runtime/entity/InvalidMember.js +1 -0
  47. package/dist/runtime/entity/OperationEvent.js +24 -0
  48. package/dist/runtime/entity/OperationRequest.js +42 -0
  49. package/dist/runtime/entity/OperationResponse.js +73 -0
  50. package/dist/runtime/entity/models/AuthenticateModels.js +426 -0
  51. package/dist/runtime/entity/models/AuthenticateRequestModels.js +188 -0
  52. package/dist/runtime/entity/models/AuthenticateResponseModels.js +131 -0
  53. package/dist/runtime/entity/models/CharacterPlayerModels.js +1433 -0
  54. package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +1386 -0
  55. package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +376 -0
  56. package/dist/runtime/entity/models/CloudScriptModels.js +197 -0
  57. package/dist/runtime/entity/models/CloudScriptRequestModels.js +138 -0
  58. package/dist/runtime/entity/models/CloudScriptResponseModels.js +40 -0
  59. package/dist/runtime/entity/models/ContentModels.js +203 -0
  60. package/dist/runtime/entity/models/ContentRequestModels.js +190 -0
  61. package/dist/runtime/entity/models/ContentResponseModels.js +54 -0
  62. package/dist/runtime/entity/models/DashboardModels.js +3002 -0
  63. package/dist/runtime/entity/models/DashboardRequestModels.js +268 -0
  64. package/dist/runtime/entity/models/DashboardResponseModels.js +187 -0
  65. package/dist/runtime/entity/models/GamePlayerModels.js +1591 -0
  66. package/dist/runtime/entity/models/GamePlayerRequestModels.js +1360 -0
  67. package/dist/runtime/entity/models/GamePlayerResponseModels.js +369 -0
  68. package/dist/runtime/entity/models/GenericModels.js +177 -0
  69. package/dist/runtime/entity/models/GroupModels.js +1135 -0
  70. package/dist/runtime/entity/models/GroupRequestModels.js +1048 -0
  71. package/dist/runtime/entity/models/GroupResponseModels.js +285 -0
  72. package/dist/runtime/entity/models/InventoryModels.js +915 -0
  73. package/dist/runtime/entity/models/InventoryRequestModels.js +892 -0
  74. package/dist/runtime/entity/models/InventoryResponseModels.js +243 -0
  75. package/dist/runtime/entity/models/MasterPlayerModels.js +2573 -0
  76. package/dist/runtime/entity/models/MasterPlayerRequestModels.js +2228 -0
  77. package/dist/runtime/entity/models/MasterPlayerResponseModels.js +607 -0
  78. package/dist/runtime/entity/models/MultiplayerModels.js +404 -0
  79. package/dist/runtime/entity/models/MultiplayerRequestModels.js +268 -0
  80. package/dist/runtime/entity/models/MultiplayerResponseModels.js +75 -0
  81. package/dist/runtime/entity/models/StoreInventoryModels.js +797 -0
  82. package/dist/runtime/entity/models/StoreInventoryRequestModels.js +372 -0
  83. package/dist/runtime/entity/models/StoreInventoryResponseModels.js +103 -0
  84. package/dist/runtime/entity/request/CustomOperationRequest.js +24 -0
  85. package/dist/runtime/entity/response/CustomOperationResponse.js +29 -0
  86. package/dist/runtime/entity/response/GetAuthInfoResponse.js +2 -0
  87. package/dist/runtime/entity/response/HealthCheckResponse.js +2 -0
  88. package/dist/runtime/entity/response/UploadFileResponse.js +2 -0
  89. package/dist/runtime/helper/CodeHelper.js +63 -0
  90. package/dist/runtime/helper/ConverterService.js +275 -0
  91. package/dist/runtime/helper/EnumUtility.js +33 -0
  92. package/dist/runtime/helper/GNSupport.d.ts +20 -0
  93. package/dist/runtime/helper/GNSupport.js +47 -0
  94. package/dist/runtime/helper/GNUtils.js +72 -0
  95. package/dist/runtime/helper/MessagePackConverterService.js +9 -0
  96. package/dist/runtime/{entity → helper}/OperationHelper.d.ts +1 -1
  97. package/dist/runtime/helper/OperationHelper.js +24 -0
  98. package/dist/runtime/helper/StorageService.d.ts +18 -0
  99. package/dist/runtime/helper/StorageService.js +62 -0
  100. package/dist/runtime/logger/GNDebug.js +29 -0
  101. package/dist/runtime/networking/AuthenticateStatus.js +14 -0
  102. package/dist/runtime/networking/IPeer.js +1 -0
  103. package/dist/runtime/networking/NetworkingPeer.d.ts +1 -1
  104. package/dist/runtime/networking/NetworkingPeer.js +210 -0
  105. package/dist/runtime/networking/OperationPending.js +53 -0
  106. package/dist/runtime/networking/PeerBase.js +161 -0
  107. package/dist/runtime/networking/handler/IServerEventHandler.js +13 -0
  108. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +39 -0
  109. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +39 -0
  110. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +39 -0
  111. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +39 -0
  112. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +35 -0
  113. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +43 -0
  114. package/dist/runtime/networking/http/HttpPeer.js +123 -0
  115. package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +9 -0
  116. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +179 -0
  117. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +130 -0
  118. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +165 -0
  119. package/dist/runtime/networking/socket/SocketPeer.js +115 -0
  120. package/dist/runtime/typescript/ServiceUpdate.d.ts +2 -0
  121. package/dist/runtime/typescript/ServiceUpdate.js +22 -0
  122. package/docs/COCOS_CREATOR_INTEGRATION.md +116 -0
  123. package/examples/cocos-creator/GearNExample.ts.txt +176 -0
  124. package/package.json +4 -3
  125. package/srcSwift/Package.swift +32 -0
  126. package/srcSwift/Sources/GearN/runtime/GNNetwork.swift +530 -0
  127. package/srcSwift/Sources/GearN/runtime/GNNetworkAuthenticateApi.swift +178 -0
  128. package/srcSwift/Sources/GearN/runtime/GNNetworkCharacterPlayerApi.swift +1162 -0
  129. package/srcSwift/Sources/GearN/runtime/GNNetworkCloudScriptApi.swift +154 -0
  130. package/srcSwift/Sources/GearN/runtime/GNNetworkContentApi.swift +208 -0
  131. package/srcSwift/Sources/GearN/runtime/GNNetworkDashboardApi.swift +240 -0
  132. package/srcSwift/Sources/GearN/runtime/GNNetworkGamePlayerApi.swift +1369 -0
  133. package/srcSwift/Sources/GearN/runtime/GNNetworkGroupApi.swift +1100 -0
  134. package/srcSwift/Sources/GearN/runtime/GNNetworkInventoryApi.swift +937 -0
  135. package/srcSwift/Sources/GearN/runtime/GNNetworkMasterPlayerApi.swift +2323 -0
  136. package/srcSwift/Sources/GearN/runtime/GNNetworkMultiplayerApi.swift +298 -0
  137. package/srcSwift/Sources/GearN/runtime/GNNetworkStoreInventoryApi.swift +397 -0
  138. package/srcSwift/Sources/GearN/runtime/common/Action0.swift +3 -0
  139. package/srcSwift/Sources/GearN/runtime/common/Action1.swift +3 -0
  140. package/srcSwift/Sources/GearN/runtime/common/Action2.swift +3 -0
  141. package/srcSwift/Sources/GearN/runtime/common/Action3.swift +3 -0
  142. package/srcSwift/Sources/GearN/runtime/common/Action4.swift +3 -0
  143. package/srcSwift/Sources/GearN/runtime/common/GNArray.swift +204 -0
  144. package/srcSwift/Sources/GearN/runtime/common/GNData.swift +108 -0
  145. package/srcSwift/Sources/GearN/runtime/common/GNHashtable.swift +200 -0
  146. package/srcSwift/Sources/GearN/runtime/config/GNServerSettings.swift +95 -0
  147. package/srcSwift/Sources/GearN/runtime/constant/Commands.swift +28 -0
  148. package/srcSwift/Sources/GearN/runtime/constant/EventCode.swift +10 -0
  149. package/srcSwift/Sources/GearN/runtime/constant/OperationCode.swift +252 -0
  150. package/srcSwift/Sources/GearN/runtime/constant/ReturnCode.swift +19 -0
  151. package/srcSwift/Sources/GearN/runtime/constant/enumType/ExecuteResponseStatus.swift +9 -0
  152. package/srcSwift/Sources/GearN/runtime/constant/enumType/FriendStatus.swift +8 -0
  153. package/srcSwift/Sources/GearN/runtime/constant/enumType/GoogleLoginType.swift +6 -0
  154. package/srcSwift/Sources/GearN/runtime/constant/enumType/GroupStatus.swift +8 -0
  155. package/srcSwift/Sources/GearN/runtime/constant/enumType/InvalidMemberType.swift +19 -0
  156. package/srcSwift/Sources/GearN/runtime/constant/enumType/ItemType.swift +6 -0
  157. package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingMemberStatus.swift +7 -0
  158. package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingTicketStatus.swift +9 -0
  159. package/srcSwift/Sources/GearN/runtime/constant/enumType/OwnerType.swift +10 -0
  160. package/srcSwift/Sources/GearN/runtime/constant/enumType/PermissionDataItem.swift +6 -0
  161. package/srcSwift/Sources/GearN/runtime/constant/enumType/PushPlatformType.swift +6 -0
  162. package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestRole.swift +7 -0
  163. package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestType.swift +16 -0
  164. package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreItemType.swift +6 -0
  165. package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreReceiveType.swift +9 -0
  166. package/srcSwift/Sources/GearN/runtime/constant/errorCode/ErrorCode.swift +58 -0
  167. package/srcSwift/Sources/GearN/runtime/constant/parameterCode/ParameterCode.swift +672 -0
  168. package/srcSwift/Sources/GearN/runtime/entity/DataMember.swift +196 -0
  169. package/srcSwift/Sources/GearN/runtime/entity/GNMetadata.swift +9 -0
  170. package/srcSwift/Sources/GearN/runtime/entity/InvalidMember.swift +11 -0
  171. package/srcSwift/Sources/GearN/runtime/entity/OperationEvent.swift +38 -0
  172. package/srcSwift/Sources/GearN/runtime/entity/OperationHelper.swift +28 -0
  173. package/srcSwift/Sources/GearN/runtime/entity/OperationRequest.swift +62 -0
  174. package/srcSwift/Sources/GearN/runtime/entity/OperationResponse.swift +98 -0
  175. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateModels.swift +351 -0
  176. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateRequestModels.swift +81 -0
  177. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateResponseModels.swift +108 -0
  178. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerModels.swift +1045 -0
  179. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerRequestModels.swift +821 -0
  180. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerResponseModels.swift +588 -0
  181. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptModels.swift +187 -0
  182. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptRequestModels.swift +84 -0
  183. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptResponseModels.swift +59 -0
  184. package/srcSwift/Sources/GearN/runtime/entity/models/ContentModels.swift +195 -0
  185. package/srcSwift/Sources/GearN/runtime/entity/models/ContentRequestModels.swift +116 -0
  186. package/srcSwift/Sources/GearN/runtime/entity/models/ContentResponseModels.swift +81 -0
  187. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardModels.swift +426 -0
  188. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardRequestModels.swift +160 -0
  189. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardResponseModels.swift +82 -0
  190. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerModels.swift +1334 -0
  191. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerRequestModels.swift +643 -0
  192. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerResponseModels.swift +213 -0
  193. package/srcSwift/Sources/GearN/runtime/entity/models/GenericModels.swift +171 -0
  194. package/srcSwift/Sources/GearN/runtime/entity/models/GroupModels.swift +850 -0
  195. package/srcSwift/Sources/GearN/runtime/entity/models/GroupRequestModels.swift +485 -0
  196. package/srcSwift/Sources/GearN/runtime/entity/models/GroupResponseModels.swift +165 -0
  197. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryModels.swift +679 -0
  198. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryRequestModels.swift +413 -0
  199. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryResponseModels.swift +141 -0
  200. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerModels.swift +378 -0
  201. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerRequestModels.swift +147 -0
  202. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerResponseModels.swift +318 -0
  203. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerModels.swift +319 -0
  204. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerRequestModels.swift +125 -0
  205. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerResponseModels.swift +45 -0
  206. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryModels.swift +633 -0
  207. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryRequestModels.swift +173 -0
  208. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryResponseModels.swift +61 -0
  209. package/srcSwift/Sources/GearN/runtime/entity/request/CustomOperationRequest.swift +42 -0
  210. package/srcSwift/Sources/GearN/runtime/entity/response/CustomOperationResponse.swift +49 -0
  211. package/srcSwift/Sources/GearN/runtime/entity/response/GetAuthInfoResponse.swift +43 -0
  212. package/srcSwift/Sources/GearN/runtime/entity/response/HealthCheckResponse.swift +86 -0
  213. package/srcSwift/Sources/GearN/runtime/entity/response/UploadFileResponse.swift +15 -0
  214. package/srcSwift/Sources/GearN/runtime/helper/CodeHelper.swift +107 -0
  215. package/srcSwift/Sources/GearN/runtime/helper/ConverterService.swift +98 -0
  216. package/srcSwift/Sources/GearN/runtime/helper/EnumUtility.swift +34 -0
  217. package/srcSwift/Sources/GearN/runtime/helper/GNSupport.swift +41 -0
  218. package/srcSwift/Sources/GearN/runtime/helper/GNUtils.swift +66 -0
  219. package/srcSwift/Sources/GearN/runtime/helper/MessagePackConverterService.swift +21 -0
  220. package/srcSwift/Sources/GearN/runtime/helper/StorageService.swift +29 -0
  221. package/srcSwift/Sources/GearN/runtime/logger/GNDebug.swift +33 -0
  222. package/srcSwift/Sources/GearN/runtime/networking/AuthenticateStatus.swift +24 -0
  223. package/srcSwift/Sources/GearN/runtime/networking/IPeer.swift +8 -0
  224. package/srcSwift/Sources/GearN/runtime/networking/NetworkingPeer.swift +368 -0
  225. package/srcSwift/Sources/GearN/runtime/networking/OperationPending.swift +81 -0
  226. package/srcSwift/Sources/GearN/runtime/networking/PeerBase.swift +228 -0
  227. package/srcSwift/Sources/GearN/runtime/networking/handler/IServerEventHandler.swift +20 -0
  228. package/srcSwift/Sources/GearN/runtime/networking/http/HttpPeer.swift +226 -0
  229. package/srcSwift/Sources/GearN/runtime/networking/http/HttpTypes.swift +24 -0
  230. package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingHttpPeerBase.swift +13 -0
  231. package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingPeerUrlSession.swift +125 -0
  232. package/srcSwift/Sources/GearN/runtime/networking/request/NetRequest.swift +19 -0
  233. package/srcSwift/Sources/GearN/runtime/networking/response/NetResponse.swift +13 -0
  234. package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingPeerSocketIOClient.swift +244 -0
  235. package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingSocketPeerBase.swift +59 -0
  236. package/srcSwift/Sources/GearN/runtime/networking/socket/SocketPeer.swift +136 -0
  237. package/tsconfig-build.cocos.json +31 -0
  238. package/webpack.config.cocos.mjs +78 -0
  239. package/dist/gearn.js.client.js +0 -47228
  240. package/dist/gearn.js.client.min.js +0 -2
  241. package/dist/gearn.js.client.min.js.LICENSE.txt +0 -14
@@ -0,0 +1,626 @@
1
+ import { GNNetwork } from "./GNNetwork";
2
+ import { OperationRequest } from "./entity/OperationRequest";
3
+ import { InventoryRequestModels } from "./entity/models/InventoryRequestModels";
4
+ import { InventoryResponseModels } from "./entity/models/InventoryResponseModels";
5
+ export class InventoryApi {
6
+ constructor() {
7
+ this.server = new ServerInventoryApi();
8
+ this.admin = new AdminInventoryApi();
9
+ }
10
+ addSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
11
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AddSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.AddSegmentOperationResponse);
12
+ }
13
+ async addSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
14
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AddSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.AddSegmentOperationResponse);
15
+ }
16
+ getAmount(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
17
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetAmountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetAmountOperationResponse);
18
+ }
19
+ async getAmountAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
20
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetAmountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetAmountOperationResponse);
21
+ }
22
+ getAvatar(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
23
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetAvatarOperationResponse);
24
+ }
25
+ async getAvatarAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
26
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetAvatarOperationResponse);
27
+ }
28
+ getCatalogId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
29
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetCatalogIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCatalogIdOperationResponse);
30
+ }
31
+ async getCatalogIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
32
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetCatalogIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCatalogIdOperationResponse);
33
+ }
34
+ getClassId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
35
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetClassIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetClassIdOperationResponse);
36
+ }
37
+ async getClassIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
38
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetClassIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetClassIdOperationResponse);
39
+ }
40
+ getCustomData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
41
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCustomDataOperationResponse);
42
+ }
43
+ async getCustomDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
44
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCustomDataOperationResponse);
45
+ }
46
+ getDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
47
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetDisplayNameOperationResponse);
48
+ }
49
+ async getDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
50
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetDisplayNameOperationResponse);
51
+ }
52
+ getItemData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
53
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetItemDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemDataOperationResponse);
54
+ }
55
+ async getItemDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
56
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetItemDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemDataOperationResponse);
57
+ }
58
+ getItemInformation(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
59
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetItemInformationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemInformationOperationResponse);
60
+ }
61
+ async getItemInformationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
62
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetItemInformationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemInformationOperationResponse);
63
+ }
64
+ getItemStatistics(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
65
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetItemStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemStatisticsOperationResponse);
66
+ }
67
+ async getItemStatisticsAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
68
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetItemStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemStatisticsOperationResponse);
69
+ }
70
+ getItemsWithDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
71
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetItemsWithDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithDisplayNameOperationResponse);
72
+ }
73
+ async getItemsWithDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
74
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetItemsWithDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithDisplayNameOperationResponse);
75
+ }
76
+ getItemsWithSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
77
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetItemsWithSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithSegmentOperationResponse);
78
+ }
79
+ async getItemsWithSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
80
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetItemsWithSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithSegmentOperationResponse);
81
+ }
82
+ getItemsWithTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
83
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetItemsWithTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithTagOperationResponse);
84
+ }
85
+ async getItemsWithTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
86
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetItemsWithTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithTagOperationResponse);
87
+ }
88
+ getItemType(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
89
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetItemTypeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemTypeOperationResponse);
90
+ }
91
+ async getItemTypeAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
92
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetItemTypeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemTypeOperationResponse);
93
+ }
94
+ getOwner(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
95
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetOwnerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetOwnerOperationResponse);
96
+ }
97
+ async getOwnerAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
98
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetOwnerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetOwnerOperationResponse);
99
+ }
100
+ getRemoveStatus(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
101
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetRemoveStatusOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetRemoveStatusOperationResponse);
102
+ }
103
+ async getRemoveStatusAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
104
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetRemoveStatusOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetRemoveStatusOperationResponse);
105
+ }
106
+ getSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
107
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetSegmentOperationResponse);
108
+ }
109
+ async getSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
110
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetSegmentOperationResponse);
111
+ }
112
+ getStatisticsLeaderboardAroundItem(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
113
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetStatisticsLeaderboardAroundItemOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLeaderboardAroundItemOperationResponse);
114
+ }
115
+ async getStatisticsLeaderboardAroundItemAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
116
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetStatisticsLeaderboardAroundItemOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLeaderboardAroundItemOperationResponse);
117
+ }
118
+ getStatisticsLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
119
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetStatisticsLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLeaderboardOperationResponse);
120
+ }
121
+ async getStatisticsLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
122
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetStatisticsLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLeaderboardOperationResponse);
123
+ }
124
+ getTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
125
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetTagOperationResponse);
126
+ }
127
+ async getTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
128
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetTagOperationResponse);
129
+ }
130
+ getTsCreate(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
131
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetTsCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetTsCreateOperationResponse);
132
+ }
133
+ async getTsCreateAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
134
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetTsCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetTsCreateOperationResponse);
135
+ }
136
+ removeSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
137
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.RemoveSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.RemoveSegmentOperationResponse);
138
+ }
139
+ async removeSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
140
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.RemoveSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.RemoveSegmentOperationResponse);
141
+ }
142
+ removeTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
143
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.RemoveTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.RemoveTagOperationResponse);
144
+ }
145
+ async removeTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
146
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.RemoveTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.RemoveTagOperationResponse);
147
+ }
148
+ setAmount(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
149
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.SetAmountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetAmountOperationResponse);
150
+ }
151
+ async setAmountAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
152
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.SetAmountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetAmountOperationResponse);
153
+ }
154
+ setAvatar(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
155
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.SetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetAvatarOperationResponse);
156
+ }
157
+ async setAvatarAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
158
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.SetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetAvatarOperationResponse);
159
+ }
160
+ setCustomData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
161
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.SetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetCustomDataOperationResponse);
162
+ }
163
+ async setCustomDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
164
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.SetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetCustomDataOperationResponse);
165
+ }
166
+ setDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
167
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.SetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetDisplayNameOperationResponse);
168
+ }
169
+ async setDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
170
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.SetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetDisplayNameOperationResponse);
171
+ }
172
+ setItemData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
173
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.SetItemDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetItemDataOperationResponse);
174
+ }
175
+ async setItemDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
176
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.SetItemDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetItemDataOperationResponse);
177
+ }
178
+ changeItemStatistics(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
179
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ChangeItemStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.ChangeItemStatisticsOperationResponse);
180
+ }
181
+ async changeItemStatisticsAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
182
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ChangeItemStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.ChangeItemStatisticsOperationResponse);
183
+ }
184
+ setOwner(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
185
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.SetOwnerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetOwnerOperationResponse);
186
+ }
187
+ async setOwnerAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
188
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.SetOwnerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetOwnerOperationResponse);
189
+ }
190
+ setRemoveStatus(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
191
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.SetRemoveStatusOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetRemoveStatusOperationResponse);
192
+ }
193
+ async setRemoveStatusAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
194
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.SetRemoveStatusOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetRemoveStatusOperationResponse);
195
+ }
196
+ setTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
197
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.SetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetTagOperationResponse);
198
+ }
199
+ async setTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
200
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.SetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetTagOperationResponse);
201
+ }
202
+ getCreateLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
203
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetCreateLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCreateLeaderboardOperationResponse);
204
+ }
205
+ async getCreateLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
206
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetCreateLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCreateLeaderboardOperationResponse);
207
+ }
208
+ getStatisticsLog(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
209
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.GetStatisticsLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLogOperationResponse);
210
+ }
211
+ async getStatisticsLogAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
212
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.GetStatisticsLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLogOperationResponse);
213
+ }
214
+ }
215
+ export class ServerInventoryApi {
216
+ addSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
217
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerAddSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.AddSegmentOperationResponse);
218
+ }
219
+ async addSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
220
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerAddSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.AddSegmentOperationResponse);
221
+ }
222
+ getAmount(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
223
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetAmountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetAmountOperationResponse);
224
+ }
225
+ async getAmountAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
226
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetAmountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetAmountOperationResponse);
227
+ }
228
+ getAvatar(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
229
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetAvatarOperationResponse);
230
+ }
231
+ async getAvatarAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
232
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetAvatarOperationResponse);
233
+ }
234
+ getCatalogId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
235
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetCatalogIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCatalogIdOperationResponse);
236
+ }
237
+ async getCatalogIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
238
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetCatalogIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCatalogIdOperationResponse);
239
+ }
240
+ getClassId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
241
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetClassIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetClassIdOperationResponse);
242
+ }
243
+ async getClassIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
244
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetClassIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetClassIdOperationResponse);
245
+ }
246
+ getCustomData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
247
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCustomDataOperationResponse);
248
+ }
249
+ async getCustomDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
250
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCustomDataOperationResponse);
251
+ }
252
+ getDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
253
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetDisplayNameOperationResponse);
254
+ }
255
+ async getDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
256
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetDisplayNameOperationResponse);
257
+ }
258
+ getItemData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
259
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetItemDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemDataOperationResponse);
260
+ }
261
+ async getItemDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
262
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetItemDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemDataOperationResponse);
263
+ }
264
+ getItemInformation(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
265
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetItemInformationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemInformationOperationResponse);
266
+ }
267
+ async getItemInformationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
268
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetItemInformationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemInformationOperationResponse);
269
+ }
270
+ getItemStatistics(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
271
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetItemStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemStatisticsOperationResponse);
272
+ }
273
+ async getItemStatisticsAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
274
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetItemStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemStatisticsOperationResponse);
275
+ }
276
+ getItemsWithDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
277
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetItemsWithDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithDisplayNameOperationResponse);
278
+ }
279
+ async getItemsWithDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
280
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetItemsWithDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithDisplayNameOperationResponse);
281
+ }
282
+ getItemsWithSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
283
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetItemsWithSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithSegmentOperationResponse);
284
+ }
285
+ async getItemsWithSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
286
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetItemsWithSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithSegmentOperationResponse);
287
+ }
288
+ getItemsWithTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
289
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetItemsWithTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithTagOperationResponse);
290
+ }
291
+ async getItemsWithTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
292
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetItemsWithTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithTagOperationResponse);
293
+ }
294
+ getItemType(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
295
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetItemTypeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemTypeOperationResponse);
296
+ }
297
+ async getItemTypeAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
298
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetItemTypeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemTypeOperationResponse);
299
+ }
300
+ getOwner(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
301
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetOwnerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetOwnerOperationResponse);
302
+ }
303
+ async getOwnerAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
304
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetOwnerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetOwnerOperationResponse);
305
+ }
306
+ getRemoveStatus(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
307
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetRemoveStatusOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetRemoveStatusOperationResponse);
308
+ }
309
+ async getRemoveStatusAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
310
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetRemoveStatusOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetRemoveStatusOperationResponse);
311
+ }
312
+ getSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
313
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetSegmentOperationResponse);
314
+ }
315
+ async getSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
316
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetSegmentOperationResponse);
317
+ }
318
+ getStatisticsLeaderboardAroundItem(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
319
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetStatisticsLeaderboardAroundItemOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLeaderboardAroundItemOperationResponse);
320
+ }
321
+ async getStatisticsLeaderboardAroundItemAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
322
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetStatisticsLeaderboardAroundItemOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLeaderboardAroundItemOperationResponse);
323
+ }
324
+ getStatisticsLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
325
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetStatisticsLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLeaderboardOperationResponse);
326
+ }
327
+ async getStatisticsLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
328
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetStatisticsLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLeaderboardOperationResponse);
329
+ }
330
+ getTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
331
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetTagOperationResponse);
332
+ }
333
+ async getTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
334
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetTagOperationResponse);
335
+ }
336
+ getTsCreate(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
337
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetTsCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetTsCreateOperationResponse);
338
+ }
339
+ async getTsCreateAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
340
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetTsCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetTsCreateOperationResponse);
341
+ }
342
+ removeSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
343
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerRemoveSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.RemoveSegmentOperationResponse);
344
+ }
345
+ async removeSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
346
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerRemoveSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.RemoveSegmentOperationResponse);
347
+ }
348
+ removeTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
349
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerRemoveTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.RemoveTagOperationResponse);
350
+ }
351
+ async removeTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
352
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerRemoveTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.RemoveTagOperationResponse);
353
+ }
354
+ setAmount(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
355
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerSetAmountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetAmountOperationResponse);
356
+ }
357
+ async setAmountAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
358
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerSetAmountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetAmountOperationResponse);
359
+ }
360
+ setAvatar(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
361
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerSetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetAvatarOperationResponse);
362
+ }
363
+ async setAvatarAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
364
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerSetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetAvatarOperationResponse);
365
+ }
366
+ setCustomData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
367
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerSetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetCustomDataOperationResponse);
368
+ }
369
+ async setCustomDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
370
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerSetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetCustomDataOperationResponse);
371
+ }
372
+ setDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
373
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerSetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetDisplayNameOperationResponse);
374
+ }
375
+ async setDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
376
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerSetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetDisplayNameOperationResponse);
377
+ }
378
+ setItemData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
379
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerSetItemDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetItemDataOperationResponse);
380
+ }
381
+ async setItemDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
382
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerSetItemDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetItemDataOperationResponse);
383
+ }
384
+ changeItemStatistics(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
385
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerChangeItemStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.ChangeItemStatisticsOperationResponse);
386
+ }
387
+ async changeItemStatisticsAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
388
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerChangeItemStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.ChangeItemStatisticsOperationResponse);
389
+ }
390
+ setOwner(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
391
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerSetOwnerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetOwnerOperationResponse);
392
+ }
393
+ async setOwnerAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
394
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerSetOwnerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetOwnerOperationResponse);
395
+ }
396
+ setRemoveStatus(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
397
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerSetRemoveStatusOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetRemoveStatusOperationResponse);
398
+ }
399
+ async setRemoveStatusAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
400
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerSetRemoveStatusOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetRemoveStatusOperationResponse);
401
+ }
402
+ setTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
403
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerSetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetTagOperationResponse);
404
+ }
405
+ async setTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
406
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerSetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetTagOperationResponse);
407
+ }
408
+ getCreateLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
409
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetCreateLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCreateLeaderboardOperationResponse);
410
+ }
411
+ async getCreateLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
412
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetCreateLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCreateLeaderboardOperationResponse);
413
+ }
414
+ getStatisticsLog(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
415
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.ServerGetStatisticsLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLogOperationResponse);
416
+ }
417
+ async getStatisticsLogAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
418
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.ServerGetStatisticsLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLogOperationResponse);
419
+ }
420
+ }
421
+ export class AdminInventoryApi {
422
+ addSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
423
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminAddSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.AddSegmentOperationResponse);
424
+ }
425
+ async addSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
426
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminAddSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.AddSegmentOperationResponse);
427
+ }
428
+ getAmount(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
429
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetAmountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetAmountOperationResponse);
430
+ }
431
+ async getAmountAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
432
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetAmountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetAmountOperationResponse);
433
+ }
434
+ getAvatar(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
435
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetAvatarOperationResponse);
436
+ }
437
+ async getAvatarAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
438
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetAvatarOperationResponse);
439
+ }
440
+ getCatalogId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
441
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetCatalogIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCatalogIdOperationResponse);
442
+ }
443
+ async getCatalogIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
444
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetCatalogIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCatalogIdOperationResponse);
445
+ }
446
+ getClassId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
447
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetClassIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetClassIdOperationResponse);
448
+ }
449
+ async getClassIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
450
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetClassIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetClassIdOperationResponse);
451
+ }
452
+ getCustomData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
453
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCustomDataOperationResponse);
454
+ }
455
+ async getCustomDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
456
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCustomDataOperationResponse);
457
+ }
458
+ getDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
459
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetDisplayNameOperationResponse);
460
+ }
461
+ async getDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
462
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetDisplayNameOperationResponse);
463
+ }
464
+ getItemData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
465
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetItemDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemDataOperationResponse);
466
+ }
467
+ async getItemDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
468
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetItemDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemDataOperationResponse);
469
+ }
470
+ getItemInformation(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
471
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetItemInformationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemInformationOperationResponse);
472
+ }
473
+ async getItemInformationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
474
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetItemInformationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemInformationOperationResponse);
475
+ }
476
+ getItemStatistics(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
477
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetItemStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemStatisticsOperationResponse);
478
+ }
479
+ async getItemStatisticsAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
480
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetItemStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemStatisticsOperationResponse);
481
+ }
482
+ getItemsWithDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
483
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetItemsWithDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithDisplayNameOperationResponse);
484
+ }
485
+ async getItemsWithDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
486
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetItemsWithDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithDisplayNameOperationResponse);
487
+ }
488
+ getItemsWithSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
489
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetItemsWithSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithSegmentOperationResponse);
490
+ }
491
+ async getItemsWithSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
492
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetItemsWithSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithSegmentOperationResponse);
493
+ }
494
+ getItemsWithTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
495
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetItemsWithTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithTagOperationResponse);
496
+ }
497
+ async getItemsWithTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
498
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetItemsWithTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemsWithTagOperationResponse);
499
+ }
500
+ getItemType(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
501
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetItemTypeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemTypeOperationResponse);
502
+ }
503
+ async getItemTypeAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
504
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetItemTypeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetItemTypeOperationResponse);
505
+ }
506
+ getOwner(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
507
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetOwnerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetOwnerOperationResponse);
508
+ }
509
+ async getOwnerAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
510
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetOwnerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetOwnerOperationResponse);
511
+ }
512
+ getRemoveStatus(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
513
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetRemoveStatusOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetRemoveStatusOperationResponse);
514
+ }
515
+ async getRemoveStatusAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
516
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetRemoveStatusOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetRemoveStatusOperationResponse);
517
+ }
518
+ getSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
519
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetSegmentOperationResponse);
520
+ }
521
+ async getSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
522
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetSegmentOperationResponse);
523
+ }
524
+ getStatisticsLeaderboardAroundItem(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
525
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetStatisticsLeaderboardAroundItemOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLeaderboardAroundItemOperationResponse);
526
+ }
527
+ async getStatisticsLeaderboardAroundItemAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
528
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetStatisticsLeaderboardAroundItemOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLeaderboardAroundItemOperationResponse);
529
+ }
530
+ getStatisticsLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
531
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetStatisticsLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLeaderboardOperationResponse);
532
+ }
533
+ async getStatisticsLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
534
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetStatisticsLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLeaderboardOperationResponse);
535
+ }
536
+ getTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
537
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetTagOperationResponse);
538
+ }
539
+ async getTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
540
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetTagOperationResponse);
541
+ }
542
+ getTsCreate(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
543
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetTsCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetTsCreateOperationResponse);
544
+ }
545
+ async getTsCreateAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
546
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetTsCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetTsCreateOperationResponse);
547
+ }
548
+ removeSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
549
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminRemoveSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.RemoveSegmentOperationResponse);
550
+ }
551
+ async removeSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
552
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminRemoveSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.RemoveSegmentOperationResponse);
553
+ }
554
+ removeTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
555
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminRemoveTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.RemoveTagOperationResponse);
556
+ }
557
+ async removeTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
558
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminRemoveTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.RemoveTagOperationResponse);
559
+ }
560
+ setAmount(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
561
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminSetAmountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetAmountOperationResponse);
562
+ }
563
+ async setAmountAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
564
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminSetAmountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetAmountOperationResponse);
565
+ }
566
+ setAvatar(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
567
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminSetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetAvatarOperationResponse);
568
+ }
569
+ async setAvatarAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
570
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminSetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetAvatarOperationResponse);
571
+ }
572
+ setCustomData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
573
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminSetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetCustomDataOperationResponse);
574
+ }
575
+ async setCustomDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
576
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminSetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetCustomDataOperationResponse);
577
+ }
578
+ setDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
579
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminSetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetDisplayNameOperationResponse);
580
+ }
581
+ async setDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
582
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminSetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetDisplayNameOperationResponse);
583
+ }
584
+ setItemData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
585
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminSetItemDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetItemDataOperationResponse);
586
+ }
587
+ async setItemDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
588
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminSetItemDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetItemDataOperationResponse);
589
+ }
590
+ changeItemStatistics(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
591
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminChangeItemStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.ChangeItemStatisticsOperationResponse);
592
+ }
593
+ async changeItemStatisticsAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
594
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminChangeItemStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.ChangeItemStatisticsOperationResponse);
595
+ }
596
+ setOwner(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
597
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminSetOwnerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetOwnerOperationResponse);
598
+ }
599
+ async setOwnerAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
600
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminSetOwnerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetOwnerOperationResponse);
601
+ }
602
+ setRemoveStatus(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
603
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminSetRemoveStatusOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetRemoveStatusOperationResponse);
604
+ }
605
+ async setRemoveStatusAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
606
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminSetRemoveStatusOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetRemoveStatusOperationResponse);
607
+ }
608
+ setTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
609
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminSetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetTagOperationResponse);
610
+ }
611
+ async setTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
612
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminSetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.SetTagOperationResponse);
613
+ }
614
+ getCreateLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
615
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetCreateLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCreateLeaderboardOperationResponse);
616
+ }
617
+ async getCreateLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
618
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetCreateLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetCreateLeaderboardOperationResponse);
619
+ }
620
+ getStatisticsLog(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
621
+ GNNetwork.sendViaHttpTRequestTResponse(new InventoryRequestModels.AdminGetStatisticsLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLogOperationResponse);
622
+ }
623
+ async getStatisticsLogAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
624
+ return GNNetwork.sendViaHttpTRequestTResponseAsync(new InventoryRequestModels.AdminGetStatisticsLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, InventoryResponseModels.GetStatisticsLogOperationResponse);
625
+ }
626
+ }