@xmobitea/gn-typescript-client 2.6.13 → 2.6.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (286) hide show
  1. package/AGENTS.md +37 -0
  2. package/README.MD +420 -1
  3. package/dist/gearn.js.client.js +25056 -1056
  4. package/dist/gearn.js.client.min.js +1 -1
  5. package/dist/index.d.ts +30 -0
  6. package/dist/index.js +24236 -212
  7. package/dist/runtime/GNNetwork.d.ts +687 -3
  8. package/dist/runtime/GNNetworkAuthenticateApi.d.ts +327 -0
  9. package/dist/runtime/GNNetworkCharacterPlayerApi.d.ts +1026 -0
  10. package/dist/runtime/GNNetworkCloudScriptApi.d.ts +141 -0
  11. package/dist/runtime/GNNetworkContentApi.d.ts +243 -0
  12. package/dist/runtime/GNNetworkDashboardApi.d.ts +221 -0
  13. package/dist/runtime/GNNetworkGamePlayerApi.d.ts +1033 -0
  14. package/dist/runtime/GNNetworkGroupApi.d.ts +783 -0
  15. package/dist/runtime/GNNetworkInventoryApi.d.ts +673 -0
  16. package/dist/runtime/GNNetworkMasterPlayerApi.d.ts +1614 -6
  17. package/dist/runtime/GNNetworkMultiplayerApi.d.ts +234 -0
  18. package/dist/runtime/GNNetworkStoreInventoryApi.d.ts +309 -0
  19. package/dist/runtime/common/Action0.d.ts +30 -0
  20. package/dist/runtime/common/Action1.d.ts +32 -0
  21. package/dist/runtime/common/Action2.d.ts +21 -0
  22. package/dist/runtime/common/Action3.d.ts +16 -0
  23. package/dist/runtime/common/Action4.d.ts +17 -0
  24. package/dist/runtime/common/GNData.d.ts +368 -0
  25. package/dist/runtime/config/GNServerSettings.d.ts +442 -12
  26. package/dist/runtime/constant/Commands.d.ts +80 -0
  27. package/dist/runtime/constant/EventCode.d.ts +48 -0
  28. package/dist/runtime/constant/OperationCode.d.ts +74 -1
  29. package/dist/runtime/constant/ReturnCode.d.ts +72 -0
  30. package/dist/runtime/constant/enumType/ExecuteResponseStatus.d.ts +31 -0
  31. package/dist/runtime/constant/enumType/FriendStatus.d.ts +39 -0
  32. package/dist/runtime/constant/enumType/GoogleLoginType.d.ts +23 -0
  33. package/dist/runtime/constant/enumType/GroupStatus.d.ts +32 -0
  34. package/dist/runtime/constant/enumType/InvalidMemberType.d.ts +75 -0
  35. package/dist/runtime/constant/enumType/ItemType.d.ts +23 -0
  36. package/dist/runtime/constant/enumType/MatchStatus.d.ts +30 -0
  37. package/dist/runtime/constant/enumType/MatchmakingMemberStatus.d.ts +24 -0
  38. package/dist/runtime/constant/enumType/MatchmakingTicketStatus.d.ts +34 -0
  39. package/dist/runtime/constant/enumType/OwnerType.d.ts +40 -0
  40. package/dist/runtime/constant/enumType/PermissionDataItem.d.ts +22 -0
  41. package/dist/runtime/constant/enumType/PushPlatformType.d.ts +18 -0
  42. package/dist/runtime/constant/enumType/RequestRole.d.ts +32 -0
  43. package/dist/runtime/constant/enumType/RequestType.d.ts +70 -0
  44. package/dist/runtime/constant/enumType/StoreItemType.d.ts +21 -0
  45. package/dist/runtime/constant/enumType/StoreReceiveType.d.ts +30 -0
  46. package/dist/runtime/constant/errorCode/ErrorCode.d.ts +190 -8
  47. package/dist/runtime/constant/parameterCode/ParameterCode.d.ts +35 -5
  48. package/dist/runtime/entity/DataMember.d.ts +338 -0
  49. package/dist/runtime/entity/GNMetadata.d.ts +101 -0
  50. package/dist/runtime/entity/InvalidMember.d.ts +28 -0
  51. package/dist/runtime/entity/OperationEvent.d.ts +49 -0
  52. package/dist/runtime/entity/OperationRequest.d.ts +108 -0
  53. package/dist/runtime/entity/OperationResponse.d.ts +110 -0
  54. package/dist/runtime/entity/models/AuthenticateModels.d.ts +115 -0
  55. package/dist/runtime/entity/models/AuthenticateRequestModels.d.ts +131 -0
  56. package/dist/runtime/entity/models/AuthenticateResponseModels.d.ts +131 -0
  57. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +625 -1
  58. package/dist/runtime/entity/models/CharacterPlayerRequestModels.d.ts +972 -0
  59. package/dist/runtime/entity/models/CharacterPlayerResponseModels.d.ts +332 -0
  60. package/dist/runtime/entity/models/CloudScriptModels.d.ts +109 -0
  61. package/dist/runtime/entity/models/CloudScriptRequestModels.d.ts +107 -0
  62. package/dist/runtime/entity/models/CloudScriptResponseModels.d.ts +46 -0
  63. package/dist/runtime/entity/models/ContentModels.d.ts +124 -0
  64. package/dist/runtime/entity/models/ContentRequestModels.d.ts +152 -0
  65. package/dist/runtime/entity/models/ContentResponseModels.d.ts +58 -0
  66. package/dist/runtime/entity/models/DashboardModels.d.ts +371 -8
  67. package/dist/runtime/entity/models/DashboardRequestModels.d.ts +172 -0
  68. package/dist/runtime/entity/models/DashboardResponseModels.d.ts +170 -0
  69. package/dist/runtime/entity/models/GamePlayerModels.d.ts +644 -1
  70. package/dist/runtime/entity/models/GamePlayerRequestModels.d.ts +959 -0
  71. package/dist/runtime/entity/models/GamePlayerResponseModels.d.ts +333 -1
  72. package/dist/runtime/entity/models/GenericModels.d.ts +94 -0
  73. package/dist/runtime/entity/models/GroupModels.d.ts +484 -2
  74. package/dist/runtime/entity/models/GroupRequestModels.d.ts +737 -0
  75. package/dist/runtime/entity/models/GroupResponseModels.d.ts +254 -0
  76. package/dist/runtime/entity/models/InventoryModels.d.ts +415 -0
  77. package/dist/runtime/entity/models/InventoryRequestModels.d.ts +629 -0
  78. package/dist/runtime/entity/models/InventoryResponseModels.d.ts +218 -0
  79. package/dist/runtime/entity/models/MasterPlayerModels.d.ts +1065 -3
  80. package/dist/runtime/entity/models/MasterPlayerRequestModels.d.ts +1560 -6
  81. package/dist/runtime/entity/models/MasterPlayerResponseModels.d.ts +532 -1
  82. package/dist/runtime/entity/models/MultiplayerModels.d.ts +199 -0
  83. package/dist/runtime/entity/models/MultiplayerRequestModels.d.ts +196 -0
  84. package/dist/runtime/entity/models/MultiplayerResponseModels.d.ts +74 -0
  85. package/dist/runtime/entity/models/StoreInventoryModels.d.ts +262 -0
  86. package/dist/runtime/entity/models/StoreInventoryRequestModels.d.ts +268 -0
  87. package/dist/runtime/entity/models/StoreInventoryResponseModels.d.ts +98 -0
  88. package/dist/runtime/entity/request/CustomOperationRequest.d.ts +99 -0
  89. package/dist/runtime/entity/response/CustomOperationResponse.d.ts +118 -0
  90. package/dist/runtime/entity/response/GetAuthInfoResponse.d.ts +53 -0
  91. package/dist/runtime/entity/response/HealthCheckResponse.d.ts +56 -0
  92. package/dist/runtime/entity/response/UploadFileResponse.d.ts +19 -0
  93. package/dist/runtime/helper/CodeHelper.d.ts +122 -0
  94. package/dist/runtime/helper/ConverterService.d.ts +74 -0
  95. package/dist/runtime/helper/EnumUtility.d.ts +63 -0
  96. package/dist/runtime/helper/GNSupport.d.ts +64 -4
  97. package/dist/runtime/helper/GNUtils.d.ts +54 -0
  98. package/dist/runtime/helper/MessagePackConverterService.d.ts +48 -0
  99. package/dist/runtime/helper/OperationHelper.d.ts +51 -0
  100. package/dist/runtime/helper/StorageService.d.ts +48 -8
  101. package/dist/runtime/logger/GNDebug.d.ts +117 -0
  102. package/dist/runtime/networking/AuthenticateStatus.d.ts +64 -0
  103. package/dist/runtime/networking/IPeer.d.ts +83 -0
  104. package/dist/runtime/networking/NetworkingPeer.d.ts +256 -1
  105. package/dist/runtime/networking/OperationPending.d.ts +112 -0
  106. package/dist/runtime/networking/PeerBase.d.ts +231 -0
  107. package/dist/runtime/networking/handler/IServerEventHandler.d.ts +84 -0
  108. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.d.ts +69 -0
  109. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.d.ts +49 -0
  110. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.d.ts +50 -0
  111. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.d.ts +41 -0
  112. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.d.ts +47 -0
  113. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.d.ts +46 -0
  114. package/dist/runtime/networking/http/HttpPeer.d.ts +173 -0
  115. package/dist/runtime/networking/http/NetworkingHttpPeerBase.d.ts +87 -0
  116. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.d.ts +113 -0
  117. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.d.ts +145 -0
  118. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.d.ts +198 -0
  119. package/dist/runtime/networking/socket/SocketPeer.d.ts +155 -0
  120. package/dist/runtime/typescript/ServiceUpdate.d.ts +46 -0
  121. package/docs/AI_CHEATSHEET.md +211 -0
  122. package/docs/COOKBOOK.md +912 -0
  123. package/docs/RULES.md +307 -0
  124. package/docs/ai-manifest.json +725 -0
  125. package/docs/guides/AUTHENTICATE.md +246 -0
  126. package/docs/guides/CHARACTER_PLAYER.md +439 -0
  127. package/docs/guides/CLOUDSCRIPT.md +335 -0
  128. package/docs/guides/COCOS_CREATOR_INTEGRATION.md +150 -0
  129. package/docs/guides/CONTENT.md +291 -0
  130. package/docs/guides/DASHBOARD.md +262 -0
  131. package/docs/guides/GAME_PLAYER.md +473 -0
  132. package/docs/guides/GROUP.md +412 -0
  133. package/docs/guides/INVENTORY.md +375 -0
  134. package/docs/guides/MASTER_PLAYER.md +458 -0
  135. package/docs/guides/MULTIPLAYER.md +303 -0
  136. package/docs/guides/STORE_INVENTORY.md +313 -0
  137. package/docs/llms-full.txt +43 -0
  138. package/docs/reference/API_AUTHENTICATE.md +75 -0
  139. package/docs/reference/API_CHARACTER_PLAYER.md +226 -0
  140. package/docs/reference/API_CLOUDSCRIPT.md +82 -0
  141. package/docs/reference/API_CONTENT.md +88 -0
  142. package/docs/reference/API_DASHBOARD.md +82 -0
  143. package/docs/reference/API_GAME_PLAYER.md +223 -0
  144. package/docs/reference/API_GROUP.md +187 -0
  145. package/docs/reference/API_INDEX.md +57 -0
  146. package/docs/reference/API_INVENTORY.md +169 -0
  147. package/docs/reference/API_MASTER_PLAYER.md +323 -0
  148. package/docs/reference/API_MULTIPLAYER.md +97 -0
  149. package/docs/reference/API_STORE_INVENTORY.md +109 -0
  150. package/docs/reference/CONFIG.md +107 -0
  151. package/docs/reference/DTO_INDEX.md +2543 -0
  152. package/docs/reference/ENUMS.md +433 -0
  153. package/docs/reference/ERROR_HANDLING.md +159 -0
  154. package/docs/reference/EVENTS.md +188 -0
  155. package/docs/reference/PERMISSION_RULES.md +55 -0
  156. package/docs/reference/dto/AUTHENTICATE.md +619 -0
  157. package/docs/reference/dto/CHARACTER_PLAYER.md +3686 -0
  158. package/docs/reference/dto/CLOUDSCRIPT.md +400 -0
  159. package/docs/reference/dto/CONTENT.md +548 -0
  160. package/docs/reference/dto/DASHBOARD.md +1980 -0
  161. package/docs/reference/dto/GAME_PLAYER.md +3631 -0
  162. package/docs/reference/dto/GENERIC.md +151 -0
  163. package/docs/reference/dto/GROUP.md +2842 -0
  164. package/docs/reference/dto/INVENTORY.md +2385 -0
  165. package/docs/reference/dto/MASTER_PLAYER.md +6024 -0
  166. package/docs/reference/dto/MULTIPLAYER.md +850 -0
  167. package/docs/reference/dto/STORE_INVENTORY.md +1262 -0
  168. package/llms.txt +47 -0
  169. package/package.json +12 -3
  170. package/GNServerSettings.debug.json +0 -21
  171. package/docs/COCOS_CREATOR_INTEGRATION.md +0 -116
  172. package/examples/cocos-creator/GearNExample.ts.txt +0 -176
  173. package/srcSwift/Package.swift +0 -32
  174. package/srcSwift/Sources/GearN/runtime/GNNetwork.swift +0 -530
  175. package/srcSwift/Sources/GearN/runtime/GNNetworkAuthenticateApi.swift +0 -178
  176. package/srcSwift/Sources/GearN/runtime/GNNetworkCharacterPlayerApi.swift +0 -1162
  177. package/srcSwift/Sources/GearN/runtime/GNNetworkCloudScriptApi.swift +0 -154
  178. package/srcSwift/Sources/GearN/runtime/GNNetworkContentApi.swift +0 -208
  179. package/srcSwift/Sources/GearN/runtime/GNNetworkDashboardApi.swift +0 -240
  180. package/srcSwift/Sources/GearN/runtime/GNNetworkGamePlayerApi.swift +0 -1369
  181. package/srcSwift/Sources/GearN/runtime/GNNetworkGroupApi.swift +0 -1100
  182. package/srcSwift/Sources/GearN/runtime/GNNetworkInventoryApi.swift +0 -937
  183. package/srcSwift/Sources/GearN/runtime/GNNetworkMasterPlayerApi.swift +0 -2323
  184. package/srcSwift/Sources/GearN/runtime/GNNetworkMultiplayerApi.swift +0 -298
  185. package/srcSwift/Sources/GearN/runtime/GNNetworkStoreInventoryApi.swift +0 -397
  186. package/srcSwift/Sources/GearN/runtime/common/Action0.swift +0 -3
  187. package/srcSwift/Sources/GearN/runtime/common/Action1.swift +0 -3
  188. package/srcSwift/Sources/GearN/runtime/common/Action2.swift +0 -3
  189. package/srcSwift/Sources/GearN/runtime/common/Action3.swift +0 -3
  190. package/srcSwift/Sources/GearN/runtime/common/Action4.swift +0 -3
  191. package/srcSwift/Sources/GearN/runtime/common/GNArray.swift +0 -204
  192. package/srcSwift/Sources/GearN/runtime/common/GNData.swift +0 -108
  193. package/srcSwift/Sources/GearN/runtime/common/GNHashtable.swift +0 -200
  194. package/srcSwift/Sources/GearN/runtime/config/GNServerSettings.swift +0 -95
  195. package/srcSwift/Sources/GearN/runtime/constant/Commands.swift +0 -28
  196. package/srcSwift/Sources/GearN/runtime/constant/EventCode.swift +0 -10
  197. package/srcSwift/Sources/GearN/runtime/constant/OperationCode.swift +0 -252
  198. package/srcSwift/Sources/GearN/runtime/constant/ReturnCode.swift +0 -19
  199. package/srcSwift/Sources/GearN/runtime/constant/enumType/ExecuteResponseStatus.swift +0 -9
  200. package/srcSwift/Sources/GearN/runtime/constant/enumType/FriendStatus.swift +0 -8
  201. package/srcSwift/Sources/GearN/runtime/constant/enumType/GoogleLoginType.swift +0 -6
  202. package/srcSwift/Sources/GearN/runtime/constant/enumType/GroupStatus.swift +0 -8
  203. package/srcSwift/Sources/GearN/runtime/constant/enumType/InvalidMemberType.swift +0 -19
  204. package/srcSwift/Sources/GearN/runtime/constant/enumType/ItemType.swift +0 -6
  205. package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingMemberStatus.swift +0 -7
  206. package/srcSwift/Sources/GearN/runtime/constant/enumType/MatchmakingTicketStatus.swift +0 -9
  207. package/srcSwift/Sources/GearN/runtime/constant/enumType/OwnerType.swift +0 -10
  208. package/srcSwift/Sources/GearN/runtime/constant/enumType/PermissionDataItem.swift +0 -6
  209. package/srcSwift/Sources/GearN/runtime/constant/enumType/PushPlatformType.swift +0 -6
  210. package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestRole.swift +0 -7
  211. package/srcSwift/Sources/GearN/runtime/constant/enumType/RequestType.swift +0 -16
  212. package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreItemType.swift +0 -6
  213. package/srcSwift/Sources/GearN/runtime/constant/enumType/StoreReceiveType.swift +0 -9
  214. package/srcSwift/Sources/GearN/runtime/constant/errorCode/ErrorCode.swift +0 -58
  215. package/srcSwift/Sources/GearN/runtime/constant/parameterCode/ParameterCode.swift +0 -672
  216. package/srcSwift/Sources/GearN/runtime/entity/DataMember.swift +0 -196
  217. package/srcSwift/Sources/GearN/runtime/entity/GNMetadata.swift +0 -9
  218. package/srcSwift/Sources/GearN/runtime/entity/InvalidMember.swift +0 -11
  219. package/srcSwift/Sources/GearN/runtime/entity/OperationEvent.swift +0 -38
  220. package/srcSwift/Sources/GearN/runtime/entity/OperationHelper.swift +0 -28
  221. package/srcSwift/Sources/GearN/runtime/entity/OperationRequest.swift +0 -62
  222. package/srcSwift/Sources/GearN/runtime/entity/OperationResponse.swift +0 -98
  223. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateModels.swift +0 -351
  224. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateRequestModels.swift +0 -81
  225. package/srcSwift/Sources/GearN/runtime/entity/models/AuthenticateResponseModels.swift +0 -108
  226. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerModels.swift +0 -1045
  227. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerRequestModels.swift +0 -821
  228. package/srcSwift/Sources/GearN/runtime/entity/models/CharacterPlayerResponseModels.swift +0 -588
  229. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptModels.swift +0 -187
  230. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptRequestModels.swift +0 -84
  231. package/srcSwift/Sources/GearN/runtime/entity/models/CloudScriptResponseModels.swift +0 -59
  232. package/srcSwift/Sources/GearN/runtime/entity/models/ContentModels.swift +0 -195
  233. package/srcSwift/Sources/GearN/runtime/entity/models/ContentRequestModels.swift +0 -116
  234. package/srcSwift/Sources/GearN/runtime/entity/models/ContentResponseModels.swift +0 -81
  235. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardModels.swift +0 -426
  236. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardRequestModels.swift +0 -160
  237. package/srcSwift/Sources/GearN/runtime/entity/models/DashboardResponseModels.swift +0 -82
  238. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerModels.swift +0 -1334
  239. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerRequestModels.swift +0 -643
  240. package/srcSwift/Sources/GearN/runtime/entity/models/GamePlayerResponseModels.swift +0 -213
  241. package/srcSwift/Sources/GearN/runtime/entity/models/GenericModels.swift +0 -171
  242. package/srcSwift/Sources/GearN/runtime/entity/models/GroupModels.swift +0 -850
  243. package/srcSwift/Sources/GearN/runtime/entity/models/GroupRequestModels.swift +0 -485
  244. package/srcSwift/Sources/GearN/runtime/entity/models/GroupResponseModels.swift +0 -165
  245. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryModels.swift +0 -679
  246. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryRequestModels.swift +0 -413
  247. package/srcSwift/Sources/GearN/runtime/entity/models/InventoryResponseModels.swift +0 -141
  248. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerModels.swift +0 -378
  249. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerRequestModels.swift +0 -147
  250. package/srcSwift/Sources/GearN/runtime/entity/models/MasterPlayerResponseModels.swift +0 -318
  251. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerModels.swift +0 -319
  252. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerRequestModels.swift +0 -125
  253. package/srcSwift/Sources/GearN/runtime/entity/models/MultiplayerResponseModels.swift +0 -45
  254. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryModels.swift +0 -633
  255. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryRequestModels.swift +0 -173
  256. package/srcSwift/Sources/GearN/runtime/entity/models/StoreInventoryResponseModels.swift +0 -61
  257. package/srcSwift/Sources/GearN/runtime/entity/request/CustomOperationRequest.swift +0 -42
  258. package/srcSwift/Sources/GearN/runtime/entity/response/CustomOperationResponse.swift +0 -49
  259. package/srcSwift/Sources/GearN/runtime/entity/response/GetAuthInfoResponse.swift +0 -43
  260. package/srcSwift/Sources/GearN/runtime/entity/response/HealthCheckResponse.swift +0 -86
  261. package/srcSwift/Sources/GearN/runtime/entity/response/UploadFileResponse.swift +0 -15
  262. package/srcSwift/Sources/GearN/runtime/helper/CodeHelper.swift +0 -107
  263. package/srcSwift/Sources/GearN/runtime/helper/ConverterService.swift +0 -98
  264. package/srcSwift/Sources/GearN/runtime/helper/EnumUtility.swift +0 -34
  265. package/srcSwift/Sources/GearN/runtime/helper/GNSupport.swift +0 -41
  266. package/srcSwift/Sources/GearN/runtime/helper/GNUtils.swift +0 -66
  267. package/srcSwift/Sources/GearN/runtime/helper/MessagePackConverterService.swift +0 -21
  268. package/srcSwift/Sources/GearN/runtime/helper/StorageService.swift +0 -29
  269. package/srcSwift/Sources/GearN/runtime/logger/GNDebug.swift +0 -33
  270. package/srcSwift/Sources/GearN/runtime/networking/AuthenticateStatus.swift +0 -24
  271. package/srcSwift/Sources/GearN/runtime/networking/IPeer.swift +0 -8
  272. package/srcSwift/Sources/GearN/runtime/networking/NetworkingPeer.swift +0 -368
  273. package/srcSwift/Sources/GearN/runtime/networking/OperationPending.swift +0 -81
  274. package/srcSwift/Sources/GearN/runtime/networking/PeerBase.swift +0 -228
  275. package/srcSwift/Sources/GearN/runtime/networking/handler/IServerEventHandler.swift +0 -20
  276. package/srcSwift/Sources/GearN/runtime/networking/http/HttpPeer.swift +0 -226
  277. package/srcSwift/Sources/GearN/runtime/networking/http/HttpTypes.swift +0 -24
  278. package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingHttpPeerBase.swift +0 -13
  279. package/srcSwift/Sources/GearN/runtime/networking/http/NetworkingPeerUrlSession.swift +0 -125
  280. package/srcSwift/Sources/GearN/runtime/networking/request/NetRequest.swift +0 -19
  281. package/srcSwift/Sources/GearN/runtime/networking/response/NetResponse.swift +0 -13
  282. package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingPeerSocketIOClient.swift +0 -244
  283. package/srcSwift/Sources/GearN/runtime/networking/socket/NetworkingSocketPeerBase.swift +0 -59
  284. package/srcSwift/Sources/GearN/runtime/networking/socket/SocketPeer.swift +0 -136
  285. package/tsconfig-build.cocos.json +0 -31
  286. package/webpack.config.cocos.mjs +0 -78
