@xmobitea/gn-typescript-client 2.0.4 → 2.0.6

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 (105) hide show
  1. package/GNServerSettingsConfig.debug.json +3 -3
  2. package/dist/gn.js.client.js +50188 -0
  3. package/dist/gn.js.client.min.js +1 -1
  4. package/dist/index.d.ts +190 -190
  5. package/dist/index.js +24803 -22847
  6. package/dist/runtime/GNNetwork.d.ts +66 -67
  7. package/dist/runtime/GNNetworkAuthenticateApi.d.ts +28 -27
  8. package/dist/runtime/GNNetworkCharacterPlayerApi.d.ts +156 -156
  9. package/dist/runtime/GNNetworkContentApi.d.ts +33 -33
  10. package/dist/runtime/GNNetworkDashboardApi.d.ts +30 -30
  11. package/dist/runtime/GNNetworkGamePlayerApi.d.ts +153 -153
  12. package/dist/runtime/GNNetworkGroupApi.d.ts +120 -120
  13. package/dist/runtime/GNNetworkInventoryApi.d.ts +108 -108
  14. package/dist/runtime/GNNetworkMasterPlayerApi.d.ts +217 -217
  15. package/dist/runtime/GNNetworkStoreInventoryApi.d.ts +39 -39
  16. package/dist/runtime/common/Action0.d.ts +1 -1
  17. package/dist/runtime/common/Action1.d.ts +1 -1
  18. package/dist/runtime/common/Action2.d.ts +1 -1
  19. package/dist/runtime/common/Action3.d.ts +1 -1
  20. package/dist/runtime/common/Action4.d.ts +1 -1
  21. package/dist/runtime/common/GNData.d.ts +69 -69
  22. package/dist/runtime/config/GNServerSettings.d.ts +64 -64
  23. package/dist/runtime/constant/Commands.d.ts +17 -17
  24. package/dist/runtime/constant/EventCode.d.ts +8 -8
  25. package/dist/runtime/constant/OperationCode.d.ts +175 -174
  26. package/dist/runtime/constant/ReturnCode.d.ts +14 -14
  27. package/dist/runtime/constant/enumType/FriendStatus.d.ts +6 -6
  28. package/dist/runtime/constant/enumType/GoogleLoginType.d.ts +4 -4
  29. package/dist/runtime/constant/enumType/GroupStatus.d.ts +6 -6
  30. package/dist/runtime/constant/enumType/InvalidMemberType.d.ts +17 -17
  31. package/dist/runtime/constant/enumType/ItemType.d.ts +4 -4
  32. package/dist/runtime/constant/enumType/LoginType.d.ts +10 -10
  33. package/dist/runtime/constant/enumType/OwnerType.d.ts +6 -6
  34. package/dist/runtime/constant/enumType/PermissionDataItem.d.ts +4 -4
  35. package/dist/runtime/constant/enumType/RequestRole.d.ts +5 -5
  36. package/dist/runtime/constant/enumType/RequestType.d.ts +12 -12
  37. package/dist/runtime/constant/enumType/StatisticsAggregationMethod.d.ts +6 -6
  38. package/dist/runtime/constant/enumType/UserRoleType.d.ts +8 -8
  39. package/dist/runtime/constant/errorCode/GNErrorCode.d.ts +40 -39
  40. package/dist/runtime/constant/parameterCode/GNParameterCode.d.ts +376 -375
  41. package/dist/runtime/constant/parameterCode/ParameterCode.d.ts +6 -6
  42. package/dist/runtime/entity/DataMember.d.ts +77 -77
  43. package/dist/runtime/entity/GNMetadata.d.ts +22 -22
  44. package/dist/runtime/entity/InvalidMember.d.ts +5 -5
  45. package/dist/runtime/entity/OperationEvent.d.ts +14 -14
  46. package/dist/runtime/entity/OperationHelper.d.ts +7 -7
  47. package/dist/runtime/entity/OperationRequest.d.ts +21 -21
  48. package/dist/runtime/entity/OperationResponse.d.ts +27 -27
  49. package/dist/runtime/entity/models/AuthenticateModels.d.ts +116 -108
  50. package/dist/runtime/entity/models/AuthenticateRequestModels.d.ts +118 -111
  51. package/dist/runtime/entity/models/AuthenticateResponseModels.d.ts +52 -34
  52. package/dist/runtime/entity/models/CharacterPlayerModels.d.ts +493 -493
  53. package/dist/runtime/entity/models/CharacterPlayerRequestModels.d.ts +726 -726
  54. package/dist/runtime/entity/models/CharacterPlayerResponseModels.d.ts +148 -100
  55. package/dist/runtime/entity/models/ContentModels.d.ts +90 -90
  56. package/dist/runtime/entity/models/ContentRequestModels.d.ts +111 -111
  57. package/dist/runtime/entity/models/ContentResponseModels.d.ts +25 -18
  58. package/dist/runtime/entity/models/DashboardModels.d.ts +546 -545
  59. package/dist/runtime/entity/models/DashboardRequestModels.d.ts +132 -132
  60. package/dist/runtime/entity/models/DashboardResponseModels.d.ts +58 -40
  61. package/dist/runtime/entity/models/GamePlayerModels.d.ts +531 -531
  62. package/dist/runtime/entity/models/GamePlayerRequestModels.d.ts +711 -711
  63. package/dist/runtime/entity/models/GamePlayerResponseModels.d.ts +145 -98
  64. package/dist/runtime/entity/models/GenericModels.d.ts +59 -59
  65. package/dist/runtime/entity/models/GroupModels.d.ts +387 -387
  66. package/dist/runtime/entity/models/GroupRequestModels.d.ts +546 -546
  67. package/dist/runtime/entity/models/GroupResponseModels.d.ts +112 -76
  68. package/dist/runtime/entity/models/InventoryModels.d.ts +331 -331
  69. package/dist/runtime/entity/models/InventoryRequestModels.d.ts +486 -486
  70. package/dist/runtime/entity/models/InventoryResponseModels.d.ts +100 -68
  71. package/dist/runtime/entity/models/MasterPlayerModels.d.ts +767 -767
  72. package/dist/runtime/entity/models/MasterPlayerRequestModels.d.ts +1033 -1033
  73. package/dist/runtime/entity/models/MasterPlayerResponseModels.d.ts +211 -142
  74. package/dist/runtime/entity/models/StoreInventoryModels.d.ts +187 -187
  75. package/dist/runtime/entity/models/StoreInventoryRequestModels.d.ts +141 -141
  76. package/dist/runtime/entity/models/StoreInventoryResponseModels.d.ts +31 -22
  77. package/dist/runtime/entity/request/CustomOperationRequest.d.ts +21 -19
  78. package/dist/runtime/entity/response/CustomOperationResponse.d.ts +20 -19
  79. package/dist/runtime/helper/CodeHelper.d.ts +15 -15
  80. package/dist/runtime/helper/ConverterService.d.ts +14 -14
  81. package/dist/runtime/helper/GNSupport.d.ts +5 -5
  82. package/dist/runtime/logger/GNDebug.d.ts +15 -15
  83. package/dist/runtime/networking/AuthenticateStatus.d.ts +8 -11
  84. package/dist/runtime/networking/IPeer.d.ts +12 -12
  85. package/dist/runtime/networking/NetworkingPeer.d.ts +40 -40
  86. package/dist/runtime/networking/OperationPending.d.ts +30 -30
  87. package/dist/runtime/networking/PeerBase.d.ts +30 -30
  88. package/dist/runtime/networking/handler/IServerEventHandler.d.ts +14 -14
  89. package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.d.ts +13 -13
  90. package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.d.ts +13 -13
  91. package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.d.ts +13 -13
  92. package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.d.ts +13 -13
  93. package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.d.ts +12 -12
  94. package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.d.ts +12 -12
  95. package/dist/runtime/networking/http/HttpPeer.d.ts +24 -24
  96. package/dist/runtime/networking/http/NetworkingHttpPeerBase.d.ts +11 -11
  97. package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.d.ts +13 -13
  98. package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.d.ts +25 -25
  99. package/dist/runtime/networking/socket/NetworkingSocketPeerBase.d.ts +48 -48
  100. package/dist/runtime/networking/socket/SocketPeer.d.ts +28 -28
  101. package/dist/runtime/typescript/ServiceUpdate.d.ts +6 -6
  102. package/package.json +16 -14
  103. package/tsconfig-build.min.udm.json +13 -0
  104. package/tsconfig.min.udm.json +9 -0
  105. package/webpack.config.min.udm.js +48 -0
