com.xmobitea.changx.gn-unity 2.0.3 → 2.4.0
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/Editor/GNServerSettingsEditor.cs +16 -300
- package/Runtime/Common/GNArray.cs +387 -302
- package/Runtime/Common/GNArray.cs.meta +11 -11
- package/Runtime/Common/GNData.cs +61 -48
- package/Runtime/Common/GNData.cs.meta +11 -11
- package/Runtime/Common/GNHashtable.cs +404 -241
- package/Runtime/Common/GNHashtable.cs.meta +11 -11
- package/Runtime/Common/IGNData.cs +20 -11
- package/Runtime/Common/IGNData.cs.meta +11 -11
- package/Runtime/Common.meta +8 -8
- package/Runtime/Config/GNServerSettings.cs +136 -92
- package/Runtime/Config/GNServerSettings.cs.meta +11 -11
- package/Runtime/Config.meta +8 -8
- package/Runtime/Constant/Commands.cs +82 -19
- package/Runtime/Constant/Commands.cs.meta +11 -11
- package/Runtime/Constant/EnumType/FriendStatus.cs +12 -12
- package/Runtime/Constant/EnumType/FriendStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/GoogleLoginType.cs +5 -5
- package/Runtime/Constant/EnumType/GoogleLoginType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/GroupStatus.cs +7 -7
- package/Runtime/Constant/EnumType/GroupStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/InvalidMemberType.cs +23 -23
- package/Runtime/Constant/EnumType/InvalidMemberType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/ItemType.cs +5 -5
- package/Runtime/Constant/EnumType/ItemType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/MatchmakingMemberStatus.cs +6 -6
- package/Runtime/Constant/EnumType/MatchmakingMemberStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/MatchmakingTicketStatus.cs +2 -2
- package/Runtime/Constant/EnumType/MatchmakingTicketStatus.cs.meta +11 -11
- package/Runtime/Constant/EnumType/OwnerType.cs +3 -2
- package/Runtime/Constant/EnumType/OwnerType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/PermissionDataItem.cs +10 -10
- package/Runtime/Constant/EnumType/PermissionDataItem.cs.meta +11 -11
- package/Runtime/Constant/EnumType/PushPlatformType.cs +10 -0
- package/Runtime/Constant/EnumType/PushPlatformType.cs.meta +11 -0
- package/Runtime/Constant/EnumType/RequestRole.cs +11 -11
- package/Runtime/Constant/EnumType/RequestRole.cs.meta +7 -7
- package/Runtime/Constant/EnumType/RequestType.cs +20 -19
- package/Runtime/Constant/EnumType/RequestType.cs.meta +11 -11
- package/Runtime/Constant/EnumType/StoreReceiveType.cs +13 -0
- package/Runtime/Constant/EnumType/StoreReceiveType.cs.meta +11 -0
- package/Runtime/Constant/EnumType.meta +8 -8
- package/Runtime/Constant/ErrorCode/GNErrorCode.cs +53 -48
- package/Runtime/Constant/ErrorCode/GNErrorCode.cs.meta +7 -7
- package/Runtime/Constant/ErrorCode.meta +8 -8
- package/Runtime/Constant/EventCode.cs +43 -16
- package/Runtime/Constant/EventCode.cs.meta +11 -11
- package/Runtime/Constant/OperationCode.cs +249 -211
- package/Runtime/Constant/OperationCode.cs.meta +11 -11
- package/Runtime/Constant/ParameterCode/GNParameterCode.cs +614 -466
- package/Runtime/Constant/ParameterCode/GNParameterCode.cs.meta +11 -11
- package/Runtime/Constant/ParameterCode/ParameterCode.cs +12 -12
- package/Runtime/Constant/ParameterCode/ParameterCode.cs.meta +11 -11
- package/Runtime/Constant/ParameterCode.meta +8 -8
- package/Runtime/Constant/ReturnCode.cs +73 -25
- package/Runtime/Constant/ReturnCode.cs.meta +11 -11
- package/Runtime/Constant.meta +8 -8
- package/Runtime/Entity/DataMember.cs +342 -124
- package/Runtime/Entity/DataMember.cs.meta +11 -11
- package/Runtime/Entity/GNMetadata.cs +72 -27
- package/Runtime/Entity/GNMetadata.cs.meta +11 -11
- package/Runtime/Entity/InvalidMember.cs +52 -33
- package/Runtime/Entity/InvalidMember.cs.meta +11 -11
- package/Runtime/Entity/Models/AuthenticateModels.cs +251 -207
- package/Runtime/Entity/Models/AuthenticateModels.cs.meta +11 -11
- package/Runtime/Entity/Models/AuthenticateRequestModels.cs +153 -131
- package/Runtime/Entity/Models/AuthenticateRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/AuthenticateResponseModels.cs +61 -51
- package/Runtime/Entity/Models/AuthenticateResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CharacterPlayerModels.cs +985 -849
- package/Runtime/Entity/Models/CharacterPlayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CharacterPlayerRequestModels.cs +957 -885
- package/Runtime/Entity/Models/CharacterPlayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CharacterPlayerResponseModels.cs +165 -150
- package/Runtime/Entity/Models/CharacterPlayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/CloudScriptModels.cs +185 -0
- package/Runtime/Entity/Models/CloudScriptModels.cs.meta +11 -0
- package/Runtime/Entity/Models/CloudScriptRequestModels.cs +134 -0
- package/Runtime/Entity/Models/CloudScriptRequestModels.cs.meta +11 -0
- package/Runtime/Entity/Models/CloudScriptResponseModels.cs +34 -0
- package/Runtime/Entity/Models/CloudScriptResponseModels.cs.meta +11 -0
- package/Runtime/Entity/Models/ContentModels.cs +150 -153
- package/Runtime/Entity/Models/ContentModels.cs.meta +11 -11
- package/Runtime/Entity/Models/ContentRequestModels.cs +129 -129
- package/Runtime/Entity/Models/ContentRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/ContentResponseModels.cs +24 -24
- package/Runtime/Entity/Models/ContentResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/DashboardModels.cs +1684 -1156
- package/Runtime/Entity/Models/DashboardModels.cs.meta +11 -11
- package/Runtime/Entity/Models/DashboardRequestModels.cs +220 -147
- package/Runtime/Entity/Models/DashboardRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/DashboardResponseModels.cs +92 -57
- package/Runtime/Entity/Models/DashboardResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GamePlayerModels.cs +1073 -933
- package/Runtime/Entity/Models/GamePlayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GamePlayerRequestModels.cs +939 -867
- package/Runtime/Entity/Models/GamePlayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GamePlayerResponseModels.cs +162 -147
- package/Runtime/Entity/Models/GamePlayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GenericModels.cs +102 -102
- package/Runtime/Entity/Models/GenericModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GroupModels.cs +812 -676
- package/Runtime/Entity/Models/GroupModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GroupRequestModels.cs +741 -669
- package/Runtime/Entity/Models/GroupRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/GroupResponseModels.cs +129 -114
- package/Runtime/Entity/Models/GroupResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/InventoryModels.cs +667 -558
- package/Runtime/Entity/Models/InventoryModels.cs.meta +11 -11
- package/Runtime/Entity/Models/InventoryRequestModels.cs +626 -579
- package/Runtime/Entity/Models/InventoryRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/InventoryResponseModels.cs +109 -99
- package/Runtime/Entity/Models/InventoryResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MasterPlayerModels.cs +1882 -1340
- package/Runtime/Entity/Models/MasterPlayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MasterPlayerRequestModels.cs +1643 -1253
- package/Runtime/Entity/Models/MasterPlayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MasterPlayerResponseModels.cs +293 -213
- package/Runtime/Entity/Models/MasterPlayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MultiplayerModels.cs +293 -223
- package/Runtime/Entity/Models/MultiplayerModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MultiplayerRequestModels.cs +199 -149
- package/Runtime/Entity/Models/MultiplayerRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/MultiplayerResponseModels.cs +59 -49
- package/Runtime/Entity/Models/MultiplayerResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models/StoreInventoryModels.cs +514 -323
- package/Runtime/Entity/Models/StoreInventoryModels.cs.meta +11 -11
- package/Runtime/Entity/Models/StoreInventoryRequestModels.cs +236 -165
- package/Runtime/Entity/Models/StoreInventoryRequestModels.cs.meta +11 -11
- package/Runtime/Entity/Models/StoreInventoryResponseModels.cs +45 -30
- package/Runtime/Entity/Models/StoreInventoryResponseModels.cs.meta +11 -11
- package/Runtime/Entity/Models.meta +8 -8
- package/Runtime/Entity/OperationEvent.cs +111 -75
- package/Runtime/Entity/OperationEvent.cs.meta +11 -11
- package/Runtime/Entity/OperationHelper.cs +51 -35
- package/Runtime/Entity/OperationHelper.cs.meta +11 -11
- package/Runtime/Entity/OperationRequest.cs +142 -99
- package/Runtime/Entity/OperationRequest.cs.meta +11 -11
- package/Runtime/Entity/OperationResponse.cs +111 -63
- package/Runtime/Entity/OperationResponse.cs.meta +11 -11
- package/Runtime/Entity/Request/CustomOperationRequest.cs +112 -61
- package/Runtime/Entity/Request/CustomOperationRequest.cs.meta +11 -11
- package/Runtime/Entity/Request.meta +8 -8
- package/Runtime/Entity/Response/CustomOperationResponse.cs +84 -63
- package/Runtime/Entity/Response/CustomOperationResponse.cs.meta +11 -11
- package/Runtime/Entity/Response.meta +8 -8
- package/Runtime/Entity.meta +8 -8
- package/Runtime/GNNetwork.cs +501 -182
- package/Runtime/GNNetwork.cs.meta +11 -11
- package/Runtime/GNNetworkApi.cs +38 -19
- package/Runtime/GNNetworkApi.cs.meta +11 -11
- package/Runtime/GNNetworkAuthenticateApi.cs +531 -98
- package/Runtime/GNNetworkAuthenticateApi.cs.meta +11 -11
- package/Runtime/GNNetworkCharacterPlayerApi.cs +1587 -762
- package/Runtime/GNNetworkCharacterPlayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkCloudScriptApi.cs +181 -0
- package/Runtime/GNNetworkCloudScriptApi.cs.meta +11 -0
- package/Runtime/GNNetworkContentApi.cs +238 -132
- package/Runtime/GNNetworkContentApi.cs.meta +11 -11
- package/Runtime/GNNetworkDashboardApi.cs +278 -117
- package/Runtime/GNNetworkDashboardApi.cs.meta +11 -11
- package/Runtime/GNNetworkGamePlayerApi.cs +1558 -747
- package/Runtime/GNNetworkGamePlayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkGroupApi.cs +1228 -582
- package/Runtime/GNNetworkGroupApi.cs.meta +11 -11
- package/Runtime/GNNetworkInventoryApi.cs +1048 -507
- package/Runtime/GNNetworkInventoryApi.cs.meta +11 -11
- package/Runtime/GNNetworkMasterPlayerApi.cs +2586 -1067
- package/Runtime/GNNetworkMasterPlayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkMultiplayerApi.cs +328 -147
- package/Runtime/GNNetworkMultiplayerApi.cs.meta +11 -11
- package/Runtime/GNNetworkStoreInventoryApi.cs +388 -162
- package/Runtime/GNNetworkStoreInventoryApi.cs.meta +11 -11
- package/Runtime/Helper/CodeHelper.cs +140 -98
- package/Runtime/Helper/CodeHelper.cs.meta +11 -11
- package/Runtime/Helper/ConverterService.cs +236 -52
- package/Runtime/Helper/ConverterService.cs.meta +11 -11
- package/Runtime/Helper/ParseGNHelper.cs +451 -451
- package/Runtime/Helper/ParseGNHelper.cs.meta +11 -11
- package/Runtime/Helper.meta +8 -8
- package/Runtime/Logger/GNDebug.cs +92 -49
- package/Runtime/Logger/GNDebug.cs.meta +11 -11
- package/Runtime/Logger.meta +8 -8
- package/Runtime/Networking/AuthenticateStatus.cs +57 -35
- package/Runtime/Networking/AuthenticateStatus.cs.meta +11 -11
- package/Runtime/Networking/Handler/IServerEventHandler.cs +25 -25
- package/Runtime/Networking/Handler/IServerEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnCharacterPlayerFriendUpdateEventHandler.cs +61 -32
- package/Runtime/Networking/Handler/OnCharacterPlayerFriendUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnCharacterPlayerGroupUpdateEventHandler.cs +54 -33
- package/Runtime/Networking/Handler/OnCharacterPlayerGroupUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGamePlayerFriendUpdateEventHandler.cs +54 -32
- package/Runtime/Networking/Handler/OnGamePlayerFriendUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGamePlayerGroupUpdateEventHandler.cs +54 -32
- package/Runtime/Networking/Handler/OnGamePlayerGroupUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGroupMemberUpdateEventHandler.cs +48 -29
- package/Runtime/Networking/Handler/OnGroupMemberUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler/OnGroupMessageUpdateEventHandler.cs +47 -29
- package/Runtime/Networking/Handler/OnGroupMessageUpdateEventHandler.cs.meta +11 -11
- package/Runtime/Networking/Handler.meta +8 -8
- package/Runtime/Networking/Http/HttpPeer.cs +68 -25
- package/Runtime/Networking/Http/HttpPeer.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingHttpPeerBase.cs +65 -25
- package/Runtime/Networking/Http/NetworkingHttpPeerBase.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingPeerHttpClientRequest.cs +513 -486
- package/Runtime/Networking/Http/NetworkingPeerHttpClientRequest.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingPeerHttpRequest.cs +172 -142
- package/Runtime/Networking/Http/NetworkingPeerHttpRequest.cs.meta +11 -11
- package/Runtime/Networking/Http/NetworkingPeerUnityWebRequest.cs +225 -188
- package/Runtime/Networking/Http/NetworkingPeerUnityWebRequest.cs.meta +11 -11
- package/Runtime/Networking/Http.meta +8 -8
- package/Runtime/Networking/IPeer.cs +41 -19
- package/Runtime/Networking/IPeer.cs.meta +11 -11
- package/Runtime/Networking/NetworkingPeer.cs +198 -144
- package/Runtime/Networking/NetworkingPeer.cs.meta +11 -11
- package/Runtime/Networking/NetworkingPeerAPI.cs +20 -21
- package/Runtime/Networking/NetworkingPeerAPI.cs.meta +11 -11
- package/Runtime/Networking/OperationPending.cs +159 -95
- package/Runtime/Networking/OperationPending.cs.meta +11 -11
- package/Runtime/Networking/PeerBase.cs +305 -242
- package/Runtime/Networking/PeerBase.cs.meta +11 -11
- package/Runtime/Networking/Socket/NetworkingPeerSocketV2.cs +222 -185
- package/Runtime/Networking/Socket/NetworkingPeerSocketV2.cs.meta +11 -11
- package/Runtime/Networking/Socket/NetworkingPeerSocketV3.cs +235 -177
- package/Runtime/Networking/Socket/NetworkingPeerSocketV3.cs.meta +11 -11
- package/Runtime/Networking/Socket/NetworkingSocketPeerBase.cs +165 -23
- package/Runtime/Networking/Socket/NetworkingSocketPeerBase.cs.meta +11 -11
- package/Runtime/Networking/Socket/SocketPeer.cs +242 -197
- package/Runtime/Networking/Socket/SocketPeer.cs.meta +11 -11
- package/Runtime/Networking/Socket.meta +8 -8
- package/Runtime/Networking.meta +8 -8
- package/Runtime/Unity/ServiceCoroutine.cs +10 -0
- package/Runtime/Unity/ServiceCoroutine.cs.meta +11 -0
- package/Runtime/Unity/ServiceUpdate.cs +33 -20
- package/Runtime/Unity/ServiceUpdate.cs.meta +11 -11
- package/Runtime/Unity.meta +8 -8
- package/Runtime/XmobiTea.GN.runtime.asmdef +16 -16
- package/Runtime/XmobiTea.GN.runtime.asmdef.meta +7 -7
- package/package.json +1 -1
|
@@ -1,766 +1,1591 @@
|
|
|
1
1
|
namespace XmobiTea.GN
|
|
2
2
|
{
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
3
|
+
using System;
|
|
4
|
+
using System.Threading.Tasks;
|
|
5
|
+
using XmobiTea.GN.Common;
|
|
6
|
+
using XmobiTea.GN.Entity;
|
|
7
|
+
using XmobiTea.GN.Entity.Models;
|
|
8
|
+
|
|
9
|
+
public class CharacterPlayerApi
|
|
10
|
+
{
|
|
11
|
+
public ServerApi server { get; } = new ServerApi();
|
|
12
|
+
|
|
13
|
+
public AdminApi admin { get; } = new AdminApi();
|
|
14
|
+
|
|
15
|
+
public void addPlayerFriend(CharacterPlayerModels.AddPlayerFriendRequestData requestData, Action<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
16
|
+
{
|
|
17
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AddPlayerFriendOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
public Task<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse> addPlayerFriendAsync(CharacterPlayerModels.AddPlayerFriendRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
21
|
+
{
|
|
22
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AddPlayerFriendOperationRequest, CharacterPlayerResponseModels.AddPlayerFriendOperationResponse>(new CharacterPlayerRequestModels.AddPlayerFriendOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
public void addSegment(CharacterPlayerModels.AddSegmentRequestData requestData, Action<CharacterPlayerResponseModels.AddSegmentOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
26
|
+
{
|
|
27
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AddSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
public Task<CharacterPlayerResponseModels.AddSegmentOperationResponse> addSegmentAsync(CharacterPlayerModels.AddSegmentRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
31
|
+
{
|
|
32
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AddSegmentOperationRequest, CharacterPlayerResponseModels.AddSegmentOperationResponse>(new CharacterPlayerRequestModels.AddSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
public void getAvatar(CharacterPlayerModels.GetAvatarRequestData requestData, Action<CharacterPlayerResponseModels.GetAvatarOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
36
|
+
{
|
|
37
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
public Task<CharacterPlayerResponseModels.GetAvatarOperationResponse> getAvatarAsync(CharacterPlayerModels.GetAvatarRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
41
|
+
{
|
|
42
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetAvatarOperationRequest, CharacterPlayerResponseModels.GetAvatarOperationResponse>(new CharacterPlayerRequestModels.GetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
public void getCatalogId(CharacterPlayerModels.GetCatalogIdRequestData requestData, Action<CharacterPlayerResponseModels.GetCatalogIdOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
46
|
+
{
|
|
47
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetCatalogIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
public Task<CharacterPlayerResponseModels.GetCatalogIdOperationResponse> getCatalogIdAsync(CharacterPlayerModels.GetCatalogIdRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
51
|
+
{
|
|
52
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetCatalogIdOperationRequest, CharacterPlayerResponseModels.GetCatalogIdOperationResponse>(new CharacterPlayerRequestModels.GetCatalogIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
public void getCountryCode(CharacterPlayerModels.GetCountryCodeRequestData requestData, Action<CharacterPlayerResponseModels.GetCountryCodeOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
56
|
+
{
|
|
57
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetCountryCodeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
public Task<CharacterPlayerResponseModels.GetCountryCodeOperationResponse> getCountryCodeAsync(CharacterPlayerModels.GetCountryCodeRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
61
|
+
{
|
|
62
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetCountryCodeOperationRequest, CharacterPlayerResponseModels.GetCountryCodeOperationResponse>(new CharacterPlayerRequestModels.GetCountryCodeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
public void getCustomData(CharacterPlayerModels.GetCustomDataRequestData requestData, Action<CharacterPlayerResponseModels.GetCustomDataOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
66
|
+
{
|
|
67
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
public Task<CharacterPlayerResponseModels.GetCustomDataOperationResponse> getCustomDataAsync(CharacterPlayerModels.GetCustomDataRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
71
|
+
{
|
|
72
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetCustomDataOperationRequest, CharacterPlayerResponseModels.GetCustomDataOperationResponse>(new CharacterPlayerRequestModels.GetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
public void getDisplayName(CharacterPlayerModels.GetDisplayNameRequestData requestData, Action<CharacterPlayerResponseModels.GetDisplayNameOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
76
|
+
{
|
|
77
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
public Task<CharacterPlayerResponseModels.GetDisplayNameOperationResponse> getDisplayNameAsync(CharacterPlayerModels.GetDisplayNameRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
81
|
+
{
|
|
82
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetDisplayNameOperationRequest, CharacterPlayerResponseModels.GetDisplayNameOperationResponse>(new CharacterPlayerRequestModels.GetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
public void getFriendStatisticsLeaderboardAroundPlayer(CharacterPlayerModels.GetFriendStatisticsLeaderboardAroundPlayerRequestData requestData, Action<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
86
|
+
{
|
|
87
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetFriendStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
public Task<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse> getFriendStatisticsLeaderboardAroundPlayerAsync(CharacterPlayerModels.GetFriendStatisticsLeaderboardAroundPlayerRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
91
|
+
{
|
|
92
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetFriendStatisticsLeaderboardAroundPlayerOperationRequest, CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>(new CharacterPlayerRequestModels.GetFriendStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
public void getFriendStatisticsLeaderboard(CharacterPlayerModels.GetFriendStatisticsLeaderboardRequestData requestData, Action<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
96
|
+
{
|
|
97
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetFriendStatisticsLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
public Task<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse> getFriendStatisticsLeaderboardAsync(CharacterPlayerModels.GetFriendStatisticsLeaderboardRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
101
|
+
{
|
|
102
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetFriendStatisticsLeaderboardOperationRequest, CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>(new CharacterPlayerRequestModels.GetFriendStatisticsLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
public void getIpAddressCreate(CharacterPlayerModels.GetIpAddressCreateRequestData requestData, Action<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
106
|
+
{
|
|
107
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetIpAddressCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
public Task<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse> getIpAddressCreateAsync(CharacterPlayerModels.GetIpAddressCreateRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
111
|
+
{
|
|
112
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetIpAddressCreateOperationRequest, CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse>(new CharacterPlayerRequestModels.GetIpAddressCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
public void getOwner(CharacterPlayerModels.GetOwnerRequestData requestData, Action<CharacterPlayerResponseModels.GetOwnerOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
116
|
+
{
|
|
117
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetOwnerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
public Task<CharacterPlayerResponseModels.GetOwnerOperationResponse> getOwnerAsync(CharacterPlayerModels.GetOwnerRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
121
|
+
{
|
|
122
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetOwnerOperationRequest, CharacterPlayerResponseModels.GetOwnerOperationResponse>(new CharacterPlayerRequestModels.GetOwnerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
public void getPlayerBan(CharacterPlayerModels.GetPlayerBanRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerBanOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
126
|
+
{
|
|
127
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetPlayerBanOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
public Task<CharacterPlayerResponseModels.GetPlayerBanOperationResponse> getPlayerBanAsync(CharacterPlayerModels.GetPlayerBanRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
131
|
+
{
|
|
132
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetPlayerBanOperationRequest, CharacterPlayerResponseModels.GetPlayerBanOperationResponse>(new CharacterPlayerRequestModels.GetPlayerBanOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
public void getPlayerCurrency(CharacterPlayerModels.GetPlayerCurrencyRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
136
|
+
{
|
|
137
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetPlayerCurrencyOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
public Task<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse> getPlayerCurrencyAsync(CharacterPlayerModels.GetPlayerCurrencyRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
141
|
+
{
|
|
142
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetPlayerCurrencyOperationRequest, CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse>(new CharacterPlayerRequestModels.GetPlayerCurrencyOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
public void getPlayerData(CharacterPlayerModels.GetPlayerDataRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerDataOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
146
|
+
{
|
|
147
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetPlayerDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
public Task<CharacterPlayerResponseModels.GetPlayerDataOperationResponse> getPlayerDataAsync(CharacterPlayerModels.GetPlayerDataRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
151
|
+
{
|
|
152
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetPlayerDataOperationRequest, CharacterPlayerResponseModels.GetPlayerDataOperationResponse>(new CharacterPlayerRequestModels.GetPlayerDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
public void getPlayerFriend(CharacterPlayerModels.GetPlayerFriendRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
156
|
+
{
|
|
157
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetPlayerFriendOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
public Task<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse> getPlayerFriendAsync(CharacterPlayerModels.GetPlayerFriendRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
161
|
+
{
|
|
162
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetPlayerFriendOperationRequest, CharacterPlayerResponseModels.GetPlayerFriendOperationResponse>(new CharacterPlayerRequestModels.GetPlayerFriendOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
public void getPlayerGroup(CharacterPlayerModels.GetPlayerGroupRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
166
|
+
{
|
|
167
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetPlayerGroupOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
public Task<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse> getPlayerGroupAsync(CharacterPlayerModels.GetPlayerGroupRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
171
|
+
{
|
|
172
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetPlayerGroupOperationRequest, CharacterPlayerResponseModels.GetPlayerGroupOperationResponse>(new CharacterPlayerRequestModels.GetPlayerGroupOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
public void getPlayerInformation(CharacterPlayerModels.GetPlayerInformationRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
176
|
+
{
|
|
177
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetPlayerInformationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
public Task<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse> getPlayerInformationAsync(CharacterPlayerModels.GetPlayerInformationRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
181
|
+
{
|
|
182
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetPlayerInformationOperationRequest, CharacterPlayerResponseModels.GetPlayerInformationOperationResponse>(new CharacterPlayerRequestModels.GetPlayerInformationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
public void getPlayerInventory(CharacterPlayerModels.GetPlayerInventoryRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
186
|
+
{
|
|
187
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetPlayerInventoryOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
public Task<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse> getPlayerInventoryAsync(CharacterPlayerModels.GetPlayerInventoryRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
191
|
+
{
|
|
192
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetPlayerInventoryOperationRequest, CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse>(new CharacterPlayerRequestModels.GetPlayerInventoryOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
public void getPlayerStatistics(CharacterPlayerModels.GetPlayerStatisticsRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
196
|
+
{
|
|
197
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetPlayerStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
public Task<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse> getPlayerStatisticsAsync(CharacterPlayerModels.GetPlayerStatisticsRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
201
|
+
{
|
|
202
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetPlayerStatisticsOperationRequest, CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse>(new CharacterPlayerRequestModels.GetPlayerStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
public void getPlayersWithDisplayName(CharacterPlayerModels.GetPlayersWithDisplayNameRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
206
|
+
{
|
|
207
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetPlayersWithDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
public Task<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse> getPlayersWithDisplayNameAsync(CharacterPlayerModels.GetPlayersWithDisplayNameRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
211
|
+
{
|
|
212
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetPlayersWithDisplayNameOperationRequest, CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>(new CharacterPlayerRequestModels.GetPlayersWithDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
public void getPlayersWithSegment(CharacterPlayerModels.GetPlayersWithSegmentRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
216
|
+
{
|
|
217
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetPlayersWithSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
public Task<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse> getPlayersWithSegmentAsync(CharacterPlayerModels.GetPlayersWithSegmentRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
221
|
+
{
|
|
222
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetPlayersWithSegmentOperationRequest, CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>(new CharacterPlayerRequestModels.GetPlayersWithSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
public void getPlayersWithTag(CharacterPlayerModels.GetPlayersWithTagRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
226
|
+
{
|
|
227
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetPlayersWithTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
public Task<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse> getPlayersWithTagAsync(CharacterPlayerModels.GetPlayersWithTagRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
231
|
+
{
|
|
232
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetPlayersWithTagOperationRequest, CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse>(new CharacterPlayerRequestModels.GetPlayersWithTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
public void getRemoveStatus(CharacterPlayerModels.GetRemoveStatusRequestData requestData, Action<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
236
|
+
{
|
|
237
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetRemoveStatusOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
public Task<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse> getRemoveStatusAsync(CharacterPlayerModels.GetRemoveStatusRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
241
|
+
{
|
|
242
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetRemoveStatusOperationRequest, CharacterPlayerResponseModels.GetRemoveStatusOperationResponse>(new CharacterPlayerRequestModels.GetRemoveStatusOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
public void getSegment(CharacterPlayerModels.GetSegmentRequestData requestData, Action<CharacterPlayerResponseModels.GetSegmentOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
246
|
+
{
|
|
247
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
public Task<CharacterPlayerResponseModels.GetSegmentOperationResponse> getSegmentAsync(CharacterPlayerModels.GetSegmentRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
251
|
+
{
|
|
252
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetSegmentOperationRequest, CharacterPlayerResponseModels.GetSegmentOperationResponse>(new CharacterPlayerRequestModels.GetSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
public void getStatisticsLeaderboardAroundPlayer(CharacterPlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData requestData, Action<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
256
|
+
{
|
|
257
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
public Task<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse> getStatisticsLeaderboardAroundPlayerAsync(CharacterPlayerModels.GetStatisticsLeaderboardAroundPlayerRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
261
|
+
{
|
|
262
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetStatisticsLeaderboardAroundPlayerOperationRequest, CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>(new CharacterPlayerRequestModels.GetStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
public void getStatisticsLeaderboard(CharacterPlayerModels.GetStatisticsLeaderboardRequestData requestData, Action<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
266
|
+
{
|
|
267
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetStatisticsLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
public Task<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse> getStatisticsLeaderboardAsync(CharacterPlayerModels.GetStatisticsLeaderboardRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
271
|
+
{
|
|
272
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetStatisticsLeaderboardOperationRequest, CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>(new CharacterPlayerRequestModels.GetStatisticsLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
public void getTag(CharacterPlayerModels.GetTagRequestData requestData, Action<CharacterPlayerResponseModels.GetTagOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
276
|
+
{
|
|
277
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
public Task<CharacterPlayerResponseModels.GetTagOperationResponse> getTagAsync(CharacterPlayerModels.GetTagRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
281
|
+
{
|
|
282
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetTagOperationRequest, CharacterPlayerResponseModels.GetTagOperationResponse>(new CharacterPlayerRequestModels.GetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
public void getTsCreate(CharacterPlayerModels.GetTsCreateRequestData requestData, Action<CharacterPlayerResponseModels.GetTsCreateOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
286
|
+
{
|
|
287
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetTsCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
public Task<CharacterPlayerResponseModels.GetTsCreateOperationResponse> getTsCreateAsync(CharacterPlayerModels.GetTsCreateRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
291
|
+
{
|
|
292
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetTsCreateOperationRequest, CharacterPlayerResponseModels.GetTsCreateOperationResponse>(new CharacterPlayerRequestModels.GetTsCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
public void getTsLastLogin(CharacterPlayerModels.GetTsLastLoginRequestData requestData, Action<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
296
|
+
{
|
|
297
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetTsLastLoginOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
public Task<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse> getTsLastLoginAsync(CharacterPlayerModels.GetTsLastLoginRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
301
|
+
{
|
|
302
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetTsLastLoginOperationRequest, CharacterPlayerResponseModels.GetTsLastLoginOperationResponse>(new CharacterPlayerRequestModels.GetTsLastLoginOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
public void grantGroup(CharacterPlayerModels.GrantGroupRequestData requestData, Action<CharacterPlayerResponseModels.GrantGroupOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
306
|
+
{
|
|
307
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GrantGroupOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
public Task<CharacterPlayerResponseModels.GrantGroupOperationResponse> grantGroupAsync(CharacterPlayerModels.GrantGroupRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
311
|
+
{
|
|
312
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GrantGroupOperationRequest, CharacterPlayerResponseModels.GrantGroupOperationResponse>(new CharacterPlayerRequestModels.GrantGroupOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
public void grantPlayerItem(CharacterPlayerModels.GrantPlayerItemRequestData requestData, Action<CharacterPlayerResponseModels.GrantPlayerItemOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
316
|
+
{
|
|
317
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GrantPlayerItemOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
public Task<CharacterPlayerResponseModels.GrantPlayerItemOperationResponse> grantPlayerItemAsync(CharacterPlayerModels.GrantPlayerItemRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
321
|
+
{
|
|
322
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GrantPlayerItemOperationRequest, CharacterPlayerResponseModels.GrantPlayerItemOperationResponse>(new CharacterPlayerRequestModels.GrantPlayerItemOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
public void joinGroup(CharacterPlayerModels.JoinGroupRequestData requestData, Action<CharacterPlayerResponseModels.JoinGroupOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
326
|
+
{
|
|
327
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.JoinGroupOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
public Task<CharacterPlayerResponseModels.JoinGroupOperationResponse> joinGroupAsync(CharacterPlayerModels.JoinGroupRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
331
|
+
{
|
|
332
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.JoinGroupOperationRequest, CharacterPlayerResponseModels.JoinGroupOperationResponse>(new CharacterPlayerRequestModels.JoinGroupOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
public void leaveGroup(CharacterPlayerModels.LeaveGroupRequestData requestData, Action<CharacterPlayerResponseModels.LeaveGroupOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
336
|
+
{
|
|
337
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.LeaveGroupOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
public Task<CharacterPlayerResponseModels.LeaveGroupOperationResponse> leaveGroupAsync(CharacterPlayerModels.LeaveGroupRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
341
|
+
{
|
|
342
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.LeaveGroupOperationRequest, CharacterPlayerResponseModels.LeaveGroupOperationResponse>(new CharacterPlayerRequestModels.LeaveGroupOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
public void removePlayerFriend(CharacterPlayerModels.RemovePlayerFriendRequestData requestData, Action<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
346
|
+
{
|
|
347
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.RemovePlayerFriendOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
public Task<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse> removePlayerFriendAsync(CharacterPlayerModels.RemovePlayerFriendRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
351
|
+
{
|
|
352
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.RemovePlayerFriendOperationRequest, CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse>(new CharacterPlayerRequestModels.RemovePlayerFriendOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
public void removePlayerItem(CharacterPlayerModels.RemovePlayerItemRequestData requestData, Action<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
356
|
+
{
|
|
357
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.RemovePlayerItemOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
public Task<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse> removePlayerItemAsync(CharacterPlayerModels.RemovePlayerItemRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
361
|
+
{
|
|
362
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.RemovePlayerItemOperationRequest, CharacterPlayerResponseModels.RemovePlayerItemOperationResponse>(new CharacterPlayerRequestModels.RemovePlayerItemOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
public void removeSegment(CharacterPlayerModels.RemoveSegmentRequestData requestData, Action<CharacterPlayerResponseModels.RemoveSegmentOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
366
|
+
{
|
|
367
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.RemoveSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
public Task<CharacterPlayerResponseModels.RemoveSegmentOperationResponse> removeSegmentAsync(CharacterPlayerModels.RemoveSegmentRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
371
|
+
{
|
|
372
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.RemoveSegmentOperationRequest, CharacterPlayerResponseModels.RemoveSegmentOperationResponse>(new CharacterPlayerRequestModels.RemoveSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
public void removeTag(CharacterPlayerModels.RemoveTagRequestData requestData, Action<CharacterPlayerResponseModels.RemoveTagOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
376
|
+
{
|
|
377
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.RemoveTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
public Task<CharacterPlayerResponseModels.RemoveTagOperationResponse> removeTagAsync(CharacterPlayerModels.RemoveTagRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
381
|
+
{
|
|
382
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.RemoveTagOperationRequest, CharacterPlayerResponseModels.RemoveTagOperationResponse>(new CharacterPlayerRequestModels.RemoveTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
public void setAvatar(CharacterPlayerModels.SetAvatarRequestData requestData, Action<CharacterPlayerResponseModels.SetAvatarOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
386
|
+
{
|
|
387
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.SetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
public Task<CharacterPlayerResponseModels.SetAvatarOperationResponse> setAvatarAsync(CharacterPlayerModels.SetAvatarRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
391
|
+
{
|
|
392
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.SetAvatarOperationRequest, CharacterPlayerResponseModels.SetAvatarOperationResponse>(new CharacterPlayerRequestModels.SetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
public void setCountryCode(CharacterPlayerModels.SetCountryCodeRequestData requestData, Action<CharacterPlayerResponseModels.SetCountryCodeOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
396
|
+
{
|
|
397
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.SetCountryCodeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
public Task<CharacterPlayerResponseModels.SetCountryCodeOperationResponse> setCountryCodeAsync(CharacterPlayerModels.SetCountryCodeRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
401
|
+
{
|
|
402
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.SetCountryCodeOperationRequest, CharacterPlayerResponseModels.SetCountryCodeOperationResponse>(new CharacterPlayerRequestModels.SetCountryCodeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
public void setCustomData(CharacterPlayerModels.SetCustomDataRequestData requestData, Action<CharacterPlayerResponseModels.SetCustomDataOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
406
|
+
{
|
|
407
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.SetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
public Task<CharacterPlayerResponseModels.SetCustomDataOperationResponse> setCustomDataAsync(CharacterPlayerModels.SetCustomDataRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
411
|
+
{
|
|
412
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.SetCustomDataOperationRequest, CharacterPlayerResponseModels.SetCustomDataOperationResponse>(new CharacterPlayerRequestModels.SetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
public void setDisplayName(CharacterPlayerModels.SetDisplayNameRequestData requestData, Action<CharacterPlayerResponseModels.SetDisplayNameOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
416
|
+
{
|
|
417
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.SetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
public Task<CharacterPlayerResponseModels.SetDisplayNameOperationResponse> setDisplayNameAsync(CharacterPlayerModels.SetDisplayNameRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
421
|
+
{
|
|
422
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.SetDisplayNameOperationRequest, CharacterPlayerResponseModels.SetDisplayNameOperationResponse>(new CharacterPlayerRequestModels.SetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
public void setOwner(CharacterPlayerModels.SetOwnerRequestData requestData, Action<CharacterPlayerResponseModels.SetOwnerOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
426
|
+
{
|
|
427
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.SetOwnerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
public Task<CharacterPlayerResponseModels.SetOwnerOperationResponse> setOwnerAsync(CharacterPlayerModels.SetOwnerRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
431
|
+
{
|
|
432
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.SetOwnerOperationRequest, CharacterPlayerResponseModels.SetOwnerOperationResponse>(new CharacterPlayerRequestModels.SetOwnerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
public void setPlayerBan(CharacterPlayerModels.SetPlayerBanRequestData requestData, Action<CharacterPlayerResponseModels.SetPlayerBanOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
436
|
+
{
|
|
437
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.SetPlayerBanOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
public Task<CharacterPlayerResponseModels.SetPlayerBanOperationResponse> setPlayerBanAsync(CharacterPlayerModels.SetPlayerBanRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
441
|
+
{
|
|
442
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.SetPlayerBanOperationRequest, CharacterPlayerResponseModels.SetPlayerBanOperationResponse>(new CharacterPlayerRequestModels.SetPlayerBanOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
public void setPlayerCurrency(CharacterPlayerModels.SetPlayerCurrencyRequestData requestData, Action<CharacterPlayerResponseModels.SetPlayerCurrencyOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
446
|
+
{
|
|
447
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.SetPlayerCurrencyOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
public Task<CharacterPlayerResponseModels.SetPlayerCurrencyOperationResponse> setPlayerCurrencyAsync(CharacterPlayerModels.SetPlayerCurrencyRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
451
|
+
{
|
|
452
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.SetPlayerCurrencyOperationRequest, CharacterPlayerResponseModels.SetPlayerCurrencyOperationResponse>(new CharacterPlayerRequestModels.SetPlayerCurrencyOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
public void setPlayerData(CharacterPlayerModels.SetPlayerDataRequestData requestData, Action<CharacterPlayerResponseModels.SetPlayerDataOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
456
|
+
{
|
|
457
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.SetPlayerDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
public Task<CharacterPlayerResponseModels.SetPlayerDataOperationResponse> setPlayerDataAsync(CharacterPlayerModels.SetPlayerDataRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
461
|
+
{
|
|
462
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.SetPlayerDataOperationRequest, CharacterPlayerResponseModels.SetPlayerDataOperationResponse>(new CharacterPlayerRequestModels.SetPlayerDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
public void setPlayerStatistics(CharacterPlayerModels.SetPlayerStatisticsRequestData requestData, Action<CharacterPlayerResponseModels.SetPlayerStatisticsOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
466
|
+
{
|
|
467
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.SetPlayerStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
public Task<CharacterPlayerResponseModels.SetPlayerStatisticsOperationResponse> setPlayerStatisticsAsync(CharacterPlayerModels.SetPlayerStatisticsRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
471
|
+
{
|
|
472
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.SetPlayerStatisticsOperationRequest, CharacterPlayerResponseModels.SetPlayerStatisticsOperationResponse>(new CharacterPlayerRequestModels.SetPlayerStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
public void setRemoveStatus(CharacterPlayerModels.SetRemoveStatusRequestData requestData, Action<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
476
|
+
{
|
|
477
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.SetRemoveStatusOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
public Task<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse> setRemoveStatusAsync(CharacterPlayerModels.SetRemoveStatusRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
481
|
+
{
|
|
482
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.SetRemoveStatusOperationRequest, CharacterPlayerResponseModels.SetRemoveStatusOperationResponse>(new CharacterPlayerRequestModels.SetRemoveStatusOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
public void setTag(CharacterPlayerModels.SetTagRequestData requestData, Action<CharacterPlayerResponseModels.SetTagOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
486
|
+
{
|
|
487
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.SetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
public Task<CharacterPlayerResponseModels.SetTagOperationResponse> setTagAsync(CharacterPlayerModels.SetTagRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
491
|
+
{
|
|
492
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.SetTagOperationRequest, CharacterPlayerResponseModels.SetTagOperationResponse>(new CharacterPlayerRequestModels.SetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
public void getCurrencyLeaderboard(CharacterPlayerModels.GetCurrencyLeaderboardRequestData requestData, Action<CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
496
|
+
{
|
|
497
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetCurrencyLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
public Task<CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse> getCurrencyLeaderboardAsync(CharacterPlayerModels.GetCurrencyLeaderboardRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
501
|
+
{
|
|
502
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetCurrencyLeaderboardOperationRequest, CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>(new CharacterPlayerRequestModels.GetCurrencyLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
public void getCreateLeaderboard(CharacterPlayerModels.GetCreateLeaderboardRequestData requestData, Action<CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
506
|
+
{
|
|
507
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetCreateLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
public Task<CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse> getCreateLeaderboardAsync(CharacterPlayerModels.GetCreateLeaderboardRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
511
|
+
{
|
|
512
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetCreateLeaderboardOperationRequest, CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse>(new CharacterPlayerRequestModels.GetCreateLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
public void getStatisticsLog(CharacterPlayerModels.GetStatisticsLogRequestData requestData, Action<CharacterPlayerResponseModels.GetStatisticsLogOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
516
|
+
{
|
|
517
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetStatisticsLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
public Task<CharacterPlayerResponseModels.GetStatisticsLogOperationResponse> getStatisticsLogAsync(CharacterPlayerModels.GetStatisticsLogRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
521
|
+
{
|
|
522
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetStatisticsLogOperationRequest, CharacterPlayerResponseModels.GetStatisticsLogOperationResponse>(new CharacterPlayerRequestModels.GetStatisticsLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
public void getCurrencyLog(CharacterPlayerModels.GetCurrencyLogRequestData requestData, Action<CharacterPlayerResponseModels.GetCurrencyLogOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
526
|
+
{
|
|
527
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.GetCurrencyLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
public Task<CharacterPlayerResponseModels.GetCurrencyLogOperationResponse> getCurrencyLogAsync(CharacterPlayerModels.GetCurrencyLogRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
531
|
+
{
|
|
532
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.GetCurrencyLogOperationRequest, CharacterPlayerResponseModels.GetCurrencyLogOperationResponse>(new CharacterPlayerRequestModels.GetCurrencyLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
public class ServerApi
|
|
537
|
+
{
|
|
538
|
+
public void addPlayerFriend(CharacterPlayerModels.ServerAddPlayerFriendRequestData requestData, Action<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
539
|
+
{
|
|
540
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerAddPlayerFriendOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
public Task<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse> addPlayerFriendAsync(CharacterPlayerModels.ServerAddPlayerFriendRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
544
|
+
{
|
|
545
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerAddPlayerFriendOperationRequest, CharacterPlayerResponseModels.AddPlayerFriendOperationResponse>(new CharacterPlayerRequestModels.ServerAddPlayerFriendOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
public void addSegment(CharacterPlayerModels.ServerAddSegmentRequestData requestData, Action<CharacterPlayerResponseModels.AddSegmentOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
549
|
+
{
|
|
550
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerAddSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
public Task<CharacterPlayerResponseModels.AddSegmentOperationResponse> addSegmentAsync(CharacterPlayerModels.ServerAddSegmentRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
554
|
+
{
|
|
555
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerAddSegmentOperationRequest, CharacterPlayerResponseModels.AddSegmentOperationResponse>(new CharacterPlayerRequestModels.ServerAddSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
public void getAvatar(CharacterPlayerModels.ServerGetAvatarRequestData requestData, Action<CharacterPlayerResponseModels.GetAvatarOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
559
|
+
{
|
|
560
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
public Task<CharacterPlayerResponseModels.GetAvatarOperationResponse> getAvatarAsync(CharacterPlayerModels.ServerGetAvatarRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
564
|
+
{
|
|
565
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetAvatarOperationRequest, CharacterPlayerResponseModels.GetAvatarOperationResponse>(new CharacterPlayerRequestModels.ServerGetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
public void getCatalogId(CharacterPlayerModels.ServerGetCatalogIdRequestData requestData, Action<CharacterPlayerResponseModels.GetCatalogIdOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
569
|
+
{
|
|
570
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetCatalogIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
public Task<CharacterPlayerResponseModels.GetCatalogIdOperationResponse> getCatalogIdAsync(CharacterPlayerModels.ServerGetCatalogIdRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
574
|
+
{
|
|
575
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetCatalogIdOperationRequest, CharacterPlayerResponseModels.GetCatalogIdOperationResponse>(new CharacterPlayerRequestModels.ServerGetCatalogIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
public void getCountryCode(CharacterPlayerModels.ServerGetCountryCodeRequestData requestData, Action<CharacterPlayerResponseModels.GetCountryCodeOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
579
|
+
{
|
|
580
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetCountryCodeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
public Task<CharacterPlayerResponseModels.GetCountryCodeOperationResponse> getCountryCodeAsync(CharacterPlayerModels.ServerGetCountryCodeRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
584
|
+
{
|
|
585
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetCountryCodeOperationRequest, CharacterPlayerResponseModels.GetCountryCodeOperationResponse>(new CharacterPlayerRequestModels.ServerGetCountryCodeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
public void getCustomData(CharacterPlayerModels.ServerGetCustomDataRequestData requestData, Action<CharacterPlayerResponseModels.GetCustomDataOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
589
|
+
{
|
|
590
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
public Task<CharacterPlayerResponseModels.GetCustomDataOperationResponse> getCustomDataAsync(CharacterPlayerModels.ServerGetCustomDataRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
594
|
+
{
|
|
595
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetCustomDataOperationRequest, CharacterPlayerResponseModels.GetCustomDataOperationResponse>(new CharacterPlayerRequestModels.ServerGetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
public void getDisplayName(CharacterPlayerModels.ServerGetDisplayNameRequestData requestData, Action<CharacterPlayerResponseModels.GetDisplayNameOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
599
|
+
{
|
|
600
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
public Task<CharacterPlayerResponseModels.GetDisplayNameOperationResponse> getDisplayNameAsync(CharacterPlayerModels.ServerGetDisplayNameRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
604
|
+
{
|
|
605
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetDisplayNameOperationRequest, CharacterPlayerResponseModels.GetDisplayNameOperationResponse>(new CharacterPlayerRequestModels.ServerGetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
public void getFriendStatisticsLeaderboardAroundPlayer(CharacterPlayerModels.ServerGetFriendStatisticsLeaderboardAroundPlayerRequestData requestData, Action<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
609
|
+
{
|
|
610
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetFriendStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
public Task<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse> getFriendStatisticsLeaderboardAroundPlayerAsync(CharacterPlayerModels.ServerGetFriendStatisticsLeaderboardAroundPlayerRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
614
|
+
{
|
|
615
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetFriendStatisticsLeaderboardAroundPlayerOperationRequest, CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>(new CharacterPlayerRequestModels.ServerGetFriendStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
public void getFriendStatisticsLeaderboard(CharacterPlayerModels.ServerGetFriendStatisticsLeaderboardRequestData requestData, Action<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
619
|
+
{
|
|
620
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetFriendStatisticsLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
public Task<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse> getFriendStatisticsLeaderboardAsync(CharacterPlayerModels.ServerGetFriendStatisticsLeaderboardRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
624
|
+
{
|
|
625
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetFriendStatisticsLeaderboardOperationRequest, CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>(new CharacterPlayerRequestModels.ServerGetFriendStatisticsLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
public void getIpAddressCreate(CharacterPlayerModels.ServerGetIpAddressCreateRequestData requestData, Action<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
629
|
+
{
|
|
630
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetIpAddressCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
public Task<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse> getIpAddressCreateAsync(CharacterPlayerModels.ServerGetIpAddressCreateRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
634
|
+
{
|
|
635
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetIpAddressCreateOperationRequest, CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse>(new CharacterPlayerRequestModels.ServerGetIpAddressCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
public void getOwner(CharacterPlayerModels.ServerGetOwnerRequestData requestData, Action<CharacterPlayerResponseModels.GetOwnerOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
639
|
+
{
|
|
640
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetOwnerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
public Task<CharacterPlayerResponseModels.GetOwnerOperationResponse> getOwnerAsync(CharacterPlayerModels.ServerGetOwnerRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
644
|
+
{
|
|
645
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetOwnerOperationRequest, CharacterPlayerResponseModels.GetOwnerOperationResponse>(new CharacterPlayerRequestModels.ServerGetOwnerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
public void getPlayerBan(CharacterPlayerModels.ServerGetPlayerBanRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerBanOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
649
|
+
{
|
|
650
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetPlayerBanOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
public Task<CharacterPlayerResponseModels.GetPlayerBanOperationResponse> getPlayerBanAsync(CharacterPlayerModels.ServerGetPlayerBanRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
654
|
+
{
|
|
655
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetPlayerBanOperationRequest, CharacterPlayerResponseModels.GetPlayerBanOperationResponse>(new CharacterPlayerRequestModels.ServerGetPlayerBanOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
public void getPlayerCurrency(CharacterPlayerModels.ServerGetPlayerCurrencyRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
659
|
+
{
|
|
660
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetPlayerCurrencyOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
public Task<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse> getPlayerCurrencyAsync(CharacterPlayerModels.ServerGetPlayerCurrencyRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
664
|
+
{
|
|
665
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetPlayerCurrencyOperationRequest, CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse>(new CharacterPlayerRequestModels.ServerGetPlayerCurrencyOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
public void getPlayerData(CharacterPlayerModels.ServerGetPlayerDataRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerDataOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
669
|
+
{
|
|
670
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetPlayerDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
public Task<CharacterPlayerResponseModels.GetPlayerDataOperationResponse> getPlayerDataAsync(CharacterPlayerModels.ServerGetPlayerDataRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
674
|
+
{
|
|
675
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetPlayerDataOperationRequest, CharacterPlayerResponseModels.GetPlayerDataOperationResponse>(new CharacterPlayerRequestModels.ServerGetPlayerDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
public void getPlayerFriend(CharacterPlayerModels.ServerGetPlayerFriendRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
679
|
+
{
|
|
680
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetPlayerFriendOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
public Task<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse> getPlayerFriendAsync(CharacterPlayerModels.ServerGetPlayerFriendRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
684
|
+
{
|
|
685
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetPlayerFriendOperationRequest, CharacterPlayerResponseModels.GetPlayerFriendOperationResponse>(new CharacterPlayerRequestModels.ServerGetPlayerFriendOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
public void getPlayerGroup(CharacterPlayerModels.ServerGetPlayerGroupRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
689
|
+
{
|
|
690
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetPlayerGroupOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
public Task<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse> getPlayerGroupAsync(CharacterPlayerModels.ServerGetPlayerGroupRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
694
|
+
{
|
|
695
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetPlayerGroupOperationRequest, CharacterPlayerResponseModels.GetPlayerGroupOperationResponse>(new CharacterPlayerRequestModels.ServerGetPlayerGroupOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
public void getPlayerInformation(CharacterPlayerModels.ServerGetPlayerInformationRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
699
|
+
{
|
|
700
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetPlayerInformationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
public Task<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse> getPlayerInformationAsync(CharacterPlayerModels.ServerGetPlayerInformationRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
704
|
+
{
|
|
705
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetPlayerInformationOperationRequest, CharacterPlayerResponseModels.GetPlayerInformationOperationResponse>(new CharacterPlayerRequestModels.ServerGetPlayerInformationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
public void getPlayerInventory(CharacterPlayerModels.ServerGetPlayerInventoryRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
709
|
+
{
|
|
710
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetPlayerInventoryOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
public Task<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse> getPlayerInventoryAsync(CharacterPlayerModels.ServerGetPlayerInventoryRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
714
|
+
{
|
|
715
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetPlayerInventoryOperationRequest, CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse>(new CharacterPlayerRequestModels.ServerGetPlayerInventoryOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
public void getPlayerStatistics(CharacterPlayerModels.ServerGetPlayerStatisticsRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
719
|
+
{
|
|
720
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetPlayerStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
public Task<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse> getPlayerStatisticsAsync(CharacterPlayerModels.ServerGetPlayerStatisticsRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
724
|
+
{
|
|
725
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetPlayerStatisticsOperationRequest, CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse>(new CharacterPlayerRequestModels.ServerGetPlayerStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
public void getPlayersWithDisplayName(CharacterPlayerModels.ServerGetPlayersWithDisplayNameRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
729
|
+
{
|
|
730
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetPlayersWithDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
public Task<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse> getPlayersWithDisplayNameAsync(CharacterPlayerModels.ServerGetPlayersWithDisplayNameRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
734
|
+
{
|
|
735
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetPlayersWithDisplayNameOperationRequest, CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>(new CharacterPlayerRequestModels.ServerGetPlayersWithDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
public void getPlayersWithSegment(CharacterPlayerModels.ServerGetPlayersWithSegmentRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
739
|
+
{
|
|
740
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetPlayersWithSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
public Task<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse> getPlayersWithSegmentAsync(CharacterPlayerModels.ServerGetPlayersWithSegmentRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
744
|
+
{
|
|
745
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetPlayersWithSegmentOperationRequest, CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>(new CharacterPlayerRequestModels.ServerGetPlayersWithSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
public void getPlayersWithTag(CharacterPlayerModels.ServerGetPlayersWithTagRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
749
|
+
{
|
|
750
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetPlayersWithTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
public Task<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse> getPlayersWithTagAsync(CharacterPlayerModels.ServerGetPlayersWithTagRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
754
|
+
{
|
|
755
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetPlayersWithTagOperationRequest, CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse>(new CharacterPlayerRequestModels.ServerGetPlayersWithTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
public void getRemoveStatus(CharacterPlayerModels.ServerGetRemoveStatusRequestData requestData, Action<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
759
|
+
{
|
|
760
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetRemoveStatusOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
public Task<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse> getRemoveStatusAsync(CharacterPlayerModels.ServerGetRemoveStatusRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
764
|
+
{
|
|
765
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetRemoveStatusOperationRequest, CharacterPlayerResponseModels.GetRemoveStatusOperationResponse>(new CharacterPlayerRequestModels.ServerGetRemoveStatusOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
public void getSegment(CharacterPlayerModels.ServerGetSegmentRequestData requestData, Action<CharacterPlayerResponseModels.GetSegmentOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
769
|
+
{
|
|
770
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
public Task<CharacterPlayerResponseModels.GetSegmentOperationResponse> getSegmentAsync(CharacterPlayerModels.ServerGetSegmentRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
774
|
+
{
|
|
775
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetSegmentOperationRequest, CharacterPlayerResponseModels.GetSegmentOperationResponse>(new CharacterPlayerRequestModels.ServerGetSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
public void getStatisticsLeaderboardAroundPlayer(CharacterPlayerModels.ServerGetStatisticsLeaderboardAroundPlayerRequestData requestData, Action<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
779
|
+
{
|
|
780
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
public Task<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse> getStatisticsLeaderboardAroundPlayerAsync(CharacterPlayerModels.ServerGetStatisticsLeaderboardAroundPlayerRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
784
|
+
{
|
|
785
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetStatisticsLeaderboardAroundPlayerOperationRequest, CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>(new CharacterPlayerRequestModels.ServerGetStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
public void getStatisticsLeaderboard(CharacterPlayerModels.ServerGetStatisticsLeaderboardRequestData requestData, Action<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
789
|
+
{
|
|
790
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetStatisticsLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
public Task<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse> getStatisticsLeaderboardAsync(CharacterPlayerModels.ServerGetStatisticsLeaderboardRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
794
|
+
{
|
|
795
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetStatisticsLeaderboardOperationRequest, CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>(new CharacterPlayerRequestModels.ServerGetStatisticsLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
public void getTag(CharacterPlayerModels.ServerGetTagRequestData requestData, Action<CharacterPlayerResponseModels.GetTagOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
799
|
+
{
|
|
800
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
public Task<CharacterPlayerResponseModels.GetTagOperationResponse> getTagAsync(CharacterPlayerModels.ServerGetTagRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
804
|
+
{
|
|
805
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetTagOperationRequest, CharacterPlayerResponseModels.GetTagOperationResponse>(new CharacterPlayerRequestModels.ServerGetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
public void getTsCreate(CharacterPlayerModels.ServerGetTsCreateRequestData requestData, Action<CharacterPlayerResponseModels.GetTsCreateOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
809
|
+
{
|
|
810
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetTsCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
public Task<CharacterPlayerResponseModels.GetTsCreateOperationResponse> getTsCreateAsync(CharacterPlayerModels.ServerGetTsCreateRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
814
|
+
{
|
|
815
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetTsCreateOperationRequest, CharacterPlayerResponseModels.GetTsCreateOperationResponse>(new CharacterPlayerRequestModels.ServerGetTsCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
public void getTsLastLogin(CharacterPlayerModels.ServerGetTsLastLoginRequestData requestData, Action<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
819
|
+
{
|
|
820
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetTsLastLoginOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
public Task<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse> getTsLastLoginAsync(CharacterPlayerModels.ServerGetTsLastLoginRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
824
|
+
{
|
|
825
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetTsLastLoginOperationRequest, CharacterPlayerResponseModels.GetTsLastLoginOperationResponse>(new CharacterPlayerRequestModels.ServerGetTsLastLoginOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
public void grantGroup(CharacterPlayerModels.ServerGrantGroupRequestData requestData, Action<CharacterPlayerResponseModels.GrantGroupOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
829
|
+
{
|
|
830
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGrantGroupOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
public Task<CharacterPlayerResponseModels.GrantGroupOperationResponse> grantGroupAsync(CharacterPlayerModels.ServerGrantGroupRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
834
|
+
{
|
|
835
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGrantGroupOperationRequest, CharacterPlayerResponseModels.GrantGroupOperationResponse>(new CharacterPlayerRequestModels.ServerGrantGroupOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
public void grantPlayerItem(CharacterPlayerModels.ServerGrantPlayerItemRequestData requestData, Action<CharacterPlayerResponseModels.GrantPlayerItemOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
839
|
+
{
|
|
840
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGrantPlayerItemOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
public Task<CharacterPlayerResponseModels.GrantPlayerItemOperationResponse> grantPlayerItemAsync(CharacterPlayerModels.ServerGrantPlayerItemRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
844
|
+
{
|
|
845
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGrantPlayerItemOperationRequest, CharacterPlayerResponseModels.GrantPlayerItemOperationResponse>(new CharacterPlayerRequestModels.ServerGrantPlayerItemOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
public void joinGroup(CharacterPlayerModels.ServerJoinGroupRequestData requestData, Action<CharacterPlayerResponseModels.JoinGroupOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
849
|
+
{
|
|
850
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerJoinGroupOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
public Task<CharacterPlayerResponseModels.JoinGroupOperationResponse> joinGroupAsync(CharacterPlayerModels.ServerJoinGroupRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
854
|
+
{
|
|
855
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerJoinGroupOperationRequest, CharacterPlayerResponseModels.JoinGroupOperationResponse>(new CharacterPlayerRequestModels.ServerJoinGroupOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
public void leaveGroup(CharacterPlayerModels.ServerLeaveGroupRequestData requestData, Action<CharacterPlayerResponseModels.LeaveGroupOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
859
|
+
{
|
|
860
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerLeaveGroupOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
public Task<CharacterPlayerResponseModels.LeaveGroupOperationResponse> leaveGroupAsync(CharacterPlayerModels.ServerLeaveGroupRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
864
|
+
{
|
|
865
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerLeaveGroupOperationRequest, CharacterPlayerResponseModels.LeaveGroupOperationResponse>(new CharacterPlayerRequestModels.ServerLeaveGroupOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
public void removePlayerFriend(CharacterPlayerModels.ServerRemovePlayerFriendRequestData requestData, Action<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
869
|
+
{
|
|
870
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerRemovePlayerFriendOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
public Task<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse> removePlayerFriendAsync(CharacterPlayerModels.ServerRemovePlayerFriendRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
874
|
+
{
|
|
875
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerRemovePlayerFriendOperationRequest, CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse>(new CharacterPlayerRequestModels.ServerRemovePlayerFriendOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
public void removePlayerItem(CharacterPlayerModels.ServerRemovePlayerItemRequestData requestData, Action<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
879
|
+
{
|
|
880
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerRemovePlayerItemOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
public Task<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse> removePlayerItemAsync(CharacterPlayerModels.ServerRemovePlayerItemRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
884
|
+
{
|
|
885
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerRemovePlayerItemOperationRequest, CharacterPlayerResponseModels.RemovePlayerItemOperationResponse>(new CharacterPlayerRequestModels.ServerRemovePlayerItemOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
public void removeSegment(CharacterPlayerModels.ServerRemoveSegmentRequestData requestData, Action<CharacterPlayerResponseModels.RemoveSegmentOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
889
|
+
{
|
|
890
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerRemoveSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
public Task<CharacterPlayerResponseModels.RemoveSegmentOperationResponse> removeSegmentAsync(CharacterPlayerModels.ServerRemoveSegmentRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
894
|
+
{
|
|
895
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerRemoveSegmentOperationRequest, CharacterPlayerResponseModels.RemoveSegmentOperationResponse>(new CharacterPlayerRequestModels.ServerRemoveSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
public void removeTag(CharacterPlayerModels.ServerRemoveTagRequestData requestData, Action<CharacterPlayerResponseModels.RemoveTagOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
899
|
+
{
|
|
900
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerRemoveTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
public Task<CharacterPlayerResponseModels.RemoveTagOperationResponse> removeTagAsync(CharacterPlayerModels.ServerRemoveTagRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
904
|
+
{
|
|
905
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerRemoveTagOperationRequest, CharacterPlayerResponseModels.RemoveTagOperationResponse>(new CharacterPlayerRequestModels.ServerRemoveTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
public void setAvatar(CharacterPlayerModels.ServerSetAvatarRequestData requestData, Action<CharacterPlayerResponseModels.SetAvatarOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
909
|
+
{
|
|
910
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerSetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
public Task<CharacterPlayerResponseModels.SetAvatarOperationResponse> setAvatarAsync(CharacterPlayerModels.ServerSetAvatarRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
914
|
+
{
|
|
915
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerSetAvatarOperationRequest, CharacterPlayerResponseModels.SetAvatarOperationResponse>(new CharacterPlayerRequestModels.ServerSetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
public void setCountryCode(CharacterPlayerModels.ServerSetCountryCodeRequestData requestData, Action<CharacterPlayerResponseModels.SetCountryCodeOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
919
|
+
{
|
|
920
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerSetCountryCodeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
public Task<CharacterPlayerResponseModels.SetCountryCodeOperationResponse> setCountryCodeAsync(CharacterPlayerModels.ServerSetCountryCodeRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
924
|
+
{
|
|
925
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerSetCountryCodeOperationRequest, CharacterPlayerResponseModels.SetCountryCodeOperationResponse>(new CharacterPlayerRequestModels.ServerSetCountryCodeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
public void setCustomData(CharacterPlayerModels.ServerSetCustomDataRequestData requestData, Action<CharacterPlayerResponseModels.SetCustomDataOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
929
|
+
{
|
|
930
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerSetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
public Task<CharacterPlayerResponseModels.SetCustomDataOperationResponse> setCustomDataAsync(CharacterPlayerModels.ServerSetCustomDataRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
934
|
+
{
|
|
935
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerSetCustomDataOperationRequest, CharacterPlayerResponseModels.SetCustomDataOperationResponse>(new CharacterPlayerRequestModels.ServerSetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
public void setDisplayName(CharacterPlayerModels.ServerSetDisplayNameRequestData requestData, Action<CharacterPlayerResponseModels.SetDisplayNameOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
939
|
+
{
|
|
940
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerSetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
public Task<CharacterPlayerResponseModels.SetDisplayNameOperationResponse> setDisplayNameAsync(CharacterPlayerModels.ServerSetDisplayNameRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
944
|
+
{
|
|
945
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerSetDisplayNameOperationRequest, CharacterPlayerResponseModels.SetDisplayNameOperationResponse>(new CharacterPlayerRequestModels.ServerSetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
public void setOwner(CharacterPlayerModels.ServerSetOwnerRequestData requestData, Action<CharacterPlayerResponseModels.SetOwnerOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
949
|
+
{
|
|
950
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerSetOwnerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
public Task<CharacterPlayerResponseModels.SetOwnerOperationResponse> setOwnerAsync(CharacterPlayerModels.ServerSetOwnerRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
954
|
+
{
|
|
955
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerSetOwnerOperationRequest, CharacterPlayerResponseModels.SetOwnerOperationResponse>(new CharacterPlayerRequestModels.ServerSetOwnerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
public void setPlayerBan(CharacterPlayerModels.ServerSetPlayerBanRequestData requestData, Action<CharacterPlayerResponseModels.SetPlayerBanOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
959
|
+
{
|
|
960
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerSetPlayerBanOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
public Task<CharacterPlayerResponseModels.SetPlayerBanOperationResponse> setPlayerBanAsync(CharacterPlayerModels.ServerSetPlayerBanRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
964
|
+
{
|
|
965
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerSetPlayerBanOperationRequest, CharacterPlayerResponseModels.SetPlayerBanOperationResponse>(new CharacterPlayerRequestModels.ServerSetPlayerBanOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
public void setPlayerCurrency(CharacterPlayerModels.ServerSetPlayerCurrencyRequestData requestData, Action<CharacterPlayerResponseModels.SetPlayerCurrencyOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
969
|
+
{
|
|
970
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerSetPlayerCurrencyOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
public Task<CharacterPlayerResponseModels.SetPlayerCurrencyOperationResponse> setPlayerCurrencyAsync(CharacterPlayerModels.ServerSetPlayerCurrencyRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
974
|
+
{
|
|
975
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerSetPlayerCurrencyOperationRequest, CharacterPlayerResponseModels.SetPlayerCurrencyOperationResponse>(new CharacterPlayerRequestModels.ServerSetPlayerCurrencyOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
976
|
+
}
|
|
977
|
+
public void setPlayerData(CharacterPlayerModels.ServerSetPlayerDataRequestData requestData, Action<CharacterPlayerResponseModels.SetPlayerDataOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
978
|
+
{
|
|
979
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerSetPlayerDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
public Task<CharacterPlayerResponseModels.SetPlayerDataOperationResponse> setPlayerDataAsync(CharacterPlayerModels.ServerSetPlayerDataRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
983
|
+
{
|
|
984
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerSetPlayerDataOperationRequest, CharacterPlayerResponseModels.SetPlayerDataOperationResponse>(new CharacterPlayerRequestModels.ServerSetPlayerDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
public void setPlayerStatistics(CharacterPlayerModels.ServerSetPlayerStatisticsRequestData requestData, Action<CharacterPlayerResponseModels.SetPlayerStatisticsOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
988
|
+
{
|
|
989
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerSetPlayerStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
public Task<CharacterPlayerResponseModels.SetPlayerStatisticsOperationResponse> setPlayerStatisticsAsync(CharacterPlayerModels.ServerSetPlayerStatisticsRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
993
|
+
{
|
|
994
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerSetPlayerStatisticsOperationRequest, CharacterPlayerResponseModels.SetPlayerStatisticsOperationResponse>(new CharacterPlayerRequestModels.ServerSetPlayerStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
public void setRemoveStatus(CharacterPlayerModels.ServerSetRemoveStatusRequestData requestData, Action<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
998
|
+
{
|
|
999
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerSetRemoveStatusOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
public Task<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse> setRemoveStatusAsync(CharacterPlayerModels.ServerSetRemoveStatusRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1003
|
+
{
|
|
1004
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerSetRemoveStatusOperationRequest, CharacterPlayerResponseModels.SetRemoveStatusOperationResponse>(new CharacterPlayerRequestModels.ServerSetRemoveStatusOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
public void setTag(CharacterPlayerModels.ServerSetTagRequestData requestData, Action<CharacterPlayerResponseModels.SetTagOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1008
|
+
{
|
|
1009
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerSetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
public Task<CharacterPlayerResponseModels.SetTagOperationResponse> setTagAsync(CharacterPlayerModels.ServerSetTagRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1013
|
+
{
|
|
1014
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerSetTagOperationRequest, CharacterPlayerResponseModels.SetTagOperationResponse>(new CharacterPlayerRequestModels.ServerSetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
public void getCurrencyLeaderboard(CharacterPlayerModels.ServerGetCurrencyLeaderboardRequestData requestData, Action<CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1018
|
+
{
|
|
1019
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetCurrencyLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
public Task<CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse> getCurrencyLeaderboardAsync(CharacterPlayerModels.ServerGetCurrencyLeaderboardRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1023
|
+
{
|
|
1024
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetCurrencyLeaderboardOperationRequest, CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>(new CharacterPlayerRequestModels.ServerGetCurrencyLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
public void getCreateLeaderboard(CharacterPlayerModels.ServerGetCreateLeaderboardRequestData requestData, Action<CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1028
|
+
{
|
|
1029
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetCreateLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
public Task<CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse> getCreateLeaderboardAsync(CharacterPlayerModels.ServerGetCreateLeaderboardRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1033
|
+
{
|
|
1034
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetCreateLeaderboardOperationRequest, CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse>(new CharacterPlayerRequestModels.ServerGetCreateLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
public void getStatisticsLog(CharacterPlayerModels.ServerGetStatisticsLogRequestData requestData, Action<CharacterPlayerResponseModels.GetStatisticsLogOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1038
|
+
{
|
|
1039
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetStatisticsLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
public Task<CharacterPlayerResponseModels.GetStatisticsLogOperationResponse> getStatisticsLogAsync(CharacterPlayerModels.ServerGetStatisticsLogRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1043
|
+
{
|
|
1044
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetStatisticsLogOperationRequest, CharacterPlayerResponseModels.GetStatisticsLogOperationResponse>(new CharacterPlayerRequestModels.ServerGetStatisticsLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
public void getCurrencyLog(CharacterPlayerModels.ServerGetCurrencyLogRequestData requestData, Action<CharacterPlayerResponseModels.GetCurrencyLogOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1048
|
+
{
|
|
1049
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.ServerGetCurrencyLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
public Task<CharacterPlayerResponseModels.GetCurrencyLogOperationResponse> getCurrencyLogAsync(CharacterPlayerModels.ServerGetCurrencyLogRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1053
|
+
{
|
|
1054
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.ServerGetCurrencyLogOperationRequest, CharacterPlayerResponseModels.GetCurrencyLogOperationResponse>(new CharacterPlayerRequestModels.ServerGetCurrencyLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
public class AdminApi
|
|
1060
|
+
{
|
|
1061
|
+
public void addPlayerFriend(CharacterPlayerModels.AdminAddPlayerFriendRequestData requestData, Action<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1062
|
+
{
|
|
1063
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminAddPlayerFriendOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
public Task<CharacterPlayerResponseModels.AddPlayerFriendOperationResponse> addPlayerFriendAsync(CharacterPlayerModels.AdminAddPlayerFriendRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1067
|
+
{
|
|
1068
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminAddPlayerFriendOperationRequest, CharacterPlayerResponseModels.AddPlayerFriendOperationResponse>(new CharacterPlayerRequestModels.AdminAddPlayerFriendOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
public void addSegment(CharacterPlayerModels.AdminAddSegmentRequestData requestData, Action<CharacterPlayerResponseModels.AddSegmentOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1072
|
+
{
|
|
1073
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminAddSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
public Task<CharacterPlayerResponseModels.AddSegmentOperationResponse> addSegmentAsync(CharacterPlayerModels.AdminAddSegmentRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1077
|
+
{
|
|
1078
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminAddSegmentOperationRequest, CharacterPlayerResponseModels.AddSegmentOperationResponse>(new CharacterPlayerRequestModels.AdminAddSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
public void getAvatar(CharacterPlayerModels.AdminGetAvatarRequestData requestData, Action<CharacterPlayerResponseModels.GetAvatarOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1082
|
+
{
|
|
1083
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
public Task<CharacterPlayerResponseModels.GetAvatarOperationResponse> getAvatarAsync(CharacterPlayerModels.AdminGetAvatarRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1087
|
+
{
|
|
1088
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetAvatarOperationRequest, CharacterPlayerResponseModels.GetAvatarOperationResponse>(new CharacterPlayerRequestModels.AdminGetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
public void getCatalogId(CharacterPlayerModels.AdminGetCatalogIdRequestData requestData, Action<CharacterPlayerResponseModels.GetCatalogIdOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1092
|
+
{
|
|
1093
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetCatalogIdOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
public Task<CharacterPlayerResponseModels.GetCatalogIdOperationResponse> getCatalogIdAsync(CharacterPlayerModels.AdminGetCatalogIdRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1097
|
+
{
|
|
1098
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetCatalogIdOperationRequest, CharacterPlayerResponseModels.GetCatalogIdOperationResponse>(new CharacterPlayerRequestModels.AdminGetCatalogIdOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
public void getCountryCode(CharacterPlayerModels.AdminGetCountryCodeRequestData requestData, Action<CharacterPlayerResponseModels.GetCountryCodeOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1102
|
+
{
|
|
1103
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetCountryCodeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1106
|
+
public Task<CharacterPlayerResponseModels.GetCountryCodeOperationResponse> getCountryCodeAsync(CharacterPlayerModels.AdminGetCountryCodeRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1107
|
+
{
|
|
1108
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetCountryCodeOperationRequest, CharacterPlayerResponseModels.GetCountryCodeOperationResponse>(new CharacterPlayerRequestModels.AdminGetCountryCodeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
public void getCustomData(CharacterPlayerModels.AdminGetCustomDataRequestData requestData, Action<CharacterPlayerResponseModels.GetCustomDataOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1112
|
+
{
|
|
1113
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
public Task<CharacterPlayerResponseModels.GetCustomDataOperationResponse> getCustomDataAsync(CharacterPlayerModels.AdminGetCustomDataRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1117
|
+
{
|
|
1118
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetCustomDataOperationRequest, CharacterPlayerResponseModels.GetCustomDataOperationResponse>(new CharacterPlayerRequestModels.AdminGetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
public void getDisplayName(CharacterPlayerModels.AdminGetDisplayNameRequestData requestData, Action<CharacterPlayerResponseModels.GetDisplayNameOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1122
|
+
{
|
|
1123
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
public Task<CharacterPlayerResponseModels.GetDisplayNameOperationResponse> getDisplayNameAsync(CharacterPlayerModels.AdminGetDisplayNameRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1127
|
+
{
|
|
1128
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetDisplayNameOperationRequest, CharacterPlayerResponseModels.GetDisplayNameOperationResponse>(new CharacterPlayerRequestModels.AdminGetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
public void getFriendStatisticsLeaderboardAroundPlayer(CharacterPlayerModels.AdminGetFriendStatisticsLeaderboardAroundPlayerRequestData requestData, Action<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1132
|
+
{
|
|
1133
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetFriendStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
public Task<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse> getFriendStatisticsLeaderboardAroundPlayerAsync(CharacterPlayerModels.AdminGetFriendStatisticsLeaderboardAroundPlayerRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1137
|
+
{
|
|
1138
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetFriendStatisticsLeaderboardAroundPlayerOperationRequest, CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardAroundPlayerOperationResponse>(new CharacterPlayerRequestModels.AdminGetFriendStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
public void getFriendStatisticsLeaderboard(CharacterPlayerModels.AdminGetFriendStatisticsLeaderboardRequestData requestData, Action<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1142
|
+
{
|
|
1143
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetFriendStatisticsLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
public Task<CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse> getFriendStatisticsLeaderboardAsync(CharacterPlayerModels.AdminGetFriendStatisticsLeaderboardRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1147
|
+
{
|
|
1148
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetFriendStatisticsLeaderboardOperationRequest, CharacterPlayerResponseModels.GetFriendStatisticsLeaderboardOperationResponse>(new CharacterPlayerRequestModels.AdminGetFriendStatisticsLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
public void getIpAddressCreate(CharacterPlayerModels.AdminGetIpAddressCreateRequestData requestData, Action<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1152
|
+
{
|
|
1153
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetIpAddressCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
public Task<CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse> getIpAddressCreateAsync(CharacterPlayerModels.AdminGetIpAddressCreateRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1157
|
+
{
|
|
1158
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetIpAddressCreateOperationRequest, CharacterPlayerResponseModels.GetIpAddressCreateOperationResponse>(new CharacterPlayerRequestModels.AdminGetIpAddressCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
public void getOwner(CharacterPlayerModels.AdminGetOwnerRequestData requestData, Action<CharacterPlayerResponseModels.GetOwnerOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1162
|
+
{
|
|
1163
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetOwnerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
public Task<CharacterPlayerResponseModels.GetOwnerOperationResponse> getOwnerAsync(CharacterPlayerModels.AdminGetOwnerRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1167
|
+
{
|
|
1168
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetOwnerOperationRequest, CharacterPlayerResponseModels.GetOwnerOperationResponse>(new CharacterPlayerRequestModels.AdminGetOwnerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
public void getPlayerBan(CharacterPlayerModels.AdminGetPlayerBanRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerBanOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1172
|
+
{
|
|
1173
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetPlayerBanOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
public Task<CharacterPlayerResponseModels.GetPlayerBanOperationResponse> getPlayerBanAsync(CharacterPlayerModels.AdminGetPlayerBanRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1177
|
+
{
|
|
1178
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetPlayerBanOperationRequest, CharacterPlayerResponseModels.GetPlayerBanOperationResponse>(new CharacterPlayerRequestModels.AdminGetPlayerBanOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
public void getPlayerCurrency(CharacterPlayerModels.AdminGetPlayerCurrencyRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1182
|
+
{
|
|
1183
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetPlayerCurrencyOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
public Task<CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse> getPlayerCurrencyAsync(CharacterPlayerModels.AdminGetPlayerCurrencyRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1187
|
+
{
|
|
1188
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetPlayerCurrencyOperationRequest, CharacterPlayerResponseModels.GetPlayerCurrencyOperationResponse>(new CharacterPlayerRequestModels.AdminGetPlayerCurrencyOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
public void getPlayerData(CharacterPlayerModels.AdminGetPlayerDataRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerDataOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1192
|
+
{
|
|
1193
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetPlayerDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
public Task<CharacterPlayerResponseModels.GetPlayerDataOperationResponse> getPlayerDataAsync(CharacterPlayerModels.AdminGetPlayerDataRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1197
|
+
{
|
|
1198
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetPlayerDataOperationRequest, CharacterPlayerResponseModels.GetPlayerDataOperationResponse>(new CharacterPlayerRequestModels.AdminGetPlayerDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
public void getPlayerFriend(CharacterPlayerModels.AdminGetPlayerFriendRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1202
|
+
{
|
|
1203
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetPlayerFriendOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
public Task<CharacterPlayerResponseModels.GetPlayerFriendOperationResponse> getPlayerFriendAsync(CharacterPlayerModels.AdminGetPlayerFriendRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1207
|
+
{
|
|
1208
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetPlayerFriendOperationRequest, CharacterPlayerResponseModels.GetPlayerFriendOperationResponse>(new CharacterPlayerRequestModels.AdminGetPlayerFriendOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
public void getPlayerGroup(CharacterPlayerModels.AdminGetPlayerGroupRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1212
|
+
{
|
|
1213
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetPlayerGroupOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
public Task<CharacterPlayerResponseModels.GetPlayerGroupOperationResponse> getPlayerGroupAsync(CharacterPlayerModels.AdminGetPlayerGroupRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1217
|
+
{
|
|
1218
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetPlayerGroupOperationRequest, CharacterPlayerResponseModels.GetPlayerGroupOperationResponse>(new CharacterPlayerRequestModels.AdminGetPlayerGroupOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1221
|
+
public void getPlayerInformation(CharacterPlayerModels.AdminGetPlayerInformationRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1222
|
+
{
|
|
1223
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetPlayerInformationOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
public Task<CharacterPlayerResponseModels.GetPlayerInformationOperationResponse> getPlayerInformationAsync(CharacterPlayerModels.AdminGetPlayerInformationRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1227
|
+
{
|
|
1228
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetPlayerInformationOperationRequest, CharacterPlayerResponseModels.GetPlayerInformationOperationResponse>(new CharacterPlayerRequestModels.AdminGetPlayerInformationOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
public void getPlayerInventory(CharacterPlayerModels.AdminGetPlayerInventoryRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1232
|
+
{
|
|
1233
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetPlayerInventoryOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
public Task<CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse> getPlayerInventoryAsync(CharacterPlayerModels.AdminGetPlayerInventoryRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1237
|
+
{
|
|
1238
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetPlayerInventoryOperationRequest, CharacterPlayerResponseModels.GetPlayerInventoryOperationResponse>(new CharacterPlayerRequestModels.AdminGetPlayerInventoryOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
public void getPlayerStatistics(CharacterPlayerModels.AdminGetPlayerStatisticsRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1242
|
+
{
|
|
1243
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetPlayerStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
public Task<CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse> getPlayerStatisticsAsync(CharacterPlayerModels.AdminGetPlayerStatisticsRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1247
|
+
{
|
|
1248
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetPlayerStatisticsOperationRequest, CharacterPlayerResponseModels.GetPlayerStatisticsOperationResponse>(new CharacterPlayerRequestModels.AdminGetPlayerStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
public void getPlayersWithDisplayName(CharacterPlayerModels.AdminGetPlayersWithDisplayNameRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1252
|
+
{
|
|
1253
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetPlayersWithDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
public Task<CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse> getPlayersWithDisplayNameAsync(CharacterPlayerModels.AdminGetPlayersWithDisplayNameRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1257
|
+
{
|
|
1258
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetPlayersWithDisplayNameOperationRequest, CharacterPlayerResponseModels.GetPlayersWithDisplayNameOperationResponse>(new CharacterPlayerRequestModels.AdminGetPlayersWithDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
public void getPlayersWithSegment(CharacterPlayerModels.AdminGetPlayersWithSegmentRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1262
|
+
{
|
|
1263
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetPlayersWithSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
public Task<CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse> getPlayersWithSegmentAsync(CharacterPlayerModels.AdminGetPlayersWithSegmentRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1267
|
+
{
|
|
1268
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetPlayersWithSegmentOperationRequest, CharacterPlayerResponseModels.GetPlayersWithSegmentOperationResponse>(new CharacterPlayerRequestModels.AdminGetPlayersWithSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
public void getPlayersWithTag(CharacterPlayerModels.AdminGetPlayersWithTagRequestData requestData, Action<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1272
|
+
{
|
|
1273
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetPlayersWithTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
public Task<CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse> getPlayersWithTagAsync(CharacterPlayerModels.AdminGetPlayersWithTagRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1277
|
+
{
|
|
1278
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetPlayersWithTagOperationRequest, CharacterPlayerResponseModels.GetPlayersWithTagOperationResponse>(new CharacterPlayerRequestModels.AdminGetPlayersWithTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
public void getRemoveStatus(CharacterPlayerModels.AdminGetRemoveStatusRequestData requestData, Action<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1282
|
+
{
|
|
1283
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetRemoveStatusOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
public Task<CharacterPlayerResponseModels.GetRemoveStatusOperationResponse> getRemoveStatusAsync(CharacterPlayerModels.AdminGetRemoveStatusRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1287
|
+
{
|
|
1288
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetRemoveStatusOperationRequest, CharacterPlayerResponseModels.GetRemoveStatusOperationResponse>(new CharacterPlayerRequestModels.AdminGetRemoveStatusOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
public void getSegment(CharacterPlayerModels.AdminGetSegmentRequestData requestData, Action<CharacterPlayerResponseModels.GetSegmentOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1292
|
+
{
|
|
1293
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
public Task<CharacterPlayerResponseModels.GetSegmentOperationResponse> getSegmentAsync(CharacterPlayerModels.AdminGetSegmentRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1297
|
+
{
|
|
1298
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetSegmentOperationRequest, CharacterPlayerResponseModels.GetSegmentOperationResponse>(new CharacterPlayerRequestModels.AdminGetSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
public void getStatisticsLeaderboardAroundPlayer(CharacterPlayerModels.AdminGetStatisticsLeaderboardAroundPlayerRequestData requestData, Action<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1302
|
+
{
|
|
1303
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
public Task<CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse> getStatisticsLeaderboardAroundPlayerAsync(CharacterPlayerModels.AdminGetStatisticsLeaderboardAroundPlayerRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1307
|
+
{
|
|
1308
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetStatisticsLeaderboardAroundPlayerOperationRequest, CharacterPlayerResponseModels.GetStatisticsLeaderboardAroundPlayerOperationResponse>(new CharacterPlayerRequestModels.AdminGetStatisticsLeaderboardAroundPlayerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1311
|
+
public void getStatisticsLeaderboard(CharacterPlayerModels.AdminGetStatisticsLeaderboardRequestData requestData, Action<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1312
|
+
{
|
|
1313
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetStatisticsLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
public Task<CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse> getStatisticsLeaderboardAsync(CharacterPlayerModels.AdminGetStatisticsLeaderboardRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1317
|
+
{
|
|
1318
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetStatisticsLeaderboardOperationRequest, CharacterPlayerResponseModels.GetStatisticsLeaderboardOperationResponse>(new CharacterPlayerRequestModels.AdminGetStatisticsLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
public void getTag(CharacterPlayerModels.AdminGetTagRequestData requestData, Action<CharacterPlayerResponseModels.GetTagOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1322
|
+
{
|
|
1323
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
public Task<CharacterPlayerResponseModels.GetTagOperationResponse> getTagAsync(CharacterPlayerModels.AdminGetTagRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1327
|
+
{
|
|
1328
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetTagOperationRequest, CharacterPlayerResponseModels.GetTagOperationResponse>(new CharacterPlayerRequestModels.AdminGetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
public void getTsCreate(CharacterPlayerModels.AdminGetTsCreateRequestData requestData, Action<CharacterPlayerResponseModels.GetTsCreateOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1332
|
+
{
|
|
1333
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetTsCreateOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
public Task<CharacterPlayerResponseModels.GetTsCreateOperationResponse> getTsCreateAsync(CharacterPlayerModels.AdminGetTsCreateRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1337
|
+
{
|
|
1338
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetTsCreateOperationRequest, CharacterPlayerResponseModels.GetTsCreateOperationResponse>(new CharacterPlayerRequestModels.AdminGetTsCreateOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
public void getTsLastLogin(CharacterPlayerModels.AdminGetTsLastLoginRequestData requestData, Action<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1342
|
+
{
|
|
1343
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetTsLastLoginOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
public Task<CharacterPlayerResponseModels.GetTsLastLoginOperationResponse> getTsLastLoginAsync(CharacterPlayerModels.AdminGetTsLastLoginRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1347
|
+
{
|
|
1348
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetTsLastLoginOperationRequest, CharacterPlayerResponseModels.GetTsLastLoginOperationResponse>(new CharacterPlayerRequestModels.AdminGetTsLastLoginOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
public void grantGroup(CharacterPlayerModels.AdminGrantGroupRequestData requestData, Action<CharacterPlayerResponseModels.GrantGroupOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1352
|
+
{
|
|
1353
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGrantGroupOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
public Task<CharacterPlayerResponseModels.GrantGroupOperationResponse> grantGroupAsync(CharacterPlayerModels.AdminGrantGroupRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1357
|
+
{
|
|
1358
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGrantGroupOperationRequest, CharacterPlayerResponseModels.GrantGroupOperationResponse>(new CharacterPlayerRequestModels.AdminGrantGroupOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
public void grantPlayerItem(CharacterPlayerModels.AdminGrantPlayerItemRequestData requestData, Action<CharacterPlayerResponseModels.GrantPlayerItemOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1362
|
+
{
|
|
1363
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGrantPlayerItemOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
public Task<CharacterPlayerResponseModels.GrantPlayerItemOperationResponse> grantPlayerItemAsync(CharacterPlayerModels.AdminGrantPlayerItemRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1367
|
+
{
|
|
1368
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGrantPlayerItemOperationRequest, CharacterPlayerResponseModels.GrantPlayerItemOperationResponse>(new CharacterPlayerRequestModels.AdminGrantPlayerItemOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
public void joinGroup(CharacterPlayerModels.AdminJoinGroupRequestData requestData, Action<CharacterPlayerResponseModels.JoinGroupOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1372
|
+
{
|
|
1373
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminJoinGroupOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
public Task<CharacterPlayerResponseModels.JoinGroupOperationResponse> joinGroupAsync(CharacterPlayerModels.AdminJoinGroupRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1377
|
+
{
|
|
1378
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminJoinGroupOperationRequest, CharacterPlayerResponseModels.JoinGroupOperationResponse>(new CharacterPlayerRequestModels.AdminJoinGroupOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
public void leaveGroup(CharacterPlayerModels.AdminLeaveGroupRequestData requestData, Action<CharacterPlayerResponseModels.LeaveGroupOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1382
|
+
{
|
|
1383
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminLeaveGroupOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
public Task<CharacterPlayerResponseModels.LeaveGroupOperationResponse> leaveGroupAsync(CharacterPlayerModels.AdminLeaveGroupRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1387
|
+
{
|
|
1388
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminLeaveGroupOperationRequest, CharacterPlayerResponseModels.LeaveGroupOperationResponse>(new CharacterPlayerRequestModels.AdminLeaveGroupOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
public void removePlayerFriend(CharacterPlayerModels.AdminRemovePlayerFriendRequestData requestData, Action<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1392
|
+
{
|
|
1393
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminRemovePlayerFriendOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
public Task<CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse> removePlayerFriendAsync(CharacterPlayerModels.AdminRemovePlayerFriendRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1397
|
+
{
|
|
1398
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminRemovePlayerFriendOperationRequest, CharacterPlayerResponseModels.RemovePlayerFriendOperationResponse>(new CharacterPlayerRequestModels.AdminRemovePlayerFriendOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
public void removePlayerItem(CharacterPlayerModels.AdminRemovePlayerItemRequestData requestData, Action<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1402
|
+
{
|
|
1403
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminRemovePlayerItemOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
public Task<CharacterPlayerResponseModels.RemovePlayerItemOperationResponse> removePlayerItemAsync(CharacterPlayerModels.AdminRemovePlayerItemRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1407
|
+
{
|
|
1408
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminRemovePlayerItemOperationRequest, CharacterPlayerResponseModels.RemovePlayerItemOperationResponse>(new CharacterPlayerRequestModels.AdminRemovePlayerItemOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
public void removeSegment(CharacterPlayerModels.AdminRemoveSegmentRequestData requestData, Action<CharacterPlayerResponseModels.RemoveSegmentOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1412
|
+
{
|
|
1413
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminRemoveSegmentOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
public Task<CharacterPlayerResponseModels.RemoveSegmentOperationResponse> removeSegmentAsync(CharacterPlayerModels.AdminRemoveSegmentRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1417
|
+
{
|
|
1418
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminRemoveSegmentOperationRequest, CharacterPlayerResponseModels.RemoveSegmentOperationResponse>(new CharacterPlayerRequestModels.AdminRemoveSegmentOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
public void removeTag(CharacterPlayerModels.AdminRemoveTagRequestData requestData, Action<CharacterPlayerResponseModels.RemoveTagOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1422
|
+
{
|
|
1423
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminRemoveTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
public Task<CharacterPlayerResponseModels.RemoveTagOperationResponse> removeTagAsync(CharacterPlayerModels.AdminRemoveTagRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1427
|
+
{
|
|
1428
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminRemoveTagOperationRequest, CharacterPlayerResponseModels.RemoveTagOperationResponse>(new CharacterPlayerRequestModels.AdminRemoveTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
public void setAvatar(CharacterPlayerModels.AdminSetAvatarRequestData requestData, Action<CharacterPlayerResponseModels.SetAvatarOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1432
|
+
{
|
|
1433
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminSetAvatarOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
public Task<CharacterPlayerResponseModels.SetAvatarOperationResponse> setAvatarAsync(CharacterPlayerModels.AdminSetAvatarRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1437
|
+
{
|
|
1438
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminSetAvatarOperationRequest, CharacterPlayerResponseModels.SetAvatarOperationResponse>(new CharacterPlayerRequestModels.AdminSetAvatarOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
public void setCountryCode(CharacterPlayerModels.AdminSetCountryCodeRequestData requestData, Action<CharacterPlayerResponseModels.SetCountryCodeOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1442
|
+
{
|
|
1443
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminSetCountryCodeOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
public Task<CharacterPlayerResponseModels.SetCountryCodeOperationResponse> setCountryCodeAsync(CharacterPlayerModels.AdminSetCountryCodeRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1447
|
+
{
|
|
1448
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminSetCountryCodeOperationRequest, CharacterPlayerResponseModels.SetCountryCodeOperationResponse>(new CharacterPlayerRequestModels.AdminSetCountryCodeOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
public void setCustomData(CharacterPlayerModels.AdminSetCustomDataRequestData requestData, Action<CharacterPlayerResponseModels.SetCustomDataOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1452
|
+
{
|
|
1453
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminSetCustomDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
public Task<CharacterPlayerResponseModels.SetCustomDataOperationResponse> setCustomDataAsync(CharacterPlayerModels.AdminSetCustomDataRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1457
|
+
{
|
|
1458
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminSetCustomDataOperationRequest, CharacterPlayerResponseModels.SetCustomDataOperationResponse>(new CharacterPlayerRequestModels.AdminSetCustomDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
public void setDisplayName(CharacterPlayerModels.AdminSetDisplayNameRequestData requestData, Action<CharacterPlayerResponseModels.SetDisplayNameOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1462
|
+
{
|
|
1463
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminSetDisplayNameOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
public Task<CharacterPlayerResponseModels.SetDisplayNameOperationResponse> setDisplayNameAsync(CharacterPlayerModels.AdminSetDisplayNameRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1467
|
+
{
|
|
1468
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminSetDisplayNameOperationRequest, CharacterPlayerResponseModels.SetDisplayNameOperationResponse>(new CharacterPlayerRequestModels.AdminSetDisplayNameOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
public void setOwner(CharacterPlayerModels.AdminSetOwnerRequestData requestData, Action<CharacterPlayerResponseModels.SetOwnerOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1472
|
+
{
|
|
1473
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminSetOwnerOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1476
|
+
public Task<CharacterPlayerResponseModels.SetOwnerOperationResponse> setOwnerAsync(CharacterPlayerModels.AdminSetOwnerRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1477
|
+
{
|
|
1478
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminSetOwnerOperationRequest, CharacterPlayerResponseModels.SetOwnerOperationResponse>(new CharacterPlayerRequestModels.AdminSetOwnerOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
public void setPlayerBan(CharacterPlayerModels.AdminSetPlayerBanRequestData requestData, Action<CharacterPlayerResponseModels.SetPlayerBanOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1482
|
+
{
|
|
1483
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminSetPlayerBanOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
public Task<CharacterPlayerResponseModels.SetPlayerBanOperationResponse> setPlayerBanAsync(CharacterPlayerModels.AdminSetPlayerBanRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1487
|
+
{
|
|
1488
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminSetPlayerBanOperationRequest, CharacterPlayerResponseModels.SetPlayerBanOperationResponse>(new CharacterPlayerRequestModels.AdminSetPlayerBanOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
public void setPlayerCurrency(CharacterPlayerModels.AdminSetPlayerCurrencyRequestData requestData, Action<CharacterPlayerResponseModels.SetPlayerCurrencyOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1492
|
+
{
|
|
1493
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminSetPlayerCurrencyOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1496
|
+
public Task<CharacterPlayerResponseModels.SetPlayerCurrencyOperationResponse> setPlayerCurrencyAsync(CharacterPlayerModels.AdminSetPlayerCurrencyRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1497
|
+
{
|
|
1498
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminSetPlayerCurrencyOperationRequest, CharacterPlayerResponseModels.SetPlayerCurrencyOperationResponse>(new CharacterPlayerRequestModels.AdminSetPlayerCurrencyOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
public void setPlayerData(CharacterPlayerModels.AdminSetPlayerDataRequestData requestData, Action<CharacterPlayerResponseModels.SetPlayerDataOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1502
|
+
{
|
|
1503
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminSetPlayerDataOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
public Task setPlayerDataAsync(CharacterPlayerModels.AdminSetPlayerDataRequestData requestData, Action<CharacterPlayerResponseModels.SetPlayerDataOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1507
|
+
{
|
|
1508
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminSetPlayerDataOperationRequest, CharacterPlayerResponseModels.SetPlayerDataOperationResponse>(new CharacterPlayerRequestModels.AdminSetPlayerDataOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
public void setPlayerStatistics(CharacterPlayerModels.AdminSetPlayerStatisticsRequestData requestData, Action<CharacterPlayerResponseModels.SetPlayerStatisticsOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1512
|
+
{
|
|
1513
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminSetPlayerStatisticsOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
public Task setPlayerStatisticsAsync(CharacterPlayerModels.AdminSetPlayerStatisticsRequestData requestData, Action<CharacterPlayerResponseModels.SetPlayerStatisticsOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1517
|
+
{
|
|
1518
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminSetPlayerStatisticsOperationRequest, CharacterPlayerResponseModels.SetPlayerStatisticsOperationResponse>(new CharacterPlayerRequestModels.AdminSetPlayerStatisticsOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
public void setRemoveStatus(CharacterPlayerModels.AdminSetRemoveStatusRequestData requestData, Action<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1522
|
+
{
|
|
1523
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminSetRemoveStatusOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1526
|
+
public Task setRemoveStatusAsync(CharacterPlayerModels.AdminSetRemoveStatusRequestData requestData, Action<CharacterPlayerResponseModels.SetRemoveStatusOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1527
|
+
{
|
|
1528
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminSetRemoveStatusOperationRequest, CharacterPlayerResponseModels.SetRemoveStatusOperationResponse>(new CharacterPlayerRequestModels.AdminSetRemoveStatusOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
public void setTag(CharacterPlayerModels.AdminSetTagRequestData requestData, Action<CharacterPlayerResponseModels.SetTagOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1532
|
+
{
|
|
1533
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminSetTagOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
public Task setTagAsync(CharacterPlayerModels.AdminSetTagRequestData requestData, Action<CharacterPlayerResponseModels.SetTagOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1537
|
+
{
|
|
1538
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminSetTagOperationRequest, CharacterPlayerResponseModels.SetTagOperationResponse>(new CharacterPlayerRequestModels.AdminSetTagOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
public void getCurrencyLeaderboard(CharacterPlayerModels.AdminGetCurrencyLeaderboardRequestData requestData, Action<CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1542
|
+
{
|
|
1543
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetCurrencyLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
public Task getCurrencyLeaderboardAsync(CharacterPlayerModels.AdminGetCurrencyLeaderboardRequestData requestData, Action<CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1547
|
+
{
|
|
1548
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetCurrencyLeaderboardOperationRequest, CharacterPlayerResponseModels.GetCurrencyLeaderboardOperationResponse>(new CharacterPlayerRequestModels.AdminGetCurrencyLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
public void getCreateLeaderboard(CharacterPlayerModels.AdminGetCreateLeaderboardRequestData requestData, Action<CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1552
|
+
{
|
|
1553
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetCreateLeaderboardOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
public Task<CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse> getCreateLeaderboardAsync(CharacterPlayerModels.AdminGetCreateLeaderboardRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1557
|
+
{
|
|
1558
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetCreateLeaderboardOperationRequest, CharacterPlayerResponseModels.GetCreateLeaderboardOperationResponse>(new CharacterPlayerRequestModels.AdminGetCreateLeaderboardOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
public void getStatisticsLog(CharacterPlayerModels.AdminGetStatisticsLogRequestData requestData, Action<CharacterPlayerResponseModels.GetStatisticsLogOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1562
|
+
{
|
|
1563
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetStatisticsLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
public Task<CharacterPlayerResponseModels.GetStatisticsLogOperationResponse> getStatisticsLogAsync(CharacterPlayerModels.AdminGetStatisticsLogRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1567
|
+
{
|
|
1568
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetStatisticsLogOperationRequest, CharacterPlayerResponseModels.GetStatisticsLogOperationResponse>(new CharacterPlayerRequestModels.AdminGetStatisticsLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
public void getCurrencyLog(CharacterPlayerModels.AdminGetCurrencyLogRequestData requestData, Action<CharacterPlayerResponseModels.GetCurrencyLogOperationResponse> onResponse = null, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1572
|
+
{
|
|
1573
|
+
GNNetwork.sendViaHttp(new CharacterPlayerRequestModels.AdminGetCurrencyLogOperationRequest(requestData, timeout), onResponse, overrideAuthToken, overrideSecretKey, customTags);
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
public Task<CharacterPlayerResponseModels.GetCurrencyLogOperationResponse> getCurrencyLogAsync(CharacterPlayerModels.AdminGetCurrencyLogRequestData requestData, string overrideAuthToken = null, string overrideSecretKey = null, GNHashtable customTags = null, int timeout = OperationRequest.defaultTimeOut)
|
|
1577
|
+
{
|
|
1578
|
+
return GNNetwork.sendViaHttpAsync<CharacterPlayerRequestModels.AdminGetCurrencyLogOperationRequest, CharacterPlayerResponseModels.GetCurrencyLogOperationResponse>(new CharacterPlayerRequestModels.AdminGetCurrencyLogOperationRequest(requestData, timeout), overrideAuthToken, overrideSecretKey, customTags);
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
public static partial class GNNetwork
|
|
1586
|
+
{
|
|
1587
|
+
|
|
1588
|
+
public static CharacterPlayerApi characterPlayer { get; }
|
|
1589
|
+
}
|
|
765
1590
|
|
|
766
1591
|
}
|