@@ -2,1201 +2,2755 @@ import { RequestRole } from "./../../constant/enumType/RequestRole";
2
2
  import { RequestType } from "./../../constant/enumType/RequestType";
3
3
  import { CustomOperationRequestAbstract } from "./../request/CustomOperationRequest";
4
4
  import { MasterPlayerModels } from "./MasterPlayerModels";
5
+ /**
6
+ * Typed request wrappers for the MasterPlayer domain.
7
+ *
8
+ * Each class extends {@link CustomOperationRequestAbstract} and
9
+ * binds a typed `*RequestData` DTO from
10
+ * {@link MasterPlayerModels} to:
11
+ * - the matching {@link OperationCode};
12
+ * - the {@link RequestType.MasterPlayer} domain;
13
+ * - the appropriate {@link RequestRole} based on the wrapper
14
+ * name prefix.
15
+ *
16
+ * The MasterPlayer domain owns the largest set of operations in
17
+ * the SDK because it covers (a) every identity link / unlink
18
+ * operation for all supported providers and (b) every account-
19
+ * level resource (currencies, statistics, custom data, push
20
+ * notifications). See {@link MasterPlayerApi} for the
21
+ * functional grouping.
22
+ */
5
23
  export declare namespace MasterPlayerRequestModels {
24
+ /**
25
+ * Maps the AddSegment operation to a typed request wrapper.
26
+ */
6
27
  class AddSegmentOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.AddSegmentRequestData> {
7
28
  protected operationCode: string;
8
29
  protected requestType: RequestType;
9
30
  protected role: RequestRole;
31
+ /**
32
+ * Creates a new AddSegmentOperationRequest instance.
33
+ */
10
34
  constructor(requestData: MasterPlayerModels.AddSegmentRequestData, timeout: number);
11
35
  }
36
+ /**
37
+ * Maps the ServerAddSegment operation to a typed request wrapper.
38
+ */
12
39
  class ServerAddSegmentOperationRequest extends AddSegmentOperationRequest {
13
40
  protected role: RequestRole;
41
+ /**
42
+ * Creates a new ServerAddSegmentOperationRequest instance.
43
+ */
14
44
  constructor(requestData: MasterPlayerModels.ServerAddSegmentRequestData, timeout: number);
15
45
  }
46
+ /**
47
+ * Maps the AdminAddSegment operation to a typed request wrapper.
48
+ */
16
49
  class AdminAddSegmentOperationRequest extends AddSegmentOperationRequest {
17
50
  protected role: RequestRole;
51
+ /**
52
+ * Creates a new AdminAddSegmentOperationRequest instance.
53
+ */
18
54
  constructor(requestData: MasterPlayerModels.AdminAddSegmentRequestData, timeout: number);
19
55
  }
56
+ /**
57
+ * Maps the ChangeAccountPassword operation to a typed request wrapper.
58
+ */
20
59
  class ChangeAccountPasswordOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.ChangeAccountPasswordRequestData> {
21
60
  protected operationCode: string;
22
61
  protected requestType: RequestType;
23
62
  protected role: RequestRole;
63
+ /**
64
+ * Creates a new ChangeAccountPasswordOperationRequest instance.
65
+ */
24
66
  constructor(requestData: MasterPlayerModels.ChangeAccountPasswordRequestData, timeout: number);
25
67
  }
68
+ /**
69
+ * Maps the GetAvatar operation to a typed request wrapper.
70
+ */
26
71
  class GetAvatarOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetAvatarRequestData> {
27
72
  protected operationCode: string;
28
73
  protected requestType: RequestType;
29
74
  protected role: RequestRole;
75
+ /**
76
+ * Creates a new GetAvatarOperationRequest instance.
77
+ */
30
78
  constructor(requestData: MasterPlayerModels.GetAvatarRequestData, timeout: number);
31
79
  }
80
+ /**
81
+ * Maps the ServerGetAvatar operation to a typed request wrapper.
82
+ */
32
83
  class ServerGetAvatarOperationRequest extends GetAvatarOperationRequest {
33
84
  protected role: RequestRole;
85
+ /**
86
+ * Creates a new ServerGetAvatarOperationRequest instance.
87
+ */
34
88
  constructor(requestData: MasterPlayerModels.ServerGetAvatarRequestData, timeout: number);
35
89
  }
90
+ /**
91
+ * Maps the AdminGetAvatar operation to a typed request wrapper.
92
+ */
36
93
  class AdminGetAvatarOperationRequest extends GetAvatarOperationRequest {
37
94
  protected role: RequestRole;
95
+ /**
96
+ * Creates a new AdminGetAvatarOperationRequest instance.
97
+ */
38
98
  constructor(requestData: MasterPlayerModels.AdminGetAvatarRequestData, timeout: number);
39
99
  }
100
+ /**
101
+ * Maps the GetCountryCode operation to a typed request wrapper.
102
+ */
40
103
  class GetCountryCodeOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetCountryCodeRequestData> {
41
104
  protected operationCode: string;
42
105
  protected requestType: RequestType;
43
106
  protected role: RequestRole;
107
+ /**
108
+ * Creates a new GetCountryCodeOperationRequest instance.
109
+ */
44
110
  constructor(requestData: MasterPlayerModels.GetCountryCodeRequestData, timeout: number);
45
111
  }
112
+ /**
113
+ * Maps the ServerGetCountryCode operation to a typed request wrapper.
114
+ */
46
115
  class ServerGetCountryCodeOperationRequest extends GetCountryCodeOperationRequest {
47
116
  protected role: RequestRole;
117
+ /**
118
+ * Creates a new ServerGetCountryCodeOperationRequest instance.
119
+ */
48
120
  constructor(requestData: MasterPlayerModels.ServerGetCountryCodeRequestData, timeout: number);
49
121
  }
122
+ /**
123
+ * Maps the AdminGetCountryCode operation to a typed request wrapper.
124
+ */
50
125
  class AdminGetCountryCodeOperationRequest extends GetCountryCodeOperationRequest {
51
126
  protected role: RequestRole;
127
+ /**
128
+ * Creates a new AdminGetCountryCodeOperationRequest instance.
129
+ */
52
130
  constructor(requestData: MasterPlayerModels.AdminGetCountryCodeRequestData, timeout: number);
53
131
  }
132
+ /**
133
+ * Maps the GetCustomData operation to a typed request wrapper.
134
+ */
54
135
  class GetCustomDataOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetCustomDataRequestData> {
55
136
  protected operationCode: string;
56
137
  protected requestType: RequestType;
57
138
  protected role: RequestRole;
139
+ /**
140
+ * Creates a new GetCustomDataOperationRequest instance.
141
+ */
58
142
  constructor(requestData: MasterPlayerModels.GetCustomDataRequestData, timeout: number);
59
143
  }
144
+ /**
145
+ * Maps the ServerGetCustomData operation to a typed request wrapper.
146
+ */
60
147
  class ServerGetCustomDataOperationRequest extends GetCustomDataOperationRequest {
61
148
  protected role: RequestRole;
149
+ /**
150
+ * Creates a new ServerGetCustomDataOperationRequest instance.
151
+ */
62
152
  constructor(requestData: MasterPlayerModels.ServerGetCustomDataRequestData, timeout: number);
63
153
  }
154
+ /**
155
+ * Maps the AdminGetCustomData operation to a typed request wrapper.
156
+ */
64
157
  class AdminGetCustomDataOperationRequest extends GetCustomDataOperationRequest {
65
158
  protected role: RequestRole;
159
+ /**
160
+ * Creates a new AdminGetCustomDataOperationRequest instance.
161
+ */
66
162
  constructor(requestData: MasterPlayerModels.AdminGetCustomDataRequestData, timeout: number);
67
163
  }
164
+ /**
165
+ * Maps the GetDisplayName operation to a typed request wrapper.
166
+ */
68
167
  class GetDisplayNameOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetDisplayNameRequestData> {
69
168
  protected operationCode: string;
70
169
  protected requestType: RequestType;
71
170
  protected role: RequestRole;
171
+ /**
172
+ * Creates a new GetDisplayNameOperationRequest instance.
173
+ */
72
174
  constructor(requestData: MasterPlayerModels.GetDisplayNameRequestData, timeout: number);
73
175
  }
176
+ /**
177
+ * Maps the ServerGetDisplayName operation to a typed request wrapper.
178
+ */
74
179
  class ServerGetDisplayNameOperationRequest extends GetDisplayNameOperationRequest {
75
180
  protected role: RequestRole;
181
+ /**
182
+ * Creates a new ServerGetDisplayNameOperationRequest instance.
183
+ */
76
184
  constructor(requestData: MasterPlayerModels.ServerGetDisplayNameRequestData, timeout: number);
77
185
  }
186
+ /**
187
+ * Maps the AdminGetDisplayName operation to a typed request wrapper.
188
+ */
78
189
  class AdminGetDisplayNameOperationRequest extends GetDisplayNameOperationRequest {
79
190
  protected role: RequestRole;
191
+ /**
192
+ * Creates a new AdminGetDisplayNameOperationRequest instance.
193
+ */
80
194
  constructor(requestData: MasterPlayerModels.AdminGetDisplayNameRequestData, timeout: number);
81
195
  }
196
+ /**
197
+ * Maps the GetEmail operation to a typed request wrapper.
198
+ */
82
199
  class GetEmailOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetEmailRequestData> {
83
200
  protected operationCode: string;
84
201
  protected requestType: RequestType;
85
202
  protected role: RequestRole;
203
+ /**
204
+ * Creates a new GetEmailOperationRequest instance.
205
+ */
86
206
  constructor(requestData: MasterPlayerModels.GetEmailRequestData, timeout: number);
87
207
  }
208
+ /**
209
+ * Maps the ServerGetEmail operation to a typed request wrapper.
210
+ */
88
211
  class ServerGetEmailOperationRequest extends GetEmailOperationRequest {
89
212
  protected role: RequestRole;
213
+ /**
214
+ * Creates a new ServerGetEmailOperationRequest instance.
215
+ */
90
216
  constructor(requestData: MasterPlayerModels.ServerGetEmailRequestData, timeout: number);
91
217
  }
218
+ /**
219
+ * Maps the AdminGetEmail operation to a typed request wrapper.
220
+ */
92
221
  class AdminGetEmailOperationRequest extends GetEmailOperationRequest {
93
222
  protected role: RequestRole;
223
+ /**
224
+ * Creates a new AdminGetEmailOperationRequest instance.
225
+ */
94
226
  constructor(requestData: MasterPlayerModels.AdminGetEmailRequestData, timeout: number);
95
227
  }
228
+ /**
229
+ * Maps the GetExternal operation to a typed request wrapper.
230
+ */
96
231
  class GetExternalOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetExternalRequestData> {
97
232
  protected operationCode: string;
98
233
  protected requestType: RequestType;
99
234
  protected role: RequestRole;
235
+ /**
236
+ * Creates a new GetExternalOperationRequest instance.
237
+ */
100
238
  constructor(requestData: MasterPlayerModels.GetExternalRequestData, timeout: number);
101
239
  }
240
+ /**
241
+ * Maps the ServerGetExternal operation to a typed request wrapper.
242
+ */
102
243
  class ServerGetExternalOperationRequest extends GetExternalOperationRequest {
103
244
  protected role: RequestRole;
245
+ /**
246
+ * Creates a new ServerGetExternalOperationRequest instance.
247
+ */
104
248
  constructor(requestData: MasterPlayerModels.ServerGetExternalRequestData, timeout: number);
105
249
  }
250
+ /**
251
+ * Maps the AdminGetExternal operation to a typed request wrapper.
252
+ */
106
253
  class AdminGetExternalOperationRequest extends GetExternalOperationRequest {
107
254
  protected role: RequestRole;
255
+ /**
256
+ * Creates a new AdminGetExternalOperationRequest instance.
257
+ */
108
258
  constructor(requestData: MasterPlayerModels.AdminGetExternalRequestData, timeout: number);
109
259
  }
260
+ /**
261
+ * Maps the GetIpAddressCreate operation to a typed request wrapper.
262
+ */
110
263
  class GetIpAddressCreateOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetIpAddressCreateRequestData> {
111
264
  protected operationCode: string;
112
265
  protected requestType: RequestType;
113
266
  protected role: RequestRole;
267
+ /**
268
+ * Creates a new GetIpAddressCreateOperationRequest instance.
269
+ */
114
270
  constructor(requestData: MasterPlayerModels.GetIpAddressCreateRequestData, timeout: number);
115
271
  }
272
+ /**
273
+ * Maps the ServerGetIpAddressCreate operation to a typed request wrapper.
274
+ */
116
275
  class ServerGetIpAddressCreateOperationRequest extends GetIpAddressCreateOperationRequest {
117
276
  protected role: RequestRole;
277
+ /**
278
+ * Creates a new ServerGetIpAddressCreateOperationRequest instance.
279
+ */
118
280
  constructor(requestData: MasterPlayerModels.ServerGetIpAddressCreateRequestData, timeout: number);
119
281
  }
282
+ /**
283
+ * Maps the AdminGetIpAddressCreate operation to a typed request wrapper.
284
+ */
120
285
  class AdminGetIpAddressCreateOperationRequest extends GetIpAddressCreateOperationRequest {
121
286
  protected role: RequestRole;
287
+ /**
288
+ * Creates a new AdminGetIpAddressCreateOperationRequest instance.
289
+ */
122
290
  constructor(requestData: MasterPlayerModels.AdminGetIpAddressCreateRequestData, timeout: number);
123
291
  }
292
+ /**
293
+ * Maps the GetPlayerBan operation to a typed request wrapper.
294
+ */
124
295
  class GetPlayerBanOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPlayerBanRequestData> {
125
296
  protected operationCode: string;
126
297
  protected requestType: RequestType;
127
298
  protected role: RequestRole;
299
+ /**
300
+ * Creates a new GetPlayerBanOperationRequest instance.
301
+ */
128
302
  constructor(requestData: MasterPlayerModels.GetPlayerBanRequestData, timeout: number);
129
303
  }
304
+ /**
305
+ * Maps the ServerGetPlayerBan operation to a typed request wrapper.
306
+ */
130
307
  class ServerGetPlayerBanOperationRequest extends GetPlayerBanOperationRequest {
131
308
  protected role: RequestRole;
309
+ /**
310
+ * Creates a new ServerGetPlayerBanOperationRequest instance.
311
+ */
132
312
  constructor(requestData: MasterPlayerModels.ServerGetPlayerBanRequestData, timeout: number);
133
313
  }
314
+ /**
315
+ * Maps the AdminGetPlayerBan operation to a typed request wrapper.
316
+ */
134
317
  class AdminGetPlayerBanOperationRequest extends GetPlayerBanOperationRequest {
135
318
  protected role: RequestRole;
319
+ /**
320
+ * Creates a new AdminGetPlayerBanOperationRequest instance.
321
+ */
136
322
  constructor(requestData: MasterPlayerModels.AdminGetPlayerBanRequestData, timeout: number);
137
323
  }
324
+ /**
325
+ * Maps the GetPlayerCurrency operation to a typed request wrapper.
326
+ */
138
327
  class GetPlayerCurrencyOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPlayerCurrencyRequestData> {
139
328
  protected operationCode: string;
140
329
  protected requestType: RequestType;
141
330
  protected role: RequestRole;
331
+ /**
332
+ * Creates a new GetPlayerCurrencyOperationRequest instance.
333
+ */
142
334
  constructor(requestData: MasterPlayerModels.GetPlayerCurrencyRequestData, timeout: number);
143
335
  }
336
+ /**
337
+ * Maps the ServerGetPlayerCurrency operation to a typed request wrapper.
338
+ */
144
339
  class ServerGetPlayerCurrencyOperationRequest extends GetPlayerCurrencyOperationRequest {
145
340
  protected role: RequestRole;
341
+ /**
342
+ * Creates a new ServerGetPlayerCurrencyOperationRequest instance.
343
+ */
146
344
  constructor(requestData: MasterPlayerModels.ServerGetPlayerCurrencyRequestData, timeout: number);
147
345
  }
346
+ /**
347
+ * Maps the AdminGetPlayerCurrency operation to a typed request wrapper.
348
+ */
148
349
  class AdminGetPlayerCurrencyOperationRequest extends GetPlayerCurrencyOperationRequest {
149
350
  protected role: RequestRole;
351
+ /**
352
+ * Creates a new AdminGetPlayerCurrencyOperationRequest instance.
353
+ */
150
354
  constructor(requestData: MasterPlayerModels.AdminGetPlayerCurrencyRequestData, timeout: number);
151
355
  }
356
+ /**
357
+ * Maps the GetPlayerData operation to a typed request wrapper.
358
+ */
152
359
  class GetPlayerDataOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPlayerDataRequestData> {
153
360
  protected operationCode: string;
154
361
  protected requestType: RequestType;
155
362
  protected role: RequestRole;
363
+ /**
364
+ * Creates a new GetPlayerDataOperationRequest instance.
365
+ */
156
366
  constructor(requestData: MasterPlayerModels.GetPlayerDataRequestData, timeout: number);
157
367
  }
368
+ /**
369
+ * Maps the ServerGetPlayerData operation to a typed request wrapper.
370
+ */
158
371
  class ServerGetPlayerDataOperationRequest extends GetPlayerDataOperationRequest {
159
372
  protected role: RequestRole;
373
+ /**
374
+ * Creates a new ServerGetPlayerDataOperationRequest instance.
375
+ */
160
376
  constructor(requestData: MasterPlayerModels.ServerGetPlayerDataRequestData, timeout: number);
161
377
  }
378
+ /**
379
+ * Maps the AdminGetPlayerData operation to a typed request wrapper.
380
+ */
162
381
  class AdminGetPlayerDataOperationRequest extends GetPlayerDataOperationRequest {
163
382
  protected role: RequestRole;
383
+ /**
384
+ * Creates a new AdminGetPlayerDataOperationRequest instance.
385
+ */
164
386
  constructor(requestData: MasterPlayerModels.AdminGetPlayerDataRequestData, timeout: number);
165
387
  }
388
+ /**
389
+ * Maps the GetPlayerInformation operation to a typed request wrapper.
390
+ */
166
391
  class GetPlayerInformationOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPlayerInformationRequestData> {
167
392
  protected operationCode: string;
168
393
  protected requestType: RequestType;
169
394
  protected role: RequestRole;
395
+ /**
396
+ * Creates a new GetPlayerInformationOperationRequest instance.
397
+ */
170
398
  constructor(requestData: MasterPlayerModels.GetPlayerInformationRequestData, timeout: number);
171
399
  }
400
+ /**
401
+ * Maps the ServerGetPlayerInformation operation to a typed request wrapper.
402
+ */
172
403
  class ServerGetPlayerInformationOperationRequest extends GetPlayerInformationOperationRequest {
173
404
  protected role: RequestRole;
405
+ /**
406
+ * Creates a new ServerGetPlayerInformationOperationRequest instance.
407
+ */
174
408
  constructor(requestData: MasterPlayerModels.ServerGetPlayerInformationRequestData, timeout: number);
175
409
  }
410
+ /**
411
+ * Maps the AdminGetPlayerInformation operation to a typed request wrapper.
412
+ */
176
413
  class AdminGetPlayerInformationOperationRequest extends GetPlayerInformationOperationRequest {
177
414
  protected role: RequestRole;
415
+ /**
416
+ * Creates a new AdminGetPlayerInformationOperationRequest instance.
417
+ */
178
418
  constructor(requestData: MasterPlayerModels.AdminGetPlayerInformationRequestData, timeout: number);
179
419
  }
420
+ /**
421
+ * Maps the GetPlayerStatistics operation to a typed request wrapper.
422
+ */
180
423
  class GetPlayerStatisticsOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPlayerStatisticsRequestData> {
181
424
  protected operationCode: string;
182
425
  protected requestType: RequestType;
183
426
  protected role: RequestRole;
427
+ /**
428
+ * Creates a new GetPlayerStatisticsOperationRequest instance.
429
+ */
184
430
  constructor(requestData: MasterPlayerModels.GetPlayerStatisticsRequestData, timeout: number);
185
431
  }
432
+ /**
433
+ * Maps the ServerGetPlayerStatistics operation to a typed request wrapper.
434
+ */
186
435
  class ServerGetPlayerStatisticsOperationRequest extends GetPlayerStatisticsOperationRequest {
187
436
  protected role: RequestRole;
437
+ /**
438
+ * Creates a new ServerGetPlayerStatisticsOperationRequest instance.
439
+ */
188
440
  constructor(requestData: MasterPlayerModels.ServerGetPlayerStatisticsRequestData, timeout: number);
189
441
  }
442
+ /**
443
+ * Maps the AdminGetPlayerStatistics operation to a typed request wrapper.
444
+ */
190
445
  class AdminGetPlayerStatisticsOperationRequest extends GetPlayerStatisticsOperationRequest {
191
446
  protected role: RequestRole;
447
+ /**
448
+ * Creates a new AdminGetPlayerStatisticsOperationRequest instance.
449
+ */
192
450
  constructor(requestData: MasterPlayerModels.AdminGetPlayerStatisticsRequestData, timeout: number);
193
451
  }
452
+ /**
453
+ * Maps the GetPlayersWithApple operation to a typed request wrapper.
454
+ */
194
455
  class GetPlayersWithAppleOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPlayersWithAppleRequestData> {
195
456
  protected operationCode: string;
196
457
  protected requestType: RequestType;
197
458
  protected role: RequestRole;
459
+ /**
460
+ * Creates a new GetPlayersWithAppleOperationRequest instance.
461
+ */
198
462
  constructor(requestData: MasterPlayerModels.GetPlayersWithAppleRequestData, timeout: number);
199
463
  }
464
+ /**
465
+ * Maps the ServerGetPlayersWithApple operation to a typed request wrapper.
466
+ */
200
467
  class ServerGetPlayersWithAppleOperationRequest extends GetPlayersWithAppleOperationRequest {
201
468
  protected role: RequestRole;
469
+ /**
470
+ * Creates a new ServerGetPlayersWithAppleOperationRequest instance.
471
+ */
202
472
  constructor(requestData: MasterPlayerModels.ServerGetPlayersWithAppleRequestData, timeout: number);
203
473
  }
474
+ /**
475
+ * Maps the AdminGetPlayersWithApple operation to a typed request wrapper.
476
+ */
204
477
  class AdminGetPlayersWithAppleOperationRequest extends GetPlayersWithAppleOperationRequest {
205
478
  protected role: RequestRole;
479
+ /**
480
+ * Creates a new AdminGetPlayersWithAppleOperationRequest instance.
481
+ */
206
482
  constructor(requestData: MasterPlayerModels.AdminGetPlayersWithAppleRequestData, timeout: number);
207
483
  }
484
+ /**
485
+ * Maps the GetPlayersWithDisplayName operation to a typed request wrapper.
486
+ */
208
487
  class GetPlayersWithDisplayNameOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPlayersWithDisplayNameRequestData> {
209
488
  protected operationCode: string;
210
489
  protected requestType: RequestType;
211
490
  protected role: RequestRole;
491
+ /**
492
+ * Creates a new GetPlayersWithDisplayNameOperationRequest instance.
493
+ */
212
494
  constructor(requestData: MasterPlayerModels.GetPlayersWithDisplayNameRequestData, timeout: number);
213
495
  }
496
+ /**
497
+ * Maps the ServerGetPlayersWithDisplayName operation to a typed request wrapper.
498
+ */
214
499
  class ServerGetPlayersWithDisplayNameOperationRequest extends GetPlayersWithDisplayNameOperationRequest {
215
500
  protected role: RequestRole;
501
+ /**
502
+ * Creates a new ServerGetPlayersWithDisplayNameOperationRequest instance.
503
+ */
216
504
  constructor(requestData: MasterPlayerModels.ServerGetPlayersWithDisplayNameRequestData, timeout: number);
217
505
  }
506
+ /**
507
+ * Maps the AdminGetPlayersWithDisplayName operation to a typed request wrapper.
508
+ */
218
509
  class AdminGetPlayersWithDisplayNameOperationRequest extends GetPlayersWithDisplayNameOperationRequest {
219
510
  protected role: RequestRole;
511
+ /**
512
+ * Creates a new AdminGetPlayersWithDisplayNameOperationRequest instance.
513
+ */
220
514
  constructor(requestData: MasterPlayerModels.AdminGetPlayersWithDisplayNameRequestData, timeout: number);
221
515
  }
516
+ /**
517
+ * Maps the GetPlayersWithFacebook operation to a typed request wrapper.
518
+ */
222
519
  class GetPlayersWithFacebookOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPlayersWithFacebookRequestData> {
223
520
  protected operationCode: string;
224
521
  protected requestType: RequestType;
225
522
  protected role: RequestRole;
523
+ /**
524
+ * Creates a new GetPlayersWithFacebookOperationRequest instance.
525
+ */
226
526
  constructor(requestData: MasterPlayerModels.GetPlayersWithFacebookRequestData, timeout: number);
227
527
  }
528
+ /**
529
+ * Maps the ServerGetPlayersWithFacebook operation to a typed request wrapper.
530
+ */
228
531
  class ServerGetPlayersWithFacebookOperationRequest extends GetPlayersWithFacebookOperationRequest {
229
532
  protected role: RequestRole;
533
+ /**
534
+ * Creates a new ServerGetPlayersWithFacebookOperationRequest instance.
535
+ */
230
536
  constructor(requestData: MasterPlayerModels.ServerGetPlayersWithFacebookRequestData, timeout: number);
231
537
  }
538
+ /**
539
+ * Maps the AdminGetPlayersWithFacebook operation to a typed request wrapper.
540
+ */
232
541
  class AdminGetPlayersWithFacebookOperationRequest extends GetPlayersWithFacebookOperationRequest {
233
542
  protected role: RequestRole;
543
+ /**
544
+ * Creates a new AdminGetPlayersWithFacebookOperationRequest instance.
545
+ */
234
546
  constructor(requestData: MasterPlayerModels.AdminGetPlayersWithFacebookRequestData, timeout: number);
235
547
  }
548
+ /**
549
+ * Maps the GetPlayersWithGenericService operation to a typed request wrapper.
550
+ */
236
551
  class GetPlayersWithGenericServiceOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPlayersWithGenericServiceRequestData> {
237
552
  protected operationCode: string;
238
553
  protected requestType: RequestType;
239
554
  protected role: RequestRole;
555
+ /**
556
+ * Creates a new GetPlayersWithGenericServiceOperationRequest instance.
557
+ */
240
558
  constructor(requestData: MasterPlayerModels.GetPlayersWithGenericServiceRequestData, timeout: number);
241
559
  }
560
+ /**
561
+ * Maps the ServerGetPlayersWithGenericService operation to a typed request wrapper.
562
+ */
242
563
  class ServerGetPlayersWithGenericServiceOperationRequest extends GetPlayersWithGenericServiceOperationRequest {
243
564
  protected role: RequestRole;
565
+ /**
566
+ * Creates a new ServerGetPlayersWithGenericServiceOperationRequest instance.
567
+ */
244
568
  constructor(requestData: MasterPlayerModels.ServerGetPlayersWithGenericServiceRequestData, timeout: number);
245
569
  }
570
+ /**
571
+ * Maps the AdminGetPlayersWithGenericService operation to a typed request wrapper.
572
+ */
246
573
  class AdminGetPlayersWithGenericServiceOperationRequest extends GetPlayersWithGenericServiceOperationRequest {
247
574
  protected role: RequestRole;
575
+ /**
576
+ * Creates a new AdminGetPlayersWithGenericServiceOperationRequest instance.
577
+ */
248
578
  constructor(requestData: MasterPlayerModels.AdminGetPlayersWithGenericServiceRequestData, timeout: number);
249
579
  }
580
+ /**
581
+ * Maps the GetPlayersWithGoogle operation to a typed request wrapper.
582
+ */
250
583
  class GetPlayersWithGoogleOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPlayersWithGoogleRequestData> {
251
584
  protected operationCode: string;
252
585
  protected requestType: RequestType;
253
586
  protected role: RequestRole;
587
+ /**
588
+ * Creates a new GetPlayersWithGoogleOperationRequest instance.
589
+ */
254
590
  constructor(requestData: MasterPlayerModels.GetPlayersWithGoogleRequestData, timeout: number);
255
591
  }
592
+ /**
593
+ * Maps the ServerGetPlayersWithGoogle operation to a typed request wrapper.
594
+ */
256
595
  class ServerGetPlayersWithGoogleOperationRequest extends GetPlayersWithGoogleOperationRequest {
257
596
  protected role: RequestRole;
597
+ /**
598
+ * Creates a new ServerGetPlayersWithGoogleOperationRequest instance.
599
+ */
258
600
  constructor(requestData: MasterPlayerModels.ServerGetPlayersWithGoogleRequestData, timeout: number);
259
601
  }
602
+ /**
603
+ * Maps the AdminGetPlayersWithGoogle operation to a typed request wrapper.
604
+ */
260
605
  class AdminGetPlayersWithGoogleOperationRequest extends GetPlayersWithGoogleOperationRequest {
261
606
  protected role: RequestRole;
607
+ /**
608
+ * Creates a new AdminGetPlayersWithGoogleOperationRequest instance.
609
+ */
262
610
  constructor(requestData: MasterPlayerModels.AdminGetPlayersWithGoogleRequestData, timeout: number);
263
611
  }
612
+ /**
613
+ * Maps the GetPlayersWithGooglePlayGameService operation to a typed request wrapper.
614
+ */
264
615
  class GetPlayersWithGooglePlayGameServiceOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPlayersWithGooglePlayGameServiceRequestData> {
265
616
  protected operationCode: string;
266
617
  protected requestType: RequestType;
267
618
  protected role: RequestRole;
619
+ /**
620
+ * Creates a new GetPlayersWithGooglePlayGameServiceOperationRequest instance.
621
+ */
268
622
  constructor(requestData: MasterPlayerModels.GetPlayersWithGooglePlayGameServiceRequestData, timeout: number);
269
623
  }
624
+ /**
625
+ * Maps the ServerGetPlayersWithGooglePlayGameService operation to a typed request wrapper.
626
+ */
270
627
  class ServerGetPlayersWithGooglePlayGameServiceOperationRequest extends GetPlayersWithGooglePlayGameServiceOperationRequest {
271
628
  protected role: RequestRole;
629
+ /**
630
+ * Creates a new ServerGetPlayersWithGooglePlayGameServiceOperationRequest instance.
631
+ */
272
632
  constructor(requestData: MasterPlayerModels.ServerGetPlayersWithGooglePlayGameServiceRequestData, timeout: number);
273
633
  }
634
+ /**
635
+ * Maps the AdminGetPlayersWithGooglePlayGameService operation to a typed request wrapper.
636
+ */
274
637
  class AdminGetPlayersWithGooglePlayGameServiceOperationRequest extends GetPlayersWithGooglePlayGameServiceOperationRequest {
275
638
  protected role: RequestRole;
639
+ /**
640
+ * Creates a new AdminGetPlayersWithGooglePlayGameServiceOperationRequest instance.
641
+ */
276
642
  constructor(requestData: MasterPlayerModels.AdminGetPlayersWithGooglePlayGameServiceRequestData, timeout: number);
277
643
  }
644
+ /**
645
+ * Maps the GetPlayersWithGameCenter operation to a typed request wrapper.
646
+ */
278
647
  class GetPlayersWithGameCenterOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPlayersWithGameCenterRequestData> {
279
648
  protected operationCode: string;
280
649
  protected requestType: RequestType;
281
650
  protected role: RequestRole;
651
+ /**
652
+ * Creates a new GetPlayersWithGameCenterOperationRequest instance.
653
+ */
282
654
  constructor(requestData: MasterPlayerModels.GetPlayersWithGameCenterRequestData, timeout: number);
283
655
  }
656
+ /**
657
+ * Maps the ServerGetPlayersWithGameCenter operation to a typed request wrapper.
658
+ */
284
659
  class ServerGetPlayersWithGameCenterOperationRequest extends GetPlayersWithGameCenterOperationRequest {
285
660
  protected role: RequestRole;
661
+ /**
662
+ * Creates a new ServerGetPlayersWithGameCenterOperationRequest instance.
663
+ */
286
664
  constructor(requestData: MasterPlayerModels.ServerGetPlayersWithGameCenterRequestData, timeout: number);
287
665
  }
666
+ /**
667
+ * Maps the AdminGetPlayersWithGameCenter operation to a typed request wrapper.
668
+ */
288
669
  class AdminGetPlayersWithGameCenterOperationRequest extends GetPlayersWithGameCenterOperationRequest {
289
670
  protected role: RequestRole;
671
+ /**
672
+ * Creates a new AdminGetPlayersWithGameCenterOperationRequest instance.
673
+ */
290
674
  constructor(requestData: MasterPlayerModels.AdminGetPlayersWithGameCenterRequestData, timeout: number);
291
675
  }
676
+ /**
677
+ * Maps the GetPlayersWithSegment operation to a typed request wrapper.
678
+ */
292
679
  class GetPlayersWithSegmentOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPlayersWithSegmentRequestData> {
293
680
  protected operationCode: string;
294
681
  protected requestType: RequestType;
295
682
  protected role: RequestRole;
683
+ /**
684
+ * Creates a new GetPlayersWithSegmentOperationRequest instance.
685
+ */
296
686
  constructor(requestData: MasterPlayerModels.GetPlayersWithSegmentRequestData, timeout: number);
297
687
  }
688
+ /**
689
+ * Maps the ServerGetPlayersWithSegment operation to a typed request wrapper.
690
+ */
298
691
  class ServerGetPlayersWithSegmentOperationRequest extends GetPlayersWithSegmentOperationRequest {
299
692
  protected role: RequestRole;
693
+ /**
694
+ * Creates a new ServerGetPlayersWithSegmentOperationRequest instance.
695
+ */
300
696
  constructor(requestData: MasterPlayerModels.ServerGetPlayersWithSegmentRequestData, timeout: number);
301
697
  }
698
+ /**
699
+ * Maps the AdminGetPlayersWithSegment operation to a typed request wrapper.
700
+ */
302
701
  class AdminGetPlayersWithSegmentOperationRequest extends GetPlayersWithSegmentOperationRequest {
303
702
  protected role: RequestRole;
703
+ /**
704
+ * Creates a new AdminGetPlayersWithSegmentOperationRequest instance.
705
+ */
304
706
  constructor(requestData: MasterPlayerModels.AdminGetPlayersWithSegmentRequestData, timeout: number);
305
707
  }
708
+ /**
709
+ * Maps the GetPlayersWithTag operation to a typed request wrapper.
710
+ */
306
711
  class GetPlayersWithTagOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPlayersWithTagRequestData> {
307
712
  protected operationCode: string;
308
713
  protected requestType: RequestType;
309
714
  protected role: RequestRole;
715
+ /**
716
+ * Creates a new GetPlayersWithTagOperationRequest instance.
717
+ */
310
718
  constructor(requestData: MasterPlayerModels.GetPlayersWithTagRequestData, timeout: number);
311
719
  }
720
+ /**
721
+ * Maps the ServerGetPlayersWithTag operation to a typed request wrapper.
722
+ */
312
723
  class ServerGetPlayersWithTagOperationRequest extends GetPlayersWithTagOperationRequest {
313
724
  protected role: RequestRole;
725
+ /**
726
+ * Creates a new ServerGetPlayersWithTagOperationRequest instance.
727
+ */
314
728
  constructor(requestData: MasterPlayerModels.ServerGetPlayersWithTagRequestData, timeout: number);
315
729
  }
730
+ /**
731
+ * Maps the AdminGetPlayersWithTag operation to a typed request wrapper.
732
+ */
316
733
  class AdminGetPlayersWithTagOperationRequest extends GetPlayersWithTagOperationRequest {
317
734
  protected role: RequestRole;
735
+ /**
736
+ * Creates a new AdminGetPlayersWithTagOperationRequest instance.
737
+ */
318
738
  constructor(requestData: MasterPlayerModels.AdminGetPlayersWithTagRequestData, timeout: number);
319
739
  }
740
+ /**
741
+ * Maps the GetSegment operation to a typed request wrapper.
742
+ */
320
743
  class GetSegmentOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetSegmentRequestData> {
321
744
  protected operationCode: string;
322
745
  protected requestType: RequestType;
323
746
  protected role: RequestRole;
747
+ /**
748
+ * Creates a new GetSegmentOperationRequest instance.
749
+ */
324
750
  constructor(requestData: MasterPlayerModels.GetSegmentRequestData, timeout: number);
325
751
  }
752
+ /**
753
+ * Maps the ServerGetSegment operation to a typed request wrapper.
754
+ */
326
755
  class ServerGetSegmentOperationRequest extends GetSegmentOperationRequest {
327
756
  protected role: RequestRole;
757
+ /**
758
+ * Creates a new ServerGetSegmentOperationRequest instance.
759
+ */
328
760
  constructor(requestData: MasterPlayerModels.ServerGetSegmentRequestData, timeout: number);
329
761
  }
762
+ /**
763
+ * Maps the AdminGetSegment operation to a typed request wrapper.
764
+ */
330
765
  class AdminGetSegmentOperationRequest extends GetSegmentOperationRequest {
331
766
  protected role: RequestRole;
767
+ /**
768
+ * Creates a new AdminGetSegmentOperationRequest instance.
769
+ */
332
770
  constructor(requestData: MasterPlayerModels.AdminGetSegmentRequestData, timeout: number);
333
771
  }
772
+ /**
773
+ * Maps the GetStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
774
+ */
334
775
  class GetStatisticsLeaderboardAroundPlayerOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData> {
335
776
  protected operationCode: string;
336
777
  protected requestType: RequestType;
337
778
  protected role: RequestRole;
779
+ /**
780
+ * Creates a new GetStatisticsLeaderboardAroundPlayerOperationRequest instance.
781
+ */
338
782
  constructor(requestData: MasterPlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData, timeout: number);
339
783
  }
784
+ /**
785
+ * Maps the ServerGetStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
786
+ */
340
787
  class ServerGetStatisticsLeaderboardAroundPlayerOperationRequest extends GetStatisticsLeaderboardAroundPlayerOperationRequest {
341
788
  protected role: RequestRole;
789
+ /**
790
+ * Creates a new ServerGetStatisticsLeaderboardAroundPlayerOperationRequest instance.
791
+ */
342
792
  constructor(requestData: MasterPlayerModels.ServerGetStatisticsLeaderboardAroundPlayerRequestData, timeout: number);
343
793
  }
794
+ /**
795
+ * Maps the AdminGetStatisticsLeaderboardAroundPlayer operation to a typed request wrapper.
796
+ */
344
797
  class AdminGetStatisticsLeaderboardAroundPlayerOperationRequest extends GetStatisticsLeaderboardAroundPlayerOperationRequest {
345
798
  protected role: RequestRole;
799
+ /**
800
+ * Creates a new AdminGetStatisticsLeaderboardAroundPlayerOperationRequest instance.
801
+ */
346
802
  constructor(requestData: MasterPlayerModels.AdminGetStatisticsLeaderboardAroundPlayerRequestData, timeout: number);
347
803
  }
804
+ /**
805
+ * Maps the GetStatisticsLeaderboard operation to a typed request wrapper.
806
+ */
348
807
  class GetStatisticsLeaderboardOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetStatisticsLeaderboardRequestData> {
349
808
  protected operationCode: string;
350
809
  protected requestType: RequestType;
351
810
  protected role: RequestRole;
811
+ /**
812
+ * Creates a new GetStatisticsLeaderboardOperationRequest instance.
813
+ */
352
814
  constructor(requestData: MasterPlayerModels.GetStatisticsLeaderboardRequestData, timeout: number);
353
815
  }
816
+ /**
817
+ * Maps the ServerGetStatisticsLeaderboard operation to a typed request wrapper.
818
+ */
354
819
  class ServerGetStatisticsLeaderboardOperationRequest extends GetStatisticsLeaderboardOperationRequest {
355
820
  protected role: RequestRole;
821
+ /**
822
+ * Creates a new ServerGetStatisticsLeaderboardOperationRequest instance.
823
+ */
356
824
  constructor(requestData: MasterPlayerModels.ServerGetStatisticsLeaderboardRequestData, timeout: number);
357
825
  }
826
+ /**
827
+ * Maps the AdminGetStatisticsLeaderboard operation to a typed request wrapper.
828
+ */
358
829
  class AdminGetStatisticsLeaderboardOperationRequest extends GetStatisticsLeaderboardOperationRequest {
359
830
  protected role: RequestRole;
831
+ /**
832
+ * Creates a new AdminGetStatisticsLeaderboardOperationRequest instance.
833
+ */
360
834
  constructor(requestData: MasterPlayerModels.AdminGetStatisticsLeaderboardRequestData, timeout: number);
361
835
  }
836
+ /**
837
+ * Maps the GetTag operation to a typed request wrapper.
838
+ */
362
839
  class GetTagOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetTagRequestData> {
363
840
  protected operationCode: string;
364
841
  protected requestType: RequestType;
365
842
  protected role: RequestRole;
843
+ /**
844
+ * Creates a new GetTagOperationRequest instance.
845
+ */
366
846
  constructor(requestData: MasterPlayerModels.GetTagRequestData, timeout: number);
367
847
  }
848
+ /**
849
+ * Maps the ServerGetTag operation to a typed request wrapper.
850
+ */
368
851
  class ServerGetTagOperationRequest extends GetTagOperationRequest {
369
852
  protected role: RequestRole;
853
+ /**
854
+ * Creates a new ServerGetTagOperationRequest instance.
855
+ */
370
856
  constructor(requestData: MasterPlayerModels.ServerGetTagRequestData, timeout: number);
371
857
  }
858
+ /**
859
+ * Maps the AdminGetTag operation to a typed request wrapper.
860
+ */
372
861
  class AdminGetTagOperationRequest extends GetTagOperationRequest {
373
862
  protected role: RequestRole;
863
+ /**
864
+ * Creates a new AdminGetTagOperationRequest instance.
865
+ */
374
866
  constructor(requestData: MasterPlayerModels.AdminGetTagRequestData, timeout: number);
375
867
  }
868
+ /**
869
+ * Maps the GetTsCreate operation to a typed request wrapper.
870
+ */
376
871
  class GetTsCreateOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetTsCreateRequestData> {
377
872
  protected operationCode: string;
378
873
  protected requestType: RequestType;
379
874
  protected role: RequestRole;
875
+ /**
876
+ * Creates a new GetTsCreateOperationRequest instance.
877
+ */
380
878
  constructor(requestData: MasterPlayerModels.GetTsCreateRequestData, timeout: number);
381
879
  }
880
+ /**
881
+ * Maps the ServerGetTsCreate operation to a typed request wrapper.
882
+ */
382
883
  class ServerGetTsCreateOperationRequest extends GetTsCreateOperationRequest {
383
884
  protected role: RequestRole;
885
+ /**
886
+ * Creates a new ServerGetTsCreateOperationRequest instance.
887
+ */
384
888
  constructor(requestData: MasterPlayerModels.ServerGetTsCreateRequestData, timeout: number);
385
889
  }
890
+ /**
891
+ * Maps the AdminGetTsCreate operation to a typed request wrapper.
892
+ */
386
893
  class AdminGetTsCreateOperationRequest extends GetTsCreateOperationRequest {
387
894
  protected role: RequestRole;
895
+ /**
896
+ * Creates a new AdminGetTsCreateOperationRequest instance.
897
+ */
388
898
  constructor(requestData: MasterPlayerModels.AdminGetTsCreateRequestData, timeout: number);
389
899
  }
900
+ /**
901
+ * Maps the GetTsLastLogin operation to a typed request wrapper.
902
+ */
390
903
  class GetTsLastLoginOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetTsLastLoginRequestData> {
391
904
  protected operationCode: string;
392
905
  protected requestType: RequestType;
393
906
  protected role: RequestRole;
907
+ /**
908
+ * Creates a new GetTsLastLoginOperationRequest instance.
909
+ */
394
910
  constructor(requestData: MasterPlayerModels.GetTsLastLoginRequestData, timeout: number);
395
911
  }
912
+ /**
913
+ * Maps the ServerGetTsLastLogin operation to a typed request wrapper.
914
+ */
396
915
  class ServerGetTsLastLoginOperationRequest extends GetTsLastLoginOperationRequest {
397
916
  protected role: RequestRole;
917
+ /**
918
+ * Creates a new ServerGetTsLastLoginOperationRequest instance.
919
+ */
398
920
  constructor(requestData: MasterPlayerModels.ServerGetTsLastLoginRequestData, timeout: number);
399
921
  }
922
+ /**
923
+ * Maps the AdminGetTsLastLogin operation to a typed request wrapper.
924
+ */
400
925
  class AdminGetTsLastLoginOperationRequest extends GetTsLastLoginOperationRequest {
401
926
  protected role: RequestRole;
927
+ /**
928
+ * Creates a new AdminGetTsLastLoginOperationRequest instance.
929
+ */
402
930
  constructor(requestData: MasterPlayerModels.AdminGetTsLastLoginRequestData, timeout: number);
403
931
  }
932
+ /**
933
+ * Maps the LinkAccount operation to a typed request wrapper.
934
+ */
404
935
  class LinkAccountOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkAccountRequestData> {
405
936
  protected operationCode: string;
406
937
  protected requestType: RequestType;
407
938
  protected role: RequestRole;
939
+ /**
940
+ * Creates a new LinkAccountOperationRequest instance.
941
+ */
408
942
  constructor(requestData: MasterPlayerModels.LinkAccountRequestData, timeout: number);
409
943
  }
944
+ /**
945
+ * Maps the ServerLinkAccount operation to a typed request wrapper.
946
+ */
410
947
  class ServerLinkAccountOperationRequest extends LinkAccountOperationRequest {
411
948
  protected role: RequestRole;
949
+ /**
950
+ * Creates a new ServerLinkAccountOperationRequest instance.
951
+ */
412
952
  constructor(requestData: MasterPlayerModels.ServerLinkAccountRequestData, timeout: number);
413
953
  }
954
+ /**
955
+ * Maps the AdminLinkAccount operation to a typed request wrapper.
956
+ */
414
957
  class AdminLinkAccountOperationRequest extends LinkAccountOperationRequest {
415
958
  protected role: RequestRole;
959
+ /**
960
+ * Creates a new AdminLinkAccountOperationRequest instance.
961
+ */
416
962
  constructor(requestData: MasterPlayerModels.AdminLinkAccountRequestData, timeout: number);
417
963
  }
964
+ /**
965
+ * Maps the LinkAndroidDeviceId operation to a typed request wrapper.
966
+ */
418
967
  class LinkAndroidDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkAndroidDeviceIdRequestData> {
419
968
  protected operationCode: string;
420
969
  protected requestType: RequestType;
421
970
  protected role: RequestRole;
971
+ /**
972
+ * Creates a new LinkAndroidDeviceIdOperationRequest instance.
973
+ */
422
974
  constructor(requestData: MasterPlayerModels.LinkAndroidDeviceIdRequestData, timeout: number);
423
975
  }
976
+ /**
977
+ * Maps the ServerLinkAndroidDeviceId operation to a typed request wrapper.
978
+ */
424
979
  class ServerLinkAndroidDeviceIdOperationRequest extends LinkAndroidDeviceIdOperationRequest {
425
980
  protected role: RequestRole;
981
+ /**
982
+ * Creates a new ServerLinkAndroidDeviceIdOperationRequest instance.
983
+ */
426
984
  constructor(requestData: MasterPlayerModels.ServerLinkAndroidDeviceIdRequestData, timeout: number);
427
985
  }
986
+ /**
987
+ * Maps the AdminLinkAndroidDeviceId operation to a typed request wrapper.
988
+ */
428
989
  class AdminLinkAndroidDeviceIdOperationRequest extends LinkAndroidDeviceIdOperationRequest {
429
990
  protected role: RequestRole;
991
+ /**
992
+ * Creates a new AdminLinkAndroidDeviceIdOperationRequest instance.
993
+ */
430
994
  constructor(requestData: MasterPlayerModels.AdminLinkAndroidDeviceIdRequestData, timeout: number);
431
995
  }
996
+ /**
997
+ * Maps the LinkApple operation to a typed request wrapper.
998
+ */
432
999
  class LinkAppleOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkAppleRequestData> {
433
1000
  protected operationCode: string;
434
1001
  protected requestType: RequestType;
435
1002
  protected role: RequestRole;
1003
+ /**
1004
+ * Creates a new LinkAppleOperationRequest instance.
1005
+ */
436
1006
  constructor(requestData: MasterPlayerModels.LinkAppleRequestData, timeout: number);
437
1007
  }
1008
+ /**
1009
+ * Maps the ServerLinkApple operation to a typed request wrapper.
1010
+ */
438
1011
  class ServerLinkAppleOperationRequest extends LinkAppleOperationRequest {
439
1012
  protected role: RequestRole;
1013
+ /**
1014
+ * Creates a new ServerLinkAppleOperationRequest instance.
1015
+ */
440
1016
  constructor(requestData: MasterPlayerModels.ServerLinkAppleRequestData, timeout: number);
441
1017
  }
1018
+ /**
1019
+ * Maps the AdminLinkApple operation to a typed request wrapper.
1020
+ */
442
1021
  class AdminLinkAppleOperationRequest extends LinkAppleOperationRequest {
443
1022
  protected role: RequestRole;
1023
+ /**
1024
+ * Creates a new AdminLinkAppleOperationRequest instance.
1025
+ */
444
1026
  constructor(requestData: MasterPlayerModels.AdminLinkAppleRequestData, timeout: number);
445
1027
  }
1028
+ /**
1029
+ * Maps the LinkCustomDeviceId operation to a typed request wrapper.
1030
+ */
446
1031
  class LinkCustomDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkCustomDeviceIdRequestData> {
447
1032
  protected operationCode: string;
448
1033
  protected requestType: RequestType;
449
1034
  protected role: RequestRole;
1035
+ /**
1036
+ * Creates a new LinkCustomDeviceIdOperationRequest instance.
1037
+ */
450
1038
  constructor(requestData: MasterPlayerModels.LinkCustomDeviceIdRequestData, timeout: number);
451
1039
  }
1040
+ /**
1041
+ * Maps the ServerLinkCustomDeviceId operation to a typed request wrapper.
1042
+ */
452
1043
  class ServerLinkCustomDeviceIdOperationRequest extends LinkCustomDeviceIdOperationRequest {
453
1044
  protected role: RequestRole;
1045
+ /**
1046
+ * Creates a new ServerLinkCustomDeviceIdOperationRequest instance.
1047
+ */
454
1048
  constructor(requestData: MasterPlayerModels.ServerLinkCustomDeviceIdRequestData, timeout: number);
455
1049
  }
1050
+ /**
1051
+ * Maps the AdminLinkCustomDeviceId operation to a typed request wrapper.
1052
+ */
456
1053
  class AdminLinkCustomDeviceIdOperationRequest extends LinkCustomDeviceIdOperationRequest {
457
1054
  protected role: RequestRole;
1055
+ /**
1056
+ * Creates a new AdminLinkCustomDeviceIdOperationRequest instance.
1057
+ */
458
1058
  constructor(requestData: MasterPlayerModels.AdminLinkCustomDeviceIdRequestData, timeout: number);
459
1059
  }
1060
+ /**
1061
+ * Maps the LinkCustomId operation to a typed request wrapper.
1062
+ */
460
1063
  class LinkCustomIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkCustomIdRequestData> {
461
1064
  protected operationCode: string;
462
1065
  protected requestType: RequestType;
463
1066
  protected role: RequestRole;
1067
+ /**
1068
+ * Creates a new LinkCustomIdOperationRequest instance.
1069
+ */
464
1070
  constructor(requestData: MasterPlayerModels.LinkCustomIdRequestData, timeout: number);
465
1071
  }
1072
+ /**
1073
+ * Maps the ServerLinkCustomId operation to a typed request wrapper.
1074
+ */
466
1075
  class ServerLinkCustomIdOperationRequest extends LinkCustomIdOperationRequest {
467
1076
  protected role: RequestRole;
1077
+ /**
1078
+ * Creates a new ServerLinkCustomIdOperationRequest instance.
1079
+ */
468
1080
  constructor(requestData: MasterPlayerModels.ServerLinkCustomIdRequestData, timeout: number);
469
1081
  }
1082
+ /**
1083
+ * Maps the AdminLinkCustomId operation to a typed request wrapper.
1084
+ */
470
1085
  class AdminLinkCustomIdOperationRequest extends LinkCustomIdOperationRequest {
471
1086
  protected role: RequestRole;
1087
+ /**
1088
+ * Creates a new AdminLinkCustomIdOperationRequest instance.
1089
+ */
472
1090
  constructor(requestData: MasterPlayerModels.AdminLinkCustomIdRequestData, timeout: number);
473
1091
  }
1092
+ /**
1093
+ * Maps the LinkEditorDeviceId operation to a typed request wrapper.
1094
+ */
474
1095
  class LinkEditorDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkEditorDeviceIdRequestData> {
475
1096
  protected operationCode: string;
476
1097
  protected requestType: RequestType;
477
1098
  protected role: RequestRole;
1099
+ /**
1100
+ * Creates a new LinkEditorDeviceIdOperationRequest instance.
1101
+ */
478
1102
  constructor(requestData: MasterPlayerModels.LinkEditorDeviceIdRequestData, timeout: number);
479
1103
  }
1104
+ /**
1105
+ * Maps the ServerLinkEditorDeviceId operation to a typed request wrapper.
1106
+ */
480
1107
  class ServerLinkEditorDeviceIdOperationRequest extends LinkEditorDeviceIdOperationRequest {
481
1108
  protected role: RequestRole;
1109
+ /**
1110
+ * Creates a new ServerLinkEditorDeviceIdOperationRequest instance.
1111
+ */
482
1112
  constructor(requestData: MasterPlayerModels.ServerLinkEditorDeviceIdRequestData, timeout: number);
483
1113
  }
1114
+ /**
1115
+ * Maps the AdminLinkEditorDeviceId operation to a typed request wrapper.
1116
+ */
484
1117
  class AdminLinkEditorDeviceIdOperationRequest extends LinkEditorDeviceIdOperationRequest {
485
1118
  protected role: RequestRole;
1119
+ /**
1120
+ * Creates a new AdminLinkEditorDeviceIdOperationRequest instance.
1121
+ */
486
1122
  constructor(requestData: MasterPlayerModels.AdminLinkEditorDeviceIdRequestData, timeout: number);
487
1123
  }
1124
+ /**
1125
+ * Maps the LinkFacebook operation to a typed request wrapper.
1126
+ */
488
1127
  class LinkFacebookOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkFacebookRequestData> {
489
1128
  protected operationCode: string;
490
1129
  protected requestType: RequestType;
491
1130
  protected role: RequestRole;
1131
+ /**
1132
+ * Creates a new LinkFacebookOperationRequest instance.
1133
+ */
492
1134
  constructor(requestData: MasterPlayerModels.LinkFacebookRequestData, timeout: number);
493
1135
  }
1136
+ /**
1137
+ * Maps the ServerLinkFacebook operation to a typed request wrapper.
1138
+ */
494
1139
  class ServerLinkFacebookOperationRequest extends LinkFacebookOperationRequest {
495
1140
  protected role: RequestRole;
1141
+ /**
1142
+ * Creates a new ServerLinkFacebookOperationRequest instance.
1143
+ */
496
1144
  constructor(requestData: MasterPlayerModels.ServerLinkFacebookRequestData, timeout: number);
497
1145
  }
1146
+ /**
1147
+ * Maps the AdminLinkFacebook operation to a typed request wrapper.
1148
+ */
498
1149
  class AdminLinkFacebookOperationRequest extends LinkFacebookOperationRequest {
499
1150
  protected role: RequestRole;
1151
+ /**
1152
+ * Creates a new AdminLinkFacebookOperationRequest instance.
1153
+ */
500
1154
  constructor(requestData: MasterPlayerModels.AdminLinkFacebookRequestData, timeout: number);
501
1155
  }
1156
+ /**
1157
+ * Maps the LinkGenericService operation to a typed request wrapper.
1158
+ */
502
1159
  class LinkGenericServiceOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkGenericServiceRequestData> {
503
1160
  protected operationCode: string;
504
1161
  protected requestType: RequestType;
505
1162
  protected role: RequestRole;
1163
+ /**
1164
+ * Creates a new LinkGenericServiceOperationRequest instance.
1165
+ */
506
1166
  constructor(requestData: MasterPlayerModels.LinkGenericServiceRequestData, timeout: number);
507
1167
  }
1168
+ /**
1169
+ * Maps the ServerLinkGenericService operation to a typed request wrapper.
1170
+ */
508
1171
  class ServerLinkGenericServiceOperationRequest extends LinkGenericServiceOperationRequest {
509
1172
  protected role: RequestRole;
1173
+ /**
1174
+ * Creates a new ServerLinkGenericServiceOperationRequest instance.
1175
+ */
510
1176
  constructor(requestData: MasterPlayerModels.ServerLinkGenericServiceRequestData, timeout: number);
511
1177
  }
1178
+ /**
1179
+ * Maps the AdminLinkGenericService operation to a typed request wrapper.
1180
+ */
512
1181
  class AdminLinkGenericServiceOperationRequest extends LinkGenericServiceOperationRequest {
513
1182
  protected role: RequestRole;
1183
+ /**
1184
+ * Creates a new AdminLinkGenericServiceOperationRequest instance.
1185
+ */
514
1186
  constructor(requestData: MasterPlayerModels.AdminLinkGenericServiceRequestData, timeout: number);
515
1187
  }
1188
+ /**
1189
+ * Maps the LinkGoogle operation to a typed request wrapper.
1190
+ */
516
1191
  class LinkGoogleOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkGoogleRequestData> {
517
1192
  protected operationCode: string;
518
1193
  protected requestType: RequestType;
519
1194
  protected role: RequestRole;
1195
+ /**
1196
+ * Creates a new LinkGoogleOperationRequest instance.
1197
+ */
520
1198
  constructor(requestData: MasterPlayerModels.LinkGoogleRequestData, timeout: number);
521
1199
  }
1200
+ /**
1201
+ * Maps the ServerLinkGoogle operation to a typed request wrapper.
1202
+ */
522
1203
  class ServerLinkGoogleOperationRequest extends LinkGoogleOperationRequest {
523
1204
  protected role: RequestRole;
1205
+ /**
1206
+ * Creates a new ServerLinkGoogleOperationRequest instance.
1207
+ */
524
1208
  constructor(requestData: MasterPlayerModels.ServerLinkGoogleRequestData, timeout: number);
525
1209
  }
1210
+ /**
1211
+ * Maps the AdminLinkGoogle operation to a typed request wrapper.
1212
+ */
526
1213
  class AdminLinkGoogleOperationRequest extends LinkGoogleOperationRequest {
527
1214
  protected role: RequestRole;
1215
+ /**
1216
+ * Creates a new AdminLinkGoogleOperationRequest instance.
1217
+ */
528
1218
  constructor(requestData: MasterPlayerModels.AdminLinkGoogleRequestData, timeout: number);
529
1219
  }
1220
+ /**
1221
+ * Maps the LinkGooglePlayGameService operation to a typed request wrapper.
1222
+ */
530
1223
  class LinkGooglePlayGameServiceOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkGooglePlayGameServiceRequestData> {
531
1224
  protected operationCode: string;
532
1225
  protected requestType: RequestType;
533
1226
  protected role: RequestRole;
1227
+ /**
1228
+ * Creates a new LinkGooglePlayGameServiceOperationRequest instance.
1229
+ */
534
1230
  constructor(requestData: MasterPlayerModels.LinkGooglePlayGameServiceRequestData, timeout: number);
535
1231
  }
1232
+ /**
1233
+ * Maps the ServerLinkGooglePlayGameService operation to a typed request wrapper.
1234
+ */
536
1235
  class ServerLinkGooglePlayGameServiceOperationRequest extends LinkGooglePlayGameServiceOperationRequest {
537
1236
  protected role: RequestRole;
1237
+ /**
1238
+ * Creates a new ServerLinkGooglePlayGameServiceOperationRequest instance.
1239
+ */
538
1240
  constructor(requestData: MasterPlayerModels.ServerLinkGooglePlayGameServiceRequestData, timeout: number);
539
1241
  }
1242
+ /**
1243
+ * Maps the AdminLinkGooglePlayGameService operation to a typed request wrapper.
1244
+ */
540
1245
  class AdminLinkGooglePlayGameServiceOperationRequest extends LinkGooglePlayGameServiceOperationRequest {
541
1246
  protected role: RequestRole;
1247
+ /**
1248
+ * Creates a new AdminLinkGooglePlayGameServiceOperationRequest instance.
1249
+ */
542
1250
  constructor(requestData: MasterPlayerModels.AdminLinkGooglePlayGameServiceRequestData, timeout: number);
543
1251
  }
1252
+ /**
1253
+ * Maps the LinkGameCenter operation to a typed request wrapper.
1254
+ */
544
1255
  class LinkGameCenterOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkGameCenterRequestData> {
545
1256
  protected operationCode: string;
546
1257
  protected requestType: RequestType;
547
1258
  protected role: RequestRole;
1259
+ /**
1260
+ * Creates a new LinkGameCenterOperationRequest instance.
1261
+ */
548
1262
  constructor(requestData: MasterPlayerModels.LinkGameCenterRequestData, timeout: number);
549
1263
  }
1264
+ /**
1265
+ * Maps the ServerLinkGameCenter operation to a typed request wrapper.
1266
+ */
550
1267
  class ServerLinkGameCenterOperationRequest extends LinkGameCenterOperationRequest {
551
1268
  protected role: RequestRole;
1269
+ /**
1270
+ * Creates a new ServerLinkGameCenterOperationRequest instance.
1271
+ */
552
1272
  constructor(requestData: MasterPlayerModels.ServerLinkGameCenterRequestData, timeout: number);
553
1273
  }
1274
+ /**
1275
+ * Maps the AdminLinkGameCenter operation to a typed request wrapper.
1276
+ */
554
1277
  class AdminLinkGameCenterOperationRequest extends LinkGameCenterOperationRequest {
555
1278
  protected role: RequestRole;
1279
+ /**
1280
+ * Creates a new AdminLinkGameCenterOperationRequest instance.
1281
+ */
556
1282
  constructor(requestData: MasterPlayerModels.AdminLinkGameCenterRequestData, timeout: number);
557
1283
  }
1284
+ /**
1285
+ * Maps the LinkiOSDeviceId operation to a typed request wrapper.
1286
+ */
558
1287
  class LinkiOSDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkiOSDeviceIdRequestData> {
559
1288
  protected operationCode: string;
560
1289
  protected requestType: RequestType;
561
1290
  protected role: RequestRole;
1291
+ /**
1292
+ * Creates a new LinkiOSDeviceIdOperationRequest instance.
1293
+ */
562
1294
  constructor(requestData: MasterPlayerModels.LinkiOSDeviceIdRequestData, timeout: number);
563
1295
  }
1296
+ /**
1297
+ * Maps the ServerLinkiOSDeviceId operation to a typed request wrapper.
1298
+ */
564
1299
  class ServerLinkiOSDeviceIdOperationRequest extends LinkiOSDeviceIdOperationRequest {
565
1300
  protected role: RequestRole;
1301
+ /**
1302
+ * Creates a new ServerLinkiOSDeviceIdOperationRequest instance.
1303
+ */
566
1304
  constructor(requestData: MasterPlayerModels.ServerLinkiOSDeviceIdRequestData, timeout: number);
567
1305
  }
1306
+ /**
1307
+ * Maps the AdminLinkiOSDeviceId operation to a typed request wrapper.
1308
+ */
568
1309
  class AdminLinkiOSDeviceIdOperationRequest extends LinkiOSDeviceIdOperationRequest {
569
1310
  protected role: RequestRole;
1311
+ /**
1312
+ * Creates a new AdminLinkiOSDeviceIdOperationRequest instance.
1313
+ */
570
1314
  constructor(requestData: MasterPlayerModels.AdminLinkiOSDeviceIdRequestData, timeout: number);
571
1315
  }
1316
+ /**
1317
+ * Maps the LinkLinuxDeviceId operation to a typed request wrapper.
1318
+ */
572
1319
  class LinkLinuxDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkLinuxDeviceIdRequestData> {
573
1320
  protected operationCode: string;
574
1321
  protected requestType: RequestType;
575
1322
  protected role: RequestRole;
1323
+ /**
1324
+ * Creates a new LinkLinuxDeviceIdOperationRequest instance.
1325
+ */
576
1326
  constructor(requestData: MasterPlayerModels.LinkLinuxDeviceIdRequestData, timeout: number);
577
1327
  }
1328
+ /**
1329
+ * Maps the ServerLinkLinuxDeviceId operation to a typed request wrapper.
1330
+ */
578
1331
  class ServerLinkLinuxDeviceIdOperationRequest extends LinkLinuxDeviceIdOperationRequest {
579
1332
  protected role: RequestRole;
1333
+ /**
1334
+ * Creates a new ServerLinkLinuxDeviceIdOperationRequest instance.
1335
+ */
580
1336
  constructor(requestData: MasterPlayerModels.ServerLinkLinuxDeviceIdRequestData, timeout: number);
581
1337
  }
1338
+ /**
1339
+ * Maps the AdminLinkLinuxDeviceId operation to a typed request wrapper.
1340
+ */
582
1341
  class AdminLinkLinuxDeviceIdOperationRequest extends LinkLinuxDeviceIdOperationRequest {
583
1342
  protected role: RequestRole;
1343
+ /**
1344
+ * Creates a new AdminLinkLinuxDeviceIdOperationRequest instance.
1345
+ */
584
1346
  constructor(requestData: MasterPlayerModels.AdminLinkLinuxDeviceIdRequestData, timeout: number);
585
1347
  }
1348
+ /**
1349
+ * Maps the LinkMacOSDeviceId operation to a typed request wrapper.
1350
+ */
586
1351
  class LinkMacOSDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkMacOSDeviceIdRequestData> {
587
1352
  protected operationCode: string;
588
1353
  protected requestType: RequestType;
589
1354
  protected role: RequestRole;
1355
+ /**
1356
+ * Creates a new LinkMacOSDeviceIdOperationRequest instance.
1357
+ */
590
1358
  constructor(requestData: MasterPlayerModels.LinkMacOSDeviceIdRequestData, timeout: number);
591
1359
  }
1360
+ /**
1361
+ * Maps the ServerLinkMacOSDeviceId operation to a typed request wrapper.
1362
+ */
592
1363
  class ServerLinkMacOSDeviceIdOperationRequest extends LinkMacOSDeviceIdOperationRequest {
593
1364
  protected role: RequestRole;
1365
+ /**
1366
+ * Creates a new ServerLinkMacOSDeviceIdOperationRequest instance.
1367
+ */
594
1368
  constructor(requestData: MasterPlayerModels.ServerLinkMacOSDeviceIdRequestData, timeout: number);
595
1369
  }
1370
+ /**
1371
+ * Maps the AdminLinkMacOSDeviceId operation to a typed request wrapper.
1372
+ */
596
1373
  class AdminLinkMacOSDeviceIdOperationRequest extends LinkMacOSDeviceIdOperationRequest {
597
1374
  protected role: RequestRole;
1375
+ /**
1376
+ * Creates a new AdminLinkMacOSDeviceIdOperationRequest instance.
1377
+ */
598
1378
  constructor(requestData: MasterPlayerModels.AdminLinkMacOSDeviceIdRequestData, timeout: number);
599
1379
  }
1380
+ /**
1381
+ * Maps the LinkWindowsDeviceId operation to a typed request wrapper.
1382
+ */
600
1383
  class LinkWindowsDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkWindowsDeviceIdRequestData> {
601
1384
  protected operationCode: string;
602
1385
  protected requestType: RequestType;
603
1386
  protected role: RequestRole;
1387
+ /**
1388
+ * Creates a new LinkWindowsDeviceIdOperationRequest instance.
1389
+ */
604
1390
  constructor(requestData: MasterPlayerModels.LinkWindowsDeviceIdRequestData, timeout: number);
605
1391
  }
1392
+ /**
1393
+ * Maps the ServerLinkWindowsDeviceId operation to a typed request wrapper.
1394
+ */
606
1395
  class ServerLinkWindowsDeviceIdOperationRequest extends LinkWindowsDeviceIdOperationRequest {
607
1396
  protected role: RequestRole;
1397
+ /**
1398
+ * Creates a new ServerLinkWindowsDeviceIdOperationRequest instance.
1399
+ */
608
1400
  constructor(requestData: MasterPlayerModels.ServerLinkWindowsDeviceIdRequestData, timeout: number);
609
1401
  }
1402
+ /**
1403
+ * Maps the AdminLinkWindowsDeviceId operation to a typed request wrapper.
1404
+ */
610
1405
  class AdminLinkWindowsDeviceIdOperationRequest extends LinkWindowsDeviceIdOperationRequest {
611
1406
  protected role: RequestRole;
1407
+ /**
1408
+ * Creates a new AdminLinkWindowsDeviceIdOperationRequest instance.
1409
+ */
612
1410
  constructor(requestData: MasterPlayerModels.AdminLinkWindowsDeviceIdRequestData, timeout: number);
613
1411
  }
1412
+ /**
1413
+ * Maps the LinkWindowsPhoneDeviceId operation to a typed request wrapper.
1414
+ */
614
1415
  class LinkWindowsPhoneDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.LinkWindowsPhoneDeviceIdRequestData> {
615
1416
  protected operationCode: string;
616
1417
  protected requestType: RequestType;
617
1418
  protected role: RequestRole;
1419
+ /**
1420
+ * Creates a new LinkWindowsPhoneDeviceIdOperationRequest instance.
1421
+ */
618
1422
  constructor(requestData: MasterPlayerModels.LinkWindowsPhoneDeviceIdRequestData, timeout: number);
619
1423
  }
1424
+ /**
1425
+ * Maps the ServerLinkWindowsPhoneDeviceId operation to a typed request wrapper.
1426
+ */
620
1427
  class ServerLinkWindowsPhoneDeviceIdOperationRequest extends LinkWindowsPhoneDeviceIdOperationRequest {
621
1428
  protected role: RequestRole;
1429
+ /**
1430
+ * Creates a new ServerLinkWindowsPhoneDeviceIdOperationRequest instance.
1431
+ */
622
1432
  constructor(requestData: MasterPlayerModels.ServerLinkWindowsPhoneDeviceIdRequestData, timeout: number);
623
1433
  }
1434
+ /**
1435
+ * Maps the AdminLinkWindowsPhoneDeviceId operation to a typed request wrapper.
1436
+ */
624
1437
  class AdminLinkWindowsPhoneDeviceIdOperationRequest extends LinkWindowsPhoneDeviceIdOperationRequest {
625
1438
  protected role: RequestRole;
1439
+ /**
1440
+ * Creates a new AdminLinkWindowsPhoneDeviceIdOperationRequest instance.
1441
+ */
626
1442
  constructor(requestData: MasterPlayerModels.AdminLinkWindowsPhoneDeviceIdRequestData, timeout: number);
627
1443
  }
1444
+ /**
1445
+ * Maps the RemoveSegment operation to a typed request wrapper.
1446
+ */
628
1447
  class RemoveSegmentOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.RemoveSegmentRequestData> {
629
1448
  protected operationCode: string;
630
1449
  protected requestType: RequestType;
631
1450
  protected role: RequestRole;
1451
+ /**
1452
+ * Creates a new RemoveSegmentOperationRequest instance.
1453
+ */
632
1454
  constructor(requestData: MasterPlayerModels.RemoveSegmentRequestData, timeout: number);
633
1455
  }
1456
+ /**
1457
+ * Maps the ServerRemoveSegment operation to a typed request wrapper.
1458
+ */
634
1459
  class ServerRemoveSegmentOperationRequest extends RemoveSegmentOperationRequest {
635
1460
  protected role: RequestRole;
1461
+ /**
1462
+ * Creates a new ServerRemoveSegmentOperationRequest instance.
1463
+ */
636
1464
  constructor(requestData: MasterPlayerModels.ServerRemoveSegmentRequestData, timeout: number);
637
1465
  }
1466
+ /**
1467
+ * Maps the AdminRemoveSegment operation to a typed request wrapper.
1468
+ */
638
1469
  class AdminRemoveSegmentOperationRequest extends RemoveSegmentOperationRequest {
639
1470
  protected role: RequestRole;
1471
+ /**
1472
+ * Creates a new AdminRemoveSegmentOperationRequest instance.
1473
+ */
640
1474
  constructor(requestData: MasterPlayerModels.AdminRemoveSegmentRequestData, timeout: number);
641
1475
  }
1476
+ /**
1477
+ * Maps the RemoveTag operation to a typed request wrapper.
1478
+ */
642
1479
  class RemoveTagOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.RemoveTagRequestData> {
643
1480
  protected operationCode: string;
644
1481
  protected requestType: RequestType;
645
1482
  protected role: RequestRole;
1483
+ /**
1484
+ * Creates a new RemoveTagOperationRequest instance.
1485
+ */
646
1486
  constructor(requestData: MasterPlayerModels.RemoveTagRequestData, timeout: number);
647
1487
  }
1488
+ /**
1489
+ * Maps the ServerRemoveTag operation to a typed request wrapper.
1490
+ */
648
1491
  class ServerRemoveTagOperationRequest extends RemoveTagOperationRequest {
649
1492
  protected role: RequestRole;
1493
+ /**
1494
+ * Creates a new ServerRemoveTagOperationRequest instance.
1495
+ */
650
1496
  constructor(requestData: MasterPlayerModels.ServerRemoveTagRequestData, timeout: number);
651
1497
  }
1498
+ /**
1499
+ * Maps the AdminRemoveTag operation to a typed request wrapper.
1500
+ */
652
1501
  class AdminRemoveTagOperationRequest extends RemoveTagOperationRequest {
653
1502
  protected role: RequestRole;
1503
+ /**
1504
+ * Creates a new AdminRemoveTagOperationRequest instance.
1505
+ */
654
1506
  constructor(requestData: MasterPlayerModels.AdminRemoveTagRequestData, timeout: number);
655
1507
  }
1508
+ /**
1509
+ * Maps the ResetAccountPassword operation to a typed request wrapper.
1510
+ */
656
1511
  class ResetAccountPasswordOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.ResetAccountPasswordRequestData> {
657
1512
  protected operationCode: string;
658
1513
  protected requestType: RequestType;
659
1514
  protected role: RequestRole;
1515
+ /**
1516
+ * Creates a new ResetAccountPasswordOperationRequest instance.
1517
+ */
660
1518
  constructor(requestData: MasterPlayerModels.ResetAccountPasswordRequestData, timeout: number);
661
1519
  }
1520
+ /**
1521
+ * Maps the ServerResetAccountPassword operation to a typed request wrapper.
1522
+ */
662
1523
  class ServerResetAccountPasswordOperationRequest extends ResetAccountPasswordOperationRequest {
663
1524
  protected role: RequestRole;
1525
+ /**
1526
+ * Creates a new ServerResetAccountPasswordOperationRequest instance.
1527
+ */
664
1528
  constructor(requestData: MasterPlayerModels.ServerResetAccountPasswordRequestData, timeout: number);
665
1529
  }
1530
+ /**
1531
+ * Maps the AdminResetAccountPassword operation to a typed request wrapper.
1532
+ */
666
1533
  class AdminResetAccountPasswordOperationRequest extends ResetAccountPasswordOperationRequest {
667
1534
  protected role: RequestRole;
1535
+ /**
1536
+ * Creates a new AdminResetAccountPasswordOperationRequest instance.
1537
+ */
668
1538
  constructor(requestData: MasterPlayerModels.AdminResetAccountPasswordRequestData, timeout: number);
669
1539
  }
1540
+ /**
1541
+ * Maps the SetAvatar operation to a typed request wrapper.
1542
+ */
670
1543
  class SetAvatarOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.SetAvatarRequestData> {
671
1544
  protected operationCode: string;
672
1545
  protected requestType: RequestType;
673
1546
  protected role: RequestRole;
1547
+ /**
1548
+ * Creates a new SetAvatarOperationRequest instance.
1549
+ */
674
1550
  constructor(requestData: MasterPlayerModels.SetAvatarRequestData, timeout: number);
675
1551
  }
1552
+ /**
1553
+ * Maps the ServerSetAvatar operation to a typed request wrapper.
1554
+ */
676
1555
  class ServerSetAvatarOperationRequest extends SetAvatarOperationRequest {
677
1556
  protected role: RequestRole;
1557
+ /**
1558
+ * Creates a new ServerSetAvatarOperationRequest instance.
1559
+ */
678
1560
  constructor(requestData: MasterPlayerModels.ServerSetAvatarRequestData, timeout: number);
679
1561
  }
1562
+ /**
1563
+ * Maps the AdminSetAvatar operation to a typed request wrapper.
1564
+ */
680
1565
  class AdminSetAvatarOperationRequest extends SetAvatarOperationRequest {
681
1566
  protected role: RequestRole;
1567
+ /**
1568
+ * Creates a new AdminSetAvatarOperationRequest instance.
1569
+ */
682
1570
  constructor(requestData: MasterPlayerModels.AdminSetAvatarRequestData, timeout: number);
683
1571
  }
1572
+ /**
1573
+ * Maps the SetCountryCode operation to a typed request wrapper.
1574
+ */
684
1575
  class SetCountryCodeOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.SetCountryCodeRequestData> {
685
1576
  protected operationCode: string;
686
1577
  protected requestType: RequestType;
687
1578
  protected role: RequestRole;
1579
+ /**
1580
+ * Creates a new SetCountryCodeOperationRequest instance.
1581
+ */
688
1582
  constructor(requestData: MasterPlayerModels.SetCountryCodeRequestData, timeout: number);
689
1583
  }
1584
+ /**
1585
+ * Maps the ServerSetCountryCode operation to a typed request wrapper.
1586
+ */
690
1587
  class ServerSetCountryCodeOperationRequest extends SetCountryCodeOperationRequest {
691
1588
  protected role: RequestRole;
1589
+ /**
1590
+ * Creates a new ServerSetCountryCodeOperationRequest instance.
1591
+ */
692
1592
  constructor(requestData: MasterPlayerModels.ServerSetCountryCodeRequestData, timeout: number);
693
1593
  }
1594
+ /**
1595
+ * Maps the AdminSetCountryCode operation to a typed request wrapper.
1596
+ */
694
1597
  class AdminSetCountryCodeOperationRequest extends SetCountryCodeOperationRequest {
695
1598
  protected role: RequestRole;
1599
+ /**
1600
+ * Creates a new AdminSetCountryCodeOperationRequest instance.
1601
+ */
696
1602
  constructor(requestData: MasterPlayerModels.AdminSetCountryCodeRequestData, timeout: number);
697
1603
  }
1604
+ /**
1605
+ * Maps the SetCustomData operation to a typed request wrapper.
1606
+ */
698
1607
  class SetCustomDataOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.SetCustomDataRequestData> {
699
1608
  protected operationCode: string;
700
1609
  protected requestType: RequestType;
701
1610
  protected role: RequestRole;
1611
+ /**
1612
+ * Creates a new SetCustomDataOperationRequest instance.
1613
+ */
702
1614
  constructor(requestData: MasterPlayerModels.SetCustomDataRequestData, timeout: number);
703
1615
  }
1616
+ /**
1617
+ * Maps the ServerSetCustomData operation to a typed request wrapper.
1618
+ */
704
1619
  class ServerSetCustomDataOperationRequest extends SetCustomDataOperationRequest {
705
1620
  protected role: RequestRole;
1621
+ /**
1622
+ * Creates a new ServerSetCustomDataOperationRequest instance.
1623
+ */
706
1624
  constructor(requestData: MasterPlayerModels.ServerSetCustomDataRequestData, timeout: number);
707
1625
  }
1626
+ /**
1627
+ * Maps the AdminSetCustomData operation to a typed request wrapper.
1628
+ */
708
1629
  class AdminSetCustomDataOperationRequest extends SetCustomDataOperationRequest {
709
1630
  protected role: RequestRole;
1631
+ /**
1632
+ * Creates a new AdminSetCustomDataOperationRequest instance.
1633
+ */
710
1634
  constructor(requestData: MasterPlayerModels.AdminSetCustomDataRequestData, timeout: number);
711
1635
  }
1636
+ /**
1637
+ * Maps the SetDisplayName operation to a typed request wrapper.
1638
+ */
712
1639
  class SetDisplayNameOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.SetDisplayNameRequestData> {
713
1640
  protected operationCode: string;
714
1641
  protected requestType: RequestType;
715
1642
  protected role: RequestRole;
1643
+ /**
1644
+ * Creates a new SetDisplayNameOperationRequest instance.
1645
+ */
716
1646
  constructor(requestData: MasterPlayerModels.SetDisplayNameRequestData, timeout: number);
717
1647
  }
1648
+ /**
1649
+ * Maps the ServerSetDisplayName operation to a typed request wrapper.
1650
+ */
718
1651
  class ServerSetDisplayNameOperationRequest extends SetDisplayNameOperationRequest {
719
1652
  protected role: RequestRole;
1653
+ /**
1654
+ * Creates a new ServerSetDisplayNameOperationRequest instance.
1655
+ */
720
1656
  constructor(requestData: MasterPlayerModels.ServerSetDisplayNameRequestData, timeout: number);
721
1657
  }
1658
+ /**
1659
+ * Maps the AdminSetDisplayName operation to a typed request wrapper.
1660
+ */
722
1661
  class AdminSetDisplayNameOperationRequest extends SetDisplayNameOperationRequest {
723
1662
  protected role: RequestRole;
1663
+ /**
1664
+ * Creates a new AdminSetDisplayNameOperationRequest instance.
1665
+ */
724
1666
  constructor(requestData: MasterPlayerModels.AdminSetDisplayNameRequestData, timeout: number);
725
1667
  }
1668
+ /**
1669
+ * Maps the SetEmail operation to a typed request wrapper.
1670
+ */
726
1671
  class SetEmailOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.SetEmailRequestData> {
727
1672
  protected operationCode: string;
728
1673
  protected requestType: RequestType;
729
1674
  protected role: RequestRole;
1675
+ /**
1676
+ * Creates a new SetEmailOperationRequest instance.
1677
+ */
730
1678
  constructor(requestData: MasterPlayerModels.SetEmailRequestData, timeout: number);
731
1679
  }
1680
+ /**
1681
+ * Maps the ServerSetEmail operation to a typed request wrapper.
1682
+ */
732
1683
  class ServerSetEmailOperationRequest extends SetEmailOperationRequest {
733
1684
  protected role: RequestRole;
1685
+ /**
1686
+ * Creates a new ServerSetEmailOperationRequest instance.
1687
+ */
734
1688
  constructor(requestData: MasterPlayerModels.ServerSetEmailRequestData, timeout: number);
735
1689
  }
1690
+ /**
1691
+ * Maps the AdminSetEmail operation to a typed request wrapper.
1692
+ */
736
1693
  class AdminSetEmailOperationRequest extends SetEmailOperationRequest {
737
1694
  protected role: RequestRole;
1695
+ /**
1696
+ * Creates a new AdminSetEmailOperationRequest instance.
1697
+ */
738
1698
  constructor(requestData: MasterPlayerModels.AdminSetEmailRequestData, timeout: number);
739
1699
  }
1700
+ /**
1701
+ * Maps the SetPlayerBan operation to a typed request wrapper.
1702
+ */
740
1703
  class SetPlayerBanOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.SetPlayerBanRequestData> {
741
1704
  protected operationCode: string;
742
1705
  protected requestType: RequestType;
743
1706
  protected role: RequestRole;
1707
+ /**
1708
+ * Creates a new SetPlayerBanOperationRequest instance.
1709
+ */
744
1710
  constructor(requestData: MasterPlayerModels.SetPlayerBanRequestData, timeout: number);
745
1711
  }
1712
+ /**
1713
+ * Maps the ServerSetPlayerBan operation to a typed request wrapper.
1714
+ */
746
1715
  class ServerSetPlayerBanOperationRequest extends SetPlayerBanOperationRequest {
747
1716
  protected role: RequestRole;
1717
+ /**
1718
+ * Creates a new ServerSetPlayerBanOperationRequest instance.
1719
+ */
748
1720
  constructor(requestData: MasterPlayerModels.ServerSetPlayerBanRequestData, timeout: number);
749
1721
  }
1722
+ /**
1723
+ * Maps the AdminSetPlayerBan operation to a typed request wrapper.
1724
+ */
750
1725
  class AdminSetPlayerBanOperationRequest extends SetPlayerBanOperationRequest {
751
1726
  protected role: RequestRole;
1727
+ /**
1728
+ * Creates a new AdminSetPlayerBanOperationRequest instance.
1729
+ */
752
1730
  constructor(requestData: MasterPlayerModels.AdminSetPlayerBanRequestData, timeout: number);
753
1731
  }
1732
+ /**
1733
+ * Maps the ChangePlayerCurrency operation to a typed request wrapper.
1734
+ */
754
1735
  class ChangePlayerCurrencyOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.ChangePlayerCurrencyRequestData> {
755
1736
  protected operationCode: string;
756
1737
  protected requestType: RequestType;
757
1738
  protected role: RequestRole;
1739
+ /**
1740
+ * Creates a new ChangePlayerCurrencyOperationRequest instance.
1741
+ */
758
1742
  constructor(requestData: MasterPlayerModels.ChangePlayerCurrencyRequestData, timeout: number);
759
1743
  }
1744
+ /**
1745
+ * Maps the ServerChangePlayerCurrency operation to a typed request wrapper.
1746
+ */
760
1747
  class ServerChangePlayerCurrencyOperationRequest extends ChangePlayerCurrencyOperationRequest {
761
1748
  protected role: RequestRole;
1749
+ /**
1750
+ * Creates a new ServerChangePlayerCurrencyOperationRequest instance.
1751
+ */
762
1752
  constructor(requestData: MasterPlayerModels.ServerChangePlayerCurrencyRequestData, timeout: number);
763
1753
  }
1754
+ /**
1755
+ * Maps the AdminChangePlayerCurrency operation to a typed request wrapper.
1756
+ */
764
1757
  class AdminChangePlayerCurrencyOperationRequest extends ChangePlayerCurrencyOperationRequest {
765
1758
  protected role: RequestRole;
1759
+ /**
1760
+ * Creates a new AdminChangePlayerCurrencyOperationRequest instance.
1761
+ */
766
1762
  constructor(requestData: MasterPlayerModels.AdminChangePlayerCurrencyRequestData, timeout: number);
767
1763
  }
1764
+ /**
1765
+ * Maps the SetPlayerData operation to a typed request wrapper.
1766
+ */
768
1767
  class SetPlayerDataOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.SetPlayerDataRequestData> {
769
1768
  protected operationCode: string;
770
1769
  protected requestType: RequestType;
771
1770
  protected role: RequestRole;
1771
+ /**
1772
+ * Creates a new SetPlayerDataOperationRequest instance.
1773
+ */
772
1774
  constructor(requestData: MasterPlayerModels.SetPlayerDataRequestData, timeout: number);
773
1775
  }
1776
+ /**
1777
+ * Maps the ServerSetPlayerData operation to a typed request wrapper.
1778
+ */
774
1779
  class ServerSetPlayerDataOperationRequest extends SetPlayerDataOperationRequest {
775
1780
  protected role: RequestRole;
1781
+ /**
1782
+ * Creates a new ServerSetPlayerDataOperationRequest instance.
1783
+ */
776
1784
  constructor(requestData: MasterPlayerModels.ServerSetPlayerDataRequestData, timeout: number);
777
1785
  }
1786
+ /**
1787
+ * Maps the AdminSetPlayerData operation to a typed request wrapper.
1788
+ */
778
1789
  class AdminSetPlayerDataOperationRequest extends SetPlayerDataOperationRequest {
779
1790
  protected role: RequestRole;
1791
+ /**
1792
+ * Creates a new AdminSetPlayerDataOperationRequest instance.
1793
+ */
780
1794
  constructor(requestData: MasterPlayerModels.AdminSetPlayerDataRequestData, timeout: number);
781
1795
  }
1796
+ /**
1797
+ * Maps the ChangePlayerStatistics operation to a typed request wrapper.
1798
+ */
782
1799
  class ChangePlayerStatisticsOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.ChangePlayerStatisticsRequestData> {
783
1800
  protected operationCode: string;
784
1801
  protected requestType: RequestType;
785
1802
  protected role: RequestRole;
1803
+ /**
1804
+ * Creates a new ChangePlayerStatisticsOperationRequest instance.
1805
+ */
786
1806
  constructor(requestData: MasterPlayerModels.ChangePlayerStatisticsRequestData, timeout: number);
787
1807
  }
1808
+ /**
1809
+ * Maps the ServerChangePlayerStatistics operation to a typed request wrapper.
1810
+ */
788
1811
  class ServerChangePlayerStatisticsOperationRequest extends ChangePlayerStatisticsOperationRequest {
789
1812
  protected role: RequestRole;
1813
+ /**
1814
+ * Creates a new ServerChangePlayerStatisticsOperationRequest instance.
1815
+ */
790
1816
  constructor(requestData: MasterPlayerModels.ServerChangePlayerStatisticsRequestData, timeout: number);
791
1817
  }
1818
+ /**
1819
+ * Maps the AdminChangePlayerStatistics operation to a typed request wrapper.
1820
+ */
792
1821
  class AdminChangePlayerStatisticsOperationRequest extends ChangePlayerStatisticsOperationRequest {
793
1822
  protected role: RequestRole;
1823
+ /**
1824
+ * Creates a new AdminChangePlayerStatisticsOperationRequest instance.
1825
+ */
794
1826
  constructor(requestData: MasterPlayerModels.AdminChangePlayerStatisticsRequestData, timeout: number);
795
1827
  }
1828
+ /**
1829
+ * Maps the SetTag operation to a typed request wrapper.
1830
+ */
796
1831
  class SetTagOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.SetTagRequestData> {
797
1832
  protected operationCode: string;
798
1833
  protected requestType: RequestType;
799
1834
  protected role: RequestRole;
1835
+ /**
1836
+ * Creates a new SetTagOperationRequest instance.
1837
+ */
800
1838
  constructor(requestData: MasterPlayerModels.SetTagRequestData, timeout: number);
801
1839
  }
1840
+ /**
1841
+ * Maps the ServerSetTag operation to a typed request wrapper.
1842
+ */
802
1843
  class ServerSetTagOperationRequest extends SetTagOperationRequest {
803
1844
  protected role: RequestRole;
1845
+ /**
1846
+ * Creates a new ServerSetTagOperationRequest instance.
1847
+ */
804
1848
  constructor(requestData: MasterPlayerModels.ServerSetTagRequestData, timeout: number);
805
1849
  }
1850
+ /**
1851
+ * Maps the AdminSetTag operation to a typed request wrapper.
1852
+ */
806
1853
  class AdminSetTagOperationRequest extends SetTagOperationRequest {
807
1854
  protected role: RequestRole;
1855
+ /**
1856
+ * Creates a new AdminSetTagOperationRequest instance.
1857
+ */
808
1858
  constructor(requestData: MasterPlayerModels.AdminSetTagRequestData, timeout: number);
809
1859
  }
810
- class SetTsLastLoginOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.SetTsLastLoginRequestData> {
1860
+ /**
1861
+ * Maps the UpdateTsLastLogin operation to a typed request wrapper.
1862
+ */
1863
+ class UpdateTsLastLoginOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UpdateTsLastLoginRequestData> {
811
1864
  protected operationCode: string;
812
1865
  protected requestType: RequestType;
813
1866
  protected role: RequestRole;
814
- constructor(requestData: MasterPlayerModels.SetTsLastLoginRequestData, timeout: number);
1867
+ /**
1868
+ * Creates a new UpdateTsLastLoginOperationRequest instance.
1869
+ */
1870
+ constructor(requestData: MasterPlayerModels.UpdateTsLastLoginRequestData, timeout: number);
815
1871
  }
816
- class ServerSetTsLastLoginOperationRequest extends SetTsLastLoginOperationRequest {
1872
+ /**
1873
+ * Maps the ServerUpdateTsLastLogin operation to a typed request wrapper.
1874
+ */
1875
+ class ServerUpdateTsLastLoginOperationRequest extends UpdateTsLastLoginOperationRequest {
817
1876
  protected role: RequestRole;
818
- constructor(requestData: MasterPlayerModels.ServerSetTsLastLoginRequestData, timeout: number);
1877
+ /**
1878
+ * Creates a new ServerUpdateTsLastLoginOperationRequest instance.
1879
+ */
1880
+ constructor(requestData: MasterPlayerModels.ServerUpdateTsLastLoginRequestData, timeout: number);
819
1881
  }
820
- class AdminSetTsLastLoginOperationRequest extends SetTsLastLoginOperationRequest {
1882
+ /**
1883
+ * Maps the AdminUpdateTsLastLogin operation to a typed request wrapper.
1884
+ */
1885
+ class AdminUpdateTsLastLoginOperationRequest extends UpdateTsLastLoginOperationRequest {
821
1886
  protected role: RequestRole;
822
- constructor(requestData: MasterPlayerModels.AdminSetTsLastLoginRequestData, timeout: number);
1887
+ /**
1888
+ * Creates a new AdminUpdateTsLastLoginOperationRequest instance.
1889
+ */
1890
+ constructor(requestData: MasterPlayerModels.AdminUpdateTsLastLoginRequestData, timeout: number);
823
1891
  }
1892
+ /**
1893
+ * Maps the UnlinkAccount operation to a typed request wrapper.
1894
+ */
824
1895
  class UnlinkAccountOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkAccountRequestData> {
825
1896
  protected operationCode: string;
826
1897
  protected requestType: RequestType;
827
1898
  protected role: RequestRole;
1899
+ /**
1900
+ * Creates a new UnlinkAccountOperationRequest instance.
1901
+ */
828
1902
  constructor(requestData: MasterPlayerModels.UnlinkAccountRequestData, timeout: number);
829
1903
  }
1904
+ /**
1905
+ * Maps the ServerUnlinkAccount operation to a typed request wrapper.
1906
+ */
830
1907
  class ServerUnlinkAccountOperationRequest extends UnlinkAccountOperationRequest {
831
1908
  protected role: RequestRole;
1909
+ /**
1910
+ * Creates a new ServerUnlinkAccountOperationRequest instance.
1911
+ */
832
1912
  constructor(requestData: MasterPlayerModels.ServerUnlinkAccountRequestData, timeout: number);
833
1913
  }
1914
+ /**
1915
+ * Maps the AdminUnlinkAccount operation to a typed request wrapper.
1916
+ */
834
1917
  class AdminUnlinkAccountOperationRequest extends UnlinkAccountOperationRequest {
835
1918
  protected role: RequestRole;
1919
+ /**
1920
+ * Creates a new AdminUnlinkAccountOperationRequest instance.
1921
+ */
836
1922
  constructor(requestData: MasterPlayerModels.AdminUnlinkAccountRequestData, timeout: number);
837
1923
  }
1924
+ /**
1925
+ * Maps the UnlinkAndroidDeviceId operation to a typed request wrapper.
1926
+ */
838
1927
  class UnlinkAndroidDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkAndroidDeviceIdRequestData> {
839
1928
  protected operationCode: string;
840
1929
  protected requestType: RequestType;
841
1930
  protected role: RequestRole;
1931
+ /**
1932
+ * Creates a new UnlinkAndroidDeviceIdOperationRequest instance.
1933
+ */
842
1934
  constructor(requestData: MasterPlayerModels.UnlinkAndroidDeviceIdRequestData, timeout: number);
843
1935
  }
1936
+ /**
1937
+ * Maps the ServerUnlinkAndroidDeviceId operation to a typed request wrapper.
1938
+ */
844
1939
  class ServerUnlinkAndroidDeviceIdOperationRequest extends UnlinkAndroidDeviceIdOperationRequest {
845
1940
  protected role: RequestRole;
1941
+ /**
1942
+ * Creates a new ServerUnlinkAndroidDeviceIdOperationRequest instance.
1943
+ */
846
1944
  constructor(requestData: MasterPlayerModels.ServerUnlinkAndroidDeviceIdRequestData, timeout: number);
847
1945
  }
1946
+ /**
1947
+ * Maps the AdminUnlinkAndroidDeviceId operation to a typed request wrapper.
1948
+ */
848
1949
  class AdminUnlinkAndroidDeviceIdOperationRequest extends UnlinkAndroidDeviceIdOperationRequest {
849
1950
  protected role: RequestRole;
1951
+ /**
1952
+ * Creates a new AdminUnlinkAndroidDeviceIdOperationRequest instance.
1953
+ */
850
1954
  constructor(requestData: MasterPlayerModels.AdminUnlinkAndroidDeviceIdRequestData, timeout: number);
851
1955
  }
1956
+ /**
1957
+ * Maps the UnlinkApple operation to a typed request wrapper.
1958
+ */
852
1959
  class UnlinkAppleOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkAppleRequestData> {
853
1960
  protected operationCode: string;
854
1961
  protected requestType: RequestType;
855
1962
  protected role: RequestRole;
1963
+ /**
1964
+ * Creates a new UnlinkAppleOperationRequest instance.
1965
+ */
856
1966
  constructor(requestData: MasterPlayerModels.UnlinkAppleRequestData, timeout: number);
857
1967
  }
1968
+ /**
1969
+ * Maps the ServerUnlinkApple operation to a typed request wrapper.
1970
+ */
858
1971
  class ServerUnlinkAppleOperationRequest extends UnlinkAppleOperationRequest {
859
1972
  protected role: RequestRole;
1973
+ /**
1974
+ * Creates a new ServerUnlinkAppleOperationRequest instance.
1975
+ */
860
1976
  constructor(requestData: MasterPlayerModels.ServerUnlinkAppleRequestData, timeout: number);
861
1977
  }
1978
+ /**
1979
+ * Maps the AdminUnlinkApple operation to a typed request wrapper.
1980
+ */
862
1981
  class AdminUnlinkAppleOperationRequest extends UnlinkAppleOperationRequest {
863
1982
  protected role: RequestRole;
1983
+ /**
1984
+ * Creates a new AdminUnlinkAppleOperationRequest instance.
1985
+ */
864
1986
  constructor(requestData: MasterPlayerModels.AdminUnlinkAppleRequestData, timeout: number);
865
1987
  }
1988
+ /**
1989
+ * Maps the UnlinkCustomDeviceId operation to a typed request wrapper.
1990
+ */
866
1991
  class UnlinkCustomDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkCustomDeviceIdRequestData> {
867
1992
  protected operationCode: string;
868
1993
  protected requestType: RequestType;
869
1994
  protected role: RequestRole;
1995
+ /**
1996
+ * Creates a new UnlinkCustomDeviceIdOperationRequest instance.
1997
+ */
870
1998
  constructor(requestData: MasterPlayerModels.UnlinkCustomDeviceIdRequestData, timeout: number);
871
1999
  }
2000
+ /**
2001
+ * Maps the ServerUnlinkCustomDeviceId operation to a typed request wrapper.
2002
+ */
872
2003
  class ServerUnlinkCustomDeviceIdOperationRequest extends UnlinkCustomDeviceIdOperationRequest {
873
2004
  protected role: RequestRole;
2005
+ /**
2006
+ * Creates a new ServerUnlinkCustomDeviceIdOperationRequest instance.
2007
+ */
874
2008
  constructor(requestData: MasterPlayerModels.ServerUnlinkCustomDeviceIdRequestData, timeout: number);
875
2009
  }
2010
+ /**
2011
+ * Maps the AdminUnlinkCustomDeviceId operation to a typed request wrapper.
2012
+ */
876
2013
  class AdminUnlinkCustomDeviceIdOperationRequest extends UnlinkCustomDeviceIdOperationRequest {
877
2014
  protected role: RequestRole;
2015
+ /**
2016
+ * Creates a new AdminUnlinkCustomDeviceIdOperationRequest instance.
2017
+ */
878
2018
  constructor(requestData: MasterPlayerModels.AdminUnlinkCustomDeviceIdRequestData, timeout: number);
879
2019
  }
2020
+ /**
2021
+ * Maps the UnlinkCustomId operation to a typed request wrapper.
2022
+ */
880
2023
  class UnlinkCustomIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkCustomIdRequestData> {
881
2024
  protected operationCode: string;
882
2025
  protected requestType: RequestType;
883
2026
  protected role: RequestRole;
2027
+ /**
2028
+ * Creates a new UnlinkCustomIdOperationRequest instance.
2029
+ */
884
2030
  constructor(requestData: MasterPlayerModels.UnlinkCustomIdRequestData, timeout: number);
885
2031
  }
2032
+ /**
2033
+ * Maps the ServerUnlinkCustomId operation to a typed request wrapper.
2034
+ */
886
2035
  class ServerUnlinkCustomIdOperationRequest extends UnlinkCustomIdOperationRequest {
887
2036
  protected role: RequestRole;
2037
+ /**
2038
+ * Creates a new ServerUnlinkCustomIdOperationRequest instance.
2039
+ */
888
2040
  constructor(requestData: MasterPlayerModels.ServerUnlinkCustomIdRequestData, timeout: number);
889
2041
  }
2042
+ /**
2043
+ * Maps the AdminUnlinkCustomId operation to a typed request wrapper.
2044
+ */
890
2045
  class AdminUnlinkCustomIdOperationRequest extends UnlinkCustomIdOperationRequest {
891
2046
  protected role: RequestRole;
2047
+ /**
2048
+ * Creates a new AdminUnlinkCustomIdOperationRequest instance.
2049
+ */
892
2050
  constructor(requestData: MasterPlayerModels.AdminUnlinkCustomIdRequestData, timeout: number);
893
2051
  }
2052
+ /**
2053
+ * Maps the UnlinkEditorDeviceId operation to a typed request wrapper.
2054
+ */
894
2055
  class UnlinkEditorDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkEditorDeviceIdRequestData> {
895
2056
  protected operationCode: string;
896
2057
  protected requestType: RequestType;
897
2058
  protected role: RequestRole;
2059
+ /**
2060
+ * Creates a new UnlinkEditorDeviceIdOperationRequest instance.
2061
+ */
898
2062
  constructor(requestData: MasterPlayerModels.UnlinkEditorDeviceIdRequestData, timeout: number);
899
2063
  }
2064
+ /**
2065
+ * Maps the ServerUnlinkEditorDeviceId operation to a typed request wrapper.
2066
+ */
900
2067
  class ServerUnlinkEditorDeviceIdOperationRequest extends UnlinkEditorDeviceIdOperationRequest {
901
2068
  protected role: RequestRole;
2069
+ /**
2070
+ * Creates a new ServerUnlinkEditorDeviceIdOperationRequest instance.
2071
+ */
902
2072
  constructor(requestData: MasterPlayerModels.ServerUnlinkEditorDeviceIdRequestData, timeout: number);
903
2073
  }
2074
+ /**
2075
+ * Maps the AdminUnlinkEditorDeviceId operation to a typed request wrapper.
2076
+ */
904
2077
  class AdminUnlinkEditorDeviceIdOperationRequest extends UnlinkEditorDeviceIdOperationRequest {
905
2078
  protected role: RequestRole;
2079
+ /**
2080
+ * Creates a new AdminUnlinkEditorDeviceIdOperationRequest instance.
2081
+ */
906
2082
  constructor(requestData: MasterPlayerModels.AdminUnlinkEditorDeviceIdRequestData, timeout: number);
907
2083
  }
2084
+ /**
2085
+ * Maps the UnlinkFacebook operation to a typed request wrapper.
2086
+ */
908
2087
  class UnlinkFacebookOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkFacebookRequestData> {
909
2088
  protected operationCode: string;
910
2089
  protected requestType: RequestType;
911
2090
  protected role: RequestRole;
2091
+ /**
2092
+ * Creates a new UnlinkFacebookOperationRequest instance.
2093
+ */
912
2094
  constructor(requestData: MasterPlayerModels.UnlinkFacebookRequestData, timeout: number);
913
2095
  }
2096
+ /**
2097
+ * Maps the ServerUnlinkFacebook operation to a typed request wrapper.
2098
+ */
914
2099
  class ServerUnlinkFacebookOperationRequest extends UnlinkFacebookOperationRequest {
915
2100
  protected role: RequestRole;
2101
+ /**
2102
+ * Creates a new ServerUnlinkFacebookOperationRequest instance.
2103
+ */
916
2104
  constructor(requestData: MasterPlayerModels.ServerUnlinkFacebookRequestData, timeout: number);
917
2105
  }
2106
+ /**
2107
+ * Maps the AdminUnlinkFacebook operation to a typed request wrapper.
2108
+ */
918
2109
  class AdminUnlinkFacebookOperationRequest extends UnlinkFacebookOperationRequest {
919
2110
  protected role: RequestRole;
2111
+ /**
2112
+ * Creates a new AdminUnlinkFacebookOperationRequest instance.
2113
+ */
920
2114
  constructor(requestData: MasterPlayerModels.AdminUnlinkFacebookRequestData, timeout: number);
921
2115
  }
2116
+ /**
2117
+ * Maps the UnlinkGenericService operation to a typed request wrapper.
2118
+ */
922
2119
  class UnlinkGenericServiceOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkGenericServiceRequestData> {
923
2120
  protected operationCode: string;
924
2121
  protected requestType: RequestType;
925
2122
  protected role: RequestRole;
2123
+ /**
2124
+ * Creates a new UnlinkGenericServiceOperationRequest instance.
2125
+ */
926
2126
  constructor(requestData: MasterPlayerModels.UnlinkGenericServiceRequestData, timeout: number);
927
2127
  }
2128
+ /**
2129
+ * Maps the ServerUnlinkGenericService operation to a typed request wrapper.
2130
+ */
928
2131
  class ServerUnlinkGenericServiceOperationRequest extends UnlinkGenericServiceOperationRequest {
929
2132
  protected role: RequestRole;
2133
+ /**
2134
+ * Creates a new ServerUnlinkGenericServiceOperationRequest instance.
2135
+ */
930
2136
  constructor(requestData: MasterPlayerModels.ServerUnlinkGenericServiceRequestData, timeout: number);
931
2137
  }
2138
+ /**
2139
+ * Maps the AdminUnlinkGenericService operation to a typed request wrapper.
2140
+ */
932
2141
  class AdminUnlinkGenericServiceOperationRequest extends UnlinkGenericServiceOperationRequest {
933
2142
  protected role: RequestRole;
2143
+ /**
2144
+ * Creates a new AdminUnlinkGenericServiceOperationRequest instance.
2145
+ */
934
2146
  constructor(requestData: MasterPlayerModels.AdminUnlinkGenericServiceRequestData, timeout: number);
935
2147
  }
2148
+ /**
2149
+ * Maps the UnlinkGoogle operation to a typed request wrapper.
2150
+ */
936
2151
  class UnlinkGoogleOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkGoogleRequestData> {
937
2152
  protected operationCode: string;
938
2153
  protected requestType: RequestType;
939
2154
  protected role: RequestRole;
2155
+ /**
2156
+ * Creates a new UnlinkGoogleOperationRequest instance.
2157
+ */
940
2158
  constructor(requestData: MasterPlayerModels.UnlinkGoogleRequestData, timeout: number);
941
2159
  }
2160
+ /**
2161
+ * Maps the ServerUnlinkGoogle operation to a typed request wrapper.
2162
+ */
942
2163
  class ServerUnlinkGoogleOperationRequest extends UnlinkGoogleOperationRequest {
943
2164
  protected role: RequestRole;
2165
+ /**
2166
+ * Creates a new ServerUnlinkGoogleOperationRequest instance.
2167
+ */
944
2168
  constructor(requestData: MasterPlayerModels.ServerUnlinkGoogleRequestData, timeout: number);
945
2169
  }
2170
+ /**
2171
+ * Maps the AdminUnlinkGoogle operation to a typed request wrapper.
2172
+ */
946
2173
  class AdminUnlinkGoogleOperationRequest extends UnlinkGoogleOperationRequest {
947
2174
  protected role: RequestRole;
2175
+ /**
2176
+ * Creates a new AdminUnlinkGoogleOperationRequest instance.
2177
+ */
948
2178
  constructor(requestData: MasterPlayerModels.AdminUnlinkGoogleRequestData, timeout: number);
949
2179
  }
2180
+ /**
2181
+ * Maps the UnlinkGooglePlayGameService operation to a typed request wrapper.
2182
+ */
950
2183
  class UnlinkGooglePlayGameServiceOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkGooglePlayGameServiceRequestData> {
951
2184
  protected operationCode: string;
952
2185
  protected requestType: RequestType;
953
2186
  protected role: RequestRole;
2187
+ /**
2188
+ * Creates a new UnlinkGooglePlayGameServiceOperationRequest instance.
2189
+ */
954
2190
  constructor(requestData: MasterPlayerModels.UnlinkGooglePlayGameServiceRequestData, timeout: number);
955
2191
  }
2192
+ /**
2193
+ * Maps the ServerUnlinkGooglePlayGameService operation to a typed request wrapper.
2194
+ */
956
2195
  class ServerUnlinkGooglePlayGameServiceOperationRequest extends UnlinkGooglePlayGameServiceOperationRequest {
957
2196
  protected role: RequestRole;
2197
+ /**
2198
+ * Creates a new ServerUnlinkGooglePlayGameServiceOperationRequest instance.
2199
+ */
958
2200
  constructor(requestData: MasterPlayerModels.ServerUnlinkGooglePlayGameServiceRequestData, timeout: number);
959
2201
  }
2202
+ /**
2203
+ * Maps the AdminUnlinkGooglePlayGameService operation to a typed request wrapper.
2204
+ */
960
2205
  class AdminUnlinkGooglePlayGameServiceOperationRequest extends UnlinkGooglePlayGameServiceOperationRequest {
961
2206
  protected role: RequestRole;
2207
+ /**
2208
+ * Creates a new AdminUnlinkGooglePlayGameServiceOperationRequest instance.
2209
+ */
962
2210
  constructor(requestData: MasterPlayerModels.AdminUnlinkGooglePlayGameServiceRequestData, timeout: number);
963
2211
  }
2212
+ /**
2213
+ * Maps the UnlinkGameCenter operation to a typed request wrapper.
2214
+ */
964
2215
  class UnlinkGameCenterOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkGameCenterRequestData> {
965
2216
  protected operationCode: string;
966
2217
  protected requestType: RequestType;
967
2218
  protected role: RequestRole;
2219
+ /**
2220
+ * Creates a new UnlinkGameCenterOperationRequest instance.
2221
+ */
968
2222
  constructor(requestData: MasterPlayerModels.UnlinkGameCenterRequestData, timeout: number);
969
2223
  }
2224
+ /**
2225
+ * Maps the ServerUnlinkGameCenter operation to a typed request wrapper.
2226
+ */
970
2227
  class ServerUnlinkGameCenterOperationRequest extends UnlinkGameCenterOperationRequest {
971
2228
  protected role: RequestRole;
2229
+ /**
2230
+ * Creates a new ServerUnlinkGameCenterOperationRequest instance.
2231
+ */
972
2232
  constructor(requestData: MasterPlayerModels.ServerUnlinkGameCenterRequestData, timeout: number);
973
2233
  }
2234
+ /**
2235
+ * Maps the AdminUnlinkGameCenter operation to a typed request wrapper.
2236
+ */
974
2237
  class AdminUnlinkGameCenterOperationRequest extends UnlinkGameCenterOperationRequest {
975
2238
  protected role: RequestRole;
2239
+ /**
2240
+ * Creates a new AdminUnlinkGameCenterOperationRequest instance.
2241
+ */
976
2242
  constructor(requestData: MasterPlayerModels.AdminUnlinkGameCenterRequestData, timeout: number);
977
2243
  }
2244
+ /**
2245
+ * Maps the UnlinkiOSDeviceId operation to a typed request wrapper.
2246
+ */
978
2247
  class UnlinkiOSDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkiOSDeviceIdRequestData> {
979
2248
  protected operationCode: string;
980
2249
  protected requestType: RequestType;
981
2250
  protected role: RequestRole;
2251
+ /**
2252
+ * Creates a new UnlinkiOSDeviceIdOperationRequest instance.
2253
+ */
982
2254
  constructor(requestData: MasterPlayerModels.UnlinkiOSDeviceIdRequestData, timeout: number);
983
2255
  }
2256
+ /**
2257
+ * Maps the ServerUnlinkiOSDeviceId operation to a typed request wrapper.
2258
+ */
984
2259
  class ServerUnlinkiOSDeviceIdOperationRequest extends UnlinkiOSDeviceIdOperationRequest {
985
2260
  protected role: RequestRole;
2261
+ /**
2262
+ * Creates a new ServerUnlinkiOSDeviceIdOperationRequest instance.
2263
+ */
986
2264
  constructor(requestData: MasterPlayerModels.ServerUnlinkiOSDeviceIdRequestData, timeout: number);
987
2265
  }
2266
+ /**
2267
+ * Maps the AdminUnlinkiOSDeviceId operation to a typed request wrapper.
2268
+ */
988
2269
  class AdminUnlinkiOSDeviceIdOperationRequest extends UnlinkiOSDeviceIdOperationRequest {
989
2270
  protected role: RequestRole;
2271
+ /**
2272
+ * Creates a new AdminUnlinkiOSDeviceIdOperationRequest instance.
2273
+ */
990
2274
  constructor(requestData: MasterPlayerModels.AdminUnlinkiOSDeviceIdRequestData, timeout: number);
991
2275
  }
2276
+ /**
2277
+ * Maps the UnlinkLinuxDeviceId operation to a typed request wrapper.
2278
+ */
992
2279
  class UnlinkLinuxDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkLinuxDeviceIdRequestData> {
993
2280
  protected operationCode: string;
994
2281
  protected requestType: RequestType;
995
2282
  protected role: RequestRole;
2283
+ /**
2284
+ * Creates a new UnlinkLinuxDeviceIdOperationRequest instance.
2285
+ */
996
2286
  constructor(requestData: MasterPlayerModels.UnlinkLinuxDeviceIdRequestData, timeout: number);
997
2287
  }
2288
+ /**
2289
+ * Maps the ServerUnlinkLinuxDeviceId operation to a typed request wrapper.
2290
+ */
998
2291
  class ServerUnlinkLinuxDeviceIdOperationRequest extends UnlinkLinuxDeviceIdOperationRequest {
999
2292
  protected role: RequestRole;
2293
+ /**
2294
+ * Creates a new ServerUnlinkLinuxDeviceIdOperationRequest instance.
2295
+ */
1000
2296
  constructor(requestData: MasterPlayerModels.ServerUnlinkLinuxDeviceIdRequestData, timeout: number);
1001
2297
  }
2298
+ /**
2299
+ * Maps the AdminUnlinkLinuxDeviceId operation to a typed request wrapper.
2300
+ */
1002
2301
  class AdminUnlinkLinuxDeviceIdOperationRequest extends UnlinkLinuxDeviceIdOperationRequest {
1003
2302
  protected role: RequestRole;
2303
+ /**
2304
+ * Creates a new AdminUnlinkLinuxDeviceIdOperationRequest instance.
2305
+ */
1004
2306
  constructor(requestData: MasterPlayerModels.AdminUnlinkLinuxDeviceIdRequestData, timeout: number);
1005
2307
  }
2308
+ /**
2309
+ * Maps the UnlinkMacOSDeviceId operation to a typed request wrapper.
2310
+ */
1006
2311
  class UnlinkMacOSDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkMacOSDeviceIdRequestData> {
1007
2312
  protected operationCode: string;
1008
2313
  protected requestType: RequestType;
1009
2314
  protected role: RequestRole;
2315
+ /**
2316
+ * Creates a new UnlinkMacOSDeviceIdOperationRequest instance.
2317
+ */
1010
2318
  constructor(requestData: MasterPlayerModels.UnlinkMacOSDeviceIdRequestData, timeout: number);
1011
2319
  }
2320
+ /**
2321
+ * Maps the ServerUnlinkMacOSDeviceId operation to a typed request wrapper.
2322
+ */
1012
2323
  class ServerUnlinkMacOSDeviceIdOperationRequest extends UnlinkMacOSDeviceIdOperationRequest {
1013
2324
  protected role: RequestRole;
2325
+ /**
2326
+ * Creates a new ServerUnlinkMacOSDeviceIdOperationRequest instance.
2327
+ */
1014
2328
  constructor(requestData: MasterPlayerModels.ServerUnlinkMacOSDeviceIdRequestData, timeout: number);
1015
2329
  }
2330
+ /**
2331
+ * Maps the AdminUnlinkMacOSDeviceId operation to a typed request wrapper.
2332
+ */
1016
2333
  class AdminUnlinkMacOSDeviceIdOperationRequest extends UnlinkMacOSDeviceIdOperationRequest {
1017
2334
  protected role: RequestRole;
2335
+ /**
2336
+ * Creates a new AdminUnlinkMacOSDeviceIdOperationRequest instance.
2337
+ */
1018
2338
  constructor(requestData: MasterPlayerModels.AdminUnlinkMacOSDeviceIdRequestData, timeout: number);
1019
2339
  }
2340
+ /**
2341
+ * Maps the UnlinkWindowsDeviceId operation to a typed request wrapper.
2342
+ */
1020
2343
  class UnlinkWindowsDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkWindowsDeviceIdRequestData> {
1021
2344
  protected operationCode: string;
1022
2345
  protected requestType: RequestType;
1023
2346
  protected role: RequestRole;
2347
+ /**
2348
+ * Creates a new UnlinkWindowsDeviceIdOperationRequest instance.
2349
+ */
1024
2350
  constructor(requestData: MasterPlayerModels.UnlinkWindowsDeviceIdRequestData, timeout: number);
1025
2351
  }
2352
+ /**
2353
+ * Maps the ServerUnlinkWindowsDeviceId operation to a typed request wrapper.
2354
+ */
1026
2355
  class ServerUnlinkWindowsDeviceIdOperationRequest extends UnlinkWindowsDeviceIdOperationRequest {
1027
2356
  protected role: RequestRole;
2357
+ /**
2358
+ * Creates a new ServerUnlinkWindowsDeviceIdOperationRequest instance.
2359
+ */
1028
2360
  constructor(requestData: MasterPlayerModels.ServerUnlinkWindowsDeviceIdRequestData, timeout: number);
1029
2361
  }
2362
+ /**
2363
+ * Maps the AdminUnlinkWindowsDeviceId operation to a typed request wrapper.
2364
+ */
1030
2365
  class AdminUnlinkWindowsDeviceIdOperationRequest extends UnlinkWindowsDeviceIdOperationRequest {
1031
2366
  protected role: RequestRole;
2367
+ /**
2368
+ * Creates a new AdminUnlinkWindowsDeviceIdOperationRequest instance.
2369
+ */
1032
2370
  constructor(requestData: MasterPlayerModels.AdminUnlinkWindowsDeviceIdRequestData, timeout: number);
1033
2371
  }
2372
+ /**
2373
+ * Maps the UnlinkWindowsPhoneDeviceId operation to a typed request wrapper.
2374
+ */
1034
2375
  class UnlinkWindowsPhoneDeviceIdOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.UnlinkWindowsPhoneDeviceIdRequestData> {
1035
2376
  protected operationCode: string;
1036
2377
  protected requestType: RequestType;
1037
2378
  protected role: RequestRole;
2379
+ /**
2380
+ * Creates a new UnlinkWindowsPhoneDeviceIdOperationRequest instance.
2381
+ */
1038
2382
  constructor(requestData: MasterPlayerModels.UnlinkWindowsPhoneDeviceIdRequestData, timeout: number);
1039
2383
  }
2384
+ /**
2385
+ * Maps the ServerUnlinkWindowsPhoneDeviceId operation to a typed request wrapper.
2386
+ */
1040
2387
  class ServerUnlinkWindowsPhoneDeviceIdOperationRequest extends UnlinkWindowsPhoneDeviceIdOperationRequest {
1041
2388
  protected role: RequestRole;
2389
+ /**
2390
+ * Creates a new ServerUnlinkWindowsPhoneDeviceIdOperationRequest instance.
2391
+ */
1042
2392
  constructor(requestData: MasterPlayerModels.ServerUnlinkWindowsPhoneDeviceIdRequestData, timeout: number);
1043
2393
  }
2394
+ /**
2395
+ * Maps the AdminUnlinkWindowsPhoneDeviceId operation to a typed request wrapper.
2396
+ */
1044
2397
  class AdminUnlinkWindowsPhoneDeviceIdOperationRequest extends UnlinkWindowsPhoneDeviceIdOperationRequest {
1045
2398
  protected role: RequestRole;
2399
+ /**
2400
+ * Creates a new AdminUnlinkWindowsPhoneDeviceIdOperationRequest instance.
2401
+ */
1046
2402
  constructor(requestData: MasterPlayerModels.AdminUnlinkWindowsPhoneDeviceIdRequestData, timeout: number);
1047
2403
  }
2404
+ /**
2405
+ * Maps the GetCurrencyLeaderboard operation to a typed request wrapper.
2406
+ */
1048
2407
  class GetCurrencyLeaderboardOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetCurrencyLeaderboardRequestData> {
1049
2408
  protected operationCode: string;
1050
2409
  protected requestType: RequestType;
1051
2410
  protected role: RequestRole;
2411
+ /**
2412
+ * Creates a new GetCurrencyLeaderboardOperationRequest instance.
2413
+ */
1052
2414
  constructor(requestData: MasterPlayerModels.GetCurrencyLeaderboardRequestData, timeout: number);
1053
2415
  }
2416
+ /**
2417
+ * Maps the ServerGetCurrencyLeaderboard operation to a typed request wrapper.
2418
+ */
1054
2419
  class ServerGetCurrencyLeaderboardOperationRequest extends GetCurrencyLeaderboardOperationRequest {
1055
2420
  protected role: RequestRole;
2421
+ /**
2422
+ * Creates a new ServerGetCurrencyLeaderboardOperationRequest instance.
2423
+ */
1056
2424
  constructor(requestData: MasterPlayerModels.ServerGetCurrencyLeaderboardRequestData, timeout: number);
1057
2425
  }
2426
+ /**
2427
+ * Maps the AdminGetCurrencyLeaderboard operation to a typed request wrapper.
2428
+ */
1058
2429
  class AdminGetCurrencyLeaderboardOperationRequest extends GetCurrencyLeaderboardOperationRequest {
1059
2430
  protected role: RequestRole;
2431
+ /**
2432
+ * Creates a new AdminGetCurrencyLeaderboardOperationRequest instance.
2433
+ */
1060
2434
  constructor(requestData: MasterPlayerModels.AdminGetCurrencyLeaderboardRequestData, timeout: number);
1061
2435
  }
2436
+ /**
2437
+ * Maps the GetCreateLeaderboard operation to a typed request wrapper.
2438
+ */
1062
2439
  class GetCreateLeaderboardOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetCreateLeaderboardRequestData> {
1063
2440
  protected operationCode: string;
1064
2441
  protected requestType: RequestType;
1065
2442
  protected role: RequestRole;
2443
+ /**
2444
+ * Creates a new GetCreateLeaderboardOperationRequest instance.
2445
+ */
1066
2446
  constructor(requestData: MasterPlayerModels.GetCreateLeaderboardRequestData, timeout: number);
1067
2447
  }
2448
+ /**
2449
+ * Maps the ServerGetCreateLeaderboard operation to a typed request wrapper.
2450
+ */
1068
2451
  class ServerGetCreateLeaderboardOperationRequest extends GetCreateLeaderboardOperationRequest {
1069
2452
  protected role: RequestRole;
2453
+ /**
2454
+ * Creates a new ServerGetCreateLeaderboardOperationRequest instance.
2455
+ */
1070
2456
  constructor(requestData: MasterPlayerModels.ServerGetCreateLeaderboardRequestData, timeout: number);
1071
2457
  }
2458
+ /**
2459
+ * Maps the AdminGetCreateLeaderboard operation to a typed request wrapper.
2460
+ */
1072
2461
  class AdminGetCreateLeaderboardOperationRequest extends GetCreateLeaderboardOperationRequest {
1073
2462
  protected role: RequestRole;
2463
+ /**
2464
+ * Creates a new AdminGetCreateLeaderboardOperationRequest instance.
2465
+ */
1074
2466
  constructor(requestData: MasterPlayerModels.AdminGetCreateLeaderboardRequestData, timeout: number);
1075
2467
  }
2468
+ /**
2469
+ * Maps the GetLastLoginLeaderboard operation to a typed request wrapper.
2470
+ */
1076
2471
  class GetLastLoginLeaderboardOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetLastLoginLeaderboardRequestData> {
1077
2472
  protected operationCode: string;
1078
2473
  protected requestType: RequestType;
1079
2474
  protected role: RequestRole;
2475
+ /**
2476
+ * Creates a new GetLastLoginLeaderboardOperationRequest instance.
2477
+ */
1080
2478
  constructor(requestData: MasterPlayerModels.GetLastLoginLeaderboardRequestData, timeout: number);
1081
2479
  }
2480
+ /**
2481
+ * Maps the ServerGetLastLoginLeaderboard operation to a typed request wrapper.
2482
+ */
1082
2483
  class ServerGetLastLoginLeaderboardOperationRequest extends GetLastLoginLeaderboardOperationRequest {
1083
2484
  protected role: RequestRole;
2485
+ /**
2486
+ * Creates a new ServerGetLastLoginLeaderboardOperationRequest instance.
2487
+ */
1084
2488
  constructor(requestData: MasterPlayerModels.ServerGetLastLoginLeaderboardRequestData, timeout: number);
1085
2489
  }
2490
+ /**
2491
+ * Maps the AdminGetLastLoginLeaderboard operation to a typed request wrapper.
2492
+ */
1086
2493
  class AdminGetLastLoginLeaderboardOperationRequest extends GetLastLoginLeaderboardOperationRequest {
1087
2494
  protected role: RequestRole;
2495
+ /**
2496
+ * Creates a new AdminGetLastLoginLeaderboardOperationRequest instance.
2497
+ */
1088
2498
  constructor(requestData: MasterPlayerModels.AdminGetLastLoginLeaderboardRequestData, timeout: number);
1089
2499
  }
2500
+ /**
2501
+ * Maps the GetStatisticsLog operation to a typed request wrapper.
2502
+ */
1090
2503
  class GetStatisticsLogOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetStatisticsLogRequestData> {
1091
2504
  protected operationCode: string;
1092
2505
  protected requestType: RequestType;
1093
2506
  protected role: RequestRole;
2507
+ /**
2508
+ * Creates a new GetStatisticsLogOperationRequest instance.
2509
+ */
1094
2510
  constructor(requestData: MasterPlayerModels.GetStatisticsLogRequestData, timeout: number);
1095
2511
  }
2512
+ /**
2513
+ * Maps the ServerGetStatisticsLog operation to a typed request wrapper.
2514
+ */
1096
2515
  class ServerGetStatisticsLogOperationRequest extends GetStatisticsLogOperationRequest {
1097
2516
  protected role: RequestRole;
2517
+ /**
2518
+ * Creates a new ServerGetStatisticsLogOperationRequest instance.
2519
+ */
1098
2520
  constructor(requestData: MasterPlayerModels.ServerGetStatisticsLogRequestData, timeout: number);
1099
2521
  }
2522
+ /**
2523
+ * Maps the AdminGetStatisticsLog operation to a typed request wrapper.
2524
+ */
1100
2525
  class AdminGetStatisticsLogOperationRequest extends GetStatisticsLogOperationRequest {
1101
2526
  protected role: RequestRole;
2527
+ /**
2528
+ * Creates a new AdminGetStatisticsLogOperationRequest instance.
2529
+ */
1102
2530
  constructor(requestData: MasterPlayerModels.AdminGetStatisticsLogRequestData, timeout: number);
1103
2531
  }
2532
+ /**
2533
+ * Maps the GetCurrencyLog operation to a typed request wrapper.
2534
+ */
1104
2535
  class GetCurrencyLogOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetCurrencyLogRequestData> {
1105
2536
  protected operationCode: string;
1106
2537
  protected requestType: RequestType;
1107
2538
  protected role: RequestRole;
2539
+ /**
2540
+ * Creates a new GetCurrencyLogOperationRequest instance.
2541
+ */
1108
2542
  constructor(requestData: MasterPlayerModels.GetCurrencyLogRequestData, timeout: number);
1109
2543
  }
2544
+ /**
2545
+ * Maps the ServerGetCurrencyLog operation to a typed request wrapper.
2546
+ */
1110
2547
  class ServerGetCurrencyLogOperationRequest extends GetCurrencyLogOperationRequest {
1111
2548
  protected role: RequestRole;
2549
+ /**
2550
+ * Creates a new ServerGetCurrencyLogOperationRequest instance.
2551
+ */
1112
2552
  constructor(requestData: MasterPlayerModels.ServerGetCurrencyLogRequestData, timeout: number);
1113
2553
  }
2554
+ /**
2555
+ * Maps the AdminGetCurrencyLog operation to a typed request wrapper.
2556
+ */
1114
2557
  class AdminGetCurrencyLogOperationRequest extends GetCurrencyLogOperationRequest {
1115
2558
  protected role: RequestRole;
2559
+ /**
2560
+ * Creates a new AdminGetCurrencyLogOperationRequest instance.
2561
+ */
1116
2562
  constructor(requestData: MasterPlayerModels.AdminGetCurrencyLogRequestData, timeout: number);
1117
2563
  }
2564
+ /**
2565
+ * Maps the SendSocketOperationEvent operation to a typed request wrapper.
2566
+ */
1118
2567
  class SendSocketOperationEventOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.SendSocketOperationEventRequestData> {
1119
2568
  protected operationCode: string;
1120
2569
  protected requestType: RequestType;
1121
2570
  protected role: RequestRole;
2571
+ /**
2572
+ * Creates a new SendSocketOperationEventOperationRequest instance.
2573
+ */
1122
2574
  constructor(requestData: MasterPlayerModels.SendSocketOperationEventRequestData, timeout: number);
1123
2575
  }
2576
+ /**
2577
+ * Maps the ServerSendSocketOperationEvent operation to a typed request wrapper.
2578
+ */
1124
2579
  class ServerSendSocketOperationEventOperationRequest extends SendSocketOperationEventOperationRequest {
1125
2580
  protected role: RequestRole;
2581
+ /**
2582
+ * Creates a new ServerSendSocketOperationEventOperationRequest instance.
2583
+ */
1126
2584
  constructor(requestData: MasterPlayerModels.ServerSendSocketOperationEventRequestData, timeout: number);
1127
2585
  }
2586
+ /**
2587
+ * Maps the AdminSendSocketOperationEvent operation to a typed request wrapper.
2588
+ */
1128
2589
  class AdminSendSocketOperationEventOperationRequest extends SendSocketOperationEventOperationRequest {
1129
2590
  protected role: RequestRole;
2591
+ /**
2592
+ * Creates a new AdminSendSocketOperationEventOperationRequest instance.
2593
+ */
1130
2594
  constructor(requestData: MasterPlayerModels.AdminSendSocketOperationEventRequestData, timeout: number);
1131
2595
  }
2596
+ /**
2597
+ * Maps the SendEmail operation to a typed request wrapper.
2598
+ */
1132
2599
  class SendEmailOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.SendEmailRequestData> {
1133
2600
  protected operationCode: string;
1134
2601
  protected requestType: RequestType;
1135
2602
  protected role: RequestRole;
2603
+ /**
2604
+ * Creates a new SendEmailOperationRequest instance.
2605
+ */
1136
2606
  constructor(requestData: MasterPlayerModels.SendEmailRequestData, timeout: number);
1137
2607
  }
2608
+ /**
2609
+ * Maps the ServerSendEmail operation to a typed request wrapper.
2610
+ */
1138
2611
  class ServerSendEmailOperationRequest extends SendEmailOperationRequest {
1139
2612
  protected role: RequestRole;
2613
+ /**
2614
+ * Creates a new ServerSendEmailOperationRequest instance.
2615
+ */
1140
2616
  constructor(requestData: MasterPlayerModels.ServerSendEmailRequestData, timeout: number);
1141
2617
  }
2618
+ /**
2619
+ * Maps the AdminSendEmail operation to a typed request wrapper.
2620
+ */
1142
2621
  class AdminSendEmailOperationRequest extends SendEmailOperationRequest {
1143
2622
  protected role: RequestRole;
2623
+ /**
2624
+ * Creates a new AdminSendEmailOperationRequest instance.
2625
+ */
1144
2626
  constructor(requestData: MasterPlayerModels.AdminSendEmailRequestData, timeout: number);
1145
2627
  }
2628
+ /**
2629
+ * Maps the AddPushNotification operation to a typed request wrapper.
2630
+ */
1146
2631
  class AddPushNotificationOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.AddPushNotificationRequestData> {
1147
2632
  protected operationCode: string;
1148
2633
  protected requestType: RequestType;
1149
2634
  protected role: RequestRole;
2635
+ /**
2636
+ * Creates a new AddPushNotificationOperationRequest instance.
2637
+ */
1150
2638
  constructor(requestData: MasterPlayerModels.AddPushNotificationRequestData, timeout: number);
1151
2639
  }
2640
+ /**
2641
+ * Maps the ServerAddPushNotification operation to a typed request wrapper.
2642
+ */
1152
2643
  class ServerAddPushNotificationOperationRequest extends AddPushNotificationOperationRequest {
1153
2644
  protected role: RequestRole;
2645
+ /**
2646
+ * Creates a new ServerAddPushNotificationOperationRequest instance.
2647
+ */
1154
2648
  constructor(requestData: MasterPlayerModels.ServerAddPushNotificationRequestData, timeout: number);
1155
2649
  }
2650
+ /**
2651
+ * Maps the AdminAddPushNotification operation to a typed request wrapper.
2652
+ */
1156
2653
  class AdminAddPushNotificationOperationRequest extends AddPushNotificationOperationRequest {
1157
2654
  protected role: RequestRole;
2655
+ /**
2656
+ * Creates a new AdminAddPushNotificationOperationRequest instance.
2657
+ */
1158
2658
  constructor(requestData: MasterPlayerModels.AdminAddPushNotificationRequestData, timeout: number);
1159
2659
  }
2660
+ /**
2661
+ * Maps the RemovePushNotification operation to a typed request wrapper.
2662
+ */
1160
2663
  class RemovePushNotificationOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.RemovePushNotificationRequestData> {
1161
2664
  protected operationCode: string;
1162
2665
  protected requestType: RequestType;
1163
2666
  protected role: RequestRole;
2667
+ /**
2668
+ * Creates a new RemovePushNotificationOperationRequest instance.
2669
+ */
1164
2670
  constructor(requestData: MasterPlayerModels.RemovePushNotificationRequestData, timeout: number);
1165
2671
  }
2672
+ /**
2673
+ * Maps the ServerRemovePushNotification operation to a typed request wrapper.
2674
+ */
1166
2675
  class ServerRemovePushNotificationOperationRequest extends RemovePushNotificationOperationRequest {
1167
2676
  protected role: RequestRole;
2677
+ /**
2678
+ * Creates a new ServerRemovePushNotificationOperationRequest instance.
2679
+ */
1168
2680
  constructor(requestData: MasterPlayerModels.ServerRemovePushNotificationRequestData, timeout: number);
1169
2681
  }
2682
+ /**
2683
+ * Maps the AdminRemovePushNotification operation to a typed request wrapper.
2684
+ */
1170
2685
  class AdminRemovePushNotificationOperationRequest extends RemovePushNotificationOperationRequest {
1171
2686
  protected role: RequestRole;
2687
+ /**
2688
+ * Creates a new AdminRemovePushNotificationOperationRequest instance.
2689
+ */
1172
2690
  constructor(requestData: MasterPlayerModels.AdminRemovePushNotificationRequestData, timeout: number);
1173
2691
  }
2692
+ /**
2693
+ * Maps the GetPushNotification operation to a typed request wrapper.
2694
+ */
1174
2695
  class GetPushNotificationOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.GetPushNotificationRequestData> {
1175
2696
  protected operationCode: string;
1176
2697
  protected requestType: RequestType;
1177
2698
  protected role: RequestRole;
2699
+ /**
2700
+ * Creates a new GetPushNotificationOperationRequest instance.
2701
+ */
1178
2702
  constructor(requestData: MasterPlayerModels.GetPushNotificationRequestData, timeout: number);
1179
2703
  }
2704
+ /**
2705
+ * Maps the ServerGetPushNotification operation to a typed request wrapper.
2706
+ */
1180
2707
  class ServerGetPushNotificationOperationRequest extends GetPushNotificationOperationRequest {
1181
2708
  protected role: RequestRole;
2709
+ /**
2710
+ * Creates a new ServerGetPushNotificationOperationRequest instance.
2711
+ */
1182
2712
  constructor(requestData: MasterPlayerModels.ServerGetPushNotificationRequestData, timeout: number);
1183
2713
  }
2714
+ /**
2715
+ * Maps the AdminGetPushNotification operation to a typed request wrapper.
2716
+ */
1184
2717
  class AdminGetPushNotificationOperationRequest extends GetPushNotificationOperationRequest {
1185
2718
  protected role: RequestRole;
2719
+ /**
2720
+ * Creates a new AdminGetPushNotificationOperationRequest instance.
2721
+ */
1186
2722
  constructor(requestData: MasterPlayerModels.AdminGetPushNotificationRequestData, timeout: number);
1187
2723
  }
2724
+ /**
2725
+ * Maps the SendPushNotification operation to a typed request wrapper.
2726
+ */
1188
2727
  class SendPushNotificationOperationRequest extends CustomOperationRequestAbstract<MasterPlayerModels.SendPushNotificationRequestData> {
1189
2728
  protected operationCode: string;
1190
2729
  protected requestType: RequestType;
1191
2730
  protected role: RequestRole;
2731
+ /**
2732
+ * Creates a new SendPushNotificationOperationRequest instance.
2733
+ */
1192
2734
  constructor(requestData: MasterPlayerModels.SendPushNotificationRequestData, timeout: number);
1193
2735
  }
2736
+ /**
2737
+ * Maps the ServerSendPushNotification operation to a typed request wrapper.
2738
+ */
1194
2739
  class ServerSendPushNotificationOperationRequest extends SendPushNotificationOperationRequest {
1195
2740
  protected role: RequestRole;
2741
+ /**
2742
+ * Creates a new ServerSendPushNotificationOperationRequest instance.
2743
+ */
1196
2744
  constructor(requestData: MasterPlayerModels.ServerSendPushNotificationRequestData, timeout: number);
1197
2745
  }
2746
+ /**
2747
+ * Maps the AdminSendPushNotification operation to a typed request wrapper.
2748
+ */
1198
2749
  class AdminSendPushNotificationOperationRequest extends SendPushNotificationOperationRequest {
1199
2750
  protected role: RequestRole;
2751
+ /**
2752
+ * Creates a new AdminSendPushNotificationOperationRequest instance.
2753
+ */
1200
2754
  constructor(requestData: MasterPlayerModels.AdminSendPushNotificationRequestData, timeout: number);
1201
2755
  }
1202
2756
  }