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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (400) hide show
  1. package/AGENTS.md +37 -0
  2. package/README.MD +420 -1
  3. package/dist/gearn.js.client.js +71354 -0
  4. package/dist/gearn.js.client.min.js +2 -0
  5. package/dist/gearn.js.client.min.js.LICENSE.txt +14 -0
  6. package/dist/index.d.ts +30 -0
  7. package/dist/index.js +58386 -339
  8. package/dist/runtime/GNNetwork.d.ts +687 -3
  9. package/dist/runtime/GNNetworkAuthenticateApi.d.ts +327 -0
  10. package/dist/runtime/GNNetworkCharacterPlayerApi.d.ts +1026 -0
  11. package/dist/runtime/GNNetworkCloudScriptApi.d.ts +141 -0
  12. package/dist/runtime/GNNetworkContentApi.d.ts +243 -0
  13. package/dist/runtime/GNNetworkDashboardApi.d.ts +221 -0
  14. package/dist/runtime/GNNetworkGamePlayerApi.d.ts +1033 -0
  15. package/dist/runtime/GNNetworkGroupApi.d.ts +783 -0
  16. package/dist/runtime/GNNetworkInventoryApi.d.ts +673 -0
  17. package/dist/runtime/GNNetworkMasterPlayerApi.d.ts +1614 -6
  18. package/dist/runtime/GNNetworkMultiplayerApi.d.ts +234 -0
  19. package/dist/runtime/GNNetworkStoreInventoryApi.d.ts +309 -0
  20. package/dist/runtime/common/Action0.d.ts +30 -0
  21. package/dist/runtime/common/Action1.d.ts +32 -0
  22. package/dist/runtime/common/Action2.d.ts +21 -0
  23. package/dist/runtime/common/Action3.d.ts +16 -0
  24. package/dist/runtime/common/Action4.d.ts +17 -0
  25. package/dist/runtime/common/GNData.d.ts +368 -0
  26. package/dist/runtime/config/GNServerSettings.d.ts +442 -12
  27. package/dist/runtime/constant/Commands.d.ts +80 -0
  28. package/dist/runtime/constant/EventCode.d.ts +48 -0
  29. package/dist/runtime/constant/OperationCode.d.ts +74 -1
  30. package/dist/runtime/constant/ReturnCode.d.ts +72 -0
  31. package/dist/runtime/constant/enumType/ExecuteResponseStatus.d.ts +31 -0
  32. package/dist/runtime/constant/enumType/FriendStatus.d.ts +39 -0
  33. package/dist/runtime/constant/enumType/GoogleLoginType.d.ts +23 -0
  34. package/dist/runtime/constant/enumType/GroupStatus.d.ts +32 -0
  35. package/dist/runtime/constant/enumType/InvalidMemberType.d.ts +75 -0
  36. package/dist/runtime/constant/enumType/ItemType.d.ts +23 -0
  37. package/dist/runtime/constant/enumType/MatchStatus.d.ts +30 -0
  38. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.d.ts +24 -0
  39. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.d.ts +34 -0
  40. package/dist/runtime/constant/enumType/OwnerType.d.ts +40 -0
  41. package/dist/runtime/constant/enumType/PermissionDataItem.d.ts +22 -0
  42. package/dist/runtime/constant/enumType/PushPlatformType.d.ts +18 -0
  43. package/dist/runtime/constant/enumType/RequestRole.d.ts +32 -0
  44. package/dist/runtime/constant/enumType/RequestType.d.ts +70 -0
  45. package/dist/runtime/constant/enumType/StoreItemType.d.ts +21 -0
  46. package/dist/runtime/constant/enumType/StoreReceiveType.d.ts +30 -0
  47. package/dist/runtime/constant/errorCode/ErrorCode.d.ts +190 -8
  48. package/dist/runtime/constant/parameterCode/ParameterCode.d.ts +35 -5
  49. package/dist/runtime/entity/DataMember.d.ts +338 -0
  50. package/dist/runtime/entity/GNMetadata.d.ts +101 -0
  51. package/dist/runtime/entity/InvalidMember.d.ts +28 -0
  52. package/dist/runtime/entity/OperationEvent.d.ts +49 -0
  53. package/dist/runtime/entity/OperationRequest.d.ts +108 -0
  54. package/dist/runtime/entity/OperationResponse.d.ts +110 -0
  55. package/dist/runtime/entity/models/AuthenticateModels.d.ts +115 -0
  56. package/dist/runtime/entity/models/AuthenticateRequestModels.d.ts +131 -0
  57. package/dist/runtime/entity/models/AuthenticateResponseModels.d.ts +131 -0
  58. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +625 -1
  59. package/dist/runtime/entity/models/CharacterPlayerRequestModels.d.ts +972 -0
  60. package/dist/runtime/entity/models/CharacterPlayerResponseModels.d.ts +332 -0
  61. package/dist/runtime/entity/models/CloudScriptModels.d.ts +109 -0
  62. package/dist/runtime/entity/models/CloudScriptRequestModels.d.ts +107 -0
  63. package/dist/runtime/entity/models/CloudScriptResponseModels.d.ts +46 -0
  64. package/dist/runtime/entity/models/ContentModels.d.ts +124 -0
  65. package/dist/runtime/entity/models/ContentRequestModels.d.ts +152 -0
  66. package/dist/runtime/entity/models/ContentResponseModels.d.ts +58 -0
  67. package/dist/runtime/entity/models/DashboardModels.d.ts +371 -8
  68. package/dist/runtime/entity/models/DashboardRequestModels.d.ts +172 -0
  69. package/dist/runtime/entity/models/DashboardResponseModels.d.ts +170 -0
  70. package/dist/runtime/entity/models/GamePlayerModels.d.ts +644 -1
  71. package/dist/runtime/entity/models/GamePlayerRequestModels.d.ts +959 -0
  72. package/dist/runtime/entity/models/GamePlayerResponseModels.d.ts +333 -1
  73. package/dist/runtime/entity/models/GenericModels.d.ts +94 -0
  74. package/dist/runtime/entity/models/GroupModels.d.ts +484 -2
  75. package/dist/runtime/entity/models/GroupRequestModels.d.ts +737 -0
  76. package/dist/runtime/entity/models/GroupResponseModels.d.ts +254 -0
  77. package/dist/runtime/entity/models/InventoryModels.d.ts +415 -0
  78. package/dist/runtime/entity/models/InventoryRequestModels.d.ts +629 -0
  79. package/dist/runtime/entity/models/InventoryResponseModels.d.ts +218 -0
  80. package/dist/runtime/entity/models/MasterPlayerModels.d.ts +1065 -3
  81. package/dist/runtime/entity/models/MasterPlayerRequestModels.d.ts +1560 -6
  82. package/dist/runtime/entity/models/MasterPlayerResponseModels.d.ts +532 -1
  83. package/dist/runtime/entity/models/MultiplayerModels.d.ts +199 -0
  84. package/dist/runtime/entity/models/MultiplayerRequestModels.d.ts +196 -0
  85. package/dist/runtime/entity/models/MultiplayerResponseModels.d.ts +74 -0
  86. package/dist/runtime/entity/models/StoreInventoryModels.d.ts +262 -0
  87. package/dist/runtime/entity/models/StoreInventoryRequestModels.d.ts +268 -0
  88. package/dist/runtime/entity/models/StoreInventoryResponseModels.d.ts +98 -0
  89. package/dist/runtime/entity/request/CustomOperationRequest.d.ts +99 -0
  90. package/dist/runtime/entity/response/CustomOperationResponse.d.ts +118 -0
  91. package/dist/runtime/entity/response/GetAuthInfoResponse.d.ts +53 -0
  92. package/dist/runtime/entity/response/HealthCheckResponse.d.ts +56 -0
  93. package/dist/runtime/entity/response/UploadFileResponse.d.ts +19 -0
  94. package/dist/runtime/helper/CodeHelper.d.ts +122 -0
  95. package/dist/runtime/helper/ConverterService.d.ts +74 -0
  96. package/dist/runtime/helper/EnumUtility.d.ts +63 -0
  97. package/dist/runtime/helper/GNSupport.d.ts +64 -4
  98. package/dist/runtime/helper/GNUtils.d.ts +54 -0
  99. package/dist/runtime/helper/MessagePackConverterService.d.ts +48 -0
  100. package/dist/runtime/helper/OperationHelper.d.ts +51 -0
  101. package/dist/runtime/helper/StorageService.d.ts +48 -8
  102. package/dist/runtime/logger/GNDebug.d.ts +117 -0
  103. package/dist/runtime/networking/AuthenticateStatus.d.ts +64 -0
  104. package/dist/runtime/networking/IPeer.d.ts +83 -0
  105. package/dist/runtime/networking/NetworkingPeer.d.ts +256 -1
  106. package/dist/runtime/networking/OperationPending.d.ts +112 -0
  107. package/dist/runtime/networking/PeerBase.d.ts +231 -0
  108. package/dist/runtime/networking/handler/IServerEventHandler.d.ts +84 -0
  109. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.d.ts +69 -0
  110. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.d.ts +49 -0
  111. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.d.ts +50 -0
  112. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.d.ts +41 -0
  113. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.d.ts +47 -0
  114. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.d.ts +46 -0
  115. package/dist/runtime/networking/http/HttpPeer.d.ts +173 -0
  116. package/dist/runtime/networking/http/NetworkingHttpPeerBase.d.ts +87 -0
  117. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.d.ts +113 -0
  118. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.d.ts +145 -0
  119. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.d.ts +198 -0
  120. package/dist/runtime/networking/socket/SocketPeer.d.ts +155 -0
  121. package/dist/runtime/typescript/ServiceUpdate.d.ts +46 -0
  122. package/docs/AI_CHEATSHEET.md +211 -0
  123. package/docs/COOKBOOK.md +912 -0
  124. package/docs/RULES.md +307 -0
  125. package/docs/ai-manifest.json +725 -0
  126. package/docs/guides/AUTHENTICATE.md +246 -0
  127. package/docs/guides/CHARACTER_PLAYER.md +439 -0
  128. package/docs/guides/CLOUDSCRIPT.md +335 -0
  129. package/docs/guides/COCOS_CREATOR_INTEGRATION.md +150 -0
  130. package/docs/guides/CONTENT.md +291 -0
  131. package/docs/guides/DASHBOARD.md +262 -0
  132. package/docs/guides/GAME_PLAYER.md +473 -0
  133. package/docs/guides/GROUP.md +412 -0
  134. package/docs/guides/INVENTORY.md +375 -0
  135. package/docs/guides/MASTER_PLAYER.md +458 -0
  136. package/docs/guides/MULTIPLAYER.md +303 -0
  137. package/docs/guides/STORE_INVENTORY.md +313 -0
  138. package/docs/llms-full.txt +43 -0
  139. package/docs/reference/API_AUTHENTICATE.md +75 -0
  140. package/docs/reference/API_CHARACTER_PLAYER.md +226 -0
  141. package/docs/reference/API_CLOUDSCRIPT.md +82 -0
  142. package/docs/reference/API_CONTENT.md +88 -0
  143. package/docs/reference/API_DASHBOARD.md +82 -0
  144. package/docs/reference/API_GAME_PLAYER.md +223 -0
  145. package/docs/reference/API_GROUP.md +187 -0
  146. package/docs/reference/API_INDEX.md +57 -0
  147. package/docs/reference/API_INVENTORY.md +169 -0
  148. package/docs/reference/API_MASTER_PLAYER.md +323 -0
  149. package/docs/reference/API_MULTIPLAYER.md +97 -0
  150. package/docs/reference/API_STORE_INVENTORY.md +109 -0
  151. package/docs/reference/CONFIG.md +107 -0
  152. package/docs/reference/DTO_INDEX.md +2543 -0
  153. package/docs/reference/ENUMS.md +433 -0
  154. package/docs/reference/ERROR_HANDLING.md +159 -0
  155. package/docs/reference/EVENTS.md +188 -0
  156. package/docs/reference/PERMISSION_RULES.md +55 -0
  157. package/docs/reference/dto/AUTHENTICATE.md +619 -0
  158. package/docs/reference/dto/CHARACTER_PLAYER.md +3686 -0
  159. package/docs/reference/dto/CLOUDSCRIPT.md +400 -0
  160. package/docs/reference/dto/CONTENT.md +548 -0
  161. package/docs/reference/dto/DASHBOARD.md +1980 -0
  162. package/docs/reference/dto/GAME_PLAYER.md +3631 -0
  163. package/docs/reference/dto/GENERIC.md +151 -0
  164. package/docs/reference/dto/GROUP.md +2842 -0
  165. package/docs/reference/dto/INVENTORY.md +2385 -0
  166. package/docs/reference/dto/MASTER_PLAYER.md +6024 -0
  167. package/docs/reference/dto/MULTIPLAYER.md +850 -0
  168. package/docs/reference/dto/STORE_INVENTORY.md +1262 -0
  169. package/llms.txt +47 -0
  170. package/package.json +11 -2
  171. package/GNServerSettings.debug.json +0 -21
  172. package/dist/runtime/GNNetwork.js +0 -273
  173. package/dist/runtime/GNNetworkAuthenticateApi.js +0 -122
  174. package/dist/runtime/GNNetworkCharacterPlayerApi.js +0 -968
  175. package/dist/runtime/GNNetworkCloudScriptApi.js +0 -104
  176. package/dist/runtime/GNNetworkContentApi.js +0 -140
  177. package/dist/runtime/GNNetworkDashboardApi.js +0 -170
  178. package/dist/runtime/GNNetworkGamePlayerApi.js +0 -950
  179. package/dist/runtime/GNNetworkGroupApi.js +0 -734
  180. package/dist/runtime/GNNetworkInventoryApi.js +0 -626
  181. package/dist/runtime/GNNetworkMasterPlayerApi.js +0 -1550
  182. package/dist/runtime/GNNetworkMultiplayerApi.js +0 -194
  183. package/dist/runtime/GNNetworkStoreInventoryApi.js +0 -266
  184. package/dist/runtime/common/Action0.js +0 -1
  185. package/dist/runtime/common/Action1.js +0 -1
  186. package/dist/runtime/common/Action2.js +0 -1
  187. package/dist/runtime/common/Action3.js +0 -1
  188. package/dist/runtime/common/Action4.js +0 -1
  189. package/dist/runtime/common/GNData.js +0 -209
  190. package/dist/runtime/config/GNServerSettings.js +0 -156
  191. package/dist/runtime/constant/Commands.js +0 -20
  192. package/dist/runtime/constant/EventCode.js +0 -8
  193. package/dist/runtime/constant/OperationCode.js +0 -221
  194. package/dist/runtime/constant/ReturnCode.js +0 -14
  195. package/dist/runtime/constant/enumType/ExecuteResponseStatus.js +0 -8
  196. package/dist/runtime/constant/enumType/FriendStatus.js +0 -7
  197. package/dist/runtime/constant/enumType/GoogleLoginType.js +0 -5
  198. package/dist/runtime/constant/enumType/GroupStatus.js +0 -7
  199. package/dist/runtime/constant/enumType/InvalidMemberType.js +0 -18
  200. package/dist/runtime/constant/enumType/ItemType.js +0 -5
  201. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +0 -6
  202. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +0 -8
  203. package/dist/runtime/constant/enumType/OwnerType.js +0 -9
  204. package/dist/runtime/constant/enumType/PermissionDataItem.js +0 -5
  205. package/dist/runtime/constant/enumType/PushPlatformType.js +0 -5
  206. package/dist/runtime/constant/enumType/RequestRole.js +0 -6
  207. package/dist/runtime/constant/enumType/RequestType.js +0 -15
  208. package/dist/runtime/constant/enumType/StoreItemType.js +0 -5
  209. package/dist/runtime/constant/enumType/StoreReceiveType.js +0 -8
  210. package/dist/runtime/constant/errorCode/ErrorCode.js +0 -52
  211. package/dist/runtime/constant/parameterCode/ParameterCode.js +0 -617
  212. package/dist/runtime/entity/DataMember.js +0 -208
  213. package/dist/runtime/entity/GNMetadata.js +0 -11
  214. package/dist/runtime/entity/InvalidMember.js +0 -1
  215. package/dist/runtime/entity/OperationEvent.js +0 -24
  216. package/dist/runtime/entity/OperationRequest.js +0 -42
  217. package/dist/runtime/entity/OperationResponse.js +0 -73
  218. package/dist/runtime/entity/models/AuthenticateModels.js +0 -426
  219. package/dist/runtime/entity/models/AuthenticateRequestModels.js +0 -188
  220. package/dist/runtime/entity/models/AuthenticateResponseModels.js +0 -131
  221. package/dist/runtime/entity/models/CharacterPlayerModels.js +0 -1433
  222. package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +0 -1386
  223. package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +0 -376
  224. package/dist/runtime/entity/models/CloudScriptModels.js +0 -197
  225. package/dist/runtime/entity/models/CloudScriptRequestModels.js +0 -138
  226. package/dist/runtime/entity/models/CloudScriptResponseModels.js +0 -40
  227. package/dist/runtime/entity/models/ContentModels.js +0 -203
  228. package/dist/runtime/entity/models/ContentRequestModels.js +0 -190
  229. package/dist/runtime/entity/models/ContentResponseModels.js +0 -54
  230. package/dist/runtime/entity/models/DashboardModels.js +0 -3002
  231. package/dist/runtime/entity/models/DashboardRequestModels.js +0 -268
  232. package/dist/runtime/entity/models/DashboardResponseModels.js +0 -187
  233. package/dist/runtime/entity/models/GamePlayerModels.js +0 -1591
  234. package/dist/runtime/entity/models/GamePlayerRequestModels.js +0 -1360
  235. package/dist/runtime/entity/models/GamePlayerResponseModels.js +0 -369
  236. package/dist/runtime/entity/models/GenericModels.js +0 -177
  237. package/dist/runtime/entity/models/GroupModels.js +0 -1135
  238. package/dist/runtime/entity/models/GroupRequestModels.js +0 -1048
  239. package/dist/runtime/entity/models/GroupResponseModels.js +0 -285
  240. package/dist/runtime/entity/models/InventoryModels.js +0 -915
  241. package/dist/runtime/entity/models/InventoryRequestModels.js +0 -892
  242. package/dist/runtime/entity/models/InventoryResponseModels.js +0 -243
  243. package/dist/runtime/entity/models/MasterPlayerModels.js +0 -2573
  244. package/dist/runtime/entity/models/MasterPlayerRequestModels.js +0 -2228
  245. package/dist/runtime/entity/models/MasterPlayerResponseModels.js +0 -607
  246. package/dist/runtime/entity/models/MultiplayerModels.js +0 -404
  247. package/dist/runtime/entity/models/MultiplayerRequestModels.js +0 -268
  248. package/dist/runtime/entity/models/MultiplayerResponseModels.js +0 -75
  249. package/dist/runtime/entity/models/StoreInventoryModels.js +0 -797
  250. package/dist/runtime/entity/models/StoreInventoryRequestModels.js +0 -372
  251. package/dist/runtime/entity/models/StoreInventoryResponseModels.js +0 -103
  252. package/dist/runtime/entity/request/CustomOperationRequest.js +0 -24
  253. package/dist/runtime/entity/response/CustomOperationResponse.js +0 -29
  254. package/dist/runtime/entity/response/GetAuthInfoResponse.js +0 -2
  255. package/dist/runtime/entity/response/HealthCheckResponse.js +0 -2
  256. package/dist/runtime/entity/response/UploadFileResponse.js +0 -2
  257. package/dist/runtime/helper/CodeHelper.js +0 -63
  258. package/dist/runtime/helper/ConverterService.js +0 -275
  259. package/dist/runtime/helper/EnumUtility.js +0 -33
  260. package/dist/runtime/helper/GNSupport.js +0 -47
  261. package/dist/runtime/helper/GNUtils.js +0 -72
  262. package/dist/runtime/helper/MessagePackConverterService.js +0 -9
  263. package/dist/runtime/helper/OperationHelper.js +0 -24
  264. package/dist/runtime/helper/StorageService.js +0 -62
  265. package/dist/runtime/logger/GNDebug.js +0 -29
  266. package/dist/runtime/networking/AuthenticateStatus.js +0 -14
  267. package/dist/runtime/networking/IPeer.js +0 -1
  268. package/dist/runtime/networking/NetworkingPeer.js +0 -210
  269. package/dist/runtime/networking/OperationPending.js +0 -53
  270. package/dist/runtime/networking/PeerBase.js +0 -161
  271. package/dist/runtime/networking/handler/IServerEventHandler.js +0 -13
  272. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +0 -39
  273. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +0 -39
  274. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +0 -39
  275. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +0 -39
  276. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +0 -35
  277. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +0 -43
  278. package/dist/runtime/networking/http/HttpPeer.js +0 -123
  279. package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +0 -9
  280. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +0 -179
  281. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +0 -130
  282. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +0 -165
  283. package/dist/runtime/networking/socket/SocketPeer.js +0 -115
  284. package/dist/runtime/typescript/ServiceUpdate.js +0 -22
  285. package/docs/COCOS_CREATOR_INTEGRATION.md +0 -116
  286. package/examples/cocos-creator/GearNExample.ts.txt +0 -176
  287. package/srcSwift/Package.swift +0 -32
  288. package/srcSwift/Sources/GearN/runtime/GNNetwork.swift +0 -530
  289. package/srcSwift/Sources/GearN/runtime/GNNetworkAuthenticateApi.swift +0 -178
  290. package/srcSwift/Sources/GearN/runtime/GNNetworkCharacterPlayerApi.swift +0 -1162
  291. package/srcSwift/Sources/GearN/runtime/GNNetworkCloudScriptApi.swift +0 -154
  292. package/srcSwift/Sources/GearN/runtime/GNNetworkContentApi.swift +0 -208
  293. package/srcSwift/Sources/GearN/runtime/GNNetworkDashboardApi.swift +0 -240
  294. package/srcSwift/Sources/GearN/runtime/GNNetworkGamePlayerApi.swift +0 -1369
  295. package/srcSwift/Sources/GearN/runtime/GNNetworkGroupApi.swift +0 -1100
  296. package/srcSwift/Sources/GearN/runtime/GNNetworkInventoryApi.swift +0 -937
  297. package/srcSwift/Sources/GearN/runtime/GNNetworkMasterPlayerApi.swift +0 -2323
  298. package/srcSwift/Sources/GearN/runtime/GNNetworkMultiplayerApi.swift +0 -298
  299. package/srcSwift/Sources/GearN/runtime/GNNetworkStoreInventoryApi.swift +0 -397
  300. package/srcSwift/Sources/GearN/runtime/common/Action0.swift +0 -3
  301. package/srcSwift/Sources/GearN/runtime/common/Action1.swift +0 -3
  302. package/srcSwift/Sources/GearN/runtime/common/Action2.swift +0 -3
  303. package/srcSwift/Sources/GearN/runtime/common/Action3.swift +0 -3
  304. package/srcSwift/Sources/GearN/runtime/common/Action4.swift +0 -3
  305. package/srcSwift/Sources/GearN/runtime/common/GNArray.swift +0 -204
  306. package/srcSwift/Sources/GearN/runtime/common/GNData.swift +0 -108
  307. package/srcSwift/Sources/GearN/runtime/common/GNHashtable.swift +0 -200
  308. package/srcSwift/Sources/GearN/runtime/config/GNServerSettings.swift +0 -95
  309. package/srcSwift/Sources/GearN/runtime/constant/Commands.swift +0 -28
  310. package/srcSwift/Sources/GearN/runtime/constant/EventCode.swift +0 -10
  311. package/srcSwift/Sources/GearN/runtime/constant/OperationCode.swift +0 -252
  312. package/srcSwift/Sources/GearN/runtime/constant/ReturnCode.swift +0 -19
  313. package/srcSwift/Sources/GearN/runtime/constant/enumType/ExecuteResponseStatus.swift +0 -9
  314. package/srcSwift/Sources/GearN/runtime/constant/enumType/FriendStatus.swift +0 -8
  315. package/srcSwift/Sources/GearN/runtime/constant/enumType/GoogleLoginType.swift +0 -6
  316. package/srcSwift/Sources/GearN/runtime/constant/enumType/GroupStatus.swift +0 -8
  317. package/srcSwift/Sources/GearN/runtime/constant/enumType/InvalidMemberType.swift +0 -19
  318. package/srcSwift/Sources/GearN/runtime/constant/enumType/ItemType.swift +0 -6
  319. package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingMemberStatus.swift +0 -7
  320. package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingTicketStatus.swift +0 -9
  321. package/srcSwift/Sources/GearN/runtime/constant/enumType/OwnerType.swift +0 -10
  322. package/srcSwift/Sources/GearN/runtime/constant/enumType/PermissionDataItem.swift +0 -6
  323. package/srcSwift/Sources/GearN/runtime/constant/enumType/PushPlatformType.swift +0 -6
  324. package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestRole.swift +0 -7
  325. package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestType.swift +0 -16
  326. package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreItemType.swift +0 -6
  327. package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreReceiveType.swift +0 -9
  328. package/srcSwift/Sources/GearN/runtime/constant/errorCode/ErrorCode.swift +0 -58
  329. package/srcSwift/Sources/GearN/runtime/constant/parameterCode/ParameterCode.swift +0 -672
  330. package/srcSwift/Sources/GearN/runtime/entity/DataMember.swift +0 -196
  331. package/srcSwift/Sources/GearN/runtime/entity/GNMetadata.swift +0 -9
  332. package/srcSwift/Sources/GearN/runtime/entity/InvalidMember.swift +0 -11
  333. package/srcSwift/Sources/GearN/runtime/entity/OperationEvent.swift +0 -38
  334. package/srcSwift/Sources/GearN/runtime/entity/OperationHelper.swift +0 -28
  335. package/srcSwift/Sources/GearN/runtime/entity/OperationRequest.swift +0 -62
  336. package/srcSwift/Sources/GearN/runtime/entity/OperationResponse.swift +0 -98
  337. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateModels.swift +0 -351
  338. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateRequestModels.swift +0 -81
  339. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateResponseModels.swift +0 -108
  340. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerModels.swift +0 -1045
  341. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerRequestModels.swift +0 -821
  342. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerResponseModels.swift +0 -588
  343. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptModels.swift +0 -187
  344. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptRequestModels.swift +0 -84
  345. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptResponseModels.swift +0 -59
  346. package/srcSwift/Sources/GearN/runtime/entity/models/ContentModels.swift +0 -195
  347. package/srcSwift/Sources/GearN/runtime/entity/models/ContentRequestModels.swift +0 -116
  348. package/srcSwift/Sources/GearN/runtime/entity/models/ContentResponseModels.swift +0 -81
  349. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardModels.swift +0 -426
  350. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardRequestModels.swift +0 -160
  351. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardResponseModels.swift +0 -82
  352. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerModels.swift +0 -1334
  353. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerRequestModels.swift +0 -643
  354. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerResponseModels.swift +0 -213
  355. package/srcSwift/Sources/GearN/runtime/entity/models/GenericModels.swift +0 -171
  356. package/srcSwift/Sources/GearN/runtime/entity/models/GroupModels.swift +0 -850
  357. package/srcSwift/Sources/GearN/runtime/entity/models/GroupRequestModels.swift +0 -485
  358. package/srcSwift/Sources/GearN/runtime/entity/models/GroupResponseModels.swift +0 -165
  359. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryModels.swift +0 -679
  360. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryRequestModels.swift +0 -413
  361. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryResponseModels.swift +0 -141
  362. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerModels.swift +0 -378
  363. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerRequestModels.swift +0 -147
  364. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerResponseModels.swift +0 -318
  365. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerModels.swift +0 -319
  366. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerRequestModels.swift +0 -125
  367. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerResponseModels.swift +0 -45
  368. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryModels.swift +0 -633
  369. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryRequestModels.swift +0 -173
  370. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryResponseModels.swift +0 -61
  371. package/srcSwift/Sources/GearN/runtime/entity/request/CustomOperationRequest.swift +0 -42
  372. package/srcSwift/Sources/GearN/runtime/entity/response/CustomOperationResponse.swift +0 -49
  373. package/srcSwift/Sources/GearN/runtime/entity/response/GetAuthInfoResponse.swift +0 -43
  374. package/srcSwift/Sources/GearN/runtime/entity/response/HealthCheckResponse.swift +0 -86
  375. package/srcSwift/Sources/GearN/runtime/entity/response/UploadFileResponse.swift +0 -15
  376. package/srcSwift/Sources/GearN/runtime/helper/CodeHelper.swift +0 -107
  377. package/srcSwift/Sources/GearN/runtime/helper/ConverterService.swift +0 -98
  378. package/srcSwift/Sources/GearN/runtime/helper/EnumUtility.swift +0 -34
  379. package/srcSwift/Sources/GearN/runtime/helper/GNSupport.swift +0 -41
  380. package/srcSwift/Sources/GearN/runtime/helper/GNUtils.swift +0 -66
  381. package/srcSwift/Sources/GearN/runtime/helper/MessagePackConverterService.swift +0 -21
  382. package/srcSwift/Sources/GearN/runtime/helper/StorageService.swift +0 -29
  383. package/srcSwift/Sources/GearN/runtime/logger/GNDebug.swift +0 -33
  384. package/srcSwift/Sources/GearN/runtime/networking/AuthenticateStatus.swift +0 -24
  385. package/srcSwift/Sources/GearN/runtime/networking/IPeer.swift +0 -8
  386. package/srcSwift/Sources/GearN/runtime/networking/NetworkingPeer.swift +0 -368
  387. package/srcSwift/Sources/GearN/runtime/networking/OperationPending.swift +0 -81
  388. package/srcSwift/Sources/GearN/runtime/networking/PeerBase.swift +0 -228
  389. package/srcSwift/Sources/GearN/runtime/networking/handler/IServerEventHandler.swift +0 -20
  390. package/srcSwift/Sources/GearN/runtime/networking/http/HttpPeer.swift +0 -226
  391. package/srcSwift/Sources/GearN/runtime/networking/http/HttpTypes.swift +0 -24
  392. package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingHttpPeerBase.swift +0 -13
  393. package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingPeerUrlSession.swift +0 -125
  394. package/srcSwift/Sources/GearN/runtime/networking/request/NetRequest.swift +0 -19
  395. package/srcSwift/Sources/GearN/runtime/networking/response/NetResponse.swift +0 -13
  396. package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingPeerSocketIOClient.swift +0 -244
  397. package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingSocketPeerBase.swift +0 -59
  398. package/srcSwift/Sources/GearN/runtime/networking/socket/SocketPeer.swift +0 -136
  399. package/tsconfig-build.cocos.json +0 -31
  400. package/webpack.config.cocos.mjs +0 -78
