@xmobitea/gn-typescript-client 2.6.7 → 2.6.8-tsc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +337 -34170
- package/dist/runtime/GNNetwork.js +250 -0
- package/dist/runtime/GNNetworkAuthenticateApi.js +122 -0
- package/dist/runtime/GNNetworkCharacterPlayerApi.js +968 -0
- package/dist/runtime/GNNetworkCloudScriptApi.js +104 -0
- package/dist/runtime/GNNetworkContentApi.js +140 -0
- package/dist/runtime/GNNetworkDashboardApi.js +170 -0
- package/dist/runtime/GNNetworkGamePlayerApi.js +950 -0
- package/dist/runtime/GNNetworkGroupApi.js +734 -0
- package/dist/runtime/GNNetworkInventoryApi.js +626 -0
- package/dist/runtime/GNNetworkMasterPlayerApi.js +1550 -0
- package/dist/runtime/GNNetworkMultiplayerApi.js +194 -0
- package/dist/runtime/GNNetworkStoreInventoryApi.js +266 -0
- package/dist/runtime/common/Action0.js +1 -0
- package/dist/runtime/common/Action1.js +1 -0
- package/dist/runtime/common/Action2.js +1 -0
- package/dist/runtime/common/Action3.js +1 -0
- package/dist/runtime/common/Action4.js +1 -0
- package/dist/runtime/common/GNData.js +211 -0
- package/dist/runtime/config/GNServerSettings.js +149 -0
- package/dist/runtime/constant/Commands.js +19 -0
- package/dist/runtime/constant/EventCode.js +8 -0
- package/dist/runtime/constant/OperationCode.js +221 -0
- package/dist/runtime/constant/ReturnCode.js +14 -0
- package/dist/runtime/constant/enumType/ExecuteResponseStatus.js +8 -0
- package/dist/runtime/constant/enumType/FriendStatus.js +7 -0
- package/dist/runtime/constant/enumType/GoogleLoginType.js +5 -0
- package/dist/runtime/constant/enumType/GroupStatus.js +7 -0
- package/dist/runtime/constant/enumType/InvalidMemberType.js +18 -0
- package/dist/runtime/constant/enumType/ItemType.js +5 -0
- package/dist/runtime/constant/enumType/MatchmakingMemberStatus.js +6 -0
- package/dist/runtime/constant/enumType/MatchmakingTicketStatus.js +8 -0
- package/dist/runtime/constant/enumType/OwnerType.js +9 -0
- package/dist/runtime/constant/enumType/PermissionDataItem.js +5 -0
- package/dist/runtime/constant/enumType/PushPlatformType.js +5 -0
- package/dist/runtime/constant/enumType/RequestRole.js +6 -0
- package/dist/runtime/constant/enumType/RequestType.js +15 -0
- package/dist/runtime/constant/enumType/StoreItemType.js +5 -0
- package/dist/runtime/constant/enumType/StoreReceiveType.js +8 -0
- package/dist/runtime/constant/errorCode/ErrorCode.js +52 -0
- package/dist/runtime/constant/parameterCode/ParameterCode.js +617 -0
- package/dist/runtime/entity/DataMember.js +208 -0
- package/dist/runtime/entity/GNMetadata.js +11 -0
- package/dist/runtime/entity/InvalidMember.js +1 -0
- package/dist/runtime/entity/OperationEvent.js +24 -0
- package/dist/runtime/entity/OperationHelper.js +24 -0
- package/dist/runtime/entity/OperationRequest.js +42 -0
- package/dist/runtime/entity/OperationResponse.js +73 -0
- package/dist/runtime/entity/models/AuthenticateModels.js +426 -0
- package/dist/runtime/entity/models/AuthenticateRequestModels.js +188 -0
- package/dist/runtime/entity/models/AuthenticateResponseModels.js +131 -0
- package/dist/runtime/entity/models/CharacterPlayerModels.js +1437 -0
- package/dist/runtime/entity/models/CharacterPlayerRequestModels.js +1386 -0
- package/dist/runtime/entity/models/CharacterPlayerResponseModels.js +376 -0
- package/dist/runtime/entity/models/CloudScriptModels.js +197 -0
- package/dist/runtime/entity/models/CloudScriptRequestModels.js +138 -0
- package/dist/runtime/entity/models/CloudScriptResponseModels.js +40 -0
- package/dist/runtime/entity/models/ContentModels.js +203 -0
- package/dist/runtime/entity/models/ContentRequestModels.js +190 -0
- package/dist/runtime/entity/models/ContentResponseModels.js +54 -0
- package/dist/runtime/entity/models/DashboardModels.js +3002 -0
- package/dist/runtime/entity/models/DashboardRequestModels.js +268 -0
- package/dist/runtime/entity/models/DashboardResponseModels.js +187 -0
- package/dist/runtime/entity/models/GamePlayerModels.js +1591 -0
- package/dist/runtime/entity/models/GamePlayerRequestModels.js +1360 -0
- package/dist/runtime/entity/models/GamePlayerResponseModels.js +369 -0
- package/dist/runtime/entity/models/GenericModels.js +177 -0
- package/dist/runtime/entity/models/GroupModels.js +1139 -0
- package/dist/runtime/entity/models/GroupRequestModels.js +1048 -0
- package/dist/runtime/entity/models/GroupResponseModels.js +285 -0
- package/dist/runtime/entity/models/InventoryModels.js +915 -0
- package/dist/runtime/entity/models/InventoryRequestModels.js +892 -0
- package/dist/runtime/entity/models/InventoryResponseModels.js +243 -0
- package/dist/runtime/entity/models/MasterPlayerModels.js +2573 -0
- package/dist/runtime/entity/models/MasterPlayerRequestModels.js +2228 -0
- package/dist/runtime/entity/models/MasterPlayerResponseModels.js +607 -0
- package/dist/runtime/entity/models/MultiplayerModels.js +404 -0
- package/dist/runtime/entity/models/MultiplayerRequestModels.js +268 -0
- package/dist/runtime/entity/models/MultiplayerResponseModels.js +75 -0
- package/dist/runtime/entity/models/StoreInventoryModels.js +797 -0
- package/dist/runtime/entity/models/StoreInventoryRequestModels.js +372 -0
- package/dist/runtime/entity/models/StoreInventoryResponseModels.js +103 -0
- package/dist/runtime/entity/request/CustomOperationRequest.js +24 -0
- package/dist/runtime/entity/response/CustomOperationResponse.js +29 -0
- package/dist/runtime/entity/response/GetAuthInfoResponse.js +2 -0
- package/dist/runtime/entity/response/UploadFileResponse.js +2 -0
- package/dist/runtime/helper/CodeHelper.js +63 -0
- package/dist/runtime/helper/ConverterService.js +275 -0
- package/dist/runtime/helper/EnumUtility.js +33 -0
- package/dist/runtime/helper/GNSupport.js +8 -0
- package/dist/runtime/helper/GNUtils.js +72 -0
- package/dist/runtime/helper/MessagePackConverterService.js +9 -0
- package/dist/runtime/logger/GNDebug.js +29 -0
- package/dist/runtime/networking/AuthenticateStatus.js +14 -0
- package/dist/runtime/networking/IPeer.js +1 -0
- package/dist/runtime/networking/NetworkingPeer.js +178 -0
- package/dist/runtime/networking/OperationPending.js +53 -0
- package/dist/runtime/networking/PeerBase.js +161 -0
- package/dist/runtime/networking/handler/IServerEventHandler.js +13 -0
- package/dist/runtime/networking/handler/OnCharacterPlayerFriendUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnCharacterPlayerGroupUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnGamePlayerFriendUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnGamePlayerGroupUpdateEventHandler.js +39 -0
- package/dist/runtime/networking/handler/OnGroupMemberUpdateEventHandler.js +35 -0
- package/dist/runtime/networking/handler/OnGroupMessageUpdateEventHandler.js +43 -0
- package/dist/runtime/networking/http/HttpPeer.js +122 -0
- package/dist/runtime/networking/http/NetworkingHttpPeerBase.js +6 -0
- package/dist/runtime/networking/http/NetworkingPeerAxiosRequest.js +164 -0
- package/dist/runtime/networking/socket/NetworkingPeerSocketIOClient.js +130 -0
- package/dist/runtime/networking/socket/NetworkingSocketPeerBase.js +165 -0
- package/dist/runtime/networking/socket/SocketPeer.js +115 -0
- package/dist/runtime/typescript/ServiceUpdate.js +12 -0
- package/package.json +1 -1
- package/dist/gearn.js.client.js +0 -46892
- package/dist/gearn.js.client.min.js +0 -2
- package/dist/gearn.js.client.min.js.LICENSE.txt +0 -14
|
@@ -0,0 +1,1550 @@
|
|
|
1
|
+
import { GNNetwork } from "./GNNetwork";
|
|
2
|
+
import { OperationRequest } from "./entity/OperationRequest";
|
|
3
|
+
import { MasterPlayerRequestModels } from "./entity/models/MasterPlayerRequestModels";
|
|
4
|
+
import { MasterPlayerResponseModels } from "./entity/models/MasterPlayerResponseModels";
|
|
5
|
+
export class MasterPlayerApi {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.server = new ServerMasterPlayerApi();
|
|
8
|
+
this.admin = new AdminMasterPlayerApi();
|
|
9
|
+
}
|
|
10
|
+
addSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
11
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AddSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.AddSegmentOperationResponse);
|
|
12
|
+
}
|
|
13
|
+
async addSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
14
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AddSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.AddSegmentOperationResponse);
|
|
15
|
+
}
|
|
16
|
+
changeAccountPassword(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
17
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ChangeAccountPasswordOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ChangeAccountPasswordOperationResponse);
|
|
18
|
+
}
|
|
19
|
+
async changeAccountPasswordAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
20
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ChangeAccountPasswordOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ChangeAccountPasswordOperationResponse);
|
|
21
|
+
}
|
|
22
|
+
getAvatar(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
23
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetAvatarOperationResponse);
|
|
24
|
+
}
|
|
25
|
+
async getAvatarAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
26
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetAvatarOperationResponse);
|
|
27
|
+
}
|
|
28
|
+
getCountryCode(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
29
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetCountryCodeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCountryCodeOperationResponse);
|
|
30
|
+
}
|
|
31
|
+
async getCountryCodeAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
32
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetCountryCodeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCountryCodeOperationResponse);
|
|
33
|
+
}
|
|
34
|
+
getCustomData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
35
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCustomDataOperationResponse);
|
|
36
|
+
}
|
|
37
|
+
async getCustomDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
38
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCustomDataOperationResponse);
|
|
39
|
+
}
|
|
40
|
+
getDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
41
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetDisplayNameOperationResponse);
|
|
42
|
+
}
|
|
43
|
+
async getDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
44
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetDisplayNameOperationResponse);
|
|
45
|
+
}
|
|
46
|
+
getEmail(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
47
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetEmailOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetEmailOperationResponse);
|
|
48
|
+
}
|
|
49
|
+
async getEmailAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
50
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetEmailOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetEmailOperationResponse);
|
|
51
|
+
}
|
|
52
|
+
getExternal(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
53
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetExternalOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetExternalOperationResponse);
|
|
54
|
+
}
|
|
55
|
+
async getExternalAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
56
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetExternalOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetExternalOperationResponse);
|
|
57
|
+
}
|
|
58
|
+
getIpAddressCreate(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
59
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetIpAddressCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetIpAddressCreateOperationResponse);
|
|
60
|
+
}
|
|
61
|
+
async getIpAddressCreateAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
62
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetIpAddressCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetIpAddressCreateOperationResponse);
|
|
63
|
+
}
|
|
64
|
+
getPlayerBan(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
65
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPlayerBanOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerBanOperationResponse);
|
|
66
|
+
}
|
|
67
|
+
async getPlayerBanAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
68
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPlayerBanOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerBanOperationResponse);
|
|
69
|
+
}
|
|
70
|
+
getPlayerCurrency(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
71
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPlayerCurrencyOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse);
|
|
72
|
+
}
|
|
73
|
+
async getPlayerCurrencyAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
74
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPlayerCurrencyOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse);
|
|
75
|
+
}
|
|
76
|
+
getPlayerData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
77
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPlayerDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerDataOperationResponse);
|
|
78
|
+
}
|
|
79
|
+
async getPlayerDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
80
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPlayerDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerDataOperationResponse);
|
|
81
|
+
}
|
|
82
|
+
getPlayerInformation(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
83
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPlayerInformationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerInformationOperationResponse);
|
|
84
|
+
}
|
|
85
|
+
async getPlayerInformationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
86
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPlayerInformationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerInformationOperationResponse);
|
|
87
|
+
}
|
|
88
|
+
getPlayerStatistics(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
89
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPlayerStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse);
|
|
90
|
+
}
|
|
91
|
+
async getPlayerStatisticsAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
92
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPlayerStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse);
|
|
93
|
+
}
|
|
94
|
+
getPlayersWithApple(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
95
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPlayersWithAppleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse);
|
|
96
|
+
}
|
|
97
|
+
async getPlayersWithAppleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
98
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPlayersWithAppleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse);
|
|
99
|
+
}
|
|
100
|
+
getPlayersWithDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
101
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPlayersWithDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse);
|
|
102
|
+
}
|
|
103
|
+
async getPlayersWithDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
104
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPlayersWithDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse);
|
|
105
|
+
}
|
|
106
|
+
getPlayersWithFacebook(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
107
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPlayersWithFacebookOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse);
|
|
108
|
+
}
|
|
109
|
+
async getPlayersWithFacebookAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
110
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPlayersWithFacebookOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse);
|
|
111
|
+
}
|
|
112
|
+
getPlayersWithGenericService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
113
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPlayersWithGenericServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse);
|
|
114
|
+
}
|
|
115
|
+
async getPlayersWithGenericServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
116
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPlayersWithGenericServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse);
|
|
117
|
+
}
|
|
118
|
+
getPlayersWithGoogle(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
119
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPlayersWithGoogleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse);
|
|
120
|
+
}
|
|
121
|
+
async getPlayersWithGoogleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
122
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPlayersWithGoogleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse);
|
|
123
|
+
}
|
|
124
|
+
getPlayersWithGooglePlayGameService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
125
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse);
|
|
126
|
+
}
|
|
127
|
+
async getPlayersWithGooglePlayGameServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
128
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse);
|
|
129
|
+
}
|
|
130
|
+
getPlayersWithGameCenter(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
131
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPlayersWithGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse);
|
|
132
|
+
}
|
|
133
|
+
async getPlayersWithGameCenterAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
134
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPlayersWithGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse);
|
|
135
|
+
}
|
|
136
|
+
getPlayersWithSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
137
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPlayersWithSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse);
|
|
138
|
+
}
|
|
139
|
+
async getPlayersWithSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
140
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPlayersWithSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse);
|
|
141
|
+
}
|
|
142
|
+
getPlayersWithTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
143
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPlayersWithTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithTagOperationResponse);
|
|
144
|
+
}
|
|
145
|
+
async getPlayersWithTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
146
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPlayersWithTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithTagOperationResponse);
|
|
147
|
+
}
|
|
148
|
+
getSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
149
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetSegmentOperationResponse);
|
|
150
|
+
}
|
|
151
|
+
async getSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
152
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetSegmentOperationResponse);
|
|
153
|
+
}
|
|
154
|
+
getStatisticsLeaderboardAroundPlayer(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
155
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse);
|
|
156
|
+
}
|
|
157
|
+
async getStatisticsLeaderboardAroundPlayerAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
158
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse);
|
|
159
|
+
}
|
|
160
|
+
getStatisticsLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
161
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetStatisticsLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse);
|
|
162
|
+
}
|
|
163
|
+
async getStatisticsLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
164
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetStatisticsLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse);
|
|
165
|
+
}
|
|
166
|
+
getTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
167
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTagOperationResponse);
|
|
168
|
+
}
|
|
169
|
+
async getTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
170
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTagOperationResponse);
|
|
171
|
+
}
|
|
172
|
+
getTsCreate(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
173
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetTsCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTsCreateOperationResponse);
|
|
174
|
+
}
|
|
175
|
+
async getTsCreateAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
176
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetTsCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTsCreateOperationResponse);
|
|
177
|
+
}
|
|
178
|
+
getTsLastLogin(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
179
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetTsLastLoginOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTsLastLoginOperationResponse);
|
|
180
|
+
}
|
|
181
|
+
async getTsLastLoginAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
182
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetTsLastLoginOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTsLastLoginOperationResponse);
|
|
183
|
+
}
|
|
184
|
+
linkAccount(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
185
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkAccountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAccountOperationResponse);
|
|
186
|
+
}
|
|
187
|
+
async linkAccountAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
188
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkAccountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAccountOperationResponse);
|
|
189
|
+
}
|
|
190
|
+
linkAndroidDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
191
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkAndroidDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse);
|
|
192
|
+
}
|
|
193
|
+
async linkAndroidDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
194
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkAndroidDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse);
|
|
195
|
+
}
|
|
196
|
+
linkApple(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
197
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkAppleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAppleOperationResponse);
|
|
198
|
+
}
|
|
199
|
+
async linkAppleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
200
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkAppleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAppleOperationResponse);
|
|
201
|
+
}
|
|
202
|
+
linkCustomDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
203
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkCustomDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse);
|
|
204
|
+
}
|
|
205
|
+
async linkCustomDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
206
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkCustomDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse);
|
|
207
|
+
}
|
|
208
|
+
linkCustomId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
209
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkCustomIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkCustomIdOperationResponse);
|
|
210
|
+
}
|
|
211
|
+
async linkCustomIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
212
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkCustomIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkCustomIdOperationResponse);
|
|
213
|
+
}
|
|
214
|
+
linkEditorDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
215
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkEditorDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse);
|
|
216
|
+
}
|
|
217
|
+
async linkEditorDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
218
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkEditorDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse);
|
|
219
|
+
}
|
|
220
|
+
linkFacebook(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
221
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkFacebookOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkFacebookOperationResponse);
|
|
222
|
+
}
|
|
223
|
+
async linkFacebookAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
224
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkFacebookOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkFacebookOperationResponse);
|
|
225
|
+
}
|
|
226
|
+
linkGenericService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
227
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkGenericServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGenericServiceOperationResponse);
|
|
228
|
+
}
|
|
229
|
+
async linkGenericServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
230
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkGenericServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGenericServiceOperationResponse);
|
|
231
|
+
}
|
|
232
|
+
linkGoogle(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
233
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkGoogleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGoogleOperationResponse);
|
|
234
|
+
}
|
|
235
|
+
async linkGoogleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
236
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkGoogleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGoogleOperationResponse);
|
|
237
|
+
}
|
|
238
|
+
linkGooglePlayGameService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
239
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse);
|
|
240
|
+
}
|
|
241
|
+
async linkGooglePlayGameServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
242
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse);
|
|
243
|
+
}
|
|
244
|
+
linkGameCenter(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
245
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGameCenterOperationResponse);
|
|
246
|
+
}
|
|
247
|
+
async linkGameCenterAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
248
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGameCenterOperationResponse);
|
|
249
|
+
}
|
|
250
|
+
linkiOSDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
251
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkiOSDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse);
|
|
252
|
+
}
|
|
253
|
+
async linkiOSDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
254
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkiOSDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse);
|
|
255
|
+
}
|
|
256
|
+
linkLinuxDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
257
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkLinuxDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse);
|
|
258
|
+
}
|
|
259
|
+
async linkLinuxDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
260
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkLinuxDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse);
|
|
261
|
+
}
|
|
262
|
+
linkMacOSDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
263
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkMacOSDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse);
|
|
264
|
+
}
|
|
265
|
+
async linkMacOSDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
266
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkMacOSDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse);
|
|
267
|
+
}
|
|
268
|
+
linkWindowsDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
269
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkWindowsDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse);
|
|
270
|
+
}
|
|
271
|
+
async linkWindowsDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
272
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkWindowsDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse);
|
|
273
|
+
}
|
|
274
|
+
linkWindowsPhoneDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
275
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.LinkWindowsPhoneDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse);
|
|
276
|
+
}
|
|
277
|
+
async linkWindowsPhoneDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
278
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.LinkWindowsPhoneDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse);
|
|
279
|
+
}
|
|
280
|
+
removeSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
281
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.RemoveSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemoveSegmentOperationResponse);
|
|
282
|
+
}
|
|
283
|
+
async removeSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
284
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.RemoveSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemoveSegmentOperationResponse);
|
|
285
|
+
}
|
|
286
|
+
removeTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
287
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.RemoveTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemoveTagOperationResponse);
|
|
288
|
+
}
|
|
289
|
+
async removeTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
290
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.RemoveTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemoveTagOperationResponse);
|
|
291
|
+
}
|
|
292
|
+
resetAccountPassword(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
293
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ResetAccountPasswordOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ResetAccountPasswordOperationResponse);
|
|
294
|
+
}
|
|
295
|
+
async resetAccountPasswordAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
296
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ResetAccountPasswordOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ResetAccountPasswordOperationResponse);
|
|
297
|
+
}
|
|
298
|
+
setAvatar(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
299
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.SetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetAvatarOperationResponse);
|
|
300
|
+
}
|
|
301
|
+
async setAvatarAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
302
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.SetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetAvatarOperationResponse);
|
|
303
|
+
}
|
|
304
|
+
setCountryCode(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
305
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.SetCountryCodeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetCountryCodeOperationResponse);
|
|
306
|
+
}
|
|
307
|
+
async setCountryCodeAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
308
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.SetCountryCodeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetCountryCodeOperationResponse);
|
|
309
|
+
}
|
|
310
|
+
setCustomData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
311
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.SetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetCustomDataOperationResponse);
|
|
312
|
+
}
|
|
313
|
+
async setCustomDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
314
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.SetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetCustomDataOperationResponse);
|
|
315
|
+
}
|
|
316
|
+
setDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
317
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.SetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetDisplayNameOperationResponse);
|
|
318
|
+
}
|
|
319
|
+
async setDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
320
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.SetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetDisplayNameOperationResponse);
|
|
321
|
+
}
|
|
322
|
+
setEmail(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
323
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.SetEmailOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetEmailOperationResponse);
|
|
324
|
+
}
|
|
325
|
+
async setEmailAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
326
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.SetEmailOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetEmailOperationResponse);
|
|
327
|
+
}
|
|
328
|
+
setPlayerBan(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
329
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.SetPlayerBanOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetPlayerBanOperationResponse);
|
|
330
|
+
}
|
|
331
|
+
async setPlayerBanAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
332
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.SetPlayerBanOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetPlayerBanOperationResponse);
|
|
333
|
+
}
|
|
334
|
+
changePlayerCurrency(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
335
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ChangePlayerCurrencyOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ChangePlayerCurrencyOperationResponse);
|
|
336
|
+
}
|
|
337
|
+
async changePlayerCurrencyAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
338
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ChangePlayerCurrencyOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ChangePlayerCurrencyOperationResponse);
|
|
339
|
+
}
|
|
340
|
+
setPlayerData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
341
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.SetPlayerDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetPlayerDataOperationResponse);
|
|
342
|
+
}
|
|
343
|
+
async setPlayerDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
344
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.SetPlayerDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetPlayerDataOperationResponse);
|
|
345
|
+
}
|
|
346
|
+
changePlayerStatistics(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
347
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ChangePlayerStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ChangePlayerStatisticsOperationResponse);
|
|
348
|
+
}
|
|
349
|
+
async changePlayerStatisticsAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
350
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ChangePlayerStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ChangePlayerStatisticsOperationResponse);
|
|
351
|
+
}
|
|
352
|
+
setTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
353
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.SetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetTagOperationResponse);
|
|
354
|
+
}
|
|
355
|
+
async setTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
356
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.SetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetTagOperationResponse);
|
|
357
|
+
}
|
|
358
|
+
setTsLastLogin(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
359
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.SetTsLastLoginOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetTsLastLoginOperationResponse);
|
|
360
|
+
}
|
|
361
|
+
async setTsLastLoginAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
362
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.SetTsLastLoginOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetTsLastLoginOperationResponse);
|
|
363
|
+
}
|
|
364
|
+
unlinkAccount(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
365
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkAccountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAccountOperationResponse);
|
|
366
|
+
}
|
|
367
|
+
async unlinkAccountAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
368
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkAccountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAccountOperationResponse);
|
|
369
|
+
}
|
|
370
|
+
unlinkAndroidDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
371
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkAndroidDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse);
|
|
372
|
+
}
|
|
373
|
+
async unlinkAndroidDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
374
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkAndroidDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse);
|
|
375
|
+
}
|
|
376
|
+
unlinkApple(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
377
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkAppleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAppleOperationResponse);
|
|
378
|
+
}
|
|
379
|
+
async unlinkAppleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
380
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkAppleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAppleOperationResponse);
|
|
381
|
+
}
|
|
382
|
+
unlinkCustomDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
383
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkCustomDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse);
|
|
384
|
+
}
|
|
385
|
+
async unlinkCustomDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
386
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkCustomDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse);
|
|
387
|
+
}
|
|
388
|
+
unlinkCustomId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
389
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkCustomIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkCustomIdOperationResponse);
|
|
390
|
+
}
|
|
391
|
+
async unlinkCustomIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
392
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkCustomIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkCustomIdOperationResponse);
|
|
393
|
+
}
|
|
394
|
+
unlinkEditorDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
395
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkEditorDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse);
|
|
396
|
+
}
|
|
397
|
+
async unlinkEditorDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
398
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkEditorDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse);
|
|
399
|
+
}
|
|
400
|
+
unlinkFacebook(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
401
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkFacebookOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkFacebookOperationResponse);
|
|
402
|
+
}
|
|
403
|
+
async unlinkFacebookAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
404
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkFacebookOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkFacebookOperationResponse);
|
|
405
|
+
}
|
|
406
|
+
unlinkGenericService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
407
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkGenericServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse);
|
|
408
|
+
}
|
|
409
|
+
async unlinkGenericServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
410
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkGenericServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse);
|
|
411
|
+
}
|
|
412
|
+
unlinkGoogle(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
413
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkGoogleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGoogleOperationResponse);
|
|
414
|
+
}
|
|
415
|
+
async unlinkGoogleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
416
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkGoogleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGoogleOperationResponse);
|
|
417
|
+
}
|
|
418
|
+
unlinkGooglePlayGameService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
419
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse);
|
|
420
|
+
}
|
|
421
|
+
async unlinkGooglePlayGameServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
422
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse);
|
|
423
|
+
}
|
|
424
|
+
unlinkGameCenter(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
425
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGameCenterOperationResponse);
|
|
426
|
+
}
|
|
427
|
+
async unlinkGameCenterAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
428
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGameCenterOperationResponse);
|
|
429
|
+
}
|
|
430
|
+
unlinkiOSDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
431
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkiOSDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse);
|
|
432
|
+
}
|
|
433
|
+
async unlinkiOSDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
434
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkiOSDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse);
|
|
435
|
+
}
|
|
436
|
+
unlinkLinuxDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
437
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkLinuxDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse);
|
|
438
|
+
}
|
|
439
|
+
async unlinkLinuxDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
440
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkLinuxDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse);
|
|
441
|
+
}
|
|
442
|
+
unlinkMacOSDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
443
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkMacOSDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse);
|
|
444
|
+
}
|
|
445
|
+
async unlinkMacOSDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
446
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkMacOSDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse);
|
|
447
|
+
}
|
|
448
|
+
unlinkWindowsDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
449
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkWindowsDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse);
|
|
450
|
+
}
|
|
451
|
+
async unlinkWindowsDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
452
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkWindowsDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse);
|
|
453
|
+
}
|
|
454
|
+
unlinkWindowsPhoneDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
455
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.UnlinkWindowsPhoneDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse);
|
|
456
|
+
}
|
|
457
|
+
async unlinkWindowsPhoneDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
458
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.UnlinkWindowsPhoneDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse);
|
|
459
|
+
}
|
|
460
|
+
getCurrencyLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
461
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetCurrencyLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse);
|
|
462
|
+
}
|
|
463
|
+
async getCurrencyLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
464
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetCurrencyLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse);
|
|
465
|
+
}
|
|
466
|
+
getCreateLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
467
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetCreateLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCreateLeaderboardOperationResponse);
|
|
468
|
+
}
|
|
469
|
+
async getCreateLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
470
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetCreateLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCreateLeaderboardOperationResponse);
|
|
471
|
+
}
|
|
472
|
+
getLastLoginLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
473
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetLastLoginLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse);
|
|
474
|
+
}
|
|
475
|
+
async getLastLoginLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
476
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetLastLoginLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse);
|
|
477
|
+
}
|
|
478
|
+
getStatisticsLog(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
479
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetStatisticsLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLogOperationResponse);
|
|
480
|
+
}
|
|
481
|
+
async getStatisticsLogAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
482
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetStatisticsLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLogOperationResponse);
|
|
483
|
+
}
|
|
484
|
+
getCurrencyLog(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
485
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetCurrencyLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCurrencyLogOperationResponse);
|
|
486
|
+
}
|
|
487
|
+
async getCurrencyLogAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
488
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetCurrencyLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCurrencyLogOperationResponse);
|
|
489
|
+
}
|
|
490
|
+
sendSocketOperationEvent(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
491
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.SendSocketOperationEventOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendSocketOperationEventOperationResponse);
|
|
492
|
+
}
|
|
493
|
+
async sendSocketOperationEventAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
494
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.SendSocketOperationEventOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendSocketOperationEventOperationResponse);
|
|
495
|
+
}
|
|
496
|
+
sendEmail(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
497
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.SendEmailOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendEmailOperationResponse);
|
|
498
|
+
}
|
|
499
|
+
async sendEmailAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
500
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.SendEmailOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendEmailOperationResponse);
|
|
501
|
+
}
|
|
502
|
+
addPushNotification(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
503
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AddPushNotificationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.AddPushNotificationOperationResponse);
|
|
504
|
+
}
|
|
505
|
+
async addPushNotificationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
506
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AddPushNotificationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.AddPushNotificationOperationResponse);
|
|
507
|
+
}
|
|
508
|
+
removePushNotification(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
509
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.RemovePushNotificationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemovePushNotificationOperationResponse);
|
|
510
|
+
}
|
|
511
|
+
async removePushNotificationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
512
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.RemovePushNotificationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemovePushNotificationOperationResponse);
|
|
513
|
+
}
|
|
514
|
+
getPushNotification(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
515
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.GetPushNotificationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPushNotificationOperationResponse);
|
|
516
|
+
}
|
|
517
|
+
async getPushNotificationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
518
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.GetPushNotificationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPushNotificationOperationResponse);
|
|
519
|
+
}
|
|
520
|
+
sendPushNotification(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
521
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.SendPushNotificationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendPushNotificationOperationResponse);
|
|
522
|
+
}
|
|
523
|
+
async sendPushNotificationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
524
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.SendPushNotificationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendPushNotificationOperationResponse);
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
export class ServerMasterPlayerApi {
|
|
528
|
+
addSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
529
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerAddSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.AddSegmentOperationResponse);
|
|
530
|
+
}
|
|
531
|
+
async addSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
532
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerAddSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.AddSegmentOperationResponse);
|
|
533
|
+
}
|
|
534
|
+
getAvatar(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
535
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetAvatarOperationResponse);
|
|
536
|
+
}
|
|
537
|
+
async getAvatarAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
538
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetAvatarOperationResponse);
|
|
539
|
+
}
|
|
540
|
+
getCountryCode(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
541
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetCountryCodeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCountryCodeOperationResponse);
|
|
542
|
+
}
|
|
543
|
+
async getCountryCodeAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
544
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetCountryCodeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCountryCodeOperationResponse);
|
|
545
|
+
}
|
|
546
|
+
getCustomData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
547
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCustomDataOperationResponse);
|
|
548
|
+
}
|
|
549
|
+
async getCustomDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
550
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCustomDataOperationResponse);
|
|
551
|
+
}
|
|
552
|
+
getDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
553
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetDisplayNameOperationResponse);
|
|
554
|
+
}
|
|
555
|
+
async getDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
556
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetDisplayNameOperationResponse);
|
|
557
|
+
}
|
|
558
|
+
getEmail(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
559
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetEmailOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetEmailOperationResponse);
|
|
560
|
+
}
|
|
561
|
+
async getEmailAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
562
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetEmailOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetEmailOperationResponse);
|
|
563
|
+
}
|
|
564
|
+
getExternal(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
565
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetExternalOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetExternalOperationResponse);
|
|
566
|
+
}
|
|
567
|
+
async getExternalAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
568
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetExternalOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetExternalOperationResponse);
|
|
569
|
+
}
|
|
570
|
+
getIpAddressCreate(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
571
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetIpAddressCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetIpAddressCreateOperationResponse);
|
|
572
|
+
}
|
|
573
|
+
async getIpAddressCreateAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
574
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetIpAddressCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetIpAddressCreateOperationResponse);
|
|
575
|
+
}
|
|
576
|
+
getPlayerBan(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
577
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPlayerBanOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerBanOperationResponse);
|
|
578
|
+
}
|
|
579
|
+
async getPlayerBanAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
580
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPlayerBanOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerBanOperationResponse);
|
|
581
|
+
}
|
|
582
|
+
getPlayerCurrency(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
583
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPlayerCurrencyOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse);
|
|
584
|
+
}
|
|
585
|
+
async getPlayerCurrencyAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
586
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPlayerCurrencyOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse);
|
|
587
|
+
}
|
|
588
|
+
getPlayerData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
589
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPlayerDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerDataOperationResponse);
|
|
590
|
+
}
|
|
591
|
+
async getPlayerDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
592
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPlayerDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerDataOperationResponse);
|
|
593
|
+
}
|
|
594
|
+
getPlayerInformation(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
595
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPlayerInformationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerInformationOperationResponse);
|
|
596
|
+
}
|
|
597
|
+
async getPlayerInformationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
598
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPlayerInformationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerInformationOperationResponse);
|
|
599
|
+
}
|
|
600
|
+
getPlayerStatistics(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
601
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPlayerStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse);
|
|
602
|
+
}
|
|
603
|
+
async getPlayerStatisticsAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
604
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPlayerStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse);
|
|
605
|
+
}
|
|
606
|
+
getPlayersWithApple(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
607
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPlayersWithAppleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse);
|
|
608
|
+
}
|
|
609
|
+
async getPlayersWithAppleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
610
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPlayersWithAppleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse);
|
|
611
|
+
}
|
|
612
|
+
getPlayersWithDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
613
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPlayersWithDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse);
|
|
614
|
+
}
|
|
615
|
+
async getPlayersWithDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
616
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPlayersWithDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse);
|
|
617
|
+
}
|
|
618
|
+
getPlayersWithFacebook(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
619
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPlayersWithFacebookOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse);
|
|
620
|
+
}
|
|
621
|
+
async getPlayersWithFacebookAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
622
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPlayersWithFacebookOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse);
|
|
623
|
+
}
|
|
624
|
+
getPlayersWithGenericService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
625
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPlayersWithGenericServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse);
|
|
626
|
+
}
|
|
627
|
+
async getPlayersWithGenericServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
628
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPlayersWithGenericServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse);
|
|
629
|
+
}
|
|
630
|
+
getPlayersWithGoogle(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
631
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPlayersWithGoogleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse);
|
|
632
|
+
}
|
|
633
|
+
async getPlayersWithGoogleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
634
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPlayersWithGoogleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse);
|
|
635
|
+
}
|
|
636
|
+
getPlayersWithGooglePlayGameService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
637
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse);
|
|
638
|
+
}
|
|
639
|
+
async getPlayersWithGooglePlayGameServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
640
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse);
|
|
641
|
+
}
|
|
642
|
+
getPlayersWithGameCenter(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
643
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPlayersWithGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse);
|
|
644
|
+
}
|
|
645
|
+
async getPlayersWithGameCenterAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
646
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPlayersWithGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse);
|
|
647
|
+
}
|
|
648
|
+
getPlayersWithSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
649
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPlayersWithSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse);
|
|
650
|
+
}
|
|
651
|
+
async getPlayersWithSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
652
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPlayersWithSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse);
|
|
653
|
+
}
|
|
654
|
+
getPlayersWithTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
655
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPlayersWithTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithTagOperationResponse);
|
|
656
|
+
}
|
|
657
|
+
async getPlayersWithTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
658
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPlayersWithTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithTagOperationResponse);
|
|
659
|
+
}
|
|
660
|
+
getSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
661
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetSegmentOperationResponse);
|
|
662
|
+
}
|
|
663
|
+
async getSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
664
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetSegmentOperationResponse);
|
|
665
|
+
}
|
|
666
|
+
getStatisticsLeaderboardAroundPlayer(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
667
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse);
|
|
668
|
+
}
|
|
669
|
+
async getStatisticsLeaderboardAroundPlayerAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
670
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse);
|
|
671
|
+
}
|
|
672
|
+
getStatisticsLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
673
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetStatisticsLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse);
|
|
674
|
+
}
|
|
675
|
+
async getStatisticsLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
676
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetStatisticsLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse);
|
|
677
|
+
}
|
|
678
|
+
getTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
679
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTagOperationResponse);
|
|
680
|
+
}
|
|
681
|
+
async getTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
682
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTagOperationResponse);
|
|
683
|
+
}
|
|
684
|
+
getTsCreate(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
685
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetTsCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTsCreateOperationResponse);
|
|
686
|
+
}
|
|
687
|
+
async getTsCreateAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
688
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetTsCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTsCreateOperationResponse);
|
|
689
|
+
}
|
|
690
|
+
getTsLastLogin(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
691
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetTsLastLoginOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTsLastLoginOperationResponse);
|
|
692
|
+
}
|
|
693
|
+
async getTsLastLoginAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
694
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetTsLastLoginOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTsLastLoginOperationResponse);
|
|
695
|
+
}
|
|
696
|
+
linkAccount(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
697
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkAccountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAccountOperationResponse);
|
|
698
|
+
}
|
|
699
|
+
async linkAccountAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
700
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkAccountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAccountOperationResponse);
|
|
701
|
+
}
|
|
702
|
+
linkAndroidDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
703
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkAndroidDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse);
|
|
704
|
+
}
|
|
705
|
+
async linkAndroidDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
706
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkAndroidDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse);
|
|
707
|
+
}
|
|
708
|
+
linkApple(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
709
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkAppleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAppleOperationResponse);
|
|
710
|
+
}
|
|
711
|
+
async linkAppleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
712
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkAppleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAppleOperationResponse);
|
|
713
|
+
}
|
|
714
|
+
linkCustomDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
715
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkCustomDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse);
|
|
716
|
+
}
|
|
717
|
+
async linkCustomDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
718
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkCustomDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse);
|
|
719
|
+
}
|
|
720
|
+
linkCustomId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
721
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkCustomIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkCustomIdOperationResponse);
|
|
722
|
+
}
|
|
723
|
+
async linkCustomIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
724
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkCustomIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkCustomIdOperationResponse);
|
|
725
|
+
}
|
|
726
|
+
linkEditorDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
727
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkEditorDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse);
|
|
728
|
+
}
|
|
729
|
+
async linkEditorDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
730
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkEditorDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse);
|
|
731
|
+
}
|
|
732
|
+
linkFacebook(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
733
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkFacebookOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkFacebookOperationResponse);
|
|
734
|
+
}
|
|
735
|
+
async linkFacebookAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
736
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkFacebookOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkFacebookOperationResponse);
|
|
737
|
+
}
|
|
738
|
+
linkGenericService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
739
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkGenericServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGenericServiceOperationResponse);
|
|
740
|
+
}
|
|
741
|
+
async linkGenericServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
742
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkGenericServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGenericServiceOperationResponse);
|
|
743
|
+
}
|
|
744
|
+
linkGoogle(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
745
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkGoogleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGoogleOperationResponse);
|
|
746
|
+
}
|
|
747
|
+
async linkGoogleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
748
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkGoogleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGoogleOperationResponse);
|
|
749
|
+
}
|
|
750
|
+
linkGooglePlayGameService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
751
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse);
|
|
752
|
+
}
|
|
753
|
+
async linkGooglePlayGameServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
754
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse);
|
|
755
|
+
}
|
|
756
|
+
linkGameCenter(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
757
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGameCenterOperationResponse);
|
|
758
|
+
}
|
|
759
|
+
async linkGameCenterAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
760
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGameCenterOperationResponse);
|
|
761
|
+
}
|
|
762
|
+
linkiOSDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
763
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkiOSDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse);
|
|
764
|
+
}
|
|
765
|
+
async linkiOSDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
766
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkiOSDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse);
|
|
767
|
+
}
|
|
768
|
+
linkLinuxDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
769
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkLinuxDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse);
|
|
770
|
+
}
|
|
771
|
+
async linkLinuxDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
772
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkLinuxDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse);
|
|
773
|
+
}
|
|
774
|
+
linkMacOSDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
775
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkMacOSDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse);
|
|
776
|
+
}
|
|
777
|
+
async linkMacOSDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
778
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkMacOSDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse);
|
|
779
|
+
}
|
|
780
|
+
linkWindowsDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
781
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkWindowsDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse);
|
|
782
|
+
}
|
|
783
|
+
async linkWindowsDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
784
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkWindowsDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse);
|
|
785
|
+
}
|
|
786
|
+
linkWindowsPhoneDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
787
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerLinkWindowsPhoneDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse);
|
|
788
|
+
}
|
|
789
|
+
async linkWindowsPhoneDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
790
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerLinkWindowsPhoneDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse);
|
|
791
|
+
}
|
|
792
|
+
removeSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
793
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerRemoveSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemoveSegmentOperationResponse);
|
|
794
|
+
}
|
|
795
|
+
async removeSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
796
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerRemoveSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemoveSegmentOperationResponse);
|
|
797
|
+
}
|
|
798
|
+
removeTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
799
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerRemoveTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemoveTagOperationResponse);
|
|
800
|
+
}
|
|
801
|
+
async removeTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
802
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerRemoveTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemoveTagOperationResponse);
|
|
803
|
+
}
|
|
804
|
+
resetAccountPassword(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
805
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerResetAccountPasswordOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ResetAccountPasswordOperationResponse);
|
|
806
|
+
}
|
|
807
|
+
async resetAccountPasswordAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
808
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerResetAccountPasswordOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ResetAccountPasswordOperationResponse);
|
|
809
|
+
}
|
|
810
|
+
setAvatar(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
811
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerSetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetAvatarOperationResponse);
|
|
812
|
+
}
|
|
813
|
+
async setAvatarAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
814
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerSetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetAvatarOperationResponse);
|
|
815
|
+
}
|
|
816
|
+
setCountryCode(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
817
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerSetCountryCodeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetCountryCodeOperationResponse);
|
|
818
|
+
}
|
|
819
|
+
async setCountryCodeAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
820
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerSetCountryCodeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetCountryCodeOperationResponse);
|
|
821
|
+
}
|
|
822
|
+
setCustomData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
823
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerSetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetCustomDataOperationResponse);
|
|
824
|
+
}
|
|
825
|
+
async setCustomDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
826
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerSetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetCustomDataOperationResponse);
|
|
827
|
+
}
|
|
828
|
+
setDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
829
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerSetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetDisplayNameOperationResponse);
|
|
830
|
+
}
|
|
831
|
+
async setDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
832
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerSetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetDisplayNameOperationResponse);
|
|
833
|
+
}
|
|
834
|
+
setEmail(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
835
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerSetEmailOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetEmailOperationResponse);
|
|
836
|
+
}
|
|
837
|
+
async setEmailAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
838
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerSetEmailOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetEmailOperationResponse);
|
|
839
|
+
}
|
|
840
|
+
setPlayerBan(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
841
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerSetPlayerBanOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetPlayerBanOperationResponse);
|
|
842
|
+
}
|
|
843
|
+
async setPlayerBanAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
844
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerSetPlayerBanOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetPlayerBanOperationResponse);
|
|
845
|
+
}
|
|
846
|
+
changePlayerCurrency(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
847
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerChangePlayerCurrencyOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ChangePlayerCurrencyOperationResponse);
|
|
848
|
+
}
|
|
849
|
+
async changePlayerCurrencyAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
850
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerChangePlayerCurrencyOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ChangePlayerCurrencyOperationResponse);
|
|
851
|
+
}
|
|
852
|
+
setPlayerData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
853
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerSetPlayerDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetPlayerDataOperationResponse);
|
|
854
|
+
}
|
|
855
|
+
async setPlayerDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
856
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerSetPlayerDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetPlayerDataOperationResponse);
|
|
857
|
+
}
|
|
858
|
+
changePlayerStatistics(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
859
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerChangePlayerStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ChangePlayerStatisticsOperationResponse);
|
|
860
|
+
}
|
|
861
|
+
async changePlayerStatisticsAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
862
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerChangePlayerStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ChangePlayerStatisticsOperationResponse);
|
|
863
|
+
}
|
|
864
|
+
setTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
865
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerSetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetTagOperationResponse);
|
|
866
|
+
}
|
|
867
|
+
async setTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
868
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerSetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetTagOperationResponse);
|
|
869
|
+
}
|
|
870
|
+
setTsLastLogin(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
871
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerSetTsLastLoginOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetTsLastLoginOperationResponse);
|
|
872
|
+
}
|
|
873
|
+
async setTsLastLoginAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
874
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerSetTsLastLoginOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetTsLastLoginOperationResponse);
|
|
875
|
+
}
|
|
876
|
+
unlinkAccount(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
877
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkAccountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAccountOperationResponse);
|
|
878
|
+
}
|
|
879
|
+
async unlinkAccountAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
880
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkAccountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAccountOperationResponse);
|
|
881
|
+
}
|
|
882
|
+
unlinkAndroidDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
883
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkAndroidDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse);
|
|
884
|
+
}
|
|
885
|
+
async unlinkAndroidDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
886
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkAndroidDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse);
|
|
887
|
+
}
|
|
888
|
+
unlinkApple(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
889
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkAppleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAppleOperationResponse);
|
|
890
|
+
}
|
|
891
|
+
async unlinkAppleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
892
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkAppleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAppleOperationResponse);
|
|
893
|
+
}
|
|
894
|
+
unlinkCustomDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
895
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkCustomDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse);
|
|
896
|
+
}
|
|
897
|
+
async unlinkCustomDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
898
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkCustomDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse);
|
|
899
|
+
}
|
|
900
|
+
unlinkCustomId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
901
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkCustomIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkCustomIdOperationResponse);
|
|
902
|
+
}
|
|
903
|
+
async unlinkCustomIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
904
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkCustomIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkCustomIdOperationResponse);
|
|
905
|
+
}
|
|
906
|
+
unlinkEditorDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
907
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkEditorDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse);
|
|
908
|
+
}
|
|
909
|
+
async unlinkEditorDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
910
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkEditorDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse);
|
|
911
|
+
}
|
|
912
|
+
unlinkFacebook(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
913
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkFacebookOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkFacebookOperationResponse);
|
|
914
|
+
}
|
|
915
|
+
async unlinkFacebookAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
916
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkFacebookOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkFacebookOperationResponse);
|
|
917
|
+
}
|
|
918
|
+
unlinkGenericService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
919
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkGenericServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse);
|
|
920
|
+
}
|
|
921
|
+
async unlinkGenericServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
922
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkGenericServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse);
|
|
923
|
+
}
|
|
924
|
+
unlinkGoogle(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
925
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkGoogleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGoogleOperationResponse);
|
|
926
|
+
}
|
|
927
|
+
async unlinkGoogleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
928
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkGoogleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGoogleOperationResponse);
|
|
929
|
+
}
|
|
930
|
+
unlinkGooglePlayGameService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
931
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse);
|
|
932
|
+
}
|
|
933
|
+
async unlinkGooglePlayGameServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
934
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse);
|
|
935
|
+
}
|
|
936
|
+
unlinkGameCenter(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
937
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGameCenterOperationResponse);
|
|
938
|
+
}
|
|
939
|
+
async unlinkGameCenterAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
940
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGameCenterOperationResponse);
|
|
941
|
+
}
|
|
942
|
+
unlinkiOSDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
943
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkiOSDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse);
|
|
944
|
+
}
|
|
945
|
+
async unlinkiOSDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
946
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkiOSDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse);
|
|
947
|
+
}
|
|
948
|
+
unlinkLinuxDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
949
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkLinuxDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse);
|
|
950
|
+
}
|
|
951
|
+
async unlinkLinuxDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
952
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkLinuxDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse);
|
|
953
|
+
}
|
|
954
|
+
unlinkMacOSDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
955
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkMacOSDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse);
|
|
956
|
+
}
|
|
957
|
+
async unlinkMacOSDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
958
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkMacOSDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse);
|
|
959
|
+
}
|
|
960
|
+
unlinkWindowsDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
961
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkWindowsDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse);
|
|
962
|
+
}
|
|
963
|
+
async unlinkWindowsDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
964
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkWindowsDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse);
|
|
965
|
+
}
|
|
966
|
+
unlinkWindowsPhoneDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
967
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerUnlinkWindowsPhoneDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse);
|
|
968
|
+
}
|
|
969
|
+
async unlinkWindowsPhoneDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
970
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerUnlinkWindowsPhoneDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse);
|
|
971
|
+
}
|
|
972
|
+
getCurrencyLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
973
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetCurrencyLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse);
|
|
974
|
+
}
|
|
975
|
+
async getCurrencyLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
976
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetCurrencyLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse);
|
|
977
|
+
}
|
|
978
|
+
getCreateLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
979
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetCreateLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCreateLeaderboardOperationResponse);
|
|
980
|
+
}
|
|
981
|
+
async getCreateLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
982
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetCreateLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCreateLeaderboardOperationResponse);
|
|
983
|
+
}
|
|
984
|
+
getLastLoginLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
985
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetLastLoginLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse);
|
|
986
|
+
}
|
|
987
|
+
async getLastLoginLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
988
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetLastLoginLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse);
|
|
989
|
+
}
|
|
990
|
+
getStatisticsLog(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
991
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetStatisticsLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLogOperationResponse);
|
|
992
|
+
}
|
|
993
|
+
async getStatisticsLogAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
994
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetStatisticsLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLogOperationResponse);
|
|
995
|
+
}
|
|
996
|
+
getCurrencyLog(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
997
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetCurrencyLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCurrencyLogOperationResponse);
|
|
998
|
+
}
|
|
999
|
+
async getCurrencyLogAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1000
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetCurrencyLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCurrencyLogOperationResponse);
|
|
1001
|
+
}
|
|
1002
|
+
sendSocketOperationEvent(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1003
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerSendSocketOperationEventOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendSocketOperationEventOperationResponse);
|
|
1004
|
+
}
|
|
1005
|
+
async sendSocketOperationEventAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1006
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerSendSocketOperationEventOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendSocketOperationEventOperationResponse);
|
|
1007
|
+
}
|
|
1008
|
+
sendEmail(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1009
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerSendEmailOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendEmailOperationResponse);
|
|
1010
|
+
}
|
|
1011
|
+
async sendEmailAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1012
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerSendEmailOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendEmailOperationResponse);
|
|
1013
|
+
}
|
|
1014
|
+
addPushNotification(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1015
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerAddPushNotificationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.AddPushNotificationOperationResponse);
|
|
1016
|
+
}
|
|
1017
|
+
async addPushNotificationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1018
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerAddPushNotificationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.AddPushNotificationOperationResponse);
|
|
1019
|
+
}
|
|
1020
|
+
removePushNotification(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1021
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerRemovePushNotificationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemovePushNotificationOperationResponse);
|
|
1022
|
+
}
|
|
1023
|
+
async removePushNotificationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1024
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerRemovePushNotificationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemovePushNotificationOperationResponse);
|
|
1025
|
+
}
|
|
1026
|
+
getPushNotification(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1027
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerGetPushNotificationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPushNotificationOperationResponse);
|
|
1028
|
+
}
|
|
1029
|
+
async getPushNotificationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1030
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerGetPushNotificationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPushNotificationOperationResponse);
|
|
1031
|
+
}
|
|
1032
|
+
sendPushNotification(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1033
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.ServerSendPushNotificationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendPushNotificationOperationResponse);
|
|
1034
|
+
}
|
|
1035
|
+
async sendPushNotificationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1036
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.ServerSendPushNotificationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendPushNotificationOperationResponse);
|
|
1037
|
+
}
|
|
1038
|
+
}
|
|
1039
|
+
export class AdminMasterPlayerApi {
|
|
1040
|
+
addSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1041
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminAddSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.AddSegmentOperationResponse);
|
|
1042
|
+
}
|
|
1043
|
+
async addSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1044
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminAddSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.AddSegmentOperationResponse);
|
|
1045
|
+
}
|
|
1046
|
+
getAvatar(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1047
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetAvatarOperationResponse);
|
|
1048
|
+
}
|
|
1049
|
+
async getAvatarAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1050
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetAvatarOperationResponse);
|
|
1051
|
+
}
|
|
1052
|
+
getCountryCode(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1053
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetCountryCodeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCountryCodeOperationResponse);
|
|
1054
|
+
}
|
|
1055
|
+
async getCountryCodeAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1056
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetCountryCodeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCountryCodeOperationResponse);
|
|
1057
|
+
}
|
|
1058
|
+
getCustomData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1059
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCustomDataOperationResponse);
|
|
1060
|
+
}
|
|
1061
|
+
async getCustomDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1062
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCustomDataOperationResponse);
|
|
1063
|
+
}
|
|
1064
|
+
getDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1065
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetDisplayNameOperationResponse);
|
|
1066
|
+
}
|
|
1067
|
+
async getDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1068
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetDisplayNameOperationResponse);
|
|
1069
|
+
}
|
|
1070
|
+
getEmail(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1071
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetEmailOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetEmailOperationResponse);
|
|
1072
|
+
}
|
|
1073
|
+
async getEmailAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1074
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetEmailOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetEmailOperationResponse);
|
|
1075
|
+
}
|
|
1076
|
+
getExternal(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1077
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetExternalOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetExternalOperationResponse);
|
|
1078
|
+
}
|
|
1079
|
+
async getExternalAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1080
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetExternalOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetExternalOperationResponse);
|
|
1081
|
+
}
|
|
1082
|
+
getIpAddressCreate(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1083
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetIpAddressCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetIpAddressCreateOperationResponse);
|
|
1084
|
+
}
|
|
1085
|
+
async getIpAddressCreateAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1086
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetIpAddressCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetIpAddressCreateOperationResponse);
|
|
1087
|
+
}
|
|
1088
|
+
getPlayerBan(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1089
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPlayerBanOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerBanOperationResponse);
|
|
1090
|
+
}
|
|
1091
|
+
async getPlayerBanAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1092
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPlayerBanOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerBanOperationResponse);
|
|
1093
|
+
}
|
|
1094
|
+
getPlayerCurrency(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1095
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPlayerCurrencyOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse);
|
|
1096
|
+
}
|
|
1097
|
+
async getPlayerCurrencyAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1098
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPlayerCurrencyOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerCurrencyOperationResponse);
|
|
1099
|
+
}
|
|
1100
|
+
getPlayerData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1101
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPlayerDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerDataOperationResponse);
|
|
1102
|
+
}
|
|
1103
|
+
async getPlayerDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1104
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPlayerDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerDataOperationResponse);
|
|
1105
|
+
}
|
|
1106
|
+
getPlayerInformation(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1107
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPlayerInformationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerInformationOperationResponse);
|
|
1108
|
+
}
|
|
1109
|
+
async getPlayerInformationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1110
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPlayerInformationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerInformationOperationResponse);
|
|
1111
|
+
}
|
|
1112
|
+
getPlayerStatistics(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1113
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPlayerStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse);
|
|
1114
|
+
}
|
|
1115
|
+
async getPlayerStatisticsAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1116
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPlayerStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayerStatisticsOperationResponse);
|
|
1117
|
+
}
|
|
1118
|
+
getPlayersWithApple(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1119
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPlayersWithAppleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse);
|
|
1120
|
+
}
|
|
1121
|
+
async getPlayersWithAppleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1122
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPlayersWithAppleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithAppleOperationResponse);
|
|
1123
|
+
}
|
|
1124
|
+
getPlayersWithDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1125
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPlayersWithDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse);
|
|
1126
|
+
}
|
|
1127
|
+
async getPlayersWithDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1128
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPlayersWithDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse);
|
|
1129
|
+
}
|
|
1130
|
+
getPlayersWithFacebook(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1131
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPlayersWithFacebookOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse);
|
|
1132
|
+
}
|
|
1133
|
+
async getPlayersWithFacebookAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1134
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPlayersWithFacebookOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithFacebookOperationResponse);
|
|
1135
|
+
}
|
|
1136
|
+
getPlayersWithGenericService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1137
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPlayersWithGenericServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse);
|
|
1138
|
+
}
|
|
1139
|
+
async getPlayersWithGenericServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1140
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPlayersWithGenericServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGenericServiceOperationResponse);
|
|
1141
|
+
}
|
|
1142
|
+
getPlayersWithGoogle(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1143
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPlayersWithGoogleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse);
|
|
1144
|
+
}
|
|
1145
|
+
async getPlayersWithGoogleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1146
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPlayersWithGoogleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGoogleOperationResponse);
|
|
1147
|
+
}
|
|
1148
|
+
getPlayersWithGooglePlayGameService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1149
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse);
|
|
1150
|
+
}
|
|
1151
|
+
async getPlayersWithGooglePlayGameServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1152
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPlayersWithGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGooglePlayGameServiceOperationResponse);
|
|
1153
|
+
}
|
|
1154
|
+
getPlayersWithGameCenter(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1155
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPlayersWithGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse);
|
|
1156
|
+
}
|
|
1157
|
+
async getPlayersWithGameCenterAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1158
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPlayersWithGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithGameCenterOperationResponse);
|
|
1159
|
+
}
|
|
1160
|
+
getPlayersWithSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1161
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPlayersWithSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse);
|
|
1162
|
+
}
|
|
1163
|
+
async getPlayersWithSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1164
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPlayersWithSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithSegmentOperationResponse);
|
|
1165
|
+
}
|
|
1166
|
+
getPlayersWithTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1167
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPlayersWithTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithTagOperationResponse);
|
|
1168
|
+
}
|
|
1169
|
+
async getPlayersWithTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1170
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPlayersWithTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPlayersWithTagOperationResponse);
|
|
1171
|
+
}
|
|
1172
|
+
getSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1173
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetSegmentOperationResponse);
|
|
1174
|
+
}
|
|
1175
|
+
async getSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1176
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetSegmentOperationResponse);
|
|
1177
|
+
}
|
|
1178
|
+
getStatisticsLeaderboardAroundPlayer(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1179
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse);
|
|
1180
|
+
}
|
|
1181
|
+
async getStatisticsLeaderboardAroundPlayerAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1182
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse);
|
|
1183
|
+
}
|
|
1184
|
+
getStatisticsLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1185
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetStatisticsLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse);
|
|
1186
|
+
}
|
|
1187
|
+
async getStatisticsLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1188
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetStatisticsLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse);
|
|
1189
|
+
}
|
|
1190
|
+
getTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1191
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTagOperationResponse);
|
|
1192
|
+
}
|
|
1193
|
+
async getTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1194
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTagOperationResponse);
|
|
1195
|
+
}
|
|
1196
|
+
getTsCreate(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1197
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetTsCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTsCreateOperationResponse);
|
|
1198
|
+
}
|
|
1199
|
+
async getTsCreateAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1200
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetTsCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTsCreateOperationResponse);
|
|
1201
|
+
}
|
|
1202
|
+
getTsLastLogin(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1203
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetTsLastLoginOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTsLastLoginOperationResponse);
|
|
1204
|
+
}
|
|
1205
|
+
async getTsLastLoginAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1206
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetTsLastLoginOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetTsLastLoginOperationResponse);
|
|
1207
|
+
}
|
|
1208
|
+
linkAccount(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1209
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkAccountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAccountOperationResponse);
|
|
1210
|
+
}
|
|
1211
|
+
async linkAccountAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1212
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkAccountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAccountOperationResponse);
|
|
1213
|
+
}
|
|
1214
|
+
linkAndroidDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1215
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkAndroidDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse);
|
|
1216
|
+
}
|
|
1217
|
+
async linkAndroidDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1218
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkAndroidDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAndroidDeviceIdOperationResponse);
|
|
1219
|
+
}
|
|
1220
|
+
linkApple(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1221
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkAppleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAppleOperationResponse);
|
|
1222
|
+
}
|
|
1223
|
+
async linkAppleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1224
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkAppleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkAppleOperationResponse);
|
|
1225
|
+
}
|
|
1226
|
+
linkCustomDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1227
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkCustomDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse);
|
|
1228
|
+
}
|
|
1229
|
+
async linkCustomDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1230
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkCustomDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkCustomDeviceIdOperationResponse);
|
|
1231
|
+
}
|
|
1232
|
+
linkCustomId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1233
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkCustomIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkCustomIdOperationResponse);
|
|
1234
|
+
}
|
|
1235
|
+
async linkCustomIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1236
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkCustomIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkCustomIdOperationResponse);
|
|
1237
|
+
}
|
|
1238
|
+
linkEditorDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1239
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkEditorDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse);
|
|
1240
|
+
}
|
|
1241
|
+
async linkEditorDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1242
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkEditorDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkEditorDeviceIdOperationResponse);
|
|
1243
|
+
}
|
|
1244
|
+
linkFacebook(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1245
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkFacebookOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkFacebookOperationResponse);
|
|
1246
|
+
}
|
|
1247
|
+
async linkFacebookAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1248
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkFacebookOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkFacebookOperationResponse);
|
|
1249
|
+
}
|
|
1250
|
+
linkGenericService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1251
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkGenericServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGenericServiceOperationResponse);
|
|
1252
|
+
}
|
|
1253
|
+
async linkGenericServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1254
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkGenericServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGenericServiceOperationResponse);
|
|
1255
|
+
}
|
|
1256
|
+
linkGoogle(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1257
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkGoogleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGoogleOperationResponse);
|
|
1258
|
+
}
|
|
1259
|
+
async linkGoogleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1260
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkGoogleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGoogleOperationResponse);
|
|
1261
|
+
}
|
|
1262
|
+
linkGooglePlayGameService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1263
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse);
|
|
1264
|
+
}
|
|
1265
|
+
async linkGooglePlayGameServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1266
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGooglePlayGameServiceOperationResponse);
|
|
1267
|
+
}
|
|
1268
|
+
linkGameCenter(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1269
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGameCenterOperationResponse);
|
|
1270
|
+
}
|
|
1271
|
+
async linkGameCenterAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1272
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkGameCenterOperationResponse);
|
|
1273
|
+
}
|
|
1274
|
+
linkiOSDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1275
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkiOSDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse);
|
|
1276
|
+
}
|
|
1277
|
+
async linkiOSDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1278
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkiOSDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkiOSDeviceIdOperationResponse);
|
|
1279
|
+
}
|
|
1280
|
+
linkLinuxDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1281
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkLinuxDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse);
|
|
1282
|
+
}
|
|
1283
|
+
async linkLinuxDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1284
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkLinuxDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkLinuxDeviceIdOperationResponse);
|
|
1285
|
+
}
|
|
1286
|
+
linkMacOSDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1287
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkMacOSDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse);
|
|
1288
|
+
}
|
|
1289
|
+
async linkMacOSDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1290
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkMacOSDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkMacOSDeviceIdOperationResponse);
|
|
1291
|
+
}
|
|
1292
|
+
linkWindowsDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1293
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkWindowsDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse);
|
|
1294
|
+
}
|
|
1295
|
+
async linkWindowsDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1296
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkWindowsDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkWindowsDeviceIdOperationResponse);
|
|
1297
|
+
}
|
|
1298
|
+
linkWindowsPhoneDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1299
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminLinkWindowsPhoneDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse);
|
|
1300
|
+
}
|
|
1301
|
+
async linkWindowsPhoneDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1302
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminLinkWindowsPhoneDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.LinkWindowsPhoneDeviceIdOperationResponse);
|
|
1303
|
+
}
|
|
1304
|
+
removeSegment(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1305
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminRemoveSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemoveSegmentOperationResponse);
|
|
1306
|
+
}
|
|
1307
|
+
async removeSegmentAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1308
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminRemoveSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemoveSegmentOperationResponse);
|
|
1309
|
+
}
|
|
1310
|
+
removeTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1311
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminRemoveTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemoveTagOperationResponse);
|
|
1312
|
+
}
|
|
1313
|
+
async removeTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1314
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminRemoveTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemoveTagOperationResponse);
|
|
1315
|
+
}
|
|
1316
|
+
resetAccountPassword(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1317
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminResetAccountPasswordOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ResetAccountPasswordOperationResponse);
|
|
1318
|
+
}
|
|
1319
|
+
async resetAccountPasswordAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1320
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminResetAccountPasswordOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ResetAccountPasswordOperationResponse);
|
|
1321
|
+
}
|
|
1322
|
+
setAvatar(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1323
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminSetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetAvatarOperationResponse);
|
|
1324
|
+
}
|
|
1325
|
+
async setAvatarAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1326
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminSetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetAvatarOperationResponse);
|
|
1327
|
+
}
|
|
1328
|
+
setCountryCode(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1329
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminSetCountryCodeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetCountryCodeOperationResponse);
|
|
1330
|
+
}
|
|
1331
|
+
async setCountryCodeAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1332
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminSetCountryCodeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetCountryCodeOperationResponse);
|
|
1333
|
+
}
|
|
1334
|
+
setCustomData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1335
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminSetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetCustomDataOperationResponse);
|
|
1336
|
+
}
|
|
1337
|
+
async setCustomDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1338
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminSetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetCustomDataOperationResponse);
|
|
1339
|
+
}
|
|
1340
|
+
setDisplayName(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1341
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminSetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetDisplayNameOperationResponse);
|
|
1342
|
+
}
|
|
1343
|
+
async setDisplayNameAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1344
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminSetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetDisplayNameOperationResponse);
|
|
1345
|
+
}
|
|
1346
|
+
setEmail(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1347
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminSetEmailOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetEmailOperationResponse);
|
|
1348
|
+
}
|
|
1349
|
+
async setEmailAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1350
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminSetEmailOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetEmailOperationResponse);
|
|
1351
|
+
}
|
|
1352
|
+
setPlayerBan(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1353
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminSetPlayerBanOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetPlayerBanOperationResponse);
|
|
1354
|
+
}
|
|
1355
|
+
async setPlayerBanAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1356
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminSetPlayerBanOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetPlayerBanOperationResponse);
|
|
1357
|
+
}
|
|
1358
|
+
changePlayerCurrency(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1359
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminChangePlayerCurrencyOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ChangePlayerCurrencyOperationResponse);
|
|
1360
|
+
}
|
|
1361
|
+
async changePlayerCurrencyAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1362
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminChangePlayerCurrencyOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ChangePlayerCurrencyOperationResponse);
|
|
1363
|
+
}
|
|
1364
|
+
setPlayerData(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1365
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminSetPlayerDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetPlayerDataOperationResponse);
|
|
1366
|
+
}
|
|
1367
|
+
async setPlayerDataAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1368
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminSetPlayerDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetPlayerDataOperationResponse);
|
|
1369
|
+
}
|
|
1370
|
+
changePlayerStatistics(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1371
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminChangePlayerStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ChangePlayerStatisticsOperationResponse);
|
|
1372
|
+
}
|
|
1373
|
+
async changePlayerStatisticsAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1374
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminChangePlayerStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.ChangePlayerStatisticsOperationResponse);
|
|
1375
|
+
}
|
|
1376
|
+
setTag(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1377
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminSetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetTagOperationResponse);
|
|
1378
|
+
}
|
|
1379
|
+
async setTagAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1380
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminSetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetTagOperationResponse);
|
|
1381
|
+
}
|
|
1382
|
+
setTsLastLogin(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1383
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminSetTsLastLoginOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetTsLastLoginOperationResponse);
|
|
1384
|
+
}
|
|
1385
|
+
async setTsLastLoginAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1386
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminSetTsLastLoginOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SetTsLastLoginOperationResponse);
|
|
1387
|
+
}
|
|
1388
|
+
unlinkAccount(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1389
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkAccountOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAccountOperationResponse);
|
|
1390
|
+
}
|
|
1391
|
+
async unlinkAccountAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1392
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkAccountOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAccountOperationResponse);
|
|
1393
|
+
}
|
|
1394
|
+
unlinkAndroidDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1395
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkAndroidDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse);
|
|
1396
|
+
}
|
|
1397
|
+
async unlinkAndroidDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1398
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkAndroidDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAndroidDeviceIdOperationResponse);
|
|
1399
|
+
}
|
|
1400
|
+
unlinkApple(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1401
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkAppleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAppleOperationResponse);
|
|
1402
|
+
}
|
|
1403
|
+
async unlinkAppleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1404
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkAppleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkAppleOperationResponse);
|
|
1405
|
+
}
|
|
1406
|
+
unlinkCustomDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1407
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkCustomDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse);
|
|
1408
|
+
}
|
|
1409
|
+
async unlinkCustomDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1410
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkCustomDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkCustomDeviceIdOperationResponse);
|
|
1411
|
+
}
|
|
1412
|
+
unlinkCustomId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1413
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkCustomIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkCustomIdOperationResponse);
|
|
1414
|
+
}
|
|
1415
|
+
async unlinkCustomIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1416
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkCustomIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkCustomIdOperationResponse);
|
|
1417
|
+
}
|
|
1418
|
+
unlinkEditorDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1419
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkEditorDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse);
|
|
1420
|
+
}
|
|
1421
|
+
async unlinkEditorDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1422
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkEditorDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkEditorDeviceIdOperationResponse);
|
|
1423
|
+
}
|
|
1424
|
+
unlinkFacebook(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1425
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkFacebookOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkFacebookOperationResponse);
|
|
1426
|
+
}
|
|
1427
|
+
async unlinkFacebookAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1428
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkFacebookOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkFacebookOperationResponse);
|
|
1429
|
+
}
|
|
1430
|
+
unlinkGenericService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1431
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkGenericServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse);
|
|
1432
|
+
}
|
|
1433
|
+
async unlinkGenericServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1434
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkGenericServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGenericServiceOperationResponse);
|
|
1435
|
+
}
|
|
1436
|
+
unlinkGoogle(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1437
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkGoogleOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGoogleOperationResponse);
|
|
1438
|
+
}
|
|
1439
|
+
async unlinkGoogleAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1440
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkGoogleOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGoogleOperationResponse);
|
|
1441
|
+
}
|
|
1442
|
+
unlinkGooglePlayGameService(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1443
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkGooglePlayGameServiceOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse);
|
|
1444
|
+
}
|
|
1445
|
+
async unlinkGooglePlayGameServiceAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1446
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkGooglePlayGameServiceOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGooglePlayGameServiceOperationResponse);
|
|
1447
|
+
}
|
|
1448
|
+
unlinkGameCenter(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1449
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkGameCenterOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGameCenterOperationResponse);
|
|
1450
|
+
}
|
|
1451
|
+
async unlinkGameCenterAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1452
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkGameCenterOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkGameCenterOperationResponse);
|
|
1453
|
+
}
|
|
1454
|
+
unlinkiOSDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1455
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkiOSDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse);
|
|
1456
|
+
}
|
|
1457
|
+
async unlinkiOSDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1458
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkiOSDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkiOSDeviceIdOperationResponse);
|
|
1459
|
+
}
|
|
1460
|
+
unlinkLinuxDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1461
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkLinuxDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse);
|
|
1462
|
+
}
|
|
1463
|
+
async unlinkLinuxDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1464
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkLinuxDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkLinuxDeviceIdOperationResponse);
|
|
1465
|
+
}
|
|
1466
|
+
unlinkMacOSDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1467
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkMacOSDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse);
|
|
1468
|
+
}
|
|
1469
|
+
async unlinkMacOSDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1470
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkMacOSDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkMacOSDeviceIdOperationResponse);
|
|
1471
|
+
}
|
|
1472
|
+
unlinkWindowsDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1473
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkWindowsDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse);
|
|
1474
|
+
}
|
|
1475
|
+
async unlinkWindowsDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1476
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkWindowsDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkWindowsDeviceIdOperationResponse);
|
|
1477
|
+
}
|
|
1478
|
+
unlinkWindowsPhoneDeviceId(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1479
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminUnlinkWindowsPhoneDeviceIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse);
|
|
1480
|
+
}
|
|
1481
|
+
async unlinkWindowsPhoneDeviceIdAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1482
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminUnlinkWindowsPhoneDeviceIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.UnlinkWindowsPhoneDeviceIdOperationResponse);
|
|
1483
|
+
}
|
|
1484
|
+
getCurrencyLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1485
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetCurrencyLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse);
|
|
1486
|
+
}
|
|
1487
|
+
async getCurrencyLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1488
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetCurrencyLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse);
|
|
1489
|
+
}
|
|
1490
|
+
getCreateLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1491
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetCreateLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCreateLeaderboardOperationResponse);
|
|
1492
|
+
}
|
|
1493
|
+
async getCreateLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1494
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetCreateLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCreateLeaderboardOperationResponse);
|
|
1495
|
+
}
|
|
1496
|
+
getLastLoginLeaderboard(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1497
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetLastLoginLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse);
|
|
1498
|
+
}
|
|
1499
|
+
async getLastLoginLeaderboardAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1500
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetLastLoginLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetLastLoginLeaderboardOperationResponse);
|
|
1501
|
+
}
|
|
1502
|
+
getStatisticsLog(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1503
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetStatisticsLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLogOperationResponse);
|
|
1504
|
+
}
|
|
1505
|
+
async getStatisticsLogAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1506
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetStatisticsLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetStatisticsLogOperationResponse);
|
|
1507
|
+
}
|
|
1508
|
+
getCurrencyLog(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1509
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetCurrencyLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCurrencyLogOperationResponse);
|
|
1510
|
+
}
|
|
1511
|
+
async getCurrencyLogAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1512
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetCurrencyLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetCurrencyLogOperationResponse);
|
|
1513
|
+
}
|
|
1514
|
+
sendSocketOperationEvent(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1515
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminSendSocketOperationEventOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendSocketOperationEventOperationResponse);
|
|
1516
|
+
}
|
|
1517
|
+
async sendSocketOperationEventAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1518
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminSendSocketOperationEventOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendSocketOperationEventOperationResponse);
|
|
1519
|
+
}
|
|
1520
|
+
sendEmail(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1521
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminSendEmailOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendEmailOperationResponse);
|
|
1522
|
+
}
|
|
1523
|
+
async sendEmailAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1524
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminSendEmailOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendEmailOperationResponse);
|
|
1525
|
+
}
|
|
1526
|
+
addPushNotification(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1527
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminAddPushNotificationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.AddPushNotificationOperationResponse);
|
|
1528
|
+
}
|
|
1529
|
+
async addPushNotificationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1530
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminAddPushNotificationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.AddPushNotificationOperationResponse);
|
|
1531
|
+
}
|
|
1532
|
+
removePushNotification(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1533
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminRemovePushNotificationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemovePushNotificationOperationResponse);
|
|
1534
|
+
}
|
|
1535
|
+
async removePushNotificationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1536
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminRemovePushNotificationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.RemovePushNotificationOperationResponse);
|
|
1537
|
+
}
|
|
1538
|
+
getPushNotification(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1539
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminGetPushNotificationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPushNotificationOperationResponse);
|
|
1540
|
+
}
|
|
1541
|
+
async getPushNotificationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1542
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminGetPushNotificationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.GetPushNotificationOperationResponse);
|
|
1543
|
+
}
|
|
1544
|
+
sendPushNotification(requestData, onResponse = null, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1545
|
+
GNNetwork.sendViaHttpTRequestTResponse(new MasterPlayerRequestModels.AdminSendPushNotificationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendPushNotificationOperationResponse);
|
|
1546
|
+
}
|
|
1547
|
+
async sendPushNotificationAsync(requestData, overrideAuthToken = null, overrideSecretKey = null, customTags = null, timeout = OperationRequest.defaultTimeOut) {
|
|
1548
|
+
return GNNetwork.sendViaHttpTRequestTResponseAsync(new MasterPlayerRequestModels.AdminSendPushNotificationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags, MasterPlayerResponseModels.SendPushNotificationOperationResponse);
|
|
1549
|
+
}
|
|
1550
|
+
}
|