@@ -1,30 +1,30 @@
1
- import { Action1 } from "./common/Action1";
2
- import { GNHashtable } from "./common/GNData";
3
- import { DashboardModels } from "./entity/models/DashboardModels";
4
- import { DashboardResponseModels } from "./entity/models/DashboardResponseModels";
5
- export declare class DashboardApi {
6
- server: ServerDashboardApi;
7
- admin: AdminDashboardApi;
8
- changePasswordAdminAccount(requestData: DashboardModels.ChangePasswordAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.ChangePasswordAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
9
- getAdminAccountList(requestData: DashboardModels.GetAdminAccountListRequestData, onResponse?: Action1<DashboardResponseModels.GetAdminAccountListOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
10
- getGameInformation(requestData: DashboardModels.GetGameInformationRequestData, onResponse?: Action1<DashboardResponseModels.GetGameInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
11
- getGameList(requestData: DashboardModels.GetGameListRequestData, onResponse?: Action1<DashboardResponseModels.GetGameListOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
12
- getMasterGameSettings(requestData: DashboardModels.GetMasterGameSettingsRequestData, onResponse?: Action1<DashboardResponseModels.GetMasterGameSettingsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
13
- getSecretInfoInformation(requestData: DashboardModels.GetSecretInfoInformationRequestData, onResponse?: Action1<DashboardResponseModels.GetSecretInfoInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
14
- getSecretInfoList(requestData: DashboardModels.GetSecretInfoListRequestData, onResponse?: Action1<DashboardResponseModels.GetSecretInfoListOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
15
- getServerLog(requestData: DashboardModels.GetServerLogRequestData, onResponse?: Action1<DashboardResponseModels.GetServerLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
16
- grantAdminAccount(requestData: DashboardModels.GrantAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.GrantAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
17
- grantGame(requestData: DashboardModels.GrantGameRequestData, onResponse?: Action1<DashboardResponseModels.GrantGameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
18
- grantSecretInfo(requestData: DashboardModels.GrantSecretInfoRequestData, onResponse?: Action1<DashboardResponseModels.GrantSecretInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
19
- loginByAdminAccount(requestData: DashboardModels.LoginByAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.LoginByAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
20
- removeAdminAccount(requestData: DashboardModels.RemoveAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.RemoveAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
21
- setGameInformation(requestData: DashboardModels.SetGameInformationRequestData, onResponse?: Action1<DashboardResponseModels.SetGameInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
22
- setMasterGameSettings(requestData: DashboardModels.SetMasterGameSettingsRequestData, onResponse?: Action1<DashboardResponseModels.SetMasterGameSettingsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
23
- setPasswordAdminAccount(requestData: DashboardModels.SetPasswordAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.SetPasswordAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
24
- setSecretInfoInformation(requestData: DashboardModels.SetSecretInfoInformationRequestData, onResponse?: Action1<DashboardResponseModels.SetSecretInfoInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
25
- setSecretKeyAdminAccount(requestData: DashboardModels.SetSecretKeyAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.SetSecretKeyAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
26
- }
27
- export declare class ServerDashboardApi {
28
- }
29
- export declare class AdminDashboardApi {
30
- }
1
+ import { Action1 } from "./common/Action1";
2
+ import { GNHashtable } from "./common/GNData";
3
+ import { DashboardModels } from "./entity/models/DashboardModels";
4
+ import { DashboardResponseModels } from "./entity/models/DashboardResponseModels";
5
+ export declare class DashboardApi {
6
+ server: ServerDashboardApi;
7
+ admin: AdminDashboardApi;
8
+ changePasswordAdminAccount(requestData: DashboardModels.ChangePasswordAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.ChangePasswordAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
9
+ getAdminAccountList(requestData: DashboardModels.GetAdminAccountListRequestData, onResponse?: Action1<DashboardResponseModels.GetAdminAccountListOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
10
+ getGameInformation(requestData: DashboardModels.GetGameInformationRequestData, onResponse?: Action1<DashboardResponseModels.GetGameInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
11
+ getGameList(requestData: DashboardModels.GetGameListRequestData, onResponse?: Action1<DashboardResponseModels.GetGameListOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
12
+ getMasterGameSettings(requestData: DashboardModels.GetMasterGameSettingsRequestData, onResponse?: Action1<DashboardResponseModels.GetMasterGameSettingsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
13
+ getSecretInfoInformation(requestData: DashboardModels.GetSecretInfoInformationRequestData, onResponse?: Action1<DashboardResponseModels.GetSecretInfoInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
14
+ getSecretInfoList(requestData: DashboardModels.GetSecretInfoListRequestData, onResponse?: Action1<DashboardResponseModels.GetSecretInfoListOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
15
+ getServerLog(requestData: DashboardModels.GetServerLogRequestData, onResponse?: Action1<DashboardResponseModels.GetServerLogOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
16
+ grantAdminAccount(requestData: DashboardModels.GrantAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.GrantAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
17
+ grantGame(requestData: DashboardModels.GrantGameRequestData, onResponse?: Action1<DashboardResponseModels.GrantGameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
18
+ grantSecretInfo(requestData: DashboardModels.GrantSecretInfoRequestData, onResponse?: Action1<DashboardResponseModels.GrantSecretInfoOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
19
+ loginByAdminAccount(requestData: DashboardModels.LoginByAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.LoginByAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
20
+ removeAdminAccount(requestData: DashboardModels.RemoveAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.RemoveAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
21
+ setGameInformation(requestData: DashboardModels.SetGameInformationRequestData, onResponse?: Action1<DashboardResponseModels.SetGameInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
22
+ setMasterGameSettings(requestData: DashboardModels.SetMasterGameSettingsRequestData, onResponse?: Action1<DashboardResponseModels.SetMasterGameSettingsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
23
+ setPasswordAdminAccount(requestData: DashboardModels.SetPasswordAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.SetPasswordAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
24
+ setSecretInfoInformation(requestData: DashboardModels.SetSecretInfoInformationRequestData, onResponse?: Action1<DashboardResponseModels.SetSecretInfoInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
25
+ setSecretKeyAdminAccount(requestData: DashboardModels.SetSecretKeyAdminAccountRequestData, onResponse?: Action1<DashboardResponseModels.SetSecretKeyAdminAccountOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
26
+ }
27
+ export declare class ServerDashboardApi {
28
+ }
29
+ export declare class AdminDashboardApi {
30
+ }
@@ -1,153 +1,153 @@
1
- import { Action1 } from "./common/Action1";
2
- import { GNHashtable } from "./common/GNData";
3
- import { GamePlayerModels } from "./entity/models/GamePlayerModels";
4
- import { GamePlayerResponseModels } from "./entity/models/GamePlayerResponseModels";
5
- export declare class GamePlayerApi {
6
- server: ServerGamePlayerApi;
7
- admin: AdminGamePlayerApi;
8
- addPlayerFriend(requestData: GamePlayerModels.AddPlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.AddPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
9
- addSegment(requestData: GamePlayerModels.AddSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
10
- getAvatar(requestData: GamePlayerModels.GetAvatarRequestData, onResponse?: Action1<GamePlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
11
- getCountryCode(requestData: GamePlayerModels.GetCountryCodeRequestData, onResponse?: Action1<GamePlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
12
- getCustomData(requestData: GamePlayerModels.GetCustomDataRequestData, onResponse?: Action1<GamePlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
13
- getDisplayName(requestData: GamePlayerModels.GetDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
14
- getFriendStatisticsLeaderboardAroundPlayer(requestData: GamePlayerModels.GetFriendStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<GamePlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
15
- getFriendStatisticsLeaderboard(requestData: GamePlayerModels.GetFriendStatisticsLeaderboardRequestData, onResponse?: Action1<GamePlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
16
- getIpAddressCreate(requestData: GamePlayerModels.GetIpAddressCreateRequestData, onResponse?: Action1<GamePlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
17
- getOnlineStatus(requestData: GamePlayerModels.GetOnlineStatusRequestData, onResponse?: Action1<GamePlayerResponseModels.GetOnlineStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
18
- getPlayerBan(requestData: GamePlayerModels.GetPlayerBanRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
19
- getPlayerCharacter(requestData: GamePlayerModels.GetPlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
20
- getPlayerCurrency(requestData: GamePlayerModels.GetPlayerCurrencyRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
21
- getPlayerData(requestData: GamePlayerModels.GetPlayerDataRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
22
- getPlayerFriend(requestData: GamePlayerModels.GetPlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
23
- getPlayerGroup(requestData: GamePlayerModels.GetPlayerGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
24
- getPlayerInformation(requestData: GamePlayerModels.GetPlayerInformationRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
25
- getPlayerInventory(requestData: GamePlayerModels.GetPlayerInventoryRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
26
- getPlayerStatistics(requestData: GamePlayerModels.GetPlayerStatisticsRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
27
- getPlayersWithDisplayName(requestData: GamePlayerModels.GetPlayersWithDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
28
- getPlayersWithSegment(requestData: GamePlayerModels.GetPlayersWithSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
29
- getPlayersWithTag(requestData: GamePlayerModels.GetPlayersWithTagRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
30
- getSegment(requestData: GamePlayerModels.GetSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
31
- getStatisticsLeaderboardAroundPlayer(requestData: GamePlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<GamePlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
32
- getStatisticsLeaderboard(requestData: GamePlayerModels.GetStatisticsLeaderboardRequestData, onResponse?: Action1<GamePlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
33
- getTag(requestData: GamePlayerModels.GetTagRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
34
- getTsCreate(requestData: GamePlayerModels.GetTsCreateRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
35
- getTsLastLogin(requestData: GamePlayerModels.GetTsLastLoginRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
36
- grantGroup(requestData: GamePlayerModels.GrantGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
37
- grantPlayerCharacter(requestData: GamePlayerModels.GrantPlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantPlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
38
- grantPlayerItem(requestData: GamePlayerModels.GrantPlayerItemRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantPlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
39
- joinGroup(requestData: GamePlayerModels.JoinGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.JoinGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
40
- leaveGroup(requestData: GamePlayerModels.LeaveGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.LeaveGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
41
- removePlayerCharacter(requestData: GamePlayerModels.RemovePlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
42
- removePlayerFriend(requestData: GamePlayerModels.RemovePlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
43
- removePlayerItem(requestData: GamePlayerModels.RemovePlayerItemRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
44
- removeSegment(requestData: GamePlayerModels.RemoveSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
45
- removeTag(requestData: GamePlayerModels.RemoveTagRequestData, onResponse?: Action1<GamePlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
46
- setAvatar(requestData: GamePlayerModels.SetAvatarRequestData, onResponse?: Action1<GamePlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
47
- setCountryCode(requestData: GamePlayerModels.SetCountryCodeRequestData, onResponse?: Action1<GamePlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
48
- setCustomData(requestData: GamePlayerModels.SetCustomDataRequestData, onResponse?: Action1<GamePlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
49
- setDisplayName(requestData: GamePlayerModels.SetDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
50
- setPlayerBan(requestData: GamePlayerModels.SetPlayerBanRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
51
- setPlayerCurrency(requestData: GamePlayerModels.SetPlayerCurrencyRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
52
- setPlayerData(requestData: GamePlayerModels.SetPlayerDataRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
53
- setPlayerStatistics(requestData: GamePlayerModels.SetPlayerStatisticsRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
54
- setTag(requestData: GamePlayerModels.SetTagRequestData, onResponse?: Action1<GamePlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
55
- }
56
- export declare class ServerGamePlayerApi {
57
- addPlayerFriend(requestData: GamePlayerModels.ServerAddPlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.AddPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
58
- addSegment(requestData: GamePlayerModels.ServerAddSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
59
- getAvatar(requestData: GamePlayerModels.ServerGetAvatarRequestData, onResponse?: Action1<GamePlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
60
- getCountryCode(requestData: GamePlayerModels.ServerGetCountryCodeRequestData, onResponse?: Action1<GamePlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
61
- getCustomData(requestData: GamePlayerModels.ServerGetCustomDataRequestData, onResponse?: Action1<GamePlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
62
- getDisplayName(requestData: GamePlayerModels.ServerGetDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
63
- getFriendStatisticsLeaderboardAroundPlayer(requestData: GamePlayerModels.ServerGetFriendStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<GamePlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
64
- getFriendStatisticsLeaderboard(requestData: GamePlayerModels.ServerGetFriendStatisticsLeaderboardRequestData, onResponse?: Action1<GamePlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
65
- getIpAddressCreate(requestData: GamePlayerModels.ServerGetIpAddressCreateRequestData, onResponse?: Action1<GamePlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
66
- getOnlineStatus(requestData: GamePlayerModels.ServerGetOnlineStatusRequestData, onResponse?: Action1<GamePlayerResponseModels.GetOnlineStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
67
- getPlayerBan(requestData: GamePlayerModels.ServerGetPlayerBanRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
68
- getPlayerCharacter(requestData: GamePlayerModels.ServerGetPlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
69
- getPlayerCurrency(requestData: GamePlayerModels.ServerGetPlayerCurrencyRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
70
- getPlayerData(requestData: GamePlayerModels.ServerGetPlayerDataRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
71
- getPlayerFriend(requestData: GamePlayerModels.ServerGetPlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
72
- getPlayerGroup(requestData: GamePlayerModels.ServerGetPlayerGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
73
- getPlayerInformation(requestData: GamePlayerModels.ServerGetPlayerInformationRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
74
- getPlayerInventory(requestData: GamePlayerModels.ServerGetPlayerInventoryRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
75
- getPlayerStatistics(requestData: GamePlayerModels.ServerGetPlayerStatisticsRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
76
- getPlayersWithDisplayName(requestData: GamePlayerModels.ServerGetPlayersWithDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
77
- getPlayersWithSegment(requestData: GamePlayerModels.ServerGetPlayersWithSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
78
- getPlayersWithTag(requestData: GamePlayerModels.ServerGetPlayersWithTagRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
79
- getSegment(requestData: GamePlayerModels.ServerGetSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
80
- getStatisticsLeaderboardAroundPlayer(requestData: GamePlayerModels.ServerGetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<GamePlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
81
- getStatisticsLeaderboard(requestData: GamePlayerModels.ServerGetStatisticsLeaderboardRequestData, onResponse?: Action1<GamePlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
82
- getTag(requestData: GamePlayerModels.ServerGetTagRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
83
- getTsCreate(requestData: GamePlayerModels.ServerGetTsCreateRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
84
- getTsLastLogin(requestData: GamePlayerModels.ServerGetTsLastLoginRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
85
- grantGroup(requestData: GamePlayerModels.ServerGrantGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
86
- grantPlayerCharacter(requestData: GamePlayerModels.ServerGrantPlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantPlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
87
- grantPlayerItem(requestData: GamePlayerModels.ServerGrantPlayerItemRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantPlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
88
- joinGroup(requestData: GamePlayerModels.ServerJoinGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.JoinGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
89
- leaveGroup(requestData: GamePlayerModels.ServerLeaveGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.LeaveGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
90
- removePlayerCharacter(requestData: GamePlayerModels.ServerRemovePlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
91
- removePlayerFriend(requestData: GamePlayerModels.ServerRemovePlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
92
- removePlayerItem(requestData: GamePlayerModels.ServerRemovePlayerItemRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
93
- removeSegment(requestData: GamePlayerModels.ServerRemoveSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
94
- removeTag(requestData: GamePlayerModels.ServerRemoveTagRequestData, onResponse?: Action1<GamePlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
95
- setAvatar(requestData: GamePlayerModels.ServerSetAvatarRequestData, onResponse?: Action1<GamePlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
96
- setCountryCode(requestData: GamePlayerModels.ServerSetCountryCodeRequestData, onResponse?: Action1<GamePlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
97
- setCustomData(requestData: GamePlayerModels.ServerSetCustomDataRequestData, onResponse?: Action1<GamePlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
98
- setDisplayName(requestData: GamePlayerModels.ServerSetDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
99
- setPlayerBan(requestData: GamePlayerModels.ServerSetPlayerBanRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
100
- setPlayerCurrency(requestData: GamePlayerModels.ServerSetPlayerCurrencyRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
101
- setPlayerData(requestData: GamePlayerModels.ServerSetPlayerDataRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
102
- setPlayerStatistics(requestData: GamePlayerModels.ServerSetPlayerStatisticsRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
103
- setTag(requestData: GamePlayerModels.ServerSetTagRequestData, onResponse?: Action1<GamePlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
104
- }
105
- export declare class AdminGamePlayerApi {
106
- addPlayerFriend(requestData: GamePlayerModels.AdminAddPlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.AddPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
107
- addSegment(requestData: GamePlayerModels.AdminAddSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
108
- getAvatar(requestData: GamePlayerModels.AdminGetAvatarRequestData, onResponse?: Action1<GamePlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
109
- getCountryCode(requestData: GamePlayerModels.AdminGetCountryCodeRequestData, onResponse?: Action1<GamePlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
110
- getCustomData(requestData: GamePlayerModels.AdminGetCustomDataRequestData, onResponse?: Action1<GamePlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
111
- getDisplayName(requestData: GamePlayerModels.AdminGetDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
112
- getFriendStatisticsLeaderboardAroundPlayer(requestData: GamePlayerModels.AdminGetFriendStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<GamePlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
113
- getFriendStatisticsLeaderboard(requestData: GamePlayerModels.AdminGetFriendStatisticsLeaderboardRequestData, onResponse?: Action1<GamePlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
114
- getIpAddressCreate(requestData: GamePlayerModels.AdminGetIpAddressCreateRequestData, onResponse?: Action1<GamePlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
115
- getOnlineStatus(requestData: GamePlayerModels.AdminGetOnlineStatusRequestData, onResponse?: Action1<GamePlayerResponseModels.GetOnlineStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
116
- getPlayerBan(requestData: GamePlayerModels.AdminGetPlayerBanRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
117
- getPlayerCharacter(requestData: GamePlayerModels.AdminGetPlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
118
- getPlayerCurrency(requestData: GamePlayerModels.AdminGetPlayerCurrencyRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
119
- getPlayerData(requestData: GamePlayerModels.AdminGetPlayerDataRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
120
- getPlayerFriend(requestData: GamePlayerModels.AdminGetPlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
121
- getPlayerGroup(requestData: GamePlayerModels.AdminGetPlayerGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
122
- getPlayerInformation(requestData: GamePlayerModels.AdminGetPlayerInformationRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
123
- getPlayerInventory(requestData: GamePlayerModels.AdminGetPlayerInventoryRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
124
- getPlayerStatistics(requestData: GamePlayerModels.AdminGetPlayerStatisticsRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
125
- getPlayersWithDisplayName(requestData: GamePlayerModels.AdminGetPlayersWithDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
126
- getPlayersWithSegment(requestData: GamePlayerModels.AdminGetPlayersWithSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
127
- getPlayersWithTag(requestData: GamePlayerModels.AdminGetPlayersWithTagRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
128
- getSegment(requestData: GamePlayerModels.AdminGetSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
129
- getStatisticsLeaderboardAroundPlayer(requestData: GamePlayerModels.AdminGetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<GamePlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
130
- getStatisticsLeaderboard(requestData: GamePlayerModels.AdminGetStatisticsLeaderboardRequestData, onResponse?: Action1<GamePlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
131
- getTag(requestData: GamePlayerModels.AdminGetTagRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
132
- getTsCreate(requestData: GamePlayerModels.AdminGetTsCreateRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
133
- getTsLastLogin(requestData: GamePlayerModels.AdminGetTsLastLoginRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
134
- grantGroup(requestData: GamePlayerModels.AdminGrantGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
135
- grantPlayerCharacter(requestData: GamePlayerModels.AdminGrantPlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantPlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
136
- grantPlayerItem(requestData: GamePlayerModels.AdminGrantPlayerItemRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantPlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
137
- joinGroup(requestData: GamePlayerModels.AdminJoinGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.JoinGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
138
- leaveGroup(requestData: GamePlayerModels.AdminLeaveGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.LeaveGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
139
- removePlayerCharacter(requestData: GamePlayerModels.AdminRemovePlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
140
- removePlayerFriend(requestData: GamePlayerModels.AdminRemovePlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
141
- removePlayerItem(requestData: GamePlayerModels.AdminRemovePlayerItemRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
142
- removeSegment(requestData: GamePlayerModels.AdminRemoveSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
143
- removeTag(requestData: GamePlayerModels.AdminRemoveTagRequestData, onResponse?: Action1<GamePlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
144
- setAvatar(requestData: GamePlayerModels.AdminSetAvatarRequestData, onResponse?: Action1<GamePlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
145
- setCountryCode(requestData: GamePlayerModels.AdminSetCountryCodeRequestData, onResponse?: Action1<GamePlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
146
- setCustomData(requestData: GamePlayerModels.AdminSetCustomDataRequestData, onResponse?: Action1<GamePlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
147
- setDisplayName(requestData: GamePlayerModels.AdminSetDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
148
- setPlayerBan(requestData: GamePlayerModels.AdminSetPlayerBanRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
149
- setPlayerCurrency(requestData: GamePlayerModels.AdminSetPlayerCurrencyRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
150
- setPlayerData(requestData: GamePlayerModels.AdminSetPlayerDataRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
151
- setPlayerStatistics(requestData: GamePlayerModels.AdminSetPlayerStatisticsRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
152
- setTag(requestData: GamePlayerModels.AdminSetTagRequestData, onResponse?: Action1<GamePlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
153
- }
1
+ import { Action1 } from "./common/Action1";
2
+ import { GNHashtable } from "./common/GNData";
3
+ import { GamePlayerModels } from "./entity/models/GamePlayerModels";
4
+ import { GamePlayerResponseModels } from "./entity/models/GamePlayerResponseModels";
5
+ export declare class GamePlayerApi {
6
+ server: ServerGamePlayerApi;
7
+ admin: AdminGamePlayerApi;
8
+ addPlayerFriend(requestData: GamePlayerModels.AddPlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.AddPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
9
+ addSegment(requestData: GamePlayerModels.AddSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
10
+ getAvatar(requestData: GamePlayerModels.GetAvatarRequestData, onResponse?: Action1<GamePlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
11
+ getCountryCode(requestData: GamePlayerModels.GetCountryCodeRequestData, onResponse?: Action1<GamePlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
12
+ getCustomData(requestData: GamePlayerModels.GetCustomDataRequestData, onResponse?: Action1<GamePlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
13
+ getDisplayName(requestData: GamePlayerModels.GetDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
14
+ getFriendStatisticsLeaderboardAroundPlayer(requestData: GamePlayerModels.GetFriendStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<GamePlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
15
+ getFriendStatisticsLeaderboard(requestData: GamePlayerModels.GetFriendStatisticsLeaderboardRequestData, onResponse?: Action1<GamePlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
16
+ getIpAddressCreate(requestData: GamePlayerModels.GetIpAddressCreateRequestData, onResponse?: Action1<GamePlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
17
+ getOnlineStatus(requestData: GamePlayerModels.GetOnlineStatusRequestData, onResponse?: Action1<GamePlayerResponseModels.GetOnlineStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
18
+ getPlayerBan(requestData: GamePlayerModels.GetPlayerBanRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
19
+ getPlayerCharacter(requestData: GamePlayerModels.GetPlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
20
+ getPlayerCurrency(requestData: GamePlayerModels.GetPlayerCurrencyRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
21
+ getPlayerData(requestData: GamePlayerModels.GetPlayerDataRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
22
+ getPlayerFriend(requestData: GamePlayerModels.GetPlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
23
+ getPlayerGroup(requestData: GamePlayerModels.GetPlayerGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
24
+ getPlayerInformation(requestData: GamePlayerModels.GetPlayerInformationRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
25
+ getPlayerInventory(requestData: GamePlayerModels.GetPlayerInventoryRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
26
+ getPlayerStatistics(requestData: GamePlayerModels.GetPlayerStatisticsRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
27
+ getPlayersWithDisplayName(requestData: GamePlayerModels.GetPlayersWithDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
28
+ getPlayersWithSegment(requestData: GamePlayerModels.GetPlayersWithSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
29
+ getPlayersWithTag(requestData: GamePlayerModels.GetPlayersWithTagRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
30
+ getSegment(requestData: GamePlayerModels.GetSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
31
+ getStatisticsLeaderboardAroundPlayer(requestData: GamePlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<GamePlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
32
+ getStatisticsLeaderboard(requestData: GamePlayerModels.GetStatisticsLeaderboardRequestData, onResponse?: Action1<GamePlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
33
+ getTag(requestData: GamePlayerModels.GetTagRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
34
+ getTsCreate(requestData: GamePlayerModels.GetTsCreateRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
35
+ getTsLastLogin(requestData: GamePlayerModels.GetTsLastLoginRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
36
+ grantGroup(requestData: GamePlayerModels.GrantGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
37
+ grantPlayerCharacter(requestData: GamePlayerModels.GrantPlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantPlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
38
+ grantPlayerItem(requestData: GamePlayerModels.GrantPlayerItemRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantPlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
39
+ joinGroup(requestData: GamePlayerModels.JoinGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.JoinGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
40
+ leaveGroup(requestData: GamePlayerModels.LeaveGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.LeaveGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
41
+ removePlayerCharacter(requestData: GamePlayerModels.RemovePlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
42
+ removePlayerFriend(requestData: GamePlayerModels.RemovePlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
43
+ removePlayerItem(requestData: GamePlayerModels.RemovePlayerItemRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
44
+ removeSegment(requestData: GamePlayerModels.RemoveSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
45
+ removeTag(requestData: GamePlayerModels.RemoveTagRequestData, onResponse?: Action1<GamePlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
46
+ setAvatar(requestData: GamePlayerModels.SetAvatarRequestData, onResponse?: Action1<GamePlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
47
+ setCountryCode(requestData: GamePlayerModels.SetCountryCodeRequestData, onResponse?: Action1<GamePlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
48
+ setCustomData(requestData: GamePlayerModels.SetCustomDataRequestData, onResponse?: Action1<GamePlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
49
+ setDisplayName(requestData: GamePlayerModels.SetDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
50
+ setPlayerBan(requestData: GamePlayerModels.SetPlayerBanRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
51
+ setPlayerCurrency(requestData: GamePlayerModels.SetPlayerCurrencyRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
52
+ setPlayerData(requestData: GamePlayerModels.SetPlayerDataRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
53
+ setPlayerStatistics(requestData: GamePlayerModels.SetPlayerStatisticsRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
54
+ setTag(requestData: GamePlayerModels.SetTagRequestData, onResponse?: Action1<GamePlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
55
+ }
56
+ export declare class ServerGamePlayerApi {
57
+ addPlayerFriend(requestData: GamePlayerModels.ServerAddPlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.AddPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
58
+ addSegment(requestData: GamePlayerModels.ServerAddSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
59
+ getAvatar(requestData: GamePlayerModels.ServerGetAvatarRequestData, onResponse?: Action1<GamePlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
60
+ getCountryCode(requestData: GamePlayerModels.ServerGetCountryCodeRequestData, onResponse?: Action1<GamePlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
61
+ getCustomData(requestData: GamePlayerModels.ServerGetCustomDataRequestData, onResponse?: Action1<GamePlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
62
+ getDisplayName(requestData: GamePlayerModels.ServerGetDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
63
+ getFriendStatisticsLeaderboardAroundPlayer(requestData: GamePlayerModels.ServerGetFriendStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<GamePlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
64
+ getFriendStatisticsLeaderboard(requestData: GamePlayerModels.ServerGetFriendStatisticsLeaderboardRequestData, onResponse?: Action1<GamePlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
65
+ getIpAddressCreate(requestData: GamePlayerModels.ServerGetIpAddressCreateRequestData, onResponse?: Action1<GamePlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
66
+ getOnlineStatus(requestData: GamePlayerModels.ServerGetOnlineStatusRequestData, onResponse?: Action1<GamePlayerResponseModels.GetOnlineStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
67
+ getPlayerBan(requestData: GamePlayerModels.ServerGetPlayerBanRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
68
+ getPlayerCharacter(requestData: GamePlayerModels.ServerGetPlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
69
+ getPlayerCurrency(requestData: GamePlayerModels.ServerGetPlayerCurrencyRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
70
+ getPlayerData(requestData: GamePlayerModels.ServerGetPlayerDataRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
71
+ getPlayerFriend(requestData: GamePlayerModels.ServerGetPlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
72
+ getPlayerGroup(requestData: GamePlayerModels.ServerGetPlayerGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
73
+ getPlayerInformation(requestData: GamePlayerModels.ServerGetPlayerInformationRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
74
+ getPlayerInventory(requestData: GamePlayerModels.ServerGetPlayerInventoryRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
75
+ getPlayerStatistics(requestData: GamePlayerModels.ServerGetPlayerStatisticsRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
76
+ getPlayersWithDisplayName(requestData: GamePlayerModels.ServerGetPlayersWithDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
77
+ getPlayersWithSegment(requestData: GamePlayerModels.ServerGetPlayersWithSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
78
+ getPlayersWithTag(requestData: GamePlayerModels.ServerGetPlayersWithTagRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
79
+ getSegment(requestData: GamePlayerModels.ServerGetSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
80
+ getStatisticsLeaderboardAroundPlayer(requestData: GamePlayerModels.ServerGetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<GamePlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
81
+ getStatisticsLeaderboard(requestData: GamePlayerModels.ServerGetStatisticsLeaderboardRequestData, onResponse?: Action1<GamePlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
82
+ getTag(requestData: GamePlayerModels.ServerGetTagRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
83
+ getTsCreate(requestData: GamePlayerModels.ServerGetTsCreateRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
84
+ getTsLastLogin(requestData: GamePlayerModels.ServerGetTsLastLoginRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
85
+ grantGroup(requestData: GamePlayerModels.ServerGrantGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
86
+ grantPlayerCharacter(requestData: GamePlayerModels.ServerGrantPlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantPlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
87
+ grantPlayerItem(requestData: GamePlayerModels.ServerGrantPlayerItemRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantPlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
88
+ joinGroup(requestData: GamePlayerModels.ServerJoinGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.JoinGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
89
+ leaveGroup(requestData: GamePlayerModels.ServerLeaveGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.LeaveGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
90
+ removePlayerCharacter(requestData: GamePlayerModels.ServerRemovePlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
91
+ removePlayerFriend(requestData: GamePlayerModels.ServerRemovePlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
92
+ removePlayerItem(requestData: GamePlayerModels.ServerRemovePlayerItemRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
93
+ removeSegment(requestData: GamePlayerModels.ServerRemoveSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
94
+ removeTag(requestData: GamePlayerModels.ServerRemoveTagRequestData, onResponse?: Action1<GamePlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
95
+ setAvatar(requestData: GamePlayerModels.ServerSetAvatarRequestData, onResponse?: Action1<GamePlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
96
+ setCountryCode(requestData: GamePlayerModels.ServerSetCountryCodeRequestData, onResponse?: Action1<GamePlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
97
+ setCustomData(requestData: GamePlayerModels.ServerSetCustomDataRequestData, onResponse?: Action1<GamePlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
98
+ setDisplayName(requestData: GamePlayerModels.ServerSetDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
99
+ setPlayerBan(requestData: GamePlayerModels.ServerSetPlayerBanRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
100
+ setPlayerCurrency(requestData: GamePlayerModels.ServerSetPlayerCurrencyRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
101
+ setPlayerData(requestData: GamePlayerModels.ServerSetPlayerDataRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
102
+ setPlayerStatistics(requestData: GamePlayerModels.ServerSetPlayerStatisticsRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
103
+ setTag(requestData: GamePlayerModels.ServerSetTagRequestData, onResponse?: Action1<GamePlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
104
+ }
105
+ export declare class AdminGamePlayerApi {
106
+ addPlayerFriend(requestData: GamePlayerModels.AdminAddPlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.AddPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
107
+ addSegment(requestData: GamePlayerModels.AdminAddSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.AddSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
108
+ getAvatar(requestData: GamePlayerModels.AdminGetAvatarRequestData, onResponse?: Action1<GamePlayerResponseModels.GetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
109
+ getCountryCode(requestData: GamePlayerModels.AdminGetCountryCodeRequestData, onResponse?: Action1<GamePlayerResponseModels.GetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
110
+ getCustomData(requestData: GamePlayerModels.AdminGetCustomDataRequestData, onResponse?: Action1<GamePlayerResponseModels.GetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
111
+ getDisplayName(requestData: GamePlayerModels.AdminGetDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.GetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
112
+ getFriendStatisticsLeaderboardAroundPlayer(requestData: GamePlayerModels.AdminGetFriendStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<GamePlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
113
+ getFriendStatisticsLeaderboard(requestData: GamePlayerModels.AdminGetFriendStatisticsLeaderboardRequestData, onResponse?: Action1<GamePlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
114
+ getIpAddressCreate(requestData: GamePlayerModels.AdminGetIpAddressCreateRequestData, onResponse?: Action1<GamePlayerResponseModels.GetIpAddressCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
115
+ getOnlineStatus(requestData: GamePlayerModels.AdminGetOnlineStatusRequestData, onResponse?: Action1<GamePlayerResponseModels.GetOnlineStatusOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
116
+ getPlayerBan(requestData: GamePlayerModels.AdminGetPlayerBanRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
117
+ getPlayerCharacter(requestData: GamePlayerModels.AdminGetPlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
118
+ getPlayerCurrency(requestData: GamePlayerModels.AdminGetPlayerCurrencyRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
119
+ getPlayerData(requestData: GamePlayerModels.AdminGetPlayerDataRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
120
+ getPlayerFriend(requestData: GamePlayerModels.AdminGetPlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
121
+ getPlayerGroup(requestData: GamePlayerModels.AdminGetPlayerGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
122
+ getPlayerInformation(requestData: GamePlayerModels.AdminGetPlayerInformationRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerInformationOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
123
+ getPlayerInventory(requestData: GamePlayerModels.AdminGetPlayerInventoryRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerInventoryOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
124
+ getPlayerStatistics(requestData: GamePlayerModels.AdminGetPlayerStatisticsRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
125
+ getPlayersWithDisplayName(requestData: GamePlayerModels.AdminGetPlayersWithDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
126
+ getPlayersWithSegment(requestData: GamePlayerModels.AdminGetPlayersWithSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
127
+ getPlayersWithTag(requestData: GamePlayerModels.AdminGetPlayersWithTagRequestData, onResponse?: Action1<GamePlayerResponseModels.GetPlayersWithTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
128
+ getSegment(requestData: GamePlayerModels.AdminGetSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.GetSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
129
+ getStatisticsLeaderboardAroundPlayer(requestData: GamePlayerModels.AdminGetStatisticsLeaderboardAroundPlayerRequestData, onResponse?: Action1<GamePlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
130
+ getStatisticsLeaderboard(requestData: GamePlayerModels.AdminGetStatisticsLeaderboardRequestData, onResponse?: Action1<GamePlayerResponseModels.GetStatisticsLeaderboardOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
131
+ getTag(requestData: GamePlayerModels.AdminGetTagRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
132
+ getTsCreate(requestData: GamePlayerModels.AdminGetTsCreateRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTsCreateOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
133
+ getTsLastLogin(requestData: GamePlayerModels.AdminGetTsLastLoginRequestData, onResponse?: Action1<GamePlayerResponseModels.GetTsLastLoginOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
134
+ grantGroup(requestData: GamePlayerModels.AdminGrantGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
135
+ grantPlayerCharacter(requestData: GamePlayerModels.AdminGrantPlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantPlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
136
+ grantPlayerItem(requestData: GamePlayerModels.AdminGrantPlayerItemRequestData, onResponse?: Action1<GamePlayerResponseModels.GrantPlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
137
+ joinGroup(requestData: GamePlayerModels.AdminJoinGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.JoinGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
138
+ leaveGroup(requestData: GamePlayerModels.AdminLeaveGroupRequestData, onResponse?: Action1<GamePlayerResponseModels.LeaveGroupOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
139
+ removePlayerCharacter(requestData: GamePlayerModels.AdminRemovePlayerCharacterRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerCharacterOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
140
+ removePlayerFriend(requestData: GamePlayerModels.AdminRemovePlayerFriendRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerFriendOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
141
+ removePlayerItem(requestData: GamePlayerModels.AdminRemovePlayerItemRequestData, onResponse?: Action1<GamePlayerResponseModels.RemovePlayerItemOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
142
+ removeSegment(requestData: GamePlayerModels.AdminRemoveSegmentRequestData, onResponse?: Action1<GamePlayerResponseModels.RemoveSegmentOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
143
+ removeTag(requestData: GamePlayerModels.AdminRemoveTagRequestData, onResponse?: Action1<GamePlayerResponseModels.RemoveTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
144
+ setAvatar(requestData: GamePlayerModels.AdminSetAvatarRequestData, onResponse?: Action1<GamePlayerResponseModels.SetAvatarOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
145
+ setCountryCode(requestData: GamePlayerModels.AdminSetCountryCodeRequestData, onResponse?: Action1<GamePlayerResponseModels.SetCountryCodeOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
146
+ setCustomData(requestData: GamePlayerModels.AdminSetCustomDataRequestData, onResponse?: Action1<GamePlayerResponseModels.SetCustomDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
147
+ setDisplayName(requestData: GamePlayerModels.AdminSetDisplayNameRequestData, onResponse?: Action1<GamePlayerResponseModels.SetDisplayNameOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
148
+ setPlayerBan(requestData: GamePlayerModels.AdminSetPlayerBanRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerBanOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
149
+ setPlayerCurrency(requestData: GamePlayerModels.AdminSetPlayerCurrencyRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerCurrencyOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
150
+ setPlayerData(requestData: GamePlayerModels.AdminSetPlayerDataRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerDataOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
151
+ setPlayerStatistics(requestData: GamePlayerModels.AdminSetPlayerStatisticsRequestData, onResponse?: Action1<GamePlayerResponseModels.SetPlayerStatisticsOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
152
+ setTag(requestData: GamePlayerModels.AdminSetTagRequestData, onResponse?: Action1<GamePlayerResponseModels.SetTagOperationResponse>, overrideAuthToken?: string, overrideSecretKey?: string, customTags?: GNHashtable, timeout?: number): void;
153
+ }