@@ -2,523 +2,2131 @@ import { Action1 } from "./common/Action1";
2
2
  import { GNHashtable } from "./common/GNData";
3
3
  import { MasterPlayerModels } from "./entity/models/MasterPlayerModels";
4
4
  import { MasterPlayerResponseModels } from "./entity/models/MasterPlayerResponseModels";
5
+ /**
6
+ * Public client-scoped namespace for the MasterPlayer domain.
7
+ *
8
+ * Reachable through {@link GNNetwork.masterPlayer} after
9
+ * {@link GNNetwork.init}. Manages the **account-level** record
10
+ * — the top-level user identity that owns one or more
11
+ * game-player records ({@link GNNetwork.gamePlayer}) which in
12
+ * turn own per-character records
13
+ * ({@link GNNetwork.characterPlayer}).
14
+ *
15
+ * Functional groupings:
16
+ *
17
+ * 1. **Account & password** — `changePasswordAccount`,
18
+ * `setPassword`, `getMasterPlayerInformation`,
19
+ * `getMasterPlayer`, `getMasterPlayerBan`.
20
+ * 2. **Identity link / unlink** (one method per identity
21
+ * provider) — `linkAccount`, `linkAndroidDeviceId`,
22
+ * `linkApple`, `linkCustomDeviceId`, `linkCustomId`,
23
+ * `linkEditorDeviceId`, `linkFacebook`,
24
+ * `linkGenericService`, `linkGoogle`,
25
+ * `linkGooglePlayGameService`, `linkGameCenter`,
26
+ * `linkiOSDeviceId`, `linkLinuxDeviceId`,
27
+ * `linkMacOSDeviceId`, `linkWindowsDeviceId`,
28
+ * `linkWindowsPhoneDeviceId`. Each has a matching
29
+ * `unlink*` method. Pair with the corresponding
30
+ * `loginBy*` flows on {@link AuthenticateApi}.
31
+ * 3. **Profile fields** — `getDisplayName`, `setDisplayName`,
32
+ * `getAvatar`, `setAvatar`, `getCountryCode`,
33
+ * `getIpAddressCreate`, `getOnlineStatus`, `getEmail`,
34
+ * `setEmail`, `getTsCreate`, `getTsLastLogin`.
35
+ * 4. **Custom data / tags / segments** — `getCustomData`,
36
+ * `setCustomData`, `getTag`, `setTag`, `getSegment`,
37
+ * `addSegment`, `removeSegment`, etc.
38
+ * 5. **Account currencies & statistics** —
39
+ * `getAccountCurrency`, `setAccountCurrency`,
40
+ * `addAccountCurrency`, `subtractAccountCurrency`,
41
+ * `getAccountStatistics`, `setAccountStatistics`,
42
+ * `addAccountStatistics`.
43
+ * 6. **Push notifications** —
44
+ * `registerPushNotification`,
45
+ * `unregisterPushNotification`,
46
+ * `getPushNotifications`. The `platformType` field uses
47
+ * {@link PushPlatformType}.
48
+ *
49
+ * Common contract: same as {@link GamePlayerApi} (HTTP /
50
+ * `RequestType.MasterPlayer` / `RequestRole.Client`,
51
+ * callback + Promise variants, `.server` / `.admin`
52
+ * sub-namespaces).
53
+ */
5
54
  export declare class MasterPlayerApi {
55
+ /** Server-scoped master-player operations for trusted backend callers. */
6
56
  server: ServerMasterPlayerApi;
57
+ /** Admin-scoped master-player operations for dashboard, GM, or backoffice callers. */
7
58
  admin: AdminMasterPlayerApi;
59
+ /**
60
+ * Sends the addSegment operation and returns the typed response via callback.
61
+ */
8
62
  addSegment(requestData: MasterPlayerModels.AddSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
63
+ /**
64
+ * Sends the addSegment operation and resolves with the typed response.
65
+ */
9
66
  addSegmentAsync(requestData: MasterPlayerModels.AddSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.AddSegmentOperationResponse>;
67
+ /**
68
+ * Sends the changeAccountPassword operation and returns the typed response via callback.
69
+ */
10
70
  changeAccountPassword(requestData: MasterPlayerModels.ChangeAccountPasswordRequestData, onResponse?: Action1<MasterPlayerResponseModels.ChangeAccountPasswordOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
71
+ /**
72
+ * Sends the changeAccountPassword operation and resolves with the typed response.
73
+ */
11
74
  changeAccountPasswordAsync(requestData: MasterPlayerModels.ChangeAccountPasswordRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.ChangeAccountPasswordOperationResponse>;
75
+ /**
76
+ * Sends the getAvatar operation and returns the typed response via callback.
77
+ */
12
78
  getAvatar(requestData: MasterPlayerModels.GetAvatarRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
79
+ /**
80
+ * Sends the getAvatar operation and resolves with the typed response.
81
+ */
13
82
  getAvatarAsync(requestData: MasterPlayerModels.GetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetAvatarOperationResponse>;
83
+ /**
84
+ * Sends the getCountryCode operation and returns the typed response via callback.
85
+ */
14
86
  getCountryCode(requestData: MasterPlayerModels.GetCountryCodeRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
87
+ /**
88
+ * Sends the getCountryCode operation and resolves with the typed response.
89
+ */
15
90
  getCountryCodeAsync(requestData: MasterPlayerModels.GetCountryCodeRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCountryCodeOperationResponse>;
91
+ /**
92
+ * Sends the getCustomData operation and returns the typed response via callback.
93
+ */
16
94
  getCustomData(requestData: MasterPlayerModels.GetCustomDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
95
+ /**
96
+ * Sends the getCustomData operation and resolves with the typed response.
97
+ */
17
98
  getCustomDataAsync(requestData: MasterPlayerModels.GetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCustomDataOperationResponse>;
99
+ /**
100
+ * Sends the getDisplayName operation and returns the typed response via callback.
101
+ */
18
102
  getDisplayName(requestData: MasterPlayerModels.GetDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
103
+ /**
104
+ * Sends the getDisplayName operation and resolves with the typed response.
105
+ */
19
106
  getDisplayNameAsync(requestData: MasterPlayerModels.GetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetDisplayNameOperationResponse>;
107
+ /**
108
+ * Sends the getEmail operation and returns the typed response via callback.
109
+ */
20
110
  getEmail(requestData: MasterPlayerModels.GetEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
111
+ /**
112
+ * Sends the getEmail operation and resolves with the typed response.
113
+ */
21
114
  getEmailAsync(requestData: MasterPlayerModels.GetEmailRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetEmailOperationResponse>;
115
+ /**
116
+ * Sends the getExternal operation and returns the typed response via callback.
117
+ */
22
118
  getExternal(requestData: MasterPlayerModels.GetExternalRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetExternalOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
119
+ /**
120
+ * Sends the getExternal operation and resolves with the typed response.
121
+ */
23
122
  getExternalAsync(requestData: MasterPlayerModels.GetExternalRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetExternalOperationResponse>;
123
+ /**
124
+ * Sends the getIpAddressCreate operation and returns the typed response via callback.
125
+ */
24
126
  getIpAddressCreate(requestData: MasterPlayerModels.GetIpAddressCreateRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
127
+ /**
128
+ * Sends the getIpAddressCreate operation and resolves with the typed response.
129
+ */
25
130
  getIpAddressCreateAsync(requestData: MasterPlayerModels.GetIpAddressCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetIpAddressCreateOperationResponse>;
131
+ /**
132
+ * Sends the getPlayerBan operation and returns the typed response via callback.
133
+ */
26
134
  getPlayerBan(requestData: MasterPlayerModels.GetPlayerBanRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
135
+ /**
136
+ * Sends the getPlayerBan operation and resolves with the typed response.
137
+ */
27
138
  getPlayerBanAsync(requestData: MasterPlayerModels.GetPlayerBanRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerBanOperationResponse>;
139
+ /**
140
+ * Sends the getPlayerCurrency operation and returns the typed response via callback.
141
+ */
28
142
  getPlayerCurrency(requestData: MasterPlayerModels.GetPlayerCurrencyRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
143
+ /**
144
+ * Sends the getPlayerCurrency operation and resolves with the typed response.
145
+ */
29
146
  getPlayerCurrencyAsync(requestData: MasterPlayerModels.GetPlayerCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse>;
147
+ /**
148
+ * Sends the getPlayerData operation and returns the typed response via callback.
149
+ */
30
150
  getPlayerData(requestData: MasterPlayerModels.GetPlayerDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
151
+ /**
152
+ * Sends the getPlayerData operation and resolves with the typed response.
153
+ */
31
154
  getPlayerDataAsync(requestData: MasterPlayerModels.GetPlayerDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerDataOperationResponse>;
155
+ /**
156
+ * Sends the getPlayerInformation operation and returns the typed response via callback.
157
+ */
32
158
  getPlayerInformation(requestData: MasterPlayerModels.GetPlayerInformationRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
159
+ /**
160
+ * Sends the getPlayerInformation operation and resolves with the typed response.
161
+ */
33
162
  getPlayerInformationAsync(requestData: MasterPlayerModels.GetPlayerInformationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerInformationOperationResponse>;
163
+ /**
164
+ * Sends the getPlayerStatistics operation and returns the typed response via callback.
165
+ */
34
166
  getPlayerStatistics(requestData: MasterPlayerModels.GetPlayerStatisticsRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
167
+ /**
168
+ * Sends the getPlayerStatistics operation and resolves with the typed response.
169
+ */
35
170
  getPlayerStatisticsAsync(requestData: MasterPlayerModels.GetPlayerStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse>;
171
+ /**
172
+ * Sends the getPlayersWithApple operation and returns the typed response via callback.
173
+ */
36
174
  getPlayersWithApple(requestData: MasterPlayerModels.GetPlayersWithAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
175
+ /**
176
+ * Sends the getPlayersWithApple operation and resolves with the typed response.
177
+ */
37
178
  getPlayersWithAppleAsync(requestData: MasterPlayerModels.GetPlayersWithAppleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse>;
179
+ /**
180
+ * Sends the getPlayersWithDisplayName operation and returns the typed response via callback.
181
+ */
38
182
  getPlayersWithDisplayName(requestData: MasterPlayerModels.GetPlayersWithDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
183
+ /**
184
+ * Sends the getPlayersWithDisplayName operation and resolves with the typed response.
185
+ */
39
186
  getPlayersWithDisplayNameAsync(requestData: MasterPlayerModels.GetPlayersWithDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>;
187
+ /**
188
+ * Sends the getPlayersWithFacebook operation and returns the typed response via callback.
189
+ */
40
190
  getPlayersWithFacebook(requestData: MasterPlayerModels.GetPlayersWithFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
191
+ /**
192
+ * Sends the getPlayersWithFacebook operation and resolves with the typed response.
193
+ */
41
194
  getPlayersWithFacebookAsync(requestData: MasterPlayerModels.GetPlayersWithFacebookRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse>;
195
+ /**
196
+ * Sends the getPlayersWithGenericService operation and returns the typed response via callback.
197
+ */
42
198
  getPlayersWithGenericService(requestData: MasterPlayerModels.GetPlayersWithGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
199
+ /**
200
+ * Sends the getPlayersWithGenericService operation and resolves with the typed response.
201
+ */
43
202
  getPlayersWithGenericServiceAsync(requestData: MasterPlayerModels.GetPlayersWithGenericServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse>;
203
+ /**
204
+ * Sends the getPlayersWithGoogle operation and returns the typed response via callback.
205
+ */
44
206
  getPlayersWithGoogle(requestData: MasterPlayerModels.GetPlayersWithGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
207
+ /**
208
+ * Sends the getPlayersWithGoogle operation and resolves with the typed response.
209
+ */
45
210
  getPlayersWithGoogleAsync(requestData: MasterPlayerModels.GetPlayersWithGoogleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse>;
211
+ /**
212
+ * Sends the getPlayersWithGooglePlayGameService operation and returns the typed response via callback.
213
+ */
46
214
  getPlayersWithGooglePlayGameService(requestData: MasterPlayerModels.GetPlayersWithGooglePlayGameServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
215
+ /**
216
+ * Sends the getPlayersWithGooglePlayGameService operation and resolves with the typed response.
217
+ */
47
218
  getPlayersWithGooglePlayGameServiceAsync(requestData: MasterPlayerModels.GetPlayersWithGooglePlayGameServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse>;
219
+ /**
220
+ * Sends the getPlayersWithGameCenter operation and returns the typed response via callback.
221
+ */
48
222
  getPlayersWithGameCenter(requestData: MasterPlayerModels.GetPlayersWithGameCenterRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
223
+ /**
224
+ * Sends the getPlayersWithGameCenter operation and resolves with the typed response.
225
+ */
49
226
  getPlayersWithGameCenterAsync(requestData: MasterPlayerModels.GetPlayersWithGameCenterRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse>;
227
+ /**
228
+ * Sends the getPlayersWithSegment operation and returns the typed response via callback.
229
+ */
50
230
  getPlayersWithSegment(requestData: MasterPlayerModels.GetPlayersWithSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
231
+ /**
232
+ * Sends the getPlayersWithSegment operation and resolves with the typed response.
233
+ */
51
234
  getPlayersWithSegmentAsync(requestData: MasterPlayerModels.GetPlayersWithSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>;
235
+ /**
236
+ * Sends the getPlayersWithTag operation and returns the typed response via callback.
237
+ */
52
238
  getPlayersWithTag(requestData: MasterPlayerModels.GetPlayersWithTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
239
+ /**
240
+ * Sends the getPlayersWithTag operation and resolves with the typed response.
241
+ */
53
242
  getPlayersWithTagAsync(requestData: MasterPlayerModels.GetPlayersWithTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithTagOperationResponse>;
243
+ /**
244
+ * Sends the getSegment operation and returns the typed response via callback.
245
+ */
54
246
  getSegment(requestData: MasterPlayerModels.GetSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
247
+ /**
248
+ * Sends the getSegment operation and resolves with the typed response.
249
+ */
55
250
  getSegmentAsync(requestData: MasterPlayerModels.GetSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetSegmentOperationResponse>;
251
+ /**
252
+ * Sends the getStatisticsLeaderboardAroundPlayer operation and returns the typed response via callback.
253
+ */
56
254
  getStatisticsLeaderboardAroundPlayer(requestData: MasterPlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
255
+ /**
256
+ * Sends the getStatisticsLeaderboardAroundPlayer operation and resolves with the typed response.
257
+ */
57
258
  getStatisticsLeaderboardAroundPlayerAsync(requestData: MasterPlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>;
259
+ /**
260
+ * Sends the getStatisticsLeaderboard operation and returns the typed response via callback.
261
+ */
58
262
  getStatisticsLeaderboard(requestData: MasterPlayerModels.GetStatisticsLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
263
+ /**
264
+ * Sends the getStatisticsLeaderboard operation and resolves with the typed response.
265
+ */
59
266
  getStatisticsLeaderboardAsync(requestData: MasterPlayerModels.GetStatisticsLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>;
267
+ /**
268
+ * Sends the getTag operation and returns the typed response via callback.
269
+ */
60
270
  getTag(requestData: MasterPlayerModels.GetTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
271
+ /**
272
+ * Sends the getTag operation and resolves with the typed response.
273
+ */
61
274
  getTagAsync(requestData: MasterPlayerModels.GetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetTagOperationResponse>;
275
+ /**
276
+ * Sends the getTsCreate operation and returns the typed response via callback.
277
+ */
62
278
  getTsCreate(requestData: MasterPlayerModels.GetTsCreateRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
279
+ /**
280
+ * Sends the getTsCreate operation and resolves with the typed response.
281
+ */
63
282
  getTsCreateAsync(requestData: MasterPlayerModels.GetTsCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetTsCreateOperationResponse>;
283
+ /**
284
+ * Sends the getTsLastLogin operation and returns the typed response via callback.
285
+ */
64
286
  getTsLastLogin(requestData: MasterPlayerModels.GetTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
287
+ /**
288
+ * Sends the getTsLastLogin operation and resolves with the typed response.
289
+ */
65
290
  getTsLastLoginAsync(requestData: MasterPlayerModels.GetTsLastLoginRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetTsLastLoginOperationResponse>;
291
+ /**
292
+ * Sends the linkAccount operation and returns the typed response via callback.
293
+ */
66
294
  linkAccount(requestData: MasterPlayerModels.LinkAccountRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
295
+ /**
296
+ * Sends the linkAccount operation and resolves with the typed response.
297
+ */
67
298
  linkAccountAsync(requestData: MasterPlayerModels.LinkAccountRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkAccountOperationResponse>;
299
+ /**
300
+ * Sends the linkAndroidDeviceId operation and returns the typed response via callback.
301
+ */
68
302
  linkAndroidDeviceId(requestData: MasterPlayerModels.LinkAndroidDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
303
+ /**
304
+ * Sends the linkAndroidDeviceId operation and resolves with the typed response.
305
+ */
69
306
  linkAndroidDeviceIdAsync(requestData: MasterPlayerModels.LinkAndroidDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse>;
307
+ /**
308
+ * Sends the linkApple operation and returns the typed response via callback.
309
+ */
70
310
  linkApple(requestData: MasterPlayerModels.LinkAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
311
+ /**
312
+ * Sends the linkApple operation and resolves with the typed response.
313
+ */
71
314
  linkAppleAsync(requestData: MasterPlayerModels.LinkAppleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkAppleOperationResponse>;
315
+ /**
316
+ * Sends the linkCustomDeviceId operation and returns the typed response via callback.
317
+ */
72
318
  linkCustomDeviceId(requestData: MasterPlayerModels.LinkCustomDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
319
+ /**
320
+ * Sends the linkCustomDeviceId operation and resolves with the typed response.
321
+ */
73
322
  linkCustomDeviceIdAsync(requestData: MasterPlayerModels.LinkCustomDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse>;
323
+ /**
324
+ * Sends the linkCustomId operation and returns the typed response via callback.
325
+ */
74
326
  linkCustomId(requestData: MasterPlayerModels.LinkCustomIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkCustomIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
327
+ /**
328
+ * Sends the linkCustomId operation and resolves with the typed response.
329
+ */
75
330
  linkCustomIdAsync(requestData: MasterPlayerModels.LinkCustomIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkCustomIdOperationResponse>;
331
+ /**
332
+ * Sends the linkEditorDeviceId operation and returns the typed response via callback.
333
+ */
76
334
  linkEditorDeviceId(requestData: MasterPlayerModels.LinkEditorDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
335
+ /**
336
+ * Sends the linkEditorDeviceId operation and resolves with the typed response.
337
+ */
77
338
  linkEditorDeviceIdAsync(requestData: MasterPlayerModels.LinkEditorDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse>;
339
+ /**
340
+ * Sends the linkFacebook operation and returns the typed response via callback.
341
+ */
78
342
  linkFacebook(requestData: MasterPlayerModels.LinkFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
343
+ /**
344
+ * Sends the linkFacebook operation and resolves with the typed response.
345
+ */
79
346
  linkFacebookAsync(requestData: MasterPlayerModels.LinkFacebookRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkFacebookOperationResponse>;
347
+ /**
348
+ * Sends the linkGenericService operation and returns the typed response via callback.
349
+ */
80
350
  linkGenericService(requestData: MasterPlayerModels.LinkGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
351
+ /**
352
+ * Sends the linkGenericService operation and resolves with the typed response.
353
+ */
81
354
  linkGenericServiceAsync(requestData: MasterPlayerModels.LinkGenericServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkGenericServiceOperationResponse>;
355
+ /**
356
+ * Sends the linkGoogle operation and returns the typed response via callback.
357
+ */
82
358
  linkGoogle(requestData: MasterPlayerModels.LinkGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
359
+ /**
360
+ * Sends the linkGoogle operation and resolves with the typed response.
361
+ */
83
362
  linkGoogleAsync(requestData: MasterPlayerModels.LinkGoogleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkGoogleOperationResponse>;
363
+ /**
364
+ * Sends the linkGooglePlayGameService operation and returns the typed response via callback.
365
+ */
84
366
  linkGooglePlayGameService(requestData: MasterPlayerModels.LinkGooglePlayGameServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
367
+ /**
368
+ * Sends the linkGooglePlayGameService operation and resolves with the typed response.
369
+ */
85
370
  linkGooglePlayGameServiceAsync(requestData: MasterPlayerModels.LinkGooglePlayGameServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse>;
371
+ /**
372
+ * Sends the linkGameCenter operation and returns the typed response via callback.
373
+ */
86
374
  linkGameCenter(requestData: MasterPlayerModels.LinkGameCenterRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGameCenterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
375
+ /**
376
+ * Sends the linkGameCenter operation and resolves with the typed response.
377
+ */
87
378
  linkGameCenterAsync(requestData: MasterPlayerModels.LinkGameCenterRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkGameCenterOperationResponse>;
379
+ /**
380
+ * Sends the linkiOSDeviceId operation and returns the typed response via callback.
381
+ */
88
382
  linkiOSDeviceId(requestData: MasterPlayerModels.LinkiOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
383
+ /**
384
+ * Sends the linkiOSDeviceId operation and resolves with the typed response.
385
+ */
89
386
  linkiOSDeviceIdAsync(requestData: MasterPlayerModels.LinkiOSDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse>;
387
+ /**
388
+ * Sends the linkLinuxDeviceId operation and returns the typed response via callback.
389
+ */
90
390
  linkLinuxDeviceId(requestData: MasterPlayerModels.LinkLinuxDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
391
+ /**
392
+ * Sends the linkLinuxDeviceId operation and resolves with the typed response.
393
+ */
91
394
  linkLinuxDeviceIdAsync(requestData: MasterPlayerModels.LinkLinuxDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse>;
395
+ /**
396
+ * Sends the linkMacOSDeviceId operation and returns the typed response via callback.
397
+ */
92
398
  linkMacOSDeviceId(requestData: MasterPlayerModels.LinkMacOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
399
+ /**
400
+ * Sends the linkMacOSDeviceId operation and resolves with the typed response.
401
+ */
93
402
  linkMacOSDeviceIdAsync(requestData: MasterPlayerModels.LinkMacOSDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse>;
403
+ /**
404
+ * Sends the linkWindowsDeviceId operation and returns the typed response via callback.
405
+ */
94
406
  linkWindowsDeviceId(requestData: MasterPlayerModels.LinkWindowsDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
407
+ /**
408
+ * Sends the linkWindowsDeviceId operation and resolves with the typed response.
409
+ */
95
410
  linkWindowsDeviceIdAsync(requestData: MasterPlayerModels.LinkWindowsDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse>;
411
+ /**
412
+ * Sends the linkWindowsPhoneDeviceId operation and returns the typed response via callback.
413
+ */
96
414
  linkWindowsPhoneDeviceId(requestData: MasterPlayerModels.LinkWindowsPhoneDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
415
+ /**
416
+ * Sends the linkWindowsPhoneDeviceId operation and resolves with the typed response.
417
+ */
97
418
  linkWindowsPhoneDeviceIdAsync(requestData: MasterPlayerModels.LinkWindowsPhoneDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse>;
419
+ /**
420
+ * Sends the removeSegment operation and returns the typed response via callback.
421
+ */
98
422
  removeSegment(requestData: MasterPlayerModels.RemoveSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
423
+ /**
424
+ * Sends the removeSegment operation and resolves with the typed response.
425
+ */
99
426
  removeSegmentAsync(requestData: MasterPlayerModels.RemoveSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.RemoveSegmentOperationResponse>;
427
+ /**
428
+ * Sends the removeTag operation and returns the typed response via callback.
429
+ */
100
430
  removeTag(requestData: MasterPlayerModels.RemoveTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
431
+ /**
432
+ * Sends the removeTag operation and resolves with the typed response.
433
+ */
101
434
  removeTagAsync(requestData: MasterPlayerModels.RemoveTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.RemoveTagOperationResponse>;
435
+ /**
436
+ * Sends the resetAccountPassword operation and returns the typed response via callback.
437
+ */
102
438
  resetAccountPassword(requestData: MasterPlayerModels.ResetAccountPasswordRequestData, onResponse?: Action1<MasterPlayerResponseModels.ResetAccountPasswordOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
439
+ /**
440
+ * Sends the resetAccountPassword operation and resolves with the typed response.
441
+ */
103
442
  resetAccountPasswordAsync(requestData: MasterPlayerModels.ResetAccountPasswordRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.ResetAccountPasswordOperationResponse>;
443
+ /**
444
+ * Sends the setAvatar operation and returns the typed response via callback.
445
+ */
104
446
  setAvatar(requestData: MasterPlayerModels.SetAvatarRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
447
+ /**
448
+ * Sends the setAvatar operation and resolves with the typed response.
449
+ */
105
450
  setAvatarAsync(requestData: MasterPlayerModels.SetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetAvatarOperationResponse>;
451
+ /**
452
+ * Sends the setCountryCode operation and returns the typed response via callback.
453
+ */
106
454
  setCountryCode(requestData: MasterPlayerModels.SetCountryCodeRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
455
+ /**
456
+ * Sends the setCountryCode operation and resolves with the typed response.
457
+ */
107
458
  setCountryCodeAsync(requestData: MasterPlayerModels.SetCountryCodeRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetCountryCodeOperationResponse>;
459
+ /**
460
+ * Sends the setCustomData operation and returns the typed response via callback.
461
+ */
108
462
  setCustomData(requestData: MasterPlayerModels.SetCustomDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
463
+ /**
464
+ * Sends the setCustomData operation and resolves with the typed response.
465
+ */
109
466
  setCustomDataAsync(requestData: MasterPlayerModels.SetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetCustomDataOperationResponse>;
467
+ /**
468
+ * Sends the setDisplayName operation and returns the typed response via callback.
469
+ */
110
470
  setDisplayName(requestData: MasterPlayerModels.SetDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
471
+ /**
472
+ * Sends the setDisplayName operation and resolves with the typed response.
473
+ */
111
474
  setDisplayNameAsync(requestData: MasterPlayerModels.SetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetDisplayNameOperationResponse>;
475
+ /**
476
+ * Sends the setEmail operation and returns the typed response via callback.
477
+ */
112
478
  setEmail(requestData: MasterPlayerModels.SetEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
479
+ /**
480
+ * Sends the setEmail operation and resolves with the typed response.
481
+ */
113
482
  setEmailAsync(requestData: MasterPlayerModels.SetEmailRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetEmailOperationResponse>;
483
+ /**
484
+ * Sends the setPlayerBan operation and returns the typed response via callback.
485
+ */
114
486
  setPlayerBan(requestData: MasterPlayerModels.SetPlayerBanRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
487
+ /**
488
+ * Sends the setPlayerBan operation and resolves with the typed response.
489
+ */
115
490
  setPlayerBanAsync(requestData: MasterPlayerModels.SetPlayerBanRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetPlayerBanOperationResponse>;
491
+ /**
492
+ * Sends the changePlayerCurrency operation and returns the typed response via callback.
493
+ */
116
494
  changePlayerCurrency(requestData: MasterPlayerModels.ChangePlayerCurrencyRequestData, onResponse?: Action1<MasterPlayerResponseModels.ChangePlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
495
+ /**
496
+ * Sends the changePlayerCurrency operation and resolves with the typed response.
497
+ */
117
498
  changePlayerCurrencyAsync(requestData: MasterPlayerModels.ChangePlayerCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.ChangePlayerCurrencyOperationResponse>;
499
+ /**
500
+ * Sends the setPlayerData operation and returns the typed response via callback.
501
+ */
118
502
  setPlayerData(requestData: MasterPlayerModels.SetPlayerDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
503
+ /**
504
+ * Sends the setPlayerData operation and resolves with the typed response.
505
+ */
119
506
  setPlayerDataAsync(requestData: MasterPlayerModels.SetPlayerDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetPlayerDataOperationResponse>;
507
+ /**
508
+ * Sends the changePlayerStatistics operation and returns the typed response via callback.
509
+ */
120
510
  changePlayerStatistics(requestData: MasterPlayerModels.ChangePlayerStatisticsRequestData, onResponse?: Action1<MasterPlayerResponseModels.ChangePlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
511
+ /**
512
+ * Sends the changePlayerStatistics operation and resolves with the typed response.
513
+ */
121
514
  changePlayerStatisticsAsync(requestData: MasterPlayerModels.ChangePlayerStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.ChangePlayerStatisticsOperationResponse>;
515
+ /**
516
+ * Sends the setTag operation and returns the typed response via callback.
517
+ */
122
518
  setTag(requestData: MasterPlayerModels.SetTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
519
+ /**
520
+ * Sends the setTag operation and resolves with the typed response.
521
+ */
123
522
  setTagAsync(requestData: MasterPlayerModels.SetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetTagOperationResponse>;
124
- setTsLastLogin(requestData: MasterPlayerModels.SetTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
125
- setTsLastLoginAsync(requestData: MasterPlayerModels.SetTsLastLoginRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetTsLastLoginOperationResponse>;
523
+ /**
524
+ * Sends the updateTsLastLogin operation and returns the typed response via callback.
525
+ */
526
+ updateTsLastLogin(requestData: MasterPlayerModels.UpdateTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.UpdateTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
527
+ /**
528
+ * Sends the updateTsLastLogin operation and resolves with the typed response.
529
+ */
530
+ updateTsLastLoginAsync(requestData: MasterPlayerModels.UpdateTsLastLoginRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UpdateTsLastLoginOperationResponse>;
531
+ /**
532
+ * Sends the unlinkAccount operation and returns the typed response via callback.
533
+ */
126
534
  unlinkAccount(requestData: MasterPlayerModels.UnlinkAccountRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
535
+ /**
536
+ * Sends the unlinkAccount operation and resolves with the typed response.
537
+ */
127
538
  unlinkAccountAsync(requestData: MasterPlayerModels.UnlinkAccountRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkAccountOperationResponse>;
539
+ /**
540
+ * Sends the unlinkAndroidDeviceId operation and returns the typed response via callback.
541
+ */
128
542
  unlinkAndroidDeviceId(requestData: MasterPlayerModels.UnlinkAndroidDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
543
+ /**
544
+ * Sends the unlinkAndroidDeviceId operation and resolves with the typed response.
545
+ */
129
546
  unlinkAndroidDeviceIdAsync(requestData: MasterPlayerModels.UnlinkAndroidDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse>;
547
+ /**
548
+ * Sends the unlinkApple operation and returns the typed response via callback.
549
+ */
130
550
  unlinkApple(requestData: MasterPlayerModels.UnlinkAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
551
+ /**
552
+ * Sends the unlinkApple operation and resolves with the typed response.
553
+ */
131
554
  unlinkAppleAsync(requestData: MasterPlayerModels.UnlinkAppleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkAppleOperationResponse>;
555
+ /**
556
+ * Sends the unlinkCustomDeviceId operation and returns the typed response via callback.
557
+ */
132
558
  unlinkCustomDeviceId(requestData: MasterPlayerModels.UnlinkCustomDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
559
+ /**
560
+ * Sends the unlinkCustomDeviceId operation and resolves with the typed response.
561
+ */
133
562
  unlinkCustomDeviceIdAsync(requestData: MasterPlayerModels.UnlinkCustomDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse>;
563
+ /**
564
+ * Sends the unlinkCustomId operation and returns the typed response via callback.
565
+ */
134
566
  unlinkCustomId(requestData: MasterPlayerModels.UnlinkCustomIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkCustomIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
567
+ /**
568
+ * Sends the unlinkCustomId operation and resolves with the typed response.
569
+ */
135
570
  unlinkCustomIdAsync(requestData: MasterPlayerModels.UnlinkCustomIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkCustomIdOperationResponse>;
571
+ /**
572
+ * Sends the unlinkEditorDeviceId operation and returns the typed response via callback.
573
+ */
136
574
  unlinkEditorDeviceId(requestData: MasterPlayerModels.UnlinkEditorDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
575
+ /**
576
+ * Sends the unlinkEditorDeviceId operation and resolves with the typed response.
577
+ */
137
578
  unlinkEditorDeviceIdAsync(requestData: MasterPlayerModels.UnlinkEditorDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse>;
579
+ /**
580
+ * Sends the unlinkFacebook operation and returns the typed response via callback.
581
+ */
138
582
  unlinkFacebook(requestData: MasterPlayerModels.UnlinkFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
583
+ /**
584
+ * Sends the unlinkFacebook operation and resolves with the typed response.
585
+ */
139
586
  unlinkFacebookAsync(requestData: MasterPlayerModels.UnlinkFacebookRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkFacebookOperationResponse>;
587
+ /**
588
+ * Sends the unlinkGenericService operation and returns the typed response via callback.
589
+ */
140
590
  unlinkGenericService(requestData: MasterPlayerModels.UnlinkGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
591
+ /**
592
+ * Sends the unlinkGenericService operation and resolves with the typed response.
593
+ */
141
594
  unlinkGenericServiceAsync(requestData: MasterPlayerModels.UnlinkGenericServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse>;
595
+ /**
596
+ * Sends the unlinkGoogle operation and returns the typed response via callback.
597
+ */
142
598
  unlinkGoogle(requestData: MasterPlayerModels.UnlinkGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
599
+ /**
600
+ * Sends the unlinkGoogle operation and resolves with the typed response.
601
+ */
143
602
  unlinkGoogleAsync(requestData: MasterPlayerModels.UnlinkGoogleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkGoogleOperationResponse>;
603
+ /**
604
+ * Sends the unlinkGooglePlayGameService operation and returns the typed response via callback.
605
+ */
144
606
  unlinkGooglePlayGameService(requestData: MasterPlayerModels.UnlinkGooglePlayGameServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
607
+ /**
608
+ * Sends the unlinkGooglePlayGameService operation and resolves with the typed response.
609
+ */
145
610
  unlinkGooglePlayGameServiceAsync(requestData: MasterPlayerModels.UnlinkGooglePlayGameServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse>;
611
+ /**
612
+ * Sends the unlinkGameCenter operation and returns the typed response via callback.
613
+ */
146
614
  unlinkGameCenter(requestData: MasterPlayerModels.UnlinkGameCenterRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGameCenterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
615
+ /**
616
+ * Sends the unlinkGameCenter operation and resolves with the typed response.
617
+ */
147
618
  unlinkGameCenterAsync(requestData: MasterPlayerModels.UnlinkGameCenterRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkGameCenterOperationResponse>;
619
+ /**
620
+ * Sends the unlinkiOSDeviceId operation and returns the typed response via callback.
621
+ */
148
622
  unlinkiOSDeviceId(requestData: MasterPlayerModels.UnlinkiOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
623
+ /**
624
+ * Sends the unlinkiOSDeviceId operation and resolves with the typed response.
625
+ */
149
626
  unlinkiOSDeviceIdAsync(requestData: MasterPlayerModels.UnlinkiOSDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse>;
627
+ /**
628
+ * Sends the unlinkLinuxDeviceId operation and returns the typed response via callback.
629
+ */
150
630
  unlinkLinuxDeviceId(requestData: MasterPlayerModels.UnlinkLinuxDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
631
+ /**
632
+ * Sends the unlinkLinuxDeviceId operation and resolves with the typed response.
633
+ */
151
634
  unlinkLinuxDeviceIdAsync(requestData: MasterPlayerModels.UnlinkLinuxDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse>;
635
+ /**
636
+ * Sends the unlinkMacOSDeviceId operation and returns the typed response via callback.
637
+ */
152
638
  unlinkMacOSDeviceId(requestData: MasterPlayerModels.UnlinkMacOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
639
+ /**
640
+ * Sends the unlinkMacOSDeviceId operation and resolves with the typed response.
641
+ */
153
642
  unlinkMacOSDeviceIdAsync(requestData: MasterPlayerModels.UnlinkMacOSDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse>;
643
+ /**
644
+ * Sends the unlinkWindowsDeviceId operation and returns the typed response via callback.
645
+ */
154
646
  unlinkWindowsDeviceId(requestData: MasterPlayerModels.UnlinkWindowsDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
647
+ /**
648
+ * Sends the unlinkWindowsDeviceId operation and resolves with the typed response.
649
+ */
155
650
  unlinkWindowsDeviceIdAsync(requestData: MasterPlayerModels.UnlinkWindowsDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse>;
651
+ /**
652
+ * Sends the unlinkWindowsPhoneDeviceId operation and returns the typed response via callback.
653
+ */
156
654
  unlinkWindowsPhoneDeviceId(requestData: MasterPlayerModels.UnlinkWindowsPhoneDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
655
+ /**
656
+ * Sends the unlinkWindowsPhoneDeviceId operation and resolves with the typed response.
657
+ */
157
658
  unlinkWindowsPhoneDeviceIdAsync(requestData: MasterPlayerModels.UnlinkWindowsPhoneDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse>;
659
+ /**
660
+ * Sends the getCurrencyLeaderboard operation and returns the typed response via callback.
661
+ */
158
662
  getCurrencyLeaderboard(requestData: MasterPlayerModels.GetCurrencyLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
663
+ /**
664
+ * Sends the getCurrencyLeaderboard operation and resolves with the typed response.
665
+ */
159
666
  getCurrencyLeaderboardAsync(requestData: MasterPlayerModels.GetCurrencyLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>;
667
+ /**
668
+ * Sends the getCreateLeaderboard operation and returns the typed response via callback.
669
+ */
160
670
  getCreateLeaderboard(requestData: MasterPlayerModels.GetCreateLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCreateLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
671
+ /**
672
+ * Sends the getCreateLeaderboard operation and resolves with the typed response.
673
+ */
161
674
  getCreateLeaderboardAsync(requestData: MasterPlayerModels.GetCreateLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCreateLeaderboardOperationResponse>;
675
+ /**
676
+ * Sends the getLastLoginLeaderboard operation and returns the typed response via callback.
677
+ */
162
678
  getLastLoginLeaderboard(requestData: MasterPlayerModels.GetLastLoginLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
679
+ /**
680
+ * Sends the getLastLoginLeaderboard operation and resolves with the typed response.
681
+ */
163
682
  getLastLoginLeaderboardAsync(requestData: MasterPlayerModels.GetLastLoginLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse>;
683
+ /**
684
+ * Sends the getStatisticsLog operation and returns the typed response via callback.
685
+ */
164
686
  getStatisticsLog(requestData: MasterPlayerModels.GetStatisticsLogRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
687
+ /**
688
+ * Sends the getStatisticsLog operation and resolves with the typed response.
689
+ */
165
690
  getStatisticsLogAsync(requestData: MasterPlayerModels.GetStatisticsLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetStatisticsLogOperationResponse>;
691
+ /**
692
+ * Sends the getCurrencyLog operation and returns the typed response via callback.
693
+ */
166
694
  getCurrencyLog(requestData: MasterPlayerModels.GetCurrencyLogRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCurrencyLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
695
+ /**
696
+ * Sends the getCurrencyLog operation and resolves with the typed response.
697
+ */
167
698
  getCurrencyLogAsync(requestData: MasterPlayerModels.GetCurrencyLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCurrencyLogOperationResponse>;
699
+ /**
700
+ * Sends the sendSocketOperationEvent operation and returns the typed response via callback.
701
+ */
168
702
  sendSocketOperationEvent(requestData: MasterPlayerModels.SendSocketOperationEventRequestData, onResponse?: Action1<MasterPlayerResponseModels.SendSocketOperationEventOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
703
+ /**
704
+ * Sends the sendSocketOperationEvent operation and resolves with the typed response.
705
+ */
169
706
  sendSocketOperationEventAsync(requestData: MasterPlayerModels.SendSocketOperationEventRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SendSocketOperationEventOperationResponse>;
707
+ /**
708
+ * Sends the sendEmail operation and returns the typed response via callback.
709
+ */
170
710
  sendEmail(requestData: MasterPlayerModels.SendEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.SendEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
711
+ /**
712
+ * Sends the sendEmail operation and resolves with the typed response.
713
+ */
171
714
  sendEmailAsync(requestData: MasterPlayerModels.SendEmailRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SendEmailOperationResponse>;
715
+ /**
716
+ * Sends the addPushNotification operation and returns the typed response via callback.
717
+ */
172
718
  addPushNotification(requestData: MasterPlayerModels.AddPushNotificationRequestData, onResponse?: Action1<MasterPlayerResponseModels.AddPushNotificationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
719
+ /**
720
+ * Sends the addPushNotification operation and resolves with the typed response.
721
+ */
173
722
  addPushNotificationAsync(requestData: MasterPlayerModels.AddPushNotificationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.AddPushNotificationOperationResponse>;
723
+ /**
724
+ * Sends the removePushNotification operation and returns the typed response via callback.
725
+ */
174
726
  removePushNotification(requestData: MasterPlayerModels.RemovePushNotificationRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemovePushNotificationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
727
+ /**
728
+ * Sends the removePushNotification operation and resolves with the typed response.
729
+ */
175
730
  removePushNotificationAsync(requestData: MasterPlayerModels.RemovePushNotificationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.RemovePushNotificationOperationResponse>;
731
+ /**
732
+ * Sends the getPushNotification operation and returns the typed response via callback.
733
+ */
176
734
  getPushNotification(requestData: MasterPlayerModels.GetPushNotificationRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPushNotificationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
735
+ /**
736
+ * Sends the getPushNotification operation and resolves with the typed response.
737
+ */
177
738
  getPushNotificationAsync(requestData: MasterPlayerModels.GetPushNotificationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPushNotificationOperationResponse>;
739
+ /**
740
+ * Sends the sendPushNotification operation and returns the typed response via callback.
741
+ */
178
742
  sendPushNotification(requestData: MasterPlayerModels.SendPushNotificationRequestData, onResponse?: Action1<MasterPlayerResponseModels.SendPushNotificationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
743
+ /**
744
+ * Sends the sendPushNotification operation and resolves with the typed response.
745
+ */
179
746
  sendPushNotificationAsync(requestData: MasterPlayerModels.SendPushNotificationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SendPushNotificationOperationResponse>;
180
747
  }
748
+ /**
749
+ * Server-scoped MasterPlayer namespace, reachable through
750
+ * `GNNetwork.masterPlayer.server`.
751
+ *
752
+ * Mirrors every method on {@link MasterPlayerApi} but uses the
753
+ * `Server*RequestData` DTO variants. The server flavour
754
+ * accepts an explicit `userId` so a trusted backend can act on
755
+ * behalf of any account without holding the player's auth
756
+ * token. Always pass a valid server-side `secretKey`.
757
+ */
181
758
  export declare class ServerMasterPlayerApi {
759
+ /**
760
+ * Sends the addSegment operation and returns the typed response via callback.
761
+ */
182
762
  addSegment(requestData: MasterPlayerModels.ServerAddSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
763
+ /**
764
+ * Sends the addSegment operation and resolves with the typed response.
765
+ */
183
766
  addSegmentAsync(requestData: MasterPlayerModels.ServerAddSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.AddSegmentOperationResponse>;
767
+ /**
768
+ * Sends the getAvatar operation and returns the typed response via callback.
769
+ */
184
770
  getAvatar(requestData: MasterPlayerModels.ServerGetAvatarRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
771
+ /**
772
+ * Sends the getAvatar operation and resolves with the typed response.
773
+ */
185
774
  getAvatarAsync(requestData: MasterPlayerModels.ServerGetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetAvatarOperationResponse>;
775
+ /**
776
+ * Sends the getCountryCode operation and returns the typed response via callback.
777
+ */
186
778
  getCountryCode(requestData: MasterPlayerModels.ServerGetCountryCodeRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
779
+ /**
780
+ * Sends the getCountryCode operation and resolves with the typed response.
781
+ */
187
782
  getCountryCodeAsync(requestData: MasterPlayerModels.ServerGetCountryCodeRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCountryCodeOperationResponse>;
783
+ /**
784
+ * Sends the getCustomData operation and returns the typed response via callback.
785
+ */
188
786
  getCustomData(requestData: MasterPlayerModels.ServerGetCustomDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
787
+ /**
788
+ * Sends the getCustomData operation and resolves with the typed response.
789
+ */
189
790
  getCustomDataAsync(requestData: MasterPlayerModels.ServerGetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCustomDataOperationResponse>;
791
+ /**
792
+ * Sends the getDisplayName operation and returns the typed response via callback.
793
+ */
190
794
  getDisplayName(requestData: MasterPlayerModels.ServerGetDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
795
+ /**
796
+ * Sends the getDisplayName operation and resolves with the typed response.
797
+ */
191
798
  getDisplayNameAsync(requestData: MasterPlayerModels.ServerGetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetDisplayNameOperationResponse>;
799
+ /**
800
+ * Sends the getEmail operation and returns the typed response via callback.
801
+ */
192
802
  getEmail(requestData: MasterPlayerModels.ServerGetEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
803
+ /**
804
+ * Sends the getEmail operation and resolves with the typed response.
805
+ */
193
806
  getEmailAsync(requestData: MasterPlayerModels.ServerGetEmailRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetEmailOperationResponse>;
807
+ /**
808
+ * Sends the getExternal operation and returns the typed response via callback.
809
+ */
194
810
  getExternal(requestData: MasterPlayerModels.ServerGetExternalRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetExternalOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
811
+ /**
812
+ * Sends the getExternal operation and resolves with the typed response.
813
+ */
195
814
  getExternalAsync(requestData: MasterPlayerModels.ServerGetExternalRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetExternalOperationResponse>;
815
+ /**
816
+ * Sends the getIpAddressCreate operation and returns the typed response via callback.
817
+ */
196
818
  getIpAddressCreate(requestData: MasterPlayerModels.ServerGetIpAddressCreateRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
819
+ /**
820
+ * Sends the getIpAddressCreate operation and resolves with the typed response.
821
+ */
197
822
  getIpAddressCreateAsync(requestData: MasterPlayerModels.ServerGetIpAddressCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetIpAddressCreateOperationResponse>;
823
+ /**
824
+ * Sends the getPlayerBan operation and returns the typed response via callback.
825
+ */
198
826
  getPlayerBan(requestData: MasterPlayerModels.ServerGetPlayerBanRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
827
+ /**
828
+ * Sends the getPlayerBan operation and resolves with the typed response.
829
+ */
199
830
  getPlayerBanAsync(requestData: MasterPlayerModels.ServerGetPlayerBanRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerBanOperationResponse>;
831
+ /**
832
+ * Sends the getPlayerCurrency operation and returns the typed response via callback.
833
+ */
200
834
  getPlayerCurrency(requestData: MasterPlayerModels.ServerGetPlayerCurrencyRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
835
+ /**
836
+ * Sends the getPlayerCurrency operation and resolves with the typed response.
837
+ */
201
838
  getPlayerCurrencyAsync(requestData: MasterPlayerModels.ServerGetPlayerCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse>;
839
+ /**
840
+ * Sends the getPlayerData operation and returns the typed response via callback.
841
+ */
202
842
  getPlayerData(requestData: MasterPlayerModels.ServerGetPlayerDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
843
+ /**
844
+ * Sends the getPlayerData operation and resolves with the typed response.
845
+ */
203
846
  getPlayerDataAsync(requestData: MasterPlayerModels.ServerGetPlayerDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerDataOperationResponse>;
847
+ /**
848
+ * Sends the getPlayerInformation operation and returns the typed response via callback.
849
+ */
204
850
  getPlayerInformation(requestData: MasterPlayerModels.ServerGetPlayerInformationRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
851
+ /**
852
+ * Sends the getPlayerInformation operation and resolves with the typed response.
853
+ */
205
854
  getPlayerInformationAsync(requestData: MasterPlayerModels.ServerGetPlayerInformationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerInformationOperationResponse>;
855
+ /**
856
+ * Sends the getPlayerStatistics operation and returns the typed response via callback.
857
+ */
206
858
  getPlayerStatistics(requestData: MasterPlayerModels.ServerGetPlayerStatisticsRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
859
+ /**
860
+ * Sends the getPlayerStatistics operation and resolves with the typed response.
861
+ */
207
862
  getPlayerStatisticsAsync(requestData: MasterPlayerModels.ServerGetPlayerStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse>;
863
+ /**
864
+ * Sends the getPlayersWithApple operation and returns the typed response via callback.
865
+ */
208
866
  getPlayersWithApple(requestData: MasterPlayerModels.ServerGetPlayersWithAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
867
+ /**
868
+ * Sends the getPlayersWithApple operation and resolves with the typed response.
869
+ */
209
870
  getPlayersWithAppleAsync(requestData: MasterPlayerModels.ServerGetPlayersWithAppleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse>;
871
+ /**
872
+ * Sends the getPlayersWithDisplayName operation and returns the typed response via callback.
873
+ */
210
874
  getPlayersWithDisplayName(requestData: MasterPlayerModels.ServerGetPlayersWithDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
875
+ /**
876
+ * Sends the getPlayersWithDisplayName operation and resolves with the typed response.
877
+ */
211
878
  getPlayersWithDisplayNameAsync(requestData: MasterPlayerModels.ServerGetPlayersWithDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>;
879
+ /**
880
+ * Sends the getPlayersWithFacebook operation and returns the typed response via callback.
881
+ */
212
882
  getPlayersWithFacebook(requestData: MasterPlayerModels.ServerGetPlayersWithFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
883
+ /**
884
+ * Sends the getPlayersWithFacebook operation and resolves with the typed response.
885
+ */
213
886
  getPlayersWithFacebookAsync(requestData: MasterPlayerModels.ServerGetPlayersWithFacebookRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse>;
887
+ /**
888
+ * Sends the getPlayersWithGenericService operation and returns the typed response via callback.
889
+ */
214
890
  getPlayersWithGenericService(requestData: MasterPlayerModels.ServerGetPlayersWithGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
891
+ /**
892
+ * Sends the getPlayersWithGenericService operation and resolves with the typed response.
893
+ */
215
894
  getPlayersWithGenericServiceAsync(requestData: MasterPlayerModels.ServerGetPlayersWithGenericServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse>;
895
+ /**
896
+ * Sends the getPlayersWithGoogle operation and returns the typed response via callback.
897
+ */
216
898
  getPlayersWithGoogle(requestData: MasterPlayerModels.ServerGetPlayersWithGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
899
+ /**
900
+ * Sends the getPlayersWithGoogle operation and resolves with the typed response.
901
+ */
217
902
  getPlayersWithGoogleAsync(requestData: MasterPlayerModels.ServerGetPlayersWithGoogleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse>;
903
+ /**
904
+ * Sends the getPlayersWithGooglePlayGameService operation and returns the typed response via callback.
905
+ */
218
906
  getPlayersWithGooglePlayGameService(requestData: MasterPlayerModels.ServerGetPlayersWithGooglePlayGameServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
907
+ /**
908
+ * Sends the getPlayersWithGooglePlayGameService operation and resolves with the typed response.
909
+ */
219
910
  getPlayersWithGooglePlayGameServiceAsync(requestData: MasterPlayerModels.ServerGetPlayersWithGooglePlayGameServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse>;
911
+ /**
912
+ * Sends the getPlayersWithGameCenter operation and returns the typed response via callback.
913
+ */
220
914
  getPlayersWithGameCenter(requestData: MasterPlayerModels.ServerGetPlayersWithGameCenterRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
915
+ /**
916
+ * Sends the getPlayersWithGameCenter operation and resolves with the typed response.
917
+ */
221
918
  getPlayersWithGameCenterAsync(requestData: MasterPlayerModels.ServerGetPlayersWithGameCenterRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse>;
919
+ /**
920
+ * Sends the getPlayersWithSegment operation and returns the typed response via callback.
921
+ */
222
922
  getPlayersWithSegment(requestData: MasterPlayerModels.ServerGetPlayersWithSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
923
+ /**
924
+ * Sends the getPlayersWithSegment operation and resolves with the typed response.
925
+ */
223
926
  getPlayersWithSegmentAsync(requestData: MasterPlayerModels.ServerGetPlayersWithSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>;
927
+ /**
928
+ * Sends the getPlayersWithTag operation and returns the typed response via callback.
929
+ */
224
930
  getPlayersWithTag(requestData: MasterPlayerModels.ServerGetPlayersWithTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
931
+ /**
932
+ * Sends the getPlayersWithTag operation and resolves with the typed response.
933
+ */
225
934
  getPlayersWithTagAsync(requestData: MasterPlayerModels.ServerGetPlayersWithTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithTagOperationResponse>;
935
+ /**
936
+ * Sends the getSegment operation and returns the typed response via callback.
937
+ */
226
938
  getSegment(requestData: MasterPlayerModels.ServerGetSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
939
+ /**
940
+ * Sends the getSegment operation and resolves with the typed response.
941
+ */
227
942
  getSegmentAsync(requestData: MasterPlayerModels.ServerGetSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetSegmentOperationResponse>;
943
+ /**
944
+ * Sends the getStatisticsLeaderboardAroundPlayer operation and returns the typed response via callback.
945
+ */
228
946
  getStatisticsLeaderboardAroundPlayer(requestData: MasterPlayerModels.ServerGetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
947
+ /**
948
+ * Sends the getStatisticsLeaderboardAroundPlayer operation and resolves with the typed response.
949
+ */
229
950
  getStatisticsLeaderboardAroundPlayerAsync(requestData: MasterPlayerModels.ServerGetStatisticsLeaderboardAroundPlayerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>;
951
+ /**
952
+ * Sends the getStatisticsLeaderboard operation and returns the typed response via callback.
953
+ */
230
954
  getStatisticsLeaderboard(requestData: MasterPlayerModels.ServerGetStatisticsLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
955
+ /**
956
+ * Sends the getStatisticsLeaderboard operation and resolves with the typed response.
957
+ */
231
958
  getStatisticsLeaderboardAsync(requestData: MasterPlayerModels.ServerGetStatisticsLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>;
959
+ /**
960
+ * Sends the getTag operation and returns the typed response via callback.
961
+ */
232
962
  getTag(requestData: MasterPlayerModels.ServerGetTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
963
+ /**
964
+ * Sends the getTag operation and resolves with the typed response.
965
+ */
233
966
  getTagAsync(requestData: MasterPlayerModels.ServerGetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetTagOperationResponse>;
967
+ /**
968
+ * Sends the getTsCreate operation and returns the typed response via callback.
969
+ */
234
970
  getTsCreate(requestData: MasterPlayerModels.ServerGetTsCreateRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
971
+ /**
972
+ * Sends the getTsCreate operation and resolves with the typed response.
973
+ */
235
974
  getTsCreateAsync(requestData: MasterPlayerModels.ServerGetTsCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetTsCreateOperationResponse>;
975
+ /**
976
+ * Sends the getTsLastLogin operation and returns the typed response via callback.
977
+ */
236
978
  getTsLastLogin(requestData: MasterPlayerModels.ServerGetTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
979
+ /**
980
+ * Sends the getTsLastLogin operation and resolves with the typed response.
981
+ */
237
982
  getTsLastLoginAsync(requestData: MasterPlayerModels.ServerGetTsLastLoginRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetTsLastLoginOperationResponse>;
983
+ /**
984
+ * Sends the linkAccount operation and returns the typed response via callback.
985
+ */
238
986
  linkAccount(requestData: MasterPlayerModels.ServerLinkAccountRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
987
+ /**
988
+ * Sends the linkAccount operation and resolves with the typed response.
989
+ */
239
990
  linkAccountAsync(requestData: MasterPlayerModels.ServerLinkAccountRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkAccountOperationResponse>;
991
+ /**
992
+ * Sends the linkAndroidDeviceId operation and returns the typed response via callback.
993
+ */
240
994
  linkAndroidDeviceId(requestData: MasterPlayerModels.ServerLinkAndroidDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
995
+ /**
996
+ * Sends the linkAndroidDeviceId operation and resolves with the typed response.
997
+ */
241
998
  linkAndroidDeviceIdAsync(requestData: MasterPlayerModels.ServerLinkAndroidDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse>;
999
+ /**
1000
+ * Sends the linkApple operation and returns the typed response via callback.
1001
+ */
242
1002
  linkApple(requestData: MasterPlayerModels.ServerLinkAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1003
+ /**
1004
+ * Sends the linkApple operation and resolves with the typed response.
1005
+ */
243
1006
  linkAppleAsync(requestData: MasterPlayerModels.ServerLinkAppleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkAppleOperationResponse>;
1007
+ /**
1008
+ * Sends the linkCustomDeviceId operation and returns the typed response via callback.
1009
+ */
244
1010
  linkCustomDeviceId(requestData: MasterPlayerModels.ServerLinkCustomDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1011
+ /**
1012
+ * Sends the linkCustomDeviceId operation and resolves with the typed response.
1013
+ */
245
1014
  linkCustomDeviceIdAsync(requestData: MasterPlayerModels.ServerLinkCustomDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse>;
1015
+ /**
1016
+ * Sends the linkCustomId operation and returns the typed response via callback.
1017
+ */
246
1018
  linkCustomId(requestData: MasterPlayerModels.ServerLinkCustomIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkCustomIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1019
+ /**
1020
+ * Sends the linkCustomId operation and resolves with the typed response.
1021
+ */
247
1022
  linkCustomIdAsync(requestData: MasterPlayerModels.ServerLinkCustomIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkCustomIdOperationResponse>;
1023
+ /**
1024
+ * Sends the linkEditorDeviceId operation and returns the typed response via callback.
1025
+ */
248
1026
  linkEditorDeviceId(requestData: MasterPlayerModels.ServerLinkEditorDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1027
+ /**
1028
+ * Sends the linkEditorDeviceId operation and resolves with the typed response.
1029
+ */
249
1030
  linkEditorDeviceIdAsync(requestData: MasterPlayerModels.ServerLinkEditorDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse>;
1031
+ /**
1032
+ * Sends the linkFacebook operation and returns the typed response via callback.
1033
+ */
250
1034
  linkFacebook(requestData: MasterPlayerModels.ServerLinkFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1035
+ /**
1036
+ * Sends the linkFacebook operation and resolves with the typed response.
1037
+ */
251
1038
  linkFacebookAsync(requestData: MasterPlayerModels.ServerLinkFacebookRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkFacebookOperationResponse>;
1039
+ /**
1040
+ * Sends the linkGenericService operation and returns the typed response via callback.
1041
+ */
252
1042
  linkGenericService(requestData: MasterPlayerModels.ServerLinkGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1043
+ /**
1044
+ * Sends the linkGenericService operation and resolves with the typed response.
1045
+ */
253
1046
  linkGenericServiceAsync(requestData: MasterPlayerModels.ServerLinkGenericServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkGenericServiceOperationResponse>;
1047
+ /**
1048
+ * Sends the linkGoogle operation and returns the typed response via callback.
1049
+ */
254
1050
  linkGoogle(requestData: MasterPlayerModels.ServerLinkGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1051
+ /**
1052
+ * Sends the linkGoogle operation and resolves with the typed response.
1053
+ */
255
1054
  linkGoogleAsync(requestData: MasterPlayerModels.ServerLinkGoogleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkGoogleOperationResponse>;
1055
+ /**
1056
+ * Sends the linkGooglePlayGameService operation and returns the typed response via callback.
1057
+ */
256
1058
  linkGooglePlayGameService(requestData: MasterPlayerModels.ServerLinkGooglePlayGameServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1059
+ /**
1060
+ * Sends the linkGooglePlayGameService operation and resolves with the typed response.
1061
+ */
257
1062
  linkGooglePlayGameServiceAsync(requestData: MasterPlayerModels.ServerLinkGooglePlayGameServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse>;
1063
+ /**
1064
+ * Sends the linkGameCenter operation and returns the typed response via callback.
1065
+ */
258
1066
  linkGameCenter(requestData: MasterPlayerModels.ServerLinkGameCenterRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGameCenterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1067
+ /**
1068
+ * Sends the linkGameCenter operation and resolves with the typed response.
1069
+ */
259
1070
  linkGameCenterAsync(requestData: MasterPlayerModels.ServerLinkGameCenterRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkGameCenterOperationResponse>;
1071
+ /**
1072
+ * Sends the linkiOSDeviceId operation and returns the typed response via callback.
1073
+ */
260
1074
  linkiOSDeviceId(requestData: MasterPlayerModels.ServerLinkiOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1075
+ /**
1076
+ * Sends the linkiOSDeviceId operation and resolves with the typed response.
1077
+ */
261
1078
  linkiOSDeviceIdAsync(requestData: MasterPlayerModels.ServerLinkiOSDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse>;
1079
+ /**
1080
+ * Sends the linkLinuxDeviceId operation and returns the typed response via callback.
1081
+ */
262
1082
  linkLinuxDeviceId(requestData: MasterPlayerModels.ServerLinkLinuxDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1083
+ /**
1084
+ * Sends the linkLinuxDeviceId operation and resolves with the typed response.
1085
+ */
263
1086
  linkLinuxDeviceIdAsync(requestData: MasterPlayerModels.ServerLinkLinuxDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse>;
1087
+ /**
1088
+ * Sends the linkMacOSDeviceId operation and returns the typed response via callback.
1089
+ */
264
1090
  linkMacOSDeviceId(requestData: MasterPlayerModels.ServerLinkMacOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1091
+ /**
1092
+ * Sends the linkMacOSDeviceId operation and resolves with the typed response.
1093
+ */
265
1094
  linkMacOSDeviceIdAsync(requestData: MasterPlayerModels.ServerLinkMacOSDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse>;
1095
+ /**
1096
+ * Sends the linkWindowsDeviceId operation and returns the typed response via callback.
1097
+ */
266
1098
  linkWindowsDeviceId(requestData: MasterPlayerModels.ServerLinkWindowsDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1099
+ /**
1100
+ * Sends the linkWindowsDeviceId operation and resolves with the typed response.
1101
+ */
267
1102
  linkWindowsDeviceIdAsync(requestData: MasterPlayerModels.ServerLinkWindowsDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse>;
1103
+ /**
1104
+ * Sends the linkWindowsPhoneDeviceId operation and returns the typed response via callback.
1105
+ */
268
1106
  linkWindowsPhoneDeviceId(requestData: MasterPlayerModels.ServerLinkWindowsPhoneDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1107
+ /**
1108
+ * Sends the linkWindowsPhoneDeviceId operation and resolves with the typed response.
1109
+ */
269
1110
  linkWindowsPhoneDeviceIdAsync(requestData: MasterPlayerModels.ServerLinkWindowsPhoneDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse>;
1111
+ /**
1112
+ * Sends the removeSegment operation and returns the typed response via callback.
1113
+ */
270
1114
  removeSegment(requestData: MasterPlayerModels.ServerRemoveSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1115
+ /**
1116
+ * Sends the removeSegment operation and resolves with the typed response.
1117
+ */
271
1118
  removeSegmentAsync(requestData: MasterPlayerModels.ServerRemoveSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.RemoveSegmentOperationResponse>;
1119
+ /**
1120
+ * Sends the removeTag operation and returns the typed response via callback.
1121
+ */
272
1122
  removeTag(requestData: MasterPlayerModels.ServerRemoveTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1123
+ /**
1124
+ * Sends the removeTag operation and resolves with the typed response.
1125
+ */
273
1126
  removeTagAsync(requestData: MasterPlayerModels.ServerRemoveTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.RemoveTagOperationResponse>;
1127
+ /**
1128
+ * Sends the resetAccountPassword operation and returns the typed response via callback.
1129
+ */
274
1130
  resetAccountPassword(requestData: MasterPlayerModels.ServerResetAccountPasswordRequestData, onResponse?: Action1<MasterPlayerResponseModels.ResetAccountPasswordOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1131
+ /**
1132
+ * Sends the resetAccountPassword operation and resolves with the typed response.
1133
+ */
275
1134
  resetAccountPasswordAsync(requestData: MasterPlayerModels.ServerResetAccountPasswordRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.ResetAccountPasswordOperationResponse>;
1135
+ /**
1136
+ * Sends the setAvatar operation and returns the typed response via callback.
1137
+ */
276
1138
  setAvatar(requestData: MasterPlayerModels.ServerSetAvatarRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1139
+ /**
1140
+ * Sends the setAvatar operation and resolves with the typed response.
1141
+ */
277
1142
  setAvatarAsync(requestData: MasterPlayerModels.ServerSetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetAvatarOperationResponse>;
1143
+ /**
1144
+ * Sends the setCountryCode operation and returns the typed response via callback.
1145
+ */
278
1146
  setCountryCode(requestData: MasterPlayerModels.ServerSetCountryCodeRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1147
+ /**
1148
+ * Sends the setCountryCode operation and resolves with the typed response.
1149
+ */
279
1150
  setCountryCodeAsync(requestData: MasterPlayerModels.ServerSetCountryCodeRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetCountryCodeOperationResponse>;
1151
+ /**
1152
+ * Sends the setCustomData operation and returns the typed response via callback.
1153
+ */
280
1154
  setCustomData(requestData: MasterPlayerModels.ServerSetCustomDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1155
+ /**
1156
+ * Sends the setCustomData operation and resolves with the typed response.
1157
+ */
281
1158
  setCustomDataAsync(requestData: MasterPlayerModels.ServerSetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetCustomDataOperationResponse>;
1159
+ /**
1160
+ * Sends the setDisplayName operation and returns the typed response via callback.
1161
+ */
282
1162
  setDisplayName(requestData: MasterPlayerModels.ServerSetDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1163
+ /**
1164
+ * Sends the setDisplayName operation and resolves with the typed response.
1165
+ */
283
1166
  setDisplayNameAsync(requestData: MasterPlayerModels.ServerSetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetDisplayNameOperationResponse>;
1167
+ /**
1168
+ * Sends the setEmail operation and returns the typed response via callback.
1169
+ */
284
1170
  setEmail(requestData: MasterPlayerModels.ServerSetEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1171
+ /**
1172
+ * Sends the setEmail operation and resolves with the typed response.
1173
+ */
285
1174
  setEmailAsync(requestData: MasterPlayerModels.ServerSetEmailRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetEmailOperationResponse>;
1175
+ /**
1176
+ * Sends the setPlayerBan operation and returns the typed response via callback.
1177
+ */
286
1178
  setPlayerBan(requestData: MasterPlayerModels.ServerSetPlayerBanRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1179
+ /**
1180
+ * Sends the setPlayerBan operation and resolves with the typed response.
1181
+ */
287
1182
  setPlayerBanAsync(requestData: MasterPlayerModels.ServerSetPlayerBanRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetPlayerBanOperationResponse>;
1183
+ /**
1184
+ * Sends the changePlayerCurrency operation and returns the typed response via callback.
1185
+ */
288
1186
  changePlayerCurrency(requestData: MasterPlayerModels.ServerChangePlayerCurrencyRequestData, onResponse?: Action1<MasterPlayerResponseModels.ChangePlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1187
+ /**
1188
+ * Sends the changePlayerCurrency operation and resolves with the typed response.
1189
+ */
289
1190
  changePlayerCurrencyAsync(requestData: MasterPlayerModels.ServerChangePlayerCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.ChangePlayerCurrencyOperationResponse>;
1191
+ /**
1192
+ * Sends the setPlayerData operation and returns the typed response via callback.
1193
+ */
290
1194
  setPlayerData(requestData: MasterPlayerModels.ServerSetPlayerDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1195
+ /**
1196
+ * Sends the setPlayerData operation and resolves with the typed response.
1197
+ */
291
1198
  setPlayerDataAsync(requestData: MasterPlayerModels.ServerSetPlayerDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetPlayerDataOperationResponse>;
1199
+ /**
1200
+ * Sends the changePlayerStatistics operation and returns the typed response via callback.
1201
+ */
292
1202
  changePlayerStatistics(requestData: MasterPlayerModels.ServerChangePlayerStatisticsRequestData, onResponse?: Action1<MasterPlayerResponseModels.ChangePlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1203
+ /**
1204
+ * Sends the changePlayerStatistics operation and resolves with the typed response.
1205
+ */
293
1206
  changePlayerStatisticsAsync(requestData: MasterPlayerModels.ServerChangePlayerStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.ChangePlayerStatisticsOperationResponse>;
1207
+ /**
1208
+ * Sends the setTag operation and returns the typed response via callback.
1209
+ */
294
1210
  setTag(requestData: MasterPlayerModels.ServerSetTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1211
+ /**
1212
+ * Sends the setTag operation and resolves with the typed response.
1213
+ */
295
1214
  setTagAsync(requestData: MasterPlayerModels.ServerSetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetTagOperationResponse>;
296
- setTsLastLogin(requestData: MasterPlayerModels.ServerSetTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
297
- setTsLastLoginAsync(requestData: MasterPlayerModels.ServerSetTsLastLoginRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetTsLastLoginOperationResponse>;
1215
+ /**
1216
+ * Sends the updateTsLastLogin operation and returns the typed response via callback.
1217
+ */
1218
+ updateTsLastLogin(requestData: MasterPlayerModels.ServerUpdateTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.UpdateTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1219
+ /**
1220
+ * Sends the updateTsLastLogin operation and resolves with the typed response.
1221
+ */
1222
+ updateTsLastLoginAsync(requestData: MasterPlayerModels.ServerUpdateTsLastLoginRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UpdateTsLastLoginOperationResponse>;
1223
+ /**
1224
+ * Sends the unlinkAccount operation and returns the typed response via callback.
1225
+ */
298
1226
  unlinkAccount(requestData: MasterPlayerModels.ServerUnlinkAccountRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1227
+ /**
1228
+ * Sends the unlinkAccount operation and resolves with the typed response.
1229
+ */
299
1230
  unlinkAccountAsync(requestData: MasterPlayerModels.ServerUnlinkAccountRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkAccountOperationResponse>;
1231
+ /**
1232
+ * Sends the unlinkAndroidDeviceId operation and returns the typed response via callback.
1233
+ */
300
1234
  unlinkAndroidDeviceId(requestData: MasterPlayerModels.ServerUnlinkAndroidDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1235
+ /**
1236
+ * Sends the unlinkAndroidDeviceId operation and resolves with the typed response.
1237
+ */
301
1238
  unlinkAndroidDeviceIdAsync(requestData: MasterPlayerModels.ServerUnlinkAndroidDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse>;
1239
+ /**
1240
+ * Sends the unlinkApple operation and returns the typed response via callback.
1241
+ */
302
1242
  unlinkApple(requestData: MasterPlayerModels.ServerUnlinkAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1243
+ /**
1244
+ * Sends the unlinkApple operation and resolves with the typed response.
1245
+ */
303
1246
  unlinkAppleAsync(requestData: MasterPlayerModels.ServerUnlinkAppleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkAppleOperationResponse>;
1247
+ /**
1248
+ * Sends the unlinkCustomDeviceId operation and returns the typed response via callback.
1249
+ */
304
1250
  unlinkCustomDeviceId(requestData: MasterPlayerModels.ServerUnlinkCustomDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1251
+ /**
1252
+ * Sends the unlinkCustomDeviceId operation and resolves with the typed response.
1253
+ */
305
1254
  unlinkCustomDeviceIdAsync(requestData: MasterPlayerModels.ServerUnlinkCustomDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse>;
1255
+ /**
1256
+ * Sends the unlinkCustomId operation and returns the typed response via callback.
1257
+ */
306
1258
  unlinkCustomId(requestData: MasterPlayerModels.ServerUnlinkCustomIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkCustomIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1259
+ /**
1260
+ * Sends the unlinkCustomId operation and resolves with the typed response.
1261
+ */
307
1262
  unlinkCustomIdAsync(requestData: MasterPlayerModels.ServerUnlinkCustomIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkCustomIdOperationResponse>;
1263
+ /**
1264
+ * Sends the unlinkEditorDeviceId operation and returns the typed response via callback.
1265
+ */
308
1266
  unlinkEditorDeviceId(requestData: MasterPlayerModels.ServerUnlinkEditorDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1267
+ /**
1268
+ * Sends the unlinkEditorDeviceId operation and resolves with the typed response.
1269
+ */
309
1270
  unlinkEditorDeviceIdAsync(requestData: MasterPlayerModels.ServerUnlinkEditorDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse>;
1271
+ /**
1272
+ * Sends the unlinkFacebook operation and returns the typed response via callback.
1273
+ */
310
1274
  unlinkFacebook(requestData: MasterPlayerModels.ServerUnlinkFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1275
+ /**
1276
+ * Sends the unlinkFacebook operation and resolves with the typed response.
1277
+ */
311
1278
  unlinkFacebookAsync(requestData: MasterPlayerModels.ServerUnlinkFacebookRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkFacebookOperationResponse>;
1279
+ /**
1280
+ * Sends the unlinkGenericService operation and returns the typed response via callback.
1281
+ */
312
1282
  unlinkGenericService(requestData: MasterPlayerModels.ServerUnlinkGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1283
+ /**
1284
+ * Sends the unlinkGenericService operation and resolves with the typed response.
1285
+ */
313
1286
  unlinkGenericServiceAsync(requestData: MasterPlayerModels.ServerUnlinkGenericServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse>;
1287
+ /**
1288
+ * Sends the unlinkGoogle operation and returns the typed response via callback.
1289
+ */
314
1290
  unlinkGoogle(requestData: MasterPlayerModels.ServerUnlinkGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1291
+ /**
1292
+ * Sends the unlinkGoogle operation and resolves with the typed response.
1293
+ */
315
1294
  unlinkGoogleAsync(requestData: MasterPlayerModels.ServerUnlinkGoogleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkGoogleOperationResponse>;
1295
+ /**
1296
+ * Sends the unlinkGooglePlayGameService operation and returns the typed response via callback.
1297
+ */
316
1298
  unlinkGooglePlayGameService(requestData: MasterPlayerModels.ServerUnlinkGooglePlayGameServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1299
+ /**
1300
+ * Sends the unlinkGooglePlayGameService operation and resolves with the typed response.
1301
+ */
317
1302
  unlinkGooglePlayGameServiceAsync(requestData: MasterPlayerModels.ServerUnlinkGooglePlayGameServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse>;
1303
+ /**
1304
+ * Sends the unlinkGameCenter operation and returns the typed response via callback.
1305
+ */
318
1306
  unlinkGameCenter(requestData: MasterPlayerModels.ServerUnlinkGameCenterRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGameCenterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1307
+ /**
1308
+ * Sends the unlinkGameCenter operation and resolves with the typed response.
1309
+ */
319
1310
  unlinkGameCenterAsync(requestData: MasterPlayerModels.ServerUnlinkGameCenterRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkGameCenterOperationResponse>;
1311
+ /**
1312
+ * Sends the unlinkiOSDeviceId operation and returns the typed response via callback.
1313
+ */
320
1314
  unlinkiOSDeviceId(requestData: MasterPlayerModels.ServerUnlinkiOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1315
+ /**
1316
+ * Sends the unlinkiOSDeviceId operation and resolves with the typed response.
1317
+ */
321
1318
  unlinkiOSDeviceIdAsync(requestData: MasterPlayerModels.ServerUnlinkiOSDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse>;
1319
+ /**
1320
+ * Sends the unlinkLinuxDeviceId operation and returns the typed response via callback.
1321
+ */
322
1322
  unlinkLinuxDeviceId(requestData: MasterPlayerModels.ServerUnlinkLinuxDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1323
+ /**
1324
+ * Sends the unlinkLinuxDeviceId operation and resolves with the typed response.
1325
+ */
323
1326
  unlinkLinuxDeviceIdAsync(requestData: MasterPlayerModels.ServerUnlinkLinuxDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse>;
1327
+ /**
1328
+ * Sends the unlinkMacOSDeviceId operation and returns the typed response via callback.
1329
+ */
324
1330
  unlinkMacOSDeviceId(requestData: MasterPlayerModels.ServerUnlinkMacOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1331
+ /**
1332
+ * Sends the unlinkMacOSDeviceId operation and resolves with the typed response.
1333
+ */
325
1334
  unlinkMacOSDeviceIdAsync(requestData: MasterPlayerModels.ServerUnlinkMacOSDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse>;
1335
+ /**
1336
+ * Sends the unlinkWindowsDeviceId operation and returns the typed response via callback.
1337
+ */
326
1338
  unlinkWindowsDeviceId(requestData: MasterPlayerModels.ServerUnlinkWindowsDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1339
+ /**
1340
+ * Sends the unlinkWindowsDeviceId operation and resolves with the typed response.
1341
+ */
327
1342
  unlinkWindowsDeviceIdAsync(requestData: MasterPlayerModels.ServerUnlinkWindowsDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse>;
1343
+ /**
1344
+ * Sends the unlinkWindowsPhoneDeviceId operation and returns the typed response via callback.
1345
+ */
328
1346
  unlinkWindowsPhoneDeviceId(requestData: MasterPlayerModels.ServerUnlinkWindowsPhoneDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1347
+ /**
1348
+ * Sends the unlinkWindowsPhoneDeviceId operation and resolves with the typed response.
1349
+ */
329
1350
  unlinkWindowsPhoneDeviceIdAsync(requestData: MasterPlayerModels.ServerUnlinkWindowsPhoneDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse>;
1351
+ /**
1352
+ * Sends the getCurrencyLeaderboard operation and returns the typed response via callback.
1353
+ */
330
1354
  getCurrencyLeaderboard(requestData: MasterPlayerModels.ServerGetCurrencyLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1355
+ /**
1356
+ * Sends the getCurrencyLeaderboard operation and resolves with the typed response.
1357
+ */
331
1358
  getCurrencyLeaderboardAsync(requestData: MasterPlayerModels.ServerGetCurrencyLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>;
1359
+ /**
1360
+ * Sends the getCreateLeaderboard operation and returns the typed response via callback.
1361
+ */
332
1362
  getCreateLeaderboard(requestData: MasterPlayerModels.ServerGetCreateLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCreateLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1363
+ /**
1364
+ * Sends the getCreateLeaderboard operation and resolves with the typed response.
1365
+ */
333
1366
  getCreateLeaderboardAsync(requestData: MasterPlayerModels.ServerGetCreateLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCreateLeaderboardOperationResponse>;
1367
+ /**
1368
+ * Sends the getLastLoginLeaderboard operation and returns the typed response via callback.
1369
+ */
334
1370
  getLastLoginLeaderboard(requestData: MasterPlayerModels.ServerGetLastLoginLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1371
+ /**
1372
+ * Sends the getLastLoginLeaderboard operation and resolves with the typed response.
1373
+ */
335
1374
  getLastLoginLeaderboardAsync(requestData: MasterPlayerModels.ServerGetLastLoginLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse>;
1375
+ /**
1376
+ * Sends the getStatisticsLog operation and returns the typed response via callback.
1377
+ */
336
1378
  getStatisticsLog(requestData: MasterPlayerModels.ServerGetStatisticsLogRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1379
+ /**
1380
+ * Sends the getStatisticsLog operation and resolves with the typed response.
1381
+ */
337
1382
  getStatisticsLogAsync(requestData: MasterPlayerModels.ServerGetStatisticsLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetStatisticsLogOperationResponse>;
1383
+ /**
1384
+ * Sends the getCurrencyLog operation and returns the typed response via callback.
1385
+ */
338
1386
  getCurrencyLog(requestData: MasterPlayerModels.ServerGetCurrencyLogRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCurrencyLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1387
+ /**
1388
+ * Sends the getCurrencyLog operation and resolves with the typed response.
1389
+ */
339
1390
  getCurrencyLogAsync(requestData: MasterPlayerModels.ServerGetCurrencyLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCurrencyLogOperationResponse>;
1391
+ /**
1392
+ * Sends the sendSocketOperationEvent operation and returns the typed response via callback.
1393
+ */
340
1394
  sendSocketOperationEvent(requestData: MasterPlayerModels.ServerSendSocketOperationEventRequestData, onResponse?: Action1<MasterPlayerResponseModels.SendSocketOperationEventOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1395
+ /**
1396
+ * Sends the sendSocketOperationEvent operation and resolves with the typed response.
1397
+ */
341
1398
  sendSocketOperationEventAsync(requestData: MasterPlayerModels.ServerSendSocketOperationEventRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SendSocketOperationEventOperationResponse>;
1399
+ /**
1400
+ * Sends the sendEmail operation and returns the typed response via callback.
1401
+ */
342
1402
  sendEmail(requestData: MasterPlayerModels.ServerSendEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.SendEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1403
+ /**
1404
+ * Sends the sendEmail operation and resolves with the typed response.
1405
+ */
343
1406
  sendEmailAsync(requestData: MasterPlayerModels.ServerSendEmailRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SendEmailOperationResponse>;
1407
+ /**
1408
+ * Sends the addPushNotification operation and returns the typed response via callback.
1409
+ */
344
1410
  addPushNotification(requestData: MasterPlayerModels.ServerAddPushNotificationRequestData, onResponse?: Action1<MasterPlayerResponseModels.AddPushNotificationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1411
+ /**
1412
+ * Sends the addPushNotification operation and resolves with the typed response.
1413
+ */
345
1414
  addPushNotificationAsync(requestData: MasterPlayerModels.ServerAddPushNotificationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.AddPushNotificationOperationResponse>;
1415
+ /**
1416
+ * Sends the removePushNotification operation and returns the typed response via callback.
1417
+ */
346
1418
  removePushNotification(requestData: MasterPlayerModels.ServerRemovePushNotificationRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemovePushNotificationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1419
+ /**
1420
+ * Sends the removePushNotification operation and resolves with the typed response.
1421
+ */
347
1422
  removePushNotificationAsync(requestData: MasterPlayerModels.ServerRemovePushNotificationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.RemovePushNotificationOperationResponse>;
1423
+ /**
1424
+ * Sends the getPushNotification operation and returns the typed response via callback.
1425
+ */
348
1426
  getPushNotification(requestData: MasterPlayerModels.ServerGetPushNotificationRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPushNotificationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1427
+ /**
1428
+ * Sends the getPushNotification operation and resolves with the typed response.
1429
+ */
349
1430
  getPushNotificationAsync(requestData: MasterPlayerModels.ServerGetPushNotificationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPushNotificationOperationResponse>;
1431
+ /**
1432
+ * Sends the sendPushNotification operation and returns the typed response via callback.
1433
+ */
350
1434
  sendPushNotification(requestData: MasterPlayerModels.ServerSendPushNotificationRequestData, onResponse?: Action1<MasterPlayerResponseModels.SendPushNotificationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1435
+ /**
1436
+ * Sends the sendPushNotification operation and resolves with the typed response.
1437
+ */
351
1438
  sendPushNotificationAsync(requestData: MasterPlayerModels.ServerSendPushNotificationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SendPushNotificationOperationResponse>;
352
1439
  }
1440
+ /**
1441
+ * Admin-scoped MasterPlayer namespace, reachable through
1442
+ * `GNNetwork.masterPlayer.admin`.
1443
+ *
1444
+ * Mirrors {@link ServerMasterPlayerApi} but routed through
1445
+ * {@link RequestRole.Admin}. The backend uses the caller's
1446
+ * admin auth token to authorise privileged operations such as
1447
+ * touching another tenant's accounts, force-resetting
1448
+ * credentials, granting / revoking bans, etc. Reserved for
1449
+ * dashboard / GM / backoffice tools.
1450
+ */
353
1451
  export declare class AdminMasterPlayerApi {
1452
+ /**
1453
+ * Sends the addSegment operation and returns the typed response via callback.
1454
+ */
354
1455
  addSegment(requestData: MasterPlayerModels.AdminAddSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1456
+ /**
1457
+ * Sends the addSegment operation and resolves with the typed response.
1458
+ */
355
1459
  addSegmentAsync(requestData: MasterPlayerModels.AdminAddSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.AddSegmentOperationResponse>;
1460
+ /**
1461
+ * Sends the getAvatar operation and returns the typed response via callback.
1462
+ */
356
1463
  getAvatar(requestData: MasterPlayerModels.AdminGetAvatarRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1464
+ /**
1465
+ * Sends the getAvatar operation and resolves with the typed response.
1466
+ */
357
1467
  getAvatarAsync(requestData: MasterPlayerModels.AdminGetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetAvatarOperationResponse>;
1468
+ /**
1469
+ * Sends the getCountryCode operation and returns the typed response via callback.
1470
+ */
358
1471
  getCountryCode(requestData: MasterPlayerModels.AdminGetCountryCodeRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1472
+ /**
1473
+ * Sends the getCountryCode operation and resolves with the typed response.
1474
+ */
359
1475
  getCountryCodeAsync(requestData: MasterPlayerModels.AdminGetCountryCodeRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCountryCodeOperationResponse>;
1476
+ /**
1477
+ * Sends the getCustomData operation and returns the typed response via callback.
1478
+ */
360
1479
  getCustomData(requestData: MasterPlayerModels.AdminGetCustomDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1480
+ /**
1481
+ * Sends the getCustomData operation and resolves with the typed response.
1482
+ */
361
1483
  getCustomDataAsync(requestData: MasterPlayerModels.AdminGetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCustomDataOperationResponse>;
1484
+ /**
1485
+ * Sends the getDisplayName operation and returns the typed response via callback.
1486
+ */
362
1487
  getDisplayName(requestData: MasterPlayerModels.AdminGetDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1488
+ /**
1489
+ * Sends the getDisplayName operation and resolves with the typed response.
1490
+ */
363
1491
  getDisplayNameAsync(requestData: MasterPlayerModels.AdminGetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetDisplayNameOperationResponse>;
1492
+ /**
1493
+ * Sends the getEmail operation and returns the typed response via callback.
1494
+ */
364
1495
  getEmail(requestData: MasterPlayerModels.AdminGetEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1496
+ /**
1497
+ * Sends the getEmail operation and resolves with the typed response.
1498
+ */
365
1499
  getEmailAsync(requestData: MasterPlayerModels.AdminGetEmailRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetEmailOperationResponse>;
1500
+ /**
1501
+ * Sends the getExternal operation and returns the typed response via callback.
1502
+ */
366
1503
  getExternal(requestData: MasterPlayerModels.AdminGetExternalRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetExternalOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1504
+ /**
1505
+ * Sends the getExternal operation and resolves with the typed response.
1506
+ */
367
1507
  getExternalAsync(requestData: MasterPlayerModels.AdminGetExternalRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetExternalOperationResponse>;
1508
+ /**
1509
+ * Sends the getIpAddressCreate operation and returns the typed response via callback.
1510
+ */
368
1511
  getIpAddressCreate(requestData: MasterPlayerModels.AdminGetIpAddressCreateRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1512
+ /**
1513
+ * Sends the getIpAddressCreate operation and resolves with the typed response.
1514
+ */
369
1515
  getIpAddressCreateAsync(requestData: MasterPlayerModels.AdminGetIpAddressCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetIpAddressCreateOperationResponse>;
1516
+ /**
1517
+ * Sends the getPlayerBan operation and returns the typed response via callback.
1518
+ */
370
1519
  getPlayerBan(requestData: MasterPlayerModels.AdminGetPlayerBanRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1520
+ /**
1521
+ * Sends the getPlayerBan operation and resolves with the typed response.
1522
+ */
371
1523
  getPlayerBanAsync(requestData: MasterPlayerModels.AdminGetPlayerBanRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerBanOperationResponse>;
1524
+ /**
1525
+ * Sends the getPlayerCurrency operation and returns the typed response via callback.
1526
+ */
372
1527
  getPlayerCurrency(requestData: MasterPlayerModels.AdminGetPlayerCurrencyRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1528
+ /**
1529
+ * Sends the getPlayerCurrency operation and resolves with the typed response.
1530
+ */
373
1531
  getPlayerCurrencyAsync(requestData: MasterPlayerModels.AdminGetPlayerCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse>;
1532
+ /**
1533
+ * Sends the getPlayerData operation and returns the typed response via callback.
1534
+ */
374
1535
  getPlayerData(requestData: MasterPlayerModels.AdminGetPlayerDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1536
+ /**
1537
+ * Sends the getPlayerData operation and resolves with the typed response.
1538
+ */
375
1539
  getPlayerDataAsync(requestData: MasterPlayerModels.AdminGetPlayerDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerDataOperationResponse>;
1540
+ /**
1541
+ * Sends the getPlayerInformation operation and returns the typed response via callback.
1542
+ */
376
1543
  getPlayerInformation(requestData: MasterPlayerModels.AdminGetPlayerInformationRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1544
+ /**
1545
+ * Sends the getPlayerInformation operation and resolves with the typed response.
1546
+ */
377
1547
  getPlayerInformationAsync(requestData: MasterPlayerModels.AdminGetPlayerInformationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerInformationOperationResponse>;
1548
+ /**
1549
+ * Sends the getPlayerStatistics operation and returns the typed response via callback.
1550
+ */
378
1551
  getPlayerStatistics(requestData: MasterPlayerModels.AdminGetPlayerStatisticsRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1552
+ /**
1553
+ * Sends the getPlayerStatistics operation and resolves with the typed response.
1554
+ */
379
1555
  getPlayerStatisticsAsync(requestData: MasterPlayerModels.AdminGetPlayerStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse>;
1556
+ /**
1557
+ * Sends the getPlayersWithApple operation and returns the typed response via callback.
1558
+ */
380
1559
  getPlayersWithApple(requestData: MasterPlayerModels.AdminGetPlayersWithAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1560
+ /**
1561
+ * Sends the getPlayersWithApple operation and resolves with the typed response.
1562
+ */
381
1563
  getPlayersWithAppleAsync(requestData: MasterPlayerModels.AdminGetPlayersWithAppleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse>;
1564
+ /**
1565
+ * Sends the getPlayersWithDisplayName operation and returns the typed response via callback.
1566
+ */
382
1567
  getPlayersWithDisplayName(requestData: MasterPlayerModels.AdminGetPlayersWithDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1568
+ /**
1569
+ * Sends the getPlayersWithDisplayName operation and resolves with the typed response.
1570
+ */
383
1571
  getPlayersWithDisplayNameAsync(requestData: MasterPlayerModels.AdminGetPlayersWithDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>;
1572
+ /**
1573
+ * Sends the getPlayersWithFacebook operation and returns the typed response via callback.
1574
+ */
384
1575
  getPlayersWithFacebook(requestData: MasterPlayerModels.AdminGetPlayersWithFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1576
+ /**
1577
+ * Sends the getPlayersWithFacebook operation and resolves with the typed response.
1578
+ */
385
1579
  getPlayersWithFacebookAsync(requestData: MasterPlayerModels.AdminGetPlayersWithFacebookRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse>;
1580
+ /**
1581
+ * Sends the getPlayersWithGenericService operation and returns the typed response via callback.
1582
+ */
386
1583
  getPlayersWithGenericService(requestData: MasterPlayerModels.AdminGetPlayersWithGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1584
+ /**
1585
+ * Sends the getPlayersWithGenericService operation and resolves with the typed response.
1586
+ */
387
1587
  getPlayersWithGenericServiceAsync(requestData: MasterPlayerModels.AdminGetPlayersWithGenericServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse>;
1588
+ /**
1589
+ * Sends the getPlayersWithGoogle operation and returns the typed response via callback.
1590
+ */
388
1591
  getPlayersWithGoogle(requestData: MasterPlayerModels.AdminGetPlayersWithGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1592
+ /**
1593
+ * Sends the getPlayersWithGoogle operation and resolves with the typed response.
1594
+ */
389
1595
  getPlayersWithGoogleAsync(requestData: MasterPlayerModels.AdminGetPlayersWithGoogleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse>;
1596
+ /**
1597
+ * Sends the getPlayersWithGooglePlayGameService operation and returns the typed response via callback.
1598
+ */
390
1599
  getPlayersWithGooglePlayGameService(requestData: MasterPlayerModels.AdminGetPlayersWithGooglePlayGameServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1600
+ /**
1601
+ * Sends the getPlayersWithGooglePlayGameService operation and resolves with the typed response.
1602
+ */
391
1603
  getPlayersWithGooglePlayGameServiceAsync(requestData: MasterPlayerModels.AdminGetPlayersWithGooglePlayGameServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse>;
1604
+ /**
1605
+ * Sends the getPlayersWithGameCenter operation and returns the typed response via callback.
1606
+ */
392
1607
  getPlayersWithGameCenter(requestData: MasterPlayerModels.AdminGetPlayersWithGameCenterRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1608
+ /**
1609
+ * Sends the getPlayersWithGameCenter operation and resolves with the typed response.
1610
+ */
393
1611
  getPlayersWithGameCenterAsync(requestData: MasterPlayerModels.AdminGetPlayersWithGameCenterRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse>;
1612
+ /**
1613
+ * Sends the getPlayersWithSegment operation and returns the typed response via callback.
1614
+ */
394
1615
  getPlayersWithSegment(requestData: MasterPlayerModels.AdminGetPlayersWithSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1616
+ /**
1617
+ * Sends the getPlayersWithSegment operation and resolves with the typed response.
1618
+ */
395
1619
  getPlayersWithSegmentAsync(requestData: MasterPlayerModels.AdminGetPlayersWithSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>;
1620
+ /**
1621
+ * Sends the getPlayersWithTag operation and returns the typed response via callback.
1622
+ */
396
1623
  getPlayersWithTag(requestData: MasterPlayerModels.AdminGetPlayersWithTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1624
+ /**
1625
+ * Sends the getPlayersWithTag operation and resolves with the typed response.
1626
+ */
397
1627
  getPlayersWithTagAsync(requestData: MasterPlayerModels.AdminGetPlayersWithTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPlayersWithTagOperationResponse>;
1628
+ /**
1629
+ * Sends the getSegment operation and returns the typed response via callback.
1630
+ */
398
1631
  getSegment(requestData: MasterPlayerModels.AdminGetSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1632
+ /**
1633
+ * Sends the getSegment operation and resolves with the typed response.
1634
+ */
399
1635
  getSegmentAsync(requestData: MasterPlayerModels.AdminGetSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetSegmentOperationResponse>;
1636
+ /**
1637
+ * Sends the getStatisticsLeaderboardAroundPlayer operation and returns the typed response via callback.
1638
+ */
400
1639
  getStatisticsLeaderboardAroundPlayer(requestData: MasterPlayerModels.AdminGetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1640
+ /**
1641
+ * Sends the getStatisticsLeaderboardAroundPlayer operation and resolves with the typed response.
1642
+ */
401
1643
  getStatisticsLeaderboardAroundPlayerAsync(requestData: MasterPlayerModels.AdminGetStatisticsLeaderboardAroundPlayerRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>;
1644
+ /**
1645
+ * Sends the getStatisticsLeaderboard operation and returns the typed response via callback.
1646
+ */
402
1647
  getStatisticsLeaderboard(requestData: MasterPlayerModels.AdminGetStatisticsLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1648
+ /**
1649
+ * Sends the getStatisticsLeaderboard operation and resolves with the typed response.
1650
+ */
403
1651
  getStatisticsLeaderboardAsync(requestData: MasterPlayerModels.AdminGetStatisticsLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>;
1652
+ /**
1653
+ * Sends the getTag operation and returns the typed response via callback.
1654
+ */
404
1655
  getTag(requestData: MasterPlayerModels.AdminGetTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1656
+ /**
1657
+ * Sends the getTag operation and resolves with the typed response.
1658
+ */
405
1659
  getTagAsync(requestData: MasterPlayerModels.AdminGetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetTagOperationResponse>;
1660
+ /**
1661
+ * Sends the getTsCreate operation and returns the typed response via callback.
1662
+ */
406
1663
  getTsCreate(requestData: MasterPlayerModels.AdminGetTsCreateRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1664
+ /**
1665
+ * Sends the getTsCreate operation and resolves with the typed response.
1666
+ */
407
1667
  getTsCreateAsync(requestData: MasterPlayerModels.AdminGetTsCreateRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetTsCreateOperationResponse>;
1668
+ /**
1669
+ * Sends the getTsLastLogin operation and returns the typed response via callback.
1670
+ */
408
1671
  getTsLastLogin(requestData: MasterPlayerModels.AdminGetTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1672
+ /**
1673
+ * Sends the getTsLastLogin operation and resolves with the typed response.
1674
+ */
409
1675
  getTsLastLoginAsync(requestData: MasterPlayerModels.AdminGetTsLastLoginRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetTsLastLoginOperationResponse>;
1676
+ /**
1677
+ * Sends the linkAccount operation and returns the typed response via callback.
1678
+ */
410
1679
  linkAccount(requestData: MasterPlayerModels.AdminLinkAccountRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1680
+ /**
1681
+ * Sends the linkAccount operation and resolves with the typed response.
1682
+ */
411
1683
  linkAccountAsync(requestData: MasterPlayerModels.AdminLinkAccountRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkAccountOperationResponse>;
1684
+ /**
1685
+ * Sends the linkAndroidDeviceId operation and returns the typed response via callback.
1686
+ */
412
1687
  linkAndroidDeviceId(requestData: MasterPlayerModels.AdminLinkAndroidDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1688
+ /**
1689
+ * Sends the linkAndroidDeviceId operation and resolves with the typed response.
1690
+ */
413
1691
  linkAndroidDeviceIdAsync(requestData: MasterPlayerModels.AdminLinkAndroidDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse>;
1692
+ /**
1693
+ * Sends the linkApple operation and returns the typed response via callback.
1694
+ */
414
1695
  linkApple(requestData: MasterPlayerModels.AdminLinkAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1696
+ /**
1697
+ * Sends the linkApple operation and resolves with the typed response.
1698
+ */
415
1699
  linkAppleAsync(requestData: MasterPlayerModels.AdminLinkAppleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkAppleOperationResponse>;
1700
+ /**
1701
+ * Sends the linkCustomDeviceId operation and returns the typed response via callback.
1702
+ */
416
1703
  linkCustomDeviceId(requestData: MasterPlayerModels.AdminLinkCustomDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1704
+ /**
1705
+ * Sends the linkCustomDeviceId operation and resolves with the typed response.
1706
+ */
417
1707
  linkCustomDeviceIdAsync(requestData: MasterPlayerModels.AdminLinkCustomDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse>;
1708
+ /**
1709
+ * Sends the linkCustomId operation and returns the typed response via callback.
1710
+ */
418
1711
  linkCustomId(requestData: MasterPlayerModels.AdminLinkCustomIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkCustomIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1712
+ /**
1713
+ * Sends the linkCustomId operation and resolves with the typed response.
1714
+ */
419
1715
  linkCustomIdAsync(requestData: MasterPlayerModels.AdminLinkCustomIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkCustomIdOperationResponse>;
1716
+ /**
1717
+ * Sends the linkEditorDeviceId operation and returns the typed response via callback.
1718
+ */
420
1719
  linkEditorDeviceId(requestData: MasterPlayerModels.AdminLinkEditorDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1720
+ /**
1721
+ * Sends the linkEditorDeviceId operation and resolves with the typed response.
1722
+ */
421
1723
  linkEditorDeviceIdAsync(requestData: MasterPlayerModels.AdminLinkEditorDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse>;
1724
+ /**
1725
+ * Sends the linkFacebook operation and returns the typed response via callback.
1726
+ */
422
1727
  linkFacebook(requestData: MasterPlayerModels.AdminLinkFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1728
+ /**
1729
+ * Sends the linkFacebook operation and resolves with the typed response.
1730
+ */
423
1731
  linkFacebookAsync(requestData: MasterPlayerModels.AdminLinkFacebookRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkFacebookOperationResponse>;
1732
+ /**
1733
+ * Sends the linkGenericService operation and returns the typed response via callback.
1734
+ */
424
1735
  linkGenericService(requestData: MasterPlayerModels.AdminLinkGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1736
+ /**
1737
+ * Sends the linkGenericService operation and resolves with the typed response.
1738
+ */
425
1739
  linkGenericServiceAsync(requestData: MasterPlayerModels.AdminLinkGenericServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkGenericServiceOperationResponse>;
1740
+ /**
1741
+ * Sends the linkGoogle operation and returns the typed response via callback.
1742
+ */
426
1743
  linkGoogle(requestData: MasterPlayerModels.AdminLinkGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1744
+ /**
1745
+ * Sends the linkGoogle operation and resolves with the typed response.
1746
+ */
427
1747
  linkGoogleAsync(requestData: MasterPlayerModels.AdminLinkGoogleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkGoogleOperationResponse>;
1748
+ /**
1749
+ * Sends the linkGooglePlayGameService operation and returns the typed response via callback.
1750
+ */
428
1751
  linkGooglePlayGameService(requestData: MasterPlayerModels.AdminLinkGooglePlayGameServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1752
+ /**
1753
+ * Sends the linkGooglePlayGameService operation and resolves with the typed response.
1754
+ */
429
1755
  linkGooglePlayGameServiceAsync(requestData: MasterPlayerModels.AdminLinkGooglePlayGameServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse>;
1756
+ /**
1757
+ * Sends the linkGameCenter operation and returns the typed response via callback.
1758
+ */
430
1759
  linkGameCenter(requestData: MasterPlayerModels.AdminLinkGameCenterRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkGameCenterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1760
+ /**
1761
+ * Sends the linkGameCenter operation and resolves with the typed response.
1762
+ */
431
1763
  linkGameCenterAsync(requestData: MasterPlayerModels.AdminLinkGameCenterRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkGameCenterOperationResponse>;
1764
+ /**
1765
+ * Sends the linkiOSDeviceId operation and returns the typed response via callback.
1766
+ */
432
1767
  linkiOSDeviceId(requestData: MasterPlayerModels.AdminLinkiOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1768
+ /**
1769
+ * Sends the linkiOSDeviceId operation and resolves with the typed response.
1770
+ */
433
1771
  linkiOSDeviceIdAsync(requestData: MasterPlayerModels.AdminLinkiOSDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse>;
1772
+ /**
1773
+ * Sends the linkLinuxDeviceId operation and returns the typed response via callback.
1774
+ */
434
1775
  linkLinuxDeviceId(requestData: MasterPlayerModels.AdminLinkLinuxDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1776
+ /**
1777
+ * Sends the linkLinuxDeviceId operation and resolves with the typed response.
1778
+ */
435
1779
  linkLinuxDeviceIdAsync(requestData: MasterPlayerModels.AdminLinkLinuxDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse>;
1780
+ /**
1781
+ * Sends the linkMacOSDeviceId operation and returns the typed response via callback.
1782
+ */
436
1783
  linkMacOSDeviceId(requestData: MasterPlayerModels.AdminLinkMacOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1784
+ /**
1785
+ * Sends the linkMacOSDeviceId operation and resolves with the typed response.
1786
+ */
437
1787
  linkMacOSDeviceIdAsync(requestData: MasterPlayerModels.AdminLinkMacOSDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse>;
1788
+ /**
1789
+ * Sends the linkWindowsDeviceId operation and returns the typed response via callback.
1790
+ */
438
1791
  linkWindowsDeviceId(requestData: MasterPlayerModels.AdminLinkWindowsDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1792
+ /**
1793
+ * Sends the linkWindowsDeviceId operation and resolves with the typed response.
1794
+ */
439
1795
  linkWindowsDeviceIdAsync(requestData: MasterPlayerModels.AdminLinkWindowsDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse>;
1796
+ /**
1797
+ * Sends the linkWindowsPhoneDeviceId operation and returns the typed response via callback.
1798
+ */
440
1799
  linkWindowsPhoneDeviceId(requestData: MasterPlayerModels.AdminLinkWindowsPhoneDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1800
+ /**
1801
+ * Sends the linkWindowsPhoneDeviceId operation and resolves with the typed response.
1802
+ */
441
1803
  linkWindowsPhoneDeviceIdAsync(requestData: MasterPlayerModels.AdminLinkWindowsPhoneDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse>;
1804
+ /**
1805
+ * Sends the removeSegment operation and returns the typed response via callback.
1806
+ */
442
1807
  removeSegment(requestData: MasterPlayerModels.AdminRemoveSegmentRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1808
+ /**
1809
+ * Sends the removeSegment operation and resolves with the typed response.
1810
+ */
443
1811
  removeSegmentAsync(requestData: MasterPlayerModels.AdminRemoveSegmentRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.RemoveSegmentOperationResponse>;
1812
+ /**
1813
+ * Sends the removeTag operation and returns the typed response via callback.
1814
+ */
444
1815
  removeTag(requestData: MasterPlayerModels.AdminRemoveTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1816
+ /**
1817
+ * Sends the removeTag operation and resolves with the typed response.
1818
+ */
445
1819
  removeTagAsync(requestData: MasterPlayerModels.AdminRemoveTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.RemoveTagOperationResponse>;
1820
+ /**
1821
+ * Sends the resetAccountPassword operation and returns the typed response via callback.
1822
+ */
446
1823
  resetAccountPassword(requestData: MasterPlayerModels.AdminResetAccountPasswordRequestData, onResponse?: Action1<MasterPlayerResponseModels.ResetAccountPasswordOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1824
+ /**
1825
+ * Sends the resetAccountPassword operation and resolves with the typed response.
1826
+ */
447
1827
  resetAccountPasswordAsync(requestData: MasterPlayerModels.AdminResetAccountPasswordRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.ResetAccountPasswordOperationResponse>;
1828
+ /**
1829
+ * Sends the setAvatar operation and returns the typed response via callback.
1830
+ */
448
1831
  setAvatar(requestData: MasterPlayerModels.AdminSetAvatarRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1832
+ /**
1833
+ * Sends the setAvatar operation and resolves with the typed response.
1834
+ */
449
1835
  setAvatarAsync(requestData: MasterPlayerModels.AdminSetAvatarRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetAvatarOperationResponse>;
1836
+ /**
1837
+ * Sends the setCountryCode operation and returns the typed response via callback.
1838
+ */
450
1839
  setCountryCode(requestData: MasterPlayerModels.AdminSetCountryCodeRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1840
+ /**
1841
+ * Sends the setCountryCode operation and resolves with the typed response.
1842
+ */
451
1843
  setCountryCodeAsync(requestData: MasterPlayerModels.AdminSetCountryCodeRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetCountryCodeOperationResponse>;
1844
+ /**
1845
+ * Sends the setCustomData operation and returns the typed response via callback.
1846
+ */
452
1847
  setCustomData(requestData: MasterPlayerModels.AdminSetCustomDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1848
+ /**
1849
+ * Sends the setCustomData operation and resolves with the typed response.
1850
+ */
453
1851
  setCustomDataAsync(requestData: MasterPlayerModels.AdminSetCustomDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetCustomDataOperationResponse>;
1852
+ /**
1853
+ * Sends the setDisplayName operation and returns the typed response via callback.
1854
+ */
454
1855
  setDisplayName(requestData: MasterPlayerModels.AdminSetDisplayNameRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1856
+ /**
1857
+ * Sends the setDisplayName operation and resolves with the typed response.
1858
+ */
455
1859
  setDisplayNameAsync(requestData: MasterPlayerModels.AdminSetDisplayNameRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetDisplayNameOperationResponse>;
1860
+ /**
1861
+ * Sends the setEmail operation and returns the typed response via callback.
1862
+ */
456
1863
  setEmail(requestData: MasterPlayerModels.AdminSetEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1864
+ /**
1865
+ * Sends the setEmail operation and resolves with the typed response.
1866
+ */
457
1867
  setEmailAsync(requestData: MasterPlayerModels.AdminSetEmailRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetEmailOperationResponse>;
1868
+ /**
1869
+ * Sends the setPlayerBan operation and returns the typed response via callback.
1870
+ */
458
1871
  setPlayerBan(requestData: MasterPlayerModels.AdminSetPlayerBanRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1872
+ /**
1873
+ * Sends the setPlayerBan operation and resolves with the typed response.
1874
+ */
459
1875
  setPlayerBanAsync(requestData: MasterPlayerModels.AdminSetPlayerBanRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetPlayerBanOperationResponse>;
1876
+ /**
1877
+ * Sends the changePlayerCurrency operation and returns the typed response via callback.
1878
+ */
460
1879
  changePlayerCurrency(requestData: MasterPlayerModels.AdminChangePlayerCurrencyRequestData, onResponse?: Action1<MasterPlayerResponseModels.ChangePlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1880
+ /**
1881
+ * Sends the changePlayerCurrency operation and resolves with the typed response.
1882
+ */
461
1883
  changePlayerCurrencyAsync(requestData: MasterPlayerModels.AdminChangePlayerCurrencyRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.ChangePlayerCurrencyOperationResponse>;
1884
+ /**
1885
+ * Sends the setPlayerData operation and returns the typed response via callback.
1886
+ */
462
1887
  setPlayerData(requestData: MasterPlayerModels.AdminSetPlayerDataRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1888
+ /**
1889
+ * Sends the setPlayerData operation and resolves with the typed response.
1890
+ */
463
1891
  setPlayerDataAsync(requestData: MasterPlayerModels.AdminSetPlayerDataRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetPlayerDataOperationResponse>;
1892
+ /**
1893
+ * Sends the changePlayerStatistics operation and returns the typed response via callback.
1894
+ */
464
1895
  changePlayerStatistics(requestData: MasterPlayerModels.AdminChangePlayerStatisticsRequestData, onResponse?: Action1<MasterPlayerResponseModels.ChangePlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1896
+ /**
1897
+ * Sends the changePlayerStatistics operation and resolves with the typed response.
1898
+ */
465
1899
  changePlayerStatisticsAsync(requestData: MasterPlayerModels.AdminChangePlayerStatisticsRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.ChangePlayerStatisticsOperationResponse>;
1900
+ /**
1901
+ * Sends the setTag operation and returns the typed response via callback.
1902
+ */
466
1903
  setTag(requestData: MasterPlayerModels.AdminSetTagRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1904
+ /**
1905
+ * Sends the setTag operation and resolves with the typed response.
1906
+ */
467
1907
  setTagAsync(requestData: MasterPlayerModels.AdminSetTagRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetTagOperationResponse>;
468
- setTsLastLogin(requestData: MasterPlayerModels.AdminSetTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.SetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
469
- setTsLastLoginAsync(requestData: MasterPlayerModels.AdminSetTsLastLoginRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SetTsLastLoginOperationResponse>;
1908
+ /**
1909
+ * Sends the updateTsLastLogin operation and returns the typed response via callback.
1910
+ */
1911
+ updateTsLastLogin(requestData: MasterPlayerModels.AdminUpdateTsLastLoginRequestData, onResponse?: Action1<MasterPlayerResponseModels.UpdateTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1912
+ /**
1913
+ * Sends the updateTsLastLogin operation and resolves with the typed response.
1914
+ */
1915
+ updateTsLastLoginAsync(requestData: MasterPlayerModels.AdminUpdateTsLastLoginRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UpdateTsLastLoginOperationResponse>;
1916
+ /**
1917
+ * Sends the unlinkAccount operation and returns the typed response via callback.
1918
+ */
470
1919
  unlinkAccount(requestData: MasterPlayerModels.AdminUnlinkAccountRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1920
+ /**
1921
+ * Sends the unlinkAccount operation and resolves with the typed response.
1922
+ */
471
1923
  unlinkAccountAsync(requestData: MasterPlayerModels.AdminUnlinkAccountRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkAccountOperationResponse>;
1924
+ /**
1925
+ * Sends the unlinkAndroidDeviceId operation and returns the typed response via callback.
1926
+ */
472
1927
  unlinkAndroidDeviceId(requestData: MasterPlayerModels.AdminUnlinkAndroidDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1928
+ /**
1929
+ * Sends the unlinkAndroidDeviceId operation and resolves with the typed response.
1930
+ */
473
1931
  unlinkAndroidDeviceIdAsync(requestData: MasterPlayerModels.AdminUnlinkAndroidDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse>;
1932
+ /**
1933
+ * Sends the unlinkApple operation and returns the typed response via callback.
1934
+ */
474
1935
  unlinkApple(requestData: MasterPlayerModels.AdminUnlinkAppleRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkAppleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1936
+ /**
1937
+ * Sends the unlinkApple operation and resolves with the typed response.
1938
+ */
475
1939
  unlinkAppleAsync(requestData: MasterPlayerModels.AdminUnlinkAppleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkAppleOperationResponse>;
1940
+ /**
1941
+ * Sends the unlinkCustomDeviceId operation and returns the typed response via callback.
1942
+ */
476
1943
  unlinkCustomDeviceId(requestData: MasterPlayerModels.AdminUnlinkCustomDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1944
+ /**
1945
+ * Sends the unlinkCustomDeviceId operation and resolves with the typed response.
1946
+ */
477
1947
  unlinkCustomDeviceIdAsync(requestData: MasterPlayerModels.AdminUnlinkCustomDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse>;
1948
+ /**
1949
+ * Sends the unlinkCustomId operation and returns the typed response via callback.
1950
+ */
478
1951
  unlinkCustomId(requestData: MasterPlayerModels.AdminUnlinkCustomIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkCustomIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1952
+ /**
1953
+ * Sends the unlinkCustomId operation and resolves with the typed response.
1954
+ */
479
1955
  unlinkCustomIdAsync(requestData: MasterPlayerModels.AdminUnlinkCustomIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkCustomIdOperationResponse>;
1956
+ /**
1957
+ * Sends the unlinkEditorDeviceId operation and returns the typed response via callback.
1958
+ */
480
1959
  unlinkEditorDeviceId(requestData: MasterPlayerModels.AdminUnlinkEditorDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1960
+ /**
1961
+ * Sends the unlinkEditorDeviceId operation and resolves with the typed response.
1962
+ */
481
1963
  unlinkEditorDeviceIdAsync(requestData: MasterPlayerModels.AdminUnlinkEditorDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse>;
1964
+ /**
1965
+ * Sends the unlinkFacebook operation and returns the typed response via callback.
1966
+ */
482
1967
  unlinkFacebook(requestData: MasterPlayerModels.AdminUnlinkFacebookRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkFacebookOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1968
+ /**
1969
+ * Sends the unlinkFacebook operation and resolves with the typed response.
1970
+ */
483
1971
  unlinkFacebookAsync(requestData: MasterPlayerModels.AdminUnlinkFacebookRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkFacebookOperationResponse>;
1972
+ /**
1973
+ * Sends the unlinkGenericService operation and returns the typed response via callback.
1974
+ */
484
1975
  unlinkGenericService(requestData: MasterPlayerModels.AdminUnlinkGenericServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1976
+ /**
1977
+ * Sends the unlinkGenericService operation and resolves with the typed response.
1978
+ */
485
1979
  unlinkGenericServiceAsync(requestData: MasterPlayerModels.AdminUnlinkGenericServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse>;
1980
+ /**
1981
+ * Sends the unlinkGoogle operation and returns the typed response via callback.
1982
+ */
486
1983
  unlinkGoogle(requestData: MasterPlayerModels.AdminUnlinkGoogleRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGoogleOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1984
+ /**
1985
+ * Sends the unlinkGoogle operation and resolves with the typed response.
1986
+ */
487
1987
  unlinkGoogleAsync(requestData: MasterPlayerModels.AdminUnlinkGoogleRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkGoogleOperationResponse>;
1988
+ /**
1989
+ * Sends the unlinkGooglePlayGameService operation and returns the typed response via callback.
1990
+ */
488
1991
  unlinkGooglePlayGameService(requestData: MasterPlayerModels.AdminUnlinkGooglePlayGameServiceRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
1992
+ /**
1993
+ * Sends the unlinkGooglePlayGameService operation and resolves with the typed response.
1994
+ */
489
1995
  unlinkGooglePlayGameServiceAsync(requestData: MasterPlayerModels.AdminUnlinkGooglePlayGameServiceRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse>;
1996
+ /**
1997
+ * Sends the unlinkGameCenter operation and returns the typed response via callback.
1998
+ */
490
1999
  unlinkGameCenter(requestData: MasterPlayerModels.AdminUnlinkGameCenterRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkGameCenterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2000
+ /**
2001
+ * Sends the unlinkGameCenter operation and resolves with the typed response.
2002
+ */
491
2003
  unlinkGameCenterAsync(requestData: MasterPlayerModels.AdminUnlinkGameCenterRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkGameCenterOperationResponse>;
2004
+ /**
2005
+ * Sends the unlinkiOSDeviceId operation and returns the typed response via callback.
2006
+ */
492
2007
  unlinkiOSDeviceId(requestData: MasterPlayerModels.AdminUnlinkiOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2008
+ /**
2009
+ * Sends the unlinkiOSDeviceId operation and resolves with the typed response.
2010
+ */
493
2011
  unlinkiOSDeviceIdAsync(requestData: MasterPlayerModels.AdminUnlinkiOSDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse>;
2012
+ /**
2013
+ * Sends the unlinkLinuxDeviceId operation and returns the typed response via callback.
2014
+ */
494
2015
  unlinkLinuxDeviceId(requestData: MasterPlayerModels.AdminUnlinkLinuxDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2016
+ /**
2017
+ * Sends the unlinkLinuxDeviceId operation and resolves with the typed response.
2018
+ */
495
2019
  unlinkLinuxDeviceIdAsync(requestData: MasterPlayerModels.AdminUnlinkLinuxDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse>;
2020
+ /**
2021
+ * Sends the unlinkMacOSDeviceId operation and returns the typed response via callback.
2022
+ */
496
2023
  unlinkMacOSDeviceId(requestData: MasterPlayerModels.AdminUnlinkMacOSDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2024
+ /**
2025
+ * Sends the unlinkMacOSDeviceId operation and resolves with the typed response.
2026
+ */
497
2027
  unlinkMacOSDeviceIdAsync(requestData: MasterPlayerModels.AdminUnlinkMacOSDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse>;
2028
+ /**
2029
+ * Sends the unlinkWindowsDeviceId operation and returns the typed response via callback.
2030
+ */
498
2031
  unlinkWindowsDeviceId(requestData: MasterPlayerModels.AdminUnlinkWindowsDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2032
+ /**
2033
+ * Sends the unlinkWindowsDeviceId operation and resolves with the typed response.
2034
+ */
499
2035
  unlinkWindowsDeviceIdAsync(requestData: MasterPlayerModels.AdminUnlinkWindowsDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse>;
2036
+ /**
2037
+ * Sends the unlinkWindowsPhoneDeviceId operation and returns the typed response via callback.
2038
+ */
500
2039
  unlinkWindowsPhoneDeviceId(requestData: MasterPlayerModels.AdminUnlinkWindowsPhoneDeviceIdRequestData, onResponse?: Action1<MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2040
+ /**
2041
+ * Sends the unlinkWindowsPhoneDeviceId operation and resolves with the typed response.
2042
+ */
501
2043
  unlinkWindowsPhoneDeviceIdAsync(requestData: MasterPlayerModels.AdminUnlinkWindowsPhoneDeviceIdRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse>;
2044
+ /**
2045
+ * Sends the getCurrencyLeaderboard operation and returns the typed response via callback.
2046
+ */
502
2047
  getCurrencyLeaderboard(requestData: MasterPlayerModels.AdminGetCurrencyLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2048
+ /**
2049
+ * Sends the getCurrencyLeaderboard operation and resolves with the typed response.
2050
+ */
503
2051
  getCurrencyLeaderboardAsync(requestData: MasterPlayerModels.AdminGetCurrencyLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>;
2052
+ /**
2053
+ * Sends the getCreateLeaderboard operation and returns the typed response via callback.
2054
+ */
504
2055
  getCreateLeaderboard(requestData: MasterPlayerModels.AdminGetCreateLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCreateLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2056
+ /**
2057
+ * Sends the getCreateLeaderboard operation and resolves with the typed response.
2058
+ */
505
2059
  getCreateLeaderboardAsync(requestData: MasterPlayerModels.AdminGetCreateLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCreateLeaderboardOperationResponse>;
2060
+ /**
2061
+ * Sends the getLastLoginLeaderboard operation and returns the typed response via callback.
2062
+ */
506
2063
  getLastLoginLeaderboard(requestData: MasterPlayerModels.AdminGetLastLoginLeaderboardRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2064
+ /**
2065
+ * Sends the getLastLoginLeaderboard operation and resolves with the typed response.
2066
+ */
507
2067
  getLastLoginLeaderboardAsync(requestData: MasterPlayerModels.AdminGetLastLoginLeaderboardRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse>;
2068
+ /**
2069
+ * Sends the getStatisticsLog operation and returns the typed response via callback.
2070
+ */
508
2071
  getStatisticsLog(requestData: MasterPlayerModels.AdminGetStatisticsLogRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetStatisticsLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2072
+ /**
2073
+ * Sends the getStatisticsLog operation and resolves with the typed response.
2074
+ */
509
2075
  getStatisticsLogAsync(requestData: MasterPlayerModels.AdminGetStatisticsLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetStatisticsLogOperationResponse>;
2076
+ /**
2077
+ * Sends the getCurrencyLog operation and returns the typed response via callback.
2078
+ */
510
2079
  getCurrencyLog(requestData: MasterPlayerModels.AdminGetCurrencyLogRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetCurrencyLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2080
+ /**
2081
+ * Sends the getCurrencyLog operation and resolves with the typed response.
2082
+ */
511
2083
  getCurrencyLogAsync(requestData: MasterPlayerModels.AdminGetCurrencyLogRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetCurrencyLogOperationResponse>;
2084
+ /**
2085
+ * Sends the sendSocketOperationEvent operation and returns the typed response via callback.
2086
+ */
512
2087
  sendSocketOperationEvent(requestData: MasterPlayerModels.AdminSendSocketOperationEventRequestData, onResponse?: Action1<MasterPlayerResponseModels.SendSocketOperationEventOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2088
+ /**
2089
+ * Sends the sendSocketOperationEvent operation and resolves with the typed response.
2090
+ */
513
2091
  sendSocketOperationEventAsync(requestData: MasterPlayerModels.AdminSendSocketOperationEventRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SendSocketOperationEventOperationResponse>;
2092
+ /**
2093
+ * Sends the sendEmail operation and returns the typed response via callback.
2094
+ */
514
2095
  sendEmail(requestData: MasterPlayerModels.AdminSendEmailRequestData, onResponse?: Action1<MasterPlayerResponseModels.SendEmailOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2096
+ /**
2097
+ * Sends the sendEmail operation and resolves with the typed response.
2098
+ */
515
2099
  sendEmailAsync(requestData: MasterPlayerModels.AdminSendEmailRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SendEmailOperationResponse>;
2100
+ /**
2101
+ * Sends the addPushNotification operation and returns the typed response via callback.
2102
+ */
516
2103
  addPushNotification(requestData: MasterPlayerModels.AdminAddPushNotificationRequestData, onResponse?: Action1<MasterPlayerResponseModels.AddPushNotificationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2104
+ /**
2105
+ * Sends the addPushNotification operation and resolves with the typed response.
2106
+ */
517
2107
  addPushNotificationAsync(requestData: MasterPlayerModels.AdminAddPushNotificationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.AddPushNotificationOperationResponse>;
2108
+ /**
2109
+ * Sends the removePushNotification operation and returns the typed response via callback.
2110
+ */
518
2111
  removePushNotification(requestData: MasterPlayerModels.AdminRemovePushNotificationRequestData, onResponse?: Action1<MasterPlayerResponseModels.RemovePushNotificationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2112
+ /**
2113
+ * Sends the removePushNotification operation and resolves with the typed response.
2114
+ */
519
2115
  removePushNotificationAsync(requestData: MasterPlayerModels.AdminRemovePushNotificationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.RemovePushNotificationOperationResponse>;
2116
+ /**
2117
+ * Sends the getPushNotification operation and returns the typed response via callback.
2118
+ */
520
2119
  getPushNotification(requestData: MasterPlayerModels.AdminGetPushNotificationRequestData, onResponse?: Action1<MasterPlayerResponseModels.GetPushNotificationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2120
+ /**
2121
+ * Sends the getPushNotification operation and resolves with the typed response.
2122
+ */
521
2123
  getPushNotificationAsync(requestData: MasterPlayerModels.AdminGetPushNotificationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.GetPushNotificationOperationResponse>;
2124
+ /**
2125
+ * Sends the sendPushNotification operation and returns the typed response via callback.
2126
+ */
522
2127
  sendPushNotification(requestData: MasterPlayerModels.AdminSendPushNotificationRequestData, onResponse?: Action1<MasterPlayerResponseModels.SendPushNotificationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
2128
+ /**
2129
+ * Sends the sendPushNotification operation and resolves with the typed response.
2130
+ */
523
2131
  sendPushNotificationAsync(requestData: MasterPlayerModels.AdminSendPushNotificationRequestData, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): Promise<MasterPlayerResponseModels.SendPushNotificationOperationResponse>;
524
2132